mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-26 05:53:39 -04:00
Merge branch 'master' of github.com:codecombat/codecombat
Conflicts: app/views/play/spectate_view.coffee
This commit is contained in:
commit
3262ad81f2
73 changed files with 3404 additions and 482 deletions
app
lib
locale
ar.coffeebg.coffeecs.coffeeda.coffeede.coffeeel.coffeeen-AU.coffeeen-GB.coffeeen-US.coffeeen.coffeees-419.coffeees-ES.coffeees.coffeefa.coffeefi.coffeefr.coffeehe.coffeehi.coffeehu.coffeeid.coffeeit.coffeeja.coffeeko.coffeelt.coffeems-BA.coffeenb.coffeenl.coffeenn.coffeeno.coffeepl.coffeept-BR.coffeept-PT.coffeept.coffeero.coffeeru.coffeesk.coffeesl.coffeesr.coffeesv.coffeeth.coffeetr.coffeeuk.coffeeur.coffeevi.coffeezh-HANS.coffeezh-HANT.coffeezh.coffee
models
styles
templates
contribute
editor/level
play
views
scripts
server/routes
test/app/lib
|
@ -1,5 +1,6 @@
|
|||
ScriptModule = require './ScriptModule'
|
||||
{me} = require 'lib/auth'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
module.exports = class SpritesScriptModule extends ScriptModule
|
||||
@neededFor: (noteGroup) ->
|
||||
|
@ -35,10 +36,10 @@ module.exports = class SpritesScriptModule extends ScriptModule
|
|||
responses = sprite.say.responses
|
||||
responses = [] unless script.skippable or responses
|
||||
for response in responses ? []
|
||||
response.text = response.i18n?[me.lang()]?.text ? response.text
|
||||
text = sprite.say.i18n?[me.lang()]?.text or sprite.say.text
|
||||
blurb = sprite.say.i18n?[me.lang()]?.blurb or sprite.say.blurb
|
||||
sound = sprite.say.sound?[me.lang()]?.sound or sprite.say.sound
|
||||
response.text = utils.i18n response, 'text'
|
||||
text = utils.i18n sprite.say, 'text'
|
||||
blurb = utils.i18n sprite.say, 'blurb'
|
||||
sound = sprite.say.sound # TODO support sound i18n
|
||||
note =
|
||||
channel: 'level-sprite-dialogue'
|
||||
event:
|
||||
|
|
|
@ -241,7 +241,7 @@ module.exports = class Camera extends CocoClass
|
|||
@newZoom = newZoom
|
||||
@tweenProgress = 0.01
|
||||
createjs.Tween.get(@)
|
||||
.to({tweenProgress: 1.0}, time, createjs.Ease.getPowInOut(3))
|
||||
.to({tweenProgress: 1.0}, time, createjs.Ease.getPowOut(4))
|
||||
.call @finishTween
|
||||
|
||||
else
|
||||
|
|
|
@ -450,8 +450,11 @@ module.exports = Surface = class Surface extends CocoClass
|
|||
@gridLayer?.parent?
|
||||
|
||||
onToggleGrid: (e) ->
|
||||
# TODO: figure out a better way of managing grid / debug so it's not split across PlaybackView and Surface
|
||||
e?.preventDefault?()
|
||||
if @gridShowing() then @hideGrid() else @showGrid()
|
||||
flag = $('#grid-toggle i.icon-ok')
|
||||
flag.toggleClass 'invisible', not @gridShowing()
|
||||
|
||||
onSetGrid: (e) ->
|
||||
if e.grid then @showGrid() else @hideGrid()
|
||||
|
|
|
@ -28,8 +28,8 @@ module.exports.normalizeFunc = (func_thing, object) ->
|
|||
console.error("Could not find method", func_thing, 'in object', @)
|
||||
return => null # always return a func, or Mediator will go boom
|
||||
func_thing = func
|
||||
return func_thing
|
||||
|
||||
return func_thing
|
||||
|
||||
module.exports.hexToHSL = (hex) ->
|
||||
rgbToHsl(hexToR(hex), hexToG(hex), hexToB(hex))
|
||||
|
||||
|
@ -37,11 +37,33 @@ hexToR = (h) -> parseInt (cutHex(h)).substring(0, 2), 16
|
|||
hexToG = (h) -> parseInt (cutHex(h)).substring(2, 4), 16
|
||||
hexToB = (h) -> parseInt (cutHex(h)).substring(4, 6), 16
|
||||
cutHex = (h) -> (if (h.charAt(0) is "#") then h.substring(1, 7) else h)
|
||||
|
||||
|
||||
module.exports.hslToHex = (hsl) ->
|
||||
'#' + (toHex(n) for n in hslToRgb(hsl...)).join('')
|
||||
|
||||
|
||||
toHex = (n) ->
|
||||
h = Math.floor(n).toString(16)
|
||||
h = '0'+h if h.length is 1
|
||||
h
|
||||
|
||||
module.exports.i18n = (say, target, language=me.lang(), fallback='en') ->
|
||||
generalResult = null
|
||||
fallbackResult = null
|
||||
fallforwardResult = null # If a general language isn't available, the first specific one will do
|
||||
matches = (/\w+/gi).exec(language)
|
||||
generalName = matches[0] if matches
|
||||
|
||||
for localeName, locale of say.i18n
|
||||
if target of locale
|
||||
result = locale[target]
|
||||
else continue
|
||||
return result if localeName == language
|
||||
generalResult = result if localeName == generalName
|
||||
fallbackResult = result if localeName == fallback
|
||||
fallforwardResult = result if localeName.indexOf(language) == 0 and not fallforwardResult?
|
||||
|
||||
return generalResult if generalResult?
|
||||
return fallforwardResult if fallforwardResult?
|
||||
return fallbackResult if fallbackResult?
|
||||
return say[target] if target of say
|
||||
null
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Преглед"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# body: "Body"
|
||||
version: "Версия"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
results: "Резултати"
|
||||
description: "Описание"
|
||||
or: "или"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Съобщение"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
campaign_player_created: "Uživatelsky vytvořené úrovně"
|
||||
campaign_player_created_description: "...ve kterých bojujete proti kreativitě ostatních <a href=\"/contribute#artisan\">Zdatných Kouzelníků</a>."
|
||||
level_difficulty: "Obtížnost: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Konktujte CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
wizard_tab: "Kouzelník"
|
||||
password_tab: "Heslo"
|
||||
emails_tab: "Emaily"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Zvolte kterou Gravatar fotografii použít"
|
||||
gravatar_add_photos: "Přidat náhledy a fotografie do Gravatar účtu pro zvolení obrázku"
|
||||
gravatar_add_more_photos: "Přidat do vašeho Gravatar účtu další fotografie."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
new_password_verify: "Potvrdit"
|
||||
email_subscriptions: "Doručovat emailem"
|
||||
email_announcements: "Oznámení"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Zasílat na váš účet opakovaná oznámení."
|
||||
email_announcements_description: "Zasílat emaily o posledních novinkách a o postupu ve vývoji CodeCombat."
|
||||
contributor_emails: "Emaily pro přispívatele"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
victory_sign_up: "Přihlásit se pro uložení postupu"
|
||||
victory_sign_up_poke: "Chcete uložit váš kód? Vytvořte si účet zdarma!"
|
||||
victory_rate_the_level: "Ohodnoťte tuto úroveň: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Hrát další úroveň"
|
||||
victory_go_home: "Přejít domů"
|
||||
victory_review: "Připomínky!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
contact_us: "kontaktujte nás!"
|
||||
hipchat_prefix: "Můžete nás také najít v naší"
|
||||
hipchat_url: "HipChat diskusní místnosti."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Volby?"
|
||||
level_tab_thangs: "Thangy"
|
||||
level_tab_scripts: "Skripty"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
level_components_title: "Zpět na všechny Thangy"
|
||||
level_components_type: "Druh"
|
||||
level_component_edit_title: "Editovat komponentu"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Editovat systém"
|
||||
create_system_title: "Vytvořit nový systém"
|
||||
new_component_title: "Vytvořit novou komponentu"
|
||||
new_component_field_system: "Systém"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Náhled"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
body: "Tělo"
|
||||
version: "Verze"
|
||||
commit_msg: "Popisek ukládání"
|
||||
# history: "History"
|
||||
version_history_for: "Verze historie pro: "
|
||||
# result: "Result"
|
||||
results: "Výsledky"
|
||||
description: "Popis"
|
||||
or: "nebo"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Zpráva"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Kdo je CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
more_about_adventurer: "Dozvědět se více o tom, jak se stát statečným Dobrodruhem"
|
||||
adventurer_subscribe_desc: "Dostávat emailem oznámení a informace nových úrovních k testování."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
scribe_introduction_pref: "CodeCombat nebude pouze kupa úrovní. Bude také zahrnovat informační zdroje a wiki programovacích konceptů na které se úrovně mohou navázat. Takto, namísto toho aby každý Řemeslník musel sám do detailu popsatco který operátor dělá, mohou jednoduše nalinkovat svoji úroveň na článek existující k edukaci hráčů. Něco ve stylu "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: ". Jestliže vás baví popisovat a předávat koncept programování v Markdown editoru, pak tato role může být právě pro vás."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
ambassador_title_description: "(Podpora)"
|
||||
counselor_title: "Poradce"
|
||||
counselor_title_description: "(Odborník)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
campaign_player_created: "Spillerkreerede"
|
||||
campaign_player_created_description: "... hvor du kæmper mod dine med-<a href=\"/contribute#artisan\">Kunsthåndværker-troldmænd</a>s kreativitet."
|
||||
level_difficulty: "Sværhedsgrad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontakt CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
wizard_tab: "Troldmand"
|
||||
password_tab: "Password"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Vælg hvilket Gravatar-billede du vil bruge"
|
||||
gravatar_add_photos: "Tilføj thumbnails og billeder til en Gravatar-konto for din email for at kunne vælge et billede."
|
||||
gravatar_add_more_photos: "Tilføj flere billeder til din Gravatar-konto for at tilgå dem her."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
new_password_verify: "Bekræft"
|
||||
email_subscriptions: "Emailtilmeldinger"
|
||||
email_announcements: "Nyheder"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Få periodevise meldinger om din konto."
|
||||
email_announcements_description: "Få emails om de seneste nyheder og udvikling på CodeCombat."
|
||||
contributor_emails: "Bidragsklasse-emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
victory_sign_up: "Opret dig for at gemme dit fremskridt"
|
||||
victory_sign_up_poke: "Ønsker du at gemme din kode? Opret en gratis konto!"
|
||||
victory_rate_the_level: "Bedøm denne bane: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Spil næste bane"
|
||||
victory_go_home: "Gå hjem"
|
||||
victory_review: "Fortæl os mere!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
contact_us: "kontact os!"
|
||||
hipchat_prefix: "Du kan også finde os på vores"
|
||||
hipchat_url: "HipChat kanal."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
level_component_edit_title: "Redigér komponent"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Redigér system"
|
||||
create_system_title: "Opret nyt system"
|
||||
new_component_title: "Opret ny komponent"
|
||||
new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Forhåndsvisning"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
body: "krop"
|
||||
version: "version"
|
||||
commit_msg: "ændringsnotat"
|
||||
# history: "History"
|
||||
version_history_for: "versionhistorie for: "
|
||||
# result: "Result"
|
||||
results: "resultater"
|
||||
description: "beskrivelse"
|
||||
or: "eller"
|
||||
email: "e-mail"
|
||||
# password: "Password"
|
||||
message: "Besked"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Hvem er CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
ambassador_title_description: "(Brugerstøtte)"
|
||||
counselor_title: "Rådgiver"
|
||||
counselor_title_description: "(Ekspert/Lærer)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -13,7 +13,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
play: "Abspielen"
|
||||
|
||||
modal:
|
||||
close: "Schliessen"
|
||||
close: "Schließen"
|
||||
okay: "Okay"
|
||||
|
||||
not_found:
|
||||
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
campaign_player_created: "Von Spielern erstellt"
|
||||
campaign_player_created_description: "... in welchem Du gegen die Kreativität eines <a href=\"/contribute#artisan\">Artisan Zauberers</a> kämpfst."
|
||||
level_difficulty: "Schwierigkeit: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontaktiere CodeCombat"
|
||||
|
@ -104,14 +105,14 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
wizard_settings:
|
||||
title: "Zauberer Einstellungen"
|
||||
customize_avatar: "Individualisiere deinen Avatar"
|
||||
# clothes: "Clothes"
|
||||
# trim: "Trim"
|
||||
# cloud: "Cloud"
|
||||
# spell: "Spell"
|
||||
# boots: "Boots"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
clothes: "Kleidung"
|
||||
trim: "Applikationen"
|
||||
cloud: "Wolke"
|
||||
spell: "Zauber"
|
||||
boots: "Stiefel"
|
||||
hue: "Farbton"
|
||||
saturation: "Sättigung"
|
||||
lightness: "Helligkeit"
|
||||
|
||||
account_settings:
|
||||
title: "Accounteinstellungen"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
wizard_tab: "Zauberer"
|
||||
password_tab: "Passwort"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Wähle ein Gravatar Bild aus"
|
||||
gravatar_add_photos: "Füge Vorschaubilder und Fotos zu Deinem Gravatar Account (für Deine Email) hinzu, um ein Bild auswählen zu können"
|
||||
gravatar_add_more_photos: "Füge mehr Fotos bei deinem Gravatar Account hinzu, um hier mehr Bilder wählen zu können"
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
new_password_verify: "Passwort verifizieren"
|
||||
email_subscriptions: "Email Abonnements"
|
||||
email_announcements: "Ankündigungen"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Erhalte regelmäßig Mitteilungen für deinen Account."
|
||||
contributor_emails: "Unterstützer Email"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
victory_sign_up: "Melde Dich an, um Fortschritte zu speichern"
|
||||
victory_sign_up_poke: "Möchtest Du Neuigkeiten per Mail erhalten? Erstelle einen kostenlosen Account und wir halten Dich auf dem Laufenden."
|
||||
victory_rate_the_level: "Bewerte das Level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Spiel das nächste Level"
|
||||
victory_go_home: "Geh auf die Startseite"
|
||||
victory_review: "Erzähl uns davon!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
contact_us: "setze dich mit uns in Verbindung!"
|
||||
hipchat_prefix: "Besuche uns auch in unserem"
|
||||
hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Einige Einstellungsmöglichkeiten?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Skripte"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
level_components_title: "Zurück zu allen Thangs"
|
||||
level_components_type: "Typ"
|
||||
level_component_edit_title: "Komponente bearbeiten"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "System bearbeiten"
|
||||
create_system_title: "neues System erstellen"
|
||||
new_component_title: "Neue Komponente erstellen"
|
||||
new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vorschau"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
body: "Inhalt"
|
||||
version: "Version"
|
||||
commit_msg: "Commit Nachricht"
|
||||
# history: "History"
|
||||
version_history_for: "Versionsgeschichte für: "
|
||||
# result: "Result"
|
||||
results: "Ergebnisse"
|
||||
description: "Beschreibung"
|
||||
or: "oder"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Nachricht"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wer ist CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
ambassador_title_description: "(Support)"
|
||||
counselor_title: "Berater"
|
||||
counselor_title_description: "(Experte/Lehrer)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "Δυσκολία: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Επικοινωνήστε μαζί μας"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
wizard_tab: "Μάγος"
|
||||
password_tab: "Κωδικός"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Επέλεξε φωτογραφία \"Gravatar\" για να χρησιμοποιήσεις"
|
||||
gravatar_add_photos: "Πρόσθεσε μικρογραφίες και φωτογραφίες σε έναν λογαριασμό \"Gravatar\" για το email σου διάλεξε μια φωτογραφία"
|
||||
gravatar_add_more_photos: "Προσθέστε περισσότερες φωτογραφίες στο Gravatar λογαριασμό σας για να αποκτήσετε πρόσβαση σε αυτά από εδώ."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
new_password_verify: " Επαλήθευση Κωδικού"
|
||||
email_subscriptions: "Συνδρομές Email"
|
||||
email_announcements: "Ανακοινώσεις"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Λάβετε emails για τα τελευταία νέα και τις εξελίξεις του CodeCombat."
|
||||
contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
victory_sign_up: "Εγγραφείτε για ενημερώσεις"
|
||||
victory_sign_up_poke: "Θέλετε να λαμβάνετε τα τελευταία νέα μέσω e-mail; Δημιουργήστε έναν δωρεάν λογαριασμό και θα σας κρατάμε ενήμερους!"
|
||||
victory_rate_the_level: "Βαθμολογήστε το επίπεδο: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Παίξε το επόμενο επίπεδο"
|
||||
victory_go_home: "Πηγαίνετε στην Αρχική"
|
||||
victory_review: "Πείτε μας περισσότερα!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -286,6 +286,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
|||
code: "Code"
|
||||
ladder: "Ladder"
|
||||
when: "When"
|
||||
opponent: "Opponent"
|
||||
rank: "Rank"
|
||||
score: "Score"
|
||||
win: "Win"
|
||||
|
@ -421,7 +422,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
|||
artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
adventurer_sumamry: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
campaign_player_created: "Creados-Por-Jugadores"
|
||||
campaign_player_created_description: "... en los que luchas contra la creatividad de tus compañeros <a href=\"/contribute#artisan\">Hechiceros Artesanales</a>."
|
||||
level_difficulty: "Dificultad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contacta a CodeCombat"
|
||||
|
@ -101,17 +102,17 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
learn_more: "Aprende más sobre ser un Diplomático"
|
||||
subscribe_as_diplomat: "Suscribete como un Diplomático"
|
||||
|
||||
# wizard_settings:
|
||||
# title: "Wizard Settings"
|
||||
# customize_avatar: "Customize Your Avatar"
|
||||
# clothes: "Clothes"
|
||||
wizard_settings:
|
||||
title: "Configuración del mago"
|
||||
customize_avatar: "Personaliza tu avatar"
|
||||
clothes: "Ropa"
|
||||
# trim: "Trim"
|
||||
# cloud: "Cloud"
|
||||
cloud: "Nube"
|
||||
# spell: "Spell"
|
||||
# boots: "Boots"
|
||||
boots: "Botas"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
saturation: "Saturación"
|
||||
lightness: "Brillo"
|
||||
|
||||
account_settings:
|
||||
title: "Configuración de la Cuenta"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
wizard_tab: "Hechicero"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Seleccione que foto de Gravatar usar"
|
||||
gravatar_add_photos: "Añadir imágenes en miniatura y fotos a una cuenta de Gravatar para su correo electrónico para elegir una imagen."
|
||||
gravatar_add_more_photos: "Añada más fotos a su cuenta de Gravatar para accederlas aquí."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de Email"
|
||||
email_announcements: "Noticias"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
contributor_emails: "Emails Clase Contribuyente"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
victory_sign_up: "Registrate para recibir actualizaciones"
|
||||
victory_sign_up_poke: "¿Quieres recibir las ultimas noticias por correo? ¡Crea una cuenta gratuita y te mantendremos informado!"
|
||||
victory_rate_the_level: "Valora el nivel: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jugar Próximo Nivel"
|
||||
victory_go_home: "Ir al Inicio"
|
||||
victory_review: "¡Cuéntanos más!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
campaign_player_created: "Creaciones de los Jugadores"
|
||||
campaign_player_created_description: "... en las que luchas contra la creatividad de tus compañeros <a href=\"/contribute#artisa\">Magos Artesanos</a>."
|
||||
level_difficulty: "Dificultad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contacta con CodeCombat"
|
||||
|
@ -110,8 +111,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# spell: "Spell"
|
||||
boots: "Botas"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
saturation: "Saturación"
|
||||
lightness: "Brillo"
|
||||
|
||||
account_settings:
|
||||
title: "Ajustes de la cuenta"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
wizard_tab: "Mago"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos electrónicos"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Selecciona una foto de Gravatar para usar"
|
||||
gravatar_add_photos: "Añade fotos a la cuenta de Gravatar asociada a tu correo electrónico para elegir la imagen."
|
||||
gravatar_add_more_photos: "Añade más fotos a tu cuenta de Gravatar para tener acceso a ellas aquí."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de correo electrónico"
|
||||
email_announcements: "Noticias"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Recibe notificaciones periódicas en tu cuenta."
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
contributor_emails: "Correos para colaboradores"
|
||||
|
@ -144,11 +147,11 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
account_profile:
|
||||
edit_settings: "Ajustes"
|
||||
profile_for_prefix: "Perfil de "
|
||||
# profile_for_suffix: ""
|
||||
profile_for_suffix: ""
|
||||
profile: "Perfil"
|
||||
user_not_found: "No se encontró al usuario. ¿Comprueba la URL?"
|
||||
gravatar_not_found_mine: "No podemos encontrar el perfil asociado con:"
|
||||
# gravatar_not_found_email_suffix: "."
|
||||
gravatar_not_found_email_suffix: "."
|
||||
gravatar_signup_prefix: "¡Suscribete a "
|
||||
gravatar_signup_suffix: " para ponerte en marcha!"
|
||||
gravatar_not_found_other: "Vaya, no hay un perfil asociado a la dirección de correo electrónico de esta persona."
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
victory_sign_up: "Regístrate para recibir actualizaciones."
|
||||
victory_sign_up_poke: "¿Quieres recibir las últimas noticias en tu correo electrónico? ¡Crea una cuente gratuita y te mantendremos informado!"
|
||||
victory_rate_the_level: "Puntúa este nivel: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jugar el siguiente nivel"
|
||||
victory_go_home: "Ir a Inicio"
|
||||
victory_review: "¡Cuéntanos más!"
|
||||
|
@ -202,7 +208,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
spell_saved: "Hechizo guardado"
|
||||
# skip_tutorial: "Skip (esc)"
|
||||
|
||||
# admin:
|
||||
admin:
|
||||
# av_title: "Admin Views"
|
||||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Usuarios"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
contact_us: "¡Contacta con nosotros!"
|
||||
hipchat_prefix: "También puedes encontrarnos en nuestra"
|
||||
hipchat_url: "sala de HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "¿Algunas opciones?"
|
||||
level_tab_thangs: "Objetos"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
level_components_title: "Volver a Todos los Objetos"
|
||||
level_components_type: "Tipo"
|
||||
level_component_edit_title: "Editar Componente"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Editar Sistema"
|
||||
create_system_title: "Crear Nuevo Sistema"
|
||||
new_component_title: "Crear Nuevo Componente"
|
||||
new_component_field_system: "Sistema"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vista preliminar"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
body: "Cuerpo"
|
||||
version: "Versión"
|
||||
commit_msg: "Mensaje de Asignación o Commit"
|
||||
# history: "History"
|
||||
version_history_for: "Historial de las versiones de: "
|
||||
# result: "Result"
|
||||
results: "Resultados"
|
||||
description: "Descripción"
|
||||
or: "o"
|
||||
email: "Correo electrónico"
|
||||
# password: "Password"
|
||||
message: "Mensaje"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "¿Qué es CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
more_about_adventurer: "Aprende más sobre cómo convertirte en un bravo Aventurero"
|
||||
adventurer_subscribe_desc: "Recibe correos cuando haya nuevos niveles para testar."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
scribe_introduction_pref: "CodeCombat no será solo un montón de niveles. También será una fuente de conocimientos, una wiki de conceptos de programación a la que los niveles se engancharan. De esa forma, en lugar de que cada Artesano tenga que describir en detalle qué es un operador de comparación, podrá simplemente enlazar el nivel al Artículo que los describe y que ya ha sido escrito para edificación del jugador. Algo en la línea de lo que la "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: " ha construido. Si tu idea de diversión es articular los conceptos de la programación de una forma sencilla, entonces esta clase es para ti."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
ambassador_title_description: "(Soporte)"
|
||||
counselor_title: "Consejero"
|
||||
counselor_title_description: "(Experto/Profesor)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
saving: "Guardando..."
|
||||
sending: "Enviando..."
|
||||
cancel: "Cancelar"
|
||||
# save: "Guardar"
|
||||
save: "Guardar"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
delay_5_sec: "5 segundos"
|
||||
|
@ -31,15 +31,15 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
about: "Sobre"
|
||||
contact: "Contacto"
|
||||
twitter_follow: "Seguir"
|
||||
# employers: "Empleados"
|
||||
employers: "Empleados"
|
||||
|
||||
# versions:
|
||||
# save_version_title: "Guardar Nueva Versión"
|
||||
# new_major_version: "New Major Version"
|
||||
# cla_prefix: "Para poder guardar los cambios, primero debes aceptar nuestra"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
# cla_agree: "ACEPTO"
|
||||
versions:
|
||||
save_version_title: "Guardar Nueva Versión"
|
||||
new_major_version: "New Major Version"
|
||||
cla_prefix: "Para poder guardar los cambios, primero debes aceptar nuestra"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
cla_agree: "ACEPTO"
|
||||
|
||||
login:
|
||||
sign_up: "Crear Cuenta"
|
||||
|
@ -47,12 +47,12 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
log_out: "Cerrar Sesión"
|
||||
recover: "recuperar cuenta"
|
||||
|
||||
# recover:
|
||||
# recover_account_title: "Recuperar cuenta"
|
||||
# send_password: "Enviar contraseña olvidada"
|
||||
recover:
|
||||
recover_account_title: "Recuperar cuenta"
|
||||
send_password: "Enviar contraseña olvidada"
|
||||
|
||||
signup:
|
||||
# create_account_title: "Crea una cuenta para guardar el progreso"
|
||||
create_account_title: "Crea una cuenta para guardar el progreso"
|
||||
description: "Es gratis. Solo necesitas un par de cosas y estarás listo para comenzar:"
|
||||
email_announcements: "Recibe noticias por email"
|
||||
coppa: "más de 13 años o fuera de los Estados Unidos"
|
||||
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
campaign_player_created: "Creados-Por-Jugadores"
|
||||
campaign_player_created_description: "... en los que luchas contra la creatividad de tus compañeros <a href=\"/contribute#artisan\">Hechiceros Artesanales</a>."
|
||||
level_difficulty: "Dificultad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contacta a CodeCombat"
|
||||
|
@ -101,17 +102,17 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
learn_more: "Aprende más sobre ser un Diplomático"
|
||||
subscribe_as_diplomat: "Suscribete como un Diplomático"
|
||||
|
||||
# wizard_settings:
|
||||
# title: "Configuración del mago"
|
||||
# customize_avatar: "Personaliza tu avatar"
|
||||
# clothes: "Ropa"
|
||||
# trim: "Trim"
|
||||
# cloud: "Nube"
|
||||
# spell: "Spell"
|
||||
# boots: "Botas"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturación"
|
||||
# lightness: "Brillo"
|
||||
wizard_settings:
|
||||
title: "Configuración del mago"
|
||||
customize_avatar: "Personaliza tu avatar"
|
||||
clothes: "Ropa"
|
||||
trim: "Trim"
|
||||
cloud: "Nube"
|
||||
spell: "Spell"
|
||||
boots: "Botas"
|
||||
hue: "Hue"
|
||||
saturation: "Saturación"
|
||||
lightness: "Brillo"
|
||||
|
||||
account_settings:
|
||||
title: "Configuración de la Cuenta"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
wizard_tab: "Hechicero"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Seleccione que foto de Gravatar usar"
|
||||
gravatar_add_photos: "Añadir imágenes en miniatura y fotos a una cuenta de Gravatar para su correo electrónico para elegir una imagen."
|
||||
gravatar_add_more_photos: "Añada más fotos a su cuenta de Gravatar para accederlas aquí."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de Email"
|
||||
email_announcements: "Noticias"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
contributor_emails: "Correos Para Colaboradores"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
victory_sign_up: "Regístrate para recibir actualizaciones."
|
||||
victory_sign_up_poke: "¿Buscas recivir las últimas noticias en tu email? Create una cuente gratuita y recibe la correspondencia."
|
||||
victory_rate_the_level: "Puntúa este nivel: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jugar el siguiente nivel"
|
||||
victory_go_home: "Ir a Inicio"
|
||||
victory_review: "¡Cuéntanos más!"
|
||||
|
@ -212,7 +218,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# u_title: "User List"
|
||||
# lg_title: "Latest Games"
|
||||
|
||||
# editor:
|
||||
editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
# main_description: "Build your own levels, campaigns, units and educational content. We provide all the tools you need!"
|
||||
# article_title: "Article Editor"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -234,7 +242,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# level_tab_thangs_title: "Current Thangs"
|
||||
# level_tab_thangs_conditions: "Starting Conditions"
|
||||
# level_tab_thangs_add: "Add Thangs"
|
||||
# level_settings_title: "Ajustes"
|
||||
level_settings_title: "Ajustes"
|
||||
# level_component_tab_title: "Current Components"
|
||||
# level_component_btn_new: "Create New Component"
|
||||
# level_systems_tab_title: "Current Systems"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "o"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Mensaje"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
campaign_player_created: "ایجاد بازیکن"
|
||||
campaign_player_created_description: "... جایی که در مقابل خلاقیت نیرو هاتون قرار میگیرید <a href=\"/contribute#artisan\">جادوگران آرتیزان</a>."
|
||||
level_difficulty: "سختی: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "CodeCombatتماس با "
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
wizard_tab: "جادو"
|
||||
password_tab: "کلمه عبور"
|
||||
emails_tab: "ایمیل ها"
|
||||
# admin: "Admin"
|
||||
gravatar_select: " استفاده شود Gravatar انتخاب کنید کدام تصویر"
|
||||
gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "یا"
|
||||
email: "ایمیل"
|
||||
# password: "Password"
|
||||
message: "پیام"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
campaign_player_created: "Niveaux créés par les joueurs"
|
||||
campaign_player_created_description: "... Dans laquelle vous serez confrontés à la créativité des votres.<a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "Difficulté: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contacter CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
wizard_tab: "Magicien"
|
||||
password_tab: "Mot de passe"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Sélectionnez la photo Gravatar à utiliser"
|
||||
gravatar_add_photos: "Ajouter des vignettes et des photos sur un compte Gravatar pour votre e-mail pour choisir une image."
|
||||
gravatar_add_more_photos: "Ajouter plus de photos à votre compte Gravatar pour y accéder ici."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
new_password_verify: "Vérifier"
|
||||
email_subscriptions: "Abonnements"
|
||||
email_announcements: "Annonces"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Recevoir des notifications périodiques sur votre compte."
|
||||
email_announcements_description: "Recevoir des mails sur les dernières actualités et sur le développement de CodeCombat."
|
||||
contributor_emails: "Emails des contributeurs"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
victory_sign_up: "Inscrivez-vous pour recevoir les mises à jour"
|
||||
victory_sign_up_poke: "Vous voulez recevoir les dernières actualités par mail? Créez un compte gratuitement et nous vous tiendrons informés!"
|
||||
victory_rate_the_level: "Notez ce niveau: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jouer au prochain niveau"
|
||||
victory_go_home: "Retourner à l'accueil"
|
||||
victory_review: "Dites-nous en plus!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
contact_us: "contactez nous!"
|
||||
hipchat_prefix: "Vous pouvez aussi nous trouver dans notre "
|
||||
hipchat_url: "conversation HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Quelques options?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
level_components_title: "Retourner à tous les Thangs"
|
||||
level_components_type: "Type"
|
||||
level_component_edit_title: "Éditer le composant"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Éditer le système"
|
||||
create_system_title: "Créer un nouveau système"
|
||||
new_component_title: "Créer un nouveau composant"
|
||||
new_component_field_system: "Système"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prévisualiser"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
body: "Corps"
|
||||
version: "Version"
|
||||
commit_msg: "Message de mise à jour"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
results: "Résultats"
|
||||
description: "Description"
|
||||
or: "ou"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Qui est CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
more_about_adventurer: "En apprendre plus sur devenir un brave Aventurier"
|
||||
adventurer_subscribe_desc: "Recevoir un email lorsqu'il y a de nouveaux niveaux à tester."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
scribe_introduction_pref: "CodeCombat n'est pas seulement un ensemble de niveaux. Il contiendra aussi des ressources pour la connaissance, un wiki des concepts de programmation que les niveaux pourront illustrer. Dans ce but, chaque Artisan pourra, au lieu d'avoir à décrire en détail ce qu'est un opérateur de comparaison, seulement lier son niveau à l'article qui le décrit et qui a été écrit pour aider les joueurs. Quelque chose dans le sens de ce que le "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: " a développé. Si votre définition de l'amusement passe par le format Markdown, alors cette classe est pour vous."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
ambassador_title_description: "(Aide)"
|
||||
counselor_title: "Conseiller"
|
||||
counselor_title_description: "(Expert/Professeur)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
campaign_player_created: "Játékosok pályái"
|
||||
campaign_player_created_description: "...melyekben <a href=\"/contribute#artisan\">Művészi Varázsló</a> társaid ellen kűzdhetsz."
|
||||
level_difficulty: "Nehézség: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Lépj kapcsolatba velünk"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
wizard_tab: "Varázsló"
|
||||
password_tab: "Jelszó"
|
||||
emails_tab: "Levelek"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Válassz egy Gravatar képet!"
|
||||
gravatar_add_photos: "Adj képeket a Gravatar fiókodhoz"
|
||||
gravatar_add_more_photos: "Adj több képet a Gravatar fiókodhoz, hogy itt is elérd őket"
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
new_password_verify: "Mégegyszer"
|
||||
email_subscriptions: "Hírlevél feliratkozások"
|
||||
email_announcements: "Bejelentések"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Szeretnél levelet kapni a legújabb fejlesztéseinkről?"
|
||||
contributor_emails: "Hozzájárulóknak szóló levelek"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
victory_sign_up: "Regisztrálj a friss infókért"
|
||||
victory_sign_up_poke: "Szeretnéd, ha levelet küldenénk neked az újításokról? Regisztrálj ingyen egy fiókot, és nem maradsz le semmirtől!"
|
||||
victory_rate_the_level: "Értékeld a pályát: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Következő pálya"
|
||||
victory_go_home: "Vissza a kezdőoldalra"
|
||||
victory_review: "Mondd el a véleményedet!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
contact_us: "lépj kapcsolatba velünk!"
|
||||
hipchat_prefix: "Megtalálhatsz bennünket a "
|
||||
hipchat_url: "HipChat szobában."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Néhány beállítás?"
|
||||
level_tab_thangs: "Eszközök"
|
||||
level_tab_scripts: "Kódok"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
level_components_title: "Vissza az összes eszközhöz"
|
||||
level_components_type: "Típus"
|
||||
level_component_edit_title: "Komponens szerkesztése"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Rendszer szerkesztése"
|
||||
create_system_title: "Új rendszer készítése"
|
||||
new_component_title: "Új komponens készítése"
|
||||
new_component_field_system: "Rendszer"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Előnézet"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
commit_msg: "Megjegyzés"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "vagy "
|
||||
email: "Email cím"
|
||||
# password: "Password"
|
||||
message: "Üzenet"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
campaign_player_created: "Creati dai giocatori"
|
||||
campaign_player_created_description: "... nei quali affronterai la creatività dei tuoi compagni <a href=\"/contribute#artisan\">Stregoni Artigiani</a>."
|
||||
level_difficulty: "Difficoltà: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contatta CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
wizard_tab: "Stregone"
|
||||
password_tab: "Password"
|
||||
emails_tab: "Email"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Seleziona quale foto di Gravatar usare"
|
||||
gravatar_add_photos: "Aggiungi delle immagini all'account di Gravatar per la tua email per scegliere un'immagine."
|
||||
gravatar_add_more_photos: "Aggiungi più foto al tuo account di Gravatar per vederle qui."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
new_password_verify: "Verifica"
|
||||
email_subscriptions: "Sottoscrizioni email"
|
||||
email_announcements: "Annunci"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Ricevi email con le ultime novità e sviluppi a CodeCombat."
|
||||
contributor_emails: "Email dei collaboratori"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
victory_sign_up: "Registrati per gli aggiornamenti"
|
||||
victory_sign_up_poke: "Vuoi ricevere le ultime novità per email? Crea un account gratuito e ti terremo aggiornato!"
|
||||
victory_rate_the_level: "Vota il livello: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Gioca il prossimo livello"
|
||||
victory_go_home: "Torna alla pagina iniziale"
|
||||
victory_review: "Dicci di più!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
contact_us: "scrivici!"
|
||||
hipchat_prefix: "Ci puoi anche trovare nella nostra"
|
||||
hipchat_url: "stanza HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Opzioni??"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Script"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
level_components_title: "Torna all'elenco thangs"
|
||||
level_components_type: "Tipo"
|
||||
level_component_edit_title: "Modifica componente"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Modifica sistema"
|
||||
create_system_title: "Crea nuovo sistema"
|
||||
new_component_title: "Crea nuovo componente"
|
||||
new_component_field_system: "Sistema"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Anteprima"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
body: "Testo"
|
||||
version: "Versione"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
results: "Risultati"
|
||||
description: "Descrizione"
|
||||
or: "o"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Messaggio"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Chi c'è inCodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
more_about_adventurer: "Leggi di più su cosa vuol dire diventare un coraggioso Avventuriero"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
scribe_introduction_url_mozilla: "Rete di sviluppo di Mozilla"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "italiano", englishDescription: "Italian", t
|
|||
ambassador_title_description: "(Supporto)"
|
||||
counselor_title: "Consigliere"
|
||||
counselor_title_description: "(Esperto/Insegnante)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "難易度: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "お問い合わせ"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
wizard_tab: "魔法使い"
|
||||
password_tab: "パスワード"
|
||||
emails_tab: "メール"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Gravatar"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
new_password_verify: "新パスワードを再入力"
|
||||
email_subscriptions: "ニュースレターの購読"
|
||||
email_announcements: "お知らせ"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "CodeCombatの最新のニュースや進展をメールで受け取る"
|
||||
contributor_emails: "開発を手伝ってくれる人向けのメール"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
victory_sign_up: "進行状況を保存するにはアカウント登録をしてください"
|
||||
victory_sign_up_poke: "あなたのコードを保存してみませんか? 無料アカウント登録!"
|
||||
victory_rate_the_level: "このレベルの評価: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "次のレベル"
|
||||
victory_go_home: "ホームに戻る"
|
||||
victory_review: "フィードバック"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
ambassador_title_description: "(サポート)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "atau"
|
||||
email: "Emel"
|
||||
# password: "Password"
|
||||
message: "Mesej"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
campaign_player_created: "Spiller-Lagde"
|
||||
campaign_player_created_description: "... hvor du kjemper mot kreativiteten til en av dine medspillende <a href=\"/contribute#artisan\">Artisan Trollmenn</a>."
|
||||
level_difficulty: "Vanskelighetsgrad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontakt CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
wizard_tab: "Trollmann"
|
||||
password_tab: "Passord"
|
||||
emails_tab: "Epost"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Velg hvilket Gravatar bilde du ønsker å bruke"
|
||||
gravatar_add_photos: "Legg til miniatyrbilder og bildertil en Gravatar konto for at du skal kunne velge et bilde for din epost."
|
||||
gravatar_add_more_photos: "Legg til flere bilder til din Gravatar konto for å kunne aksessere dem her."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
new_password_verify: "Verifiser"
|
||||
email_subscriptions: "Epost Abonnement"
|
||||
email_announcements: "Kunngjøringer"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Få epost om siste nytt og utvikling fra CodeCombat."
|
||||
contributor_emails: "Contributor Klasse Epost"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
victory_sign_up: "Tegn deg på for Oppdateringer"
|
||||
victory_sign_up_poke: "Vil du ha siste nytt på epost? Opprett en gratis konto, så vil vi holde deg oppdatert!"
|
||||
victory_rate_the_level: "Bedøm nivået: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Spill Neste Nivå"
|
||||
victory_go_home: "Gå Hjem"
|
||||
victory_review: "Fortell oss mer!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "eller"
|
||||
email: "Epost"
|
||||
# password: "Password"
|
||||
message: "Melding"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
campaign_player_created: "Door-spelers-gemaakt"
|
||||
campaign_player_created_description: "... waarin je ten strijde trekt tegen de creativiteit van andere <a href=\"/contribute#artisan\">Ambachtelijke Tovenaars</a>."
|
||||
level_difficulty: "Moeilijkheidsgraad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contact opnemen met CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
wizard_tab: "Tovenaar"
|
||||
password_tab: "Wachtwoord"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Selecteer welke Gravatar foto je wilt gebruiken"
|
||||
gravatar_add_photos: "Voeg thumbnails en foto's toe aan je Gravatar account, gekoppeld aan jouw email-adres, om een afbeelding te kiezen."
|
||||
gravatar_add_more_photos: "Voeg meer afbeeldingen toe aan je Gravatar account om ze hier te gebruiken."
|
||||
|
@ -178,6 +180,9 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
victory_sign_up: "Schrijf je in om je progressie op te slaan"
|
||||
victory_sign_up_poke: "Wil je jouw code opslaan? Maak een gratis account aan!"
|
||||
victory_rate_the_level: "Beoordeel het level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Speel Volgend Level"
|
||||
victory_go_home: "Ga naar Home"
|
||||
victory_review: "Vertel ons meer!"
|
||||
|
@ -226,6 +231,8 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
contact_us: "contacteer ons!"
|
||||
hipchat_prefix: "Je kan ons ook vinden in ons"
|
||||
hipchat_url: "(Engelstalig) HipChat kanaal."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Enkele opties?"
|
||||
level_tab_thangs: "Elementen"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -274,10 +281,12 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
description: "Beschrijving"
|
||||
or: "of"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Bericht"
|
||||
code: "Code"
|
||||
ladder: "Ladder"
|
||||
when: "Wanneer"
|
||||
# opponent: "Opponent"
|
||||
rank: "Rang"
|
||||
score: "Score"
|
||||
win: "Win"
|
||||
|
@ -422,7 +431,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
more_about_adventurer: "Leer meer over hoe je een dappere avonturier kunt worden."
|
||||
adventurer_subscribe_desc: "Ontvang e-mails wanneer er nieuwe levels zijn die getest moeten worden."
|
||||
scribe_summary_pref: "CodeCombat is meer dan slechts een aantal levels, het zal ook een bron van kennis kennis zijn en een wiki met programmeerconcepten waar levels op in kunnen gaan. Op die manier zal een Ambachtslied een link kunnen geven naar een artikel wat past bij een level. Net zoiets als het "
|
||||
scribe_summary_sufx: " heeft gebouwd. Als jij het leuk vindt programmeerconcepten uit te leggen, dan is deze klasse iets voor jou."
|
||||
scribe_summary_suf: " heeft gebouwd. Als jij het leuk vindt programmeerconcepten uit te leggen, dan is deze klasse iets voor jou."
|
||||
scribe_introduction_pref: "CodeCombat is meer dan slechts een aantal levels, het zal ook een bron van kennis kennis zijn en een wiki met programmeerconcepten waar levels op in kunnen gaan. Op die manier zal elk Ambachtslied niet in detail hoeven uit te leggen wat een vergelijkingsoperator is, maar een link kunnen geven naar een artikel wat deze informatie bevat voor de speler. Net zoiets als het "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: " heeft gebouwd. Als jij het leuk vindt om programmeerconcepten uit te leggen in Markdown-vorm, dan is deze klasse wellicht iets voor jou."
|
||||
|
@ -430,7 +439,6 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
contact_us_url: "Contacteer ons"
|
||||
scribe_join_description: "vertel ons wat over jezelf, je ervaring met programmeren en over wat voor soort dingen je graag zou schrijven. Verder zien we wel!"
|
||||
more_about_scribe: "Leer meer over het worden van een ijverige Klerk."
|
||||
|
||||
scribe_subscribe_desc: "Ontvang e-mails met aankondigingen over het schrijven van artikelen."
|
||||
diplomat_summary: "Er is grote interesse in CodeCombat in landen waar geen Engels wordt gesproken! We zijn op zoek naar vertalers wie tijd willen spenderen aan het vertalen van de site's corpus aan woorden zodat CodeCombat zo snel mogelijk toegankelijk wordt voor heel de wereld. Als jij wilt helpen met CodeCombat internationaal maken, dan is dit de klasse voor jou."
|
||||
diplomat_introduction_pref: "Dus, als er iets is wat we geleerd hebben van de "
|
||||
|
@ -443,6 +451,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
more_about_diplomat: "Leer meer over het worden van een geweldige Diplomaat"
|
||||
diplomat_subscribe_desc: "Ontvang e-mails over i18n ontwikkelingen en levels om te vertalen."
|
||||
ambassador_summary: "We proberen een gemeenschap te bouwen en elke gemeenschap heeft een supportteam nodig wanneer er problemen zijn. We hebben chats, e-mails en sociale netwerken zodat onze gebruikers het spel kunnen leren kennen. Als jij mensen wilt helpen betrokken te raken, plezier te hebben en wat te leren programmeren, dan is dit wellicht de klasse voor jou."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
ambassador_attribute_1: "Communicatieskills. Problemen die spelers hebben kunnen identificeren en ze helpen deze op te lossen. Verder zul je ook de rest van ons geïnformeerd houden over wat de spelers zeggen, wat ze leuk vinden, wat ze minder vinden en waar er meer van moet zijn!"
|
||||
ambassador_join_desc: "vertel ons wat over jezelf, wat je hebt gedaan en wat je graag zou doen. We zien verder wel!"
|
||||
ambassador_join_note_strong: "Opmerking"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
campaign_player_created: "Spiller-Lagde"
|
||||
campaign_player_created_description: "... hvor du kjemper mot kreativiteten til en av dine medspillende <a href=\"/contribute#artisan\">Artisan Trollmenn</a>."
|
||||
level_difficulty: "Vanskelighetsgrad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontakt CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
wizard_tab: "Trollmann"
|
||||
password_tab: "Passord"
|
||||
emails_tab: "Epost"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Velg hvilket Gravatar bilde du ønsker å bruke"
|
||||
gravatar_add_photos: "Legg til miniatyrbilder og bildertil en Gravatar konto for at du skal kunne velge et bilde for din epost."
|
||||
gravatar_add_more_photos: "Legg til flere bilder til din Gravatar konto for å kunne aksessere dem her."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
new_password_verify: "Verifiser"
|
||||
email_subscriptions: "Epost Abonnement"
|
||||
email_announcements: "Kunngjøringer"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Få epost om siste nytt og utvikling fra CodeCombat."
|
||||
contributor_emails: "Contributor Klasse Epost"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
victory_sign_up: "Tegn deg på for Oppdateringer"
|
||||
victory_sign_up_poke: "Vil du ha siste nytt på epost? Opprett en gratis konto, så vil vi holde deg oppdatert!"
|
||||
victory_rate_the_level: "Bedøm nivået: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Spill Neste Nivå"
|
||||
victory_go_home: "Gå Hjem"
|
||||
victory_review: "Fortell oss mer!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "eller"
|
||||
email: "Epost"
|
||||
# password: "Password"
|
||||
message: "Melding"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
module.exports = nativeDescription: "język polski", englishDescription: "Polish", translation:
|
||||
common:
|
||||
loading: "Ładowanie..."
|
||||
saving: "Zapisuję..."
|
||||
saving: "Zapisywanie..."
|
||||
sending: "Wysyłanie…"
|
||||
cancel: "Anuluj"
|
||||
# save: "Save"
|
||||
save: "Zapisz"
|
||||
delay_1_sec: "1 sekunda"
|
||||
delay_3_sec: "3 sekunda"
|
||||
delay_5_sec: "5 sekunda"
|
||||
delay_3_sec: "3 sekundy"
|
||||
delay_5_sec: "5 sekund"
|
||||
manual: "Ręcznie"
|
||||
# fork: "Fork"
|
||||
fork: "Fork"
|
||||
play: "Graj"
|
||||
|
||||
modal:
|
||||
close: "Zamknij"
|
||||
okay: "Ok"
|
||||
okay: "OK"
|
||||
|
||||
not_found:
|
||||
page_not_found: "Strona nie istnieje"
|
||||
|
@ -27,131 +27,134 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
admin: "Admin"
|
||||
home: "Główna"
|
||||
contribute: "Współpraca"
|
||||
legal: "Dewiza"
|
||||
legal: "Nota prawna"
|
||||
about: "O nas"
|
||||
contact: "Kontakt"
|
||||
twitter_follow: "Podążaj"
|
||||
# employers: "Employers"
|
||||
twitter_follow: "Subskrybuj"
|
||||
employers: "Pracodawcy"
|
||||
|
||||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
# cla_agree: "I AGREE"
|
||||
versions:
|
||||
save_version_title: "Zapisz nową wersję"
|
||||
new_major_version: "Nowa wersja główna"
|
||||
cla_prefix: "Aby zapisać zmiany, musisz najpierw zaakceptować naszą"
|
||||
cla_url: "umowę licencyjną dla współtwórców (CLA)"
|
||||
cla_suffix: "."
|
||||
cla_agree: "AKCEPTUJĘ"
|
||||
|
||||
login:
|
||||
sign_up: "Stwórz Konto"
|
||||
sign_up: "Stwórz konto"
|
||||
log_in: "Zaloguj się"
|
||||
log_out: "Wyloguj się"
|
||||
recover: "odzyskaj konto"
|
||||
|
||||
recover:
|
||||
recover_account_title: "odzyskaj konto"
|
||||
# send_password: "Send Recovery Password"
|
||||
recover_account_title: "Odzyskaj konto"
|
||||
send_password: "Wyślij hasło tymczasowe"
|
||||
|
||||
signup:
|
||||
# create_account_title: "Create Account to Save Progress"
|
||||
create_account_title: "Stwórz konto, aby zapisać postępy"
|
||||
description: "Poświęć chwilę na bezpłatne założenie nowego konta."
|
||||
email_announcements: "Odbieraj powiadomienia na email"
|
||||
coppa: "13+ lub jesteś spoza USA"
|
||||
coppa_why: "(Dlaczego?)"
|
||||
creating: "Tworzenie konta"
|
||||
email_announcements: "Otrzymuj powiadomienia na e-mail"
|
||||
coppa: "Mam powyżej 13 lat lub jestem spoza USA "
|
||||
coppa_why: "(dlaczego?)"
|
||||
creating: "Tworzenie konta..."
|
||||
sign_up: "Zarejestruj"
|
||||
log_in: "zaloguj się używając hasła"
|
||||
|
||||
home:
|
||||
slogan: "Naucz się JavaScript grając."
|
||||
slogan: "Naucz się JavaScript grając"
|
||||
no_ie: "CodeCombat nie działa na Internet Explorer 9 lub starszym. Przepraszamy!"
|
||||
no_mobile: "CodeCombat nie został zaprojektowany dla użądzeń przenośnych, więc może nie działać!"
|
||||
no_mobile: "CodeCombat nie został zaprojektowany dla użądzeń przenośnych więc może nie działać!"
|
||||
play: "Graj"
|
||||
|
||||
play:
|
||||
choose_your_level: "Wybierz poziom"
|
||||
adventurer_prefix: "Możesz wybrać jeden z poniższych poziomów, lub omówić to na "
|
||||
adventurer_prefix: "Możesz wybrać jeden z poniższych poziomów lub omówić to na "
|
||||
adventurer_forum: "forum podróżników"
|
||||
adventurer_suffix: "."
|
||||
campaign_beginner: "Kampania dla początkujących"
|
||||
campaign_beginner_description: "... W której nauczysz się magii programowania"
|
||||
campaign_dev: "Losowe Trudniejsze Poziomy"
|
||||
campaign_beginner_description: "... w której nauczysz się magii programowania"
|
||||
campaign_dev: "Losowe trudniejsze poziomy"
|
||||
campaign_dev_description: "... w których nauczysz się interfejsu robiąc coś trudniejszego."
|
||||
campaign_multiplayer: "Pola Walki Dla Wielu Graczy"
|
||||
campaign_multiplayer_description: "W których ścierasz się z innymi graczami. "
|
||||
campaign_player_created: "Stworzone Przez Graczy"
|
||||
campaign_multiplayer: "Pola walki dla wielu graczy"
|
||||
campaign_multiplayer_description: "... w których konkurujesz z innymi graczami."
|
||||
campaign_player_created: "Stworzone przez graczy"
|
||||
campaign_player_created_description: "... w których walczysz przeciwko dziełom <a href=\"/contribute#artisan\">Czarodziejów Rękodzielnictwa</a>"
|
||||
level_difficulty: "Poziom trudności: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontakt z CodeCombat"
|
||||
welcome: "Miło Cię widzieć! Użyj tego formularza żeby wysłać do nas wiadomość. "
|
||||
contribute_prefix: "Jeśli jesteś zainteresowany wsparciem projektu, zapoznaj się z naszą"
|
||||
welcome: "Miło Cię widzieć! Użyj tego formularza, żeby wysłać do nas wiadomość. "
|
||||
contribute_prefix: "Jeśli jesteś zainteresowany wsparciem projektu, zapoznaj się z naszą "
|
||||
contribute_page: "stroną współpracy"
|
||||
contribute_suffix: "!"
|
||||
forum_prefix: "W sprawach ogólnych skorzystaj z"
|
||||
forum_prefix: "W sprawach ogólnych, skorzystaj z "
|
||||
forum_page: "naszego forum"
|
||||
forum_suffix: "."
|
||||
send: "Wyślij Wiadomość"
|
||||
send: "Wyślij wiadomość"
|
||||
|
||||
diplomat_suggestion:
|
||||
title: "Pomóż w tłumaczeniu CodeCombat!"
|
||||
sub_heading: "Potrzebujemy twoich zdolności językowych."
|
||||
pitch_body: "Tworzymy CodeCombat w języku angielskim, Jadnak nasi gracze pochodzą z całego świata. Wielu z nich chciałoby zagrać zagrać w swoim języku, ponieważ nie znają angielskiego, więc jeśli znasz oba języki zostań Dyplomatą i pomóż w tłumaczeniu strony CodeCombat, i gry."
|
||||
pitch_body: "Tworzymy CodeCombat w języku angielskim, jednak nasi gracze pochodzą z całego świata. Wielu z nich chciałoby zagrać zagrać w swoim języku, ponieważ nie znają angielskiego, więc jeśli znasz oba języki zostań Dyplomatą i pomóż w tłumaczeniu strony CodeCombat, jak i samej gry."
|
||||
missing_translations: "Dopóki nie przetłumaczymy wszystkiego na polski, będziesz widział niektóre napisy w języku angielskim."
|
||||
learn_more: "Dowiedz się więcej o Dyplomatach."
|
||||
subscribe_as_diplomat: "Dołącz do dyplomatów"
|
||||
learn_more: "Dowiedz się więcej o Dyplomatach"
|
||||
subscribe_as_diplomat: "Dołącz do Dyplomatów"
|
||||
|
||||
# wizard_settings:
|
||||
# title: "Wizard Settings"
|
||||
# customize_avatar: "Customize Your Avatar"
|
||||
# clothes: "Clothes"
|
||||
# trim: "Trim"
|
||||
# cloud: "Cloud"
|
||||
# spell: "Spell"
|
||||
# boots: "Boots"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
wizard_settings:
|
||||
title: "Ustawienia czarodzieja"
|
||||
customize_avatar: "Personalizuj swój awatar"
|
||||
clothes: "Ubrania"
|
||||
trim: "Dodatki"
|
||||
cloud: "Chmura"
|
||||
spell: "Zaklęcie"
|
||||
boots: "Buty"
|
||||
hue: "Odcień"
|
||||
saturation: "Nasycenie"
|
||||
lightness: "Jasność"
|
||||
|
||||
account_settings:
|
||||
title: "Ustawienia Konta"
|
||||
not_logged_in: "Zaloguj się lub stwórz konto by dostosować ustawienia."
|
||||
not_logged_in: "Zaloguj się lub stwórz konto, by dostosować ustawienia."
|
||||
autosave: "Zmiany zapisują się automatycznie"
|
||||
me_tab: "Ja"
|
||||
picture_tab: "Zdjęcie"
|
||||
wizard_tab: "Czarodziej"
|
||||
password_tab: "Hasło"
|
||||
emails_tab: "Powiadomienia"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Wybierz fotografię z Gravatar"
|
||||
gravatar_add_photos: "Dodaj zdjęcia i miniatury do swojego konta Gravatar by móc wybrać zdjęcie."
|
||||
gravatar_add_more_photos: "Dodaj więcej zdjęć do swojego konta Gravatar, by móc je użyć tutaj."
|
||||
gravatar_add_photos: "Dodaj zdjęcia i miniatury do swojego konta Gravatar, by móc wybrać zdjęcie."
|
||||
gravatar_add_more_photos: "Dodaj więcej zdjęć do swojego konta Gravatar, by móc ich użyć."
|
||||
wizard_color: "Kolor ubrań czarodzieja"
|
||||
new_password: "Nowe hasło"
|
||||
new_password_verify: "Zweryfikuj"
|
||||
email_subscriptions: "Powiadomienia email"
|
||||
email_announcements: "Ogłoszenia"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Otrzymuj okresowe powiadomienia dotyczące twojego konta."
|
||||
email_announcements_description: "Otrzymuj powiadomienia o najnowszych wiadomościach i zmianach w CodeCombat."
|
||||
contributor_emails: "Powiadomienia asystentów"
|
||||
contribute_prefix: "Szukamy osób, które chciałyby do nas dołączyć! Sprawdź"
|
||||
contribute_page: "stronę asystentów"
|
||||
contribute_suffix: "aby dowiedzieć się więcej."
|
||||
contribute_prefix: "Szukamy osób, które chciałyby do nas dołączyć! Sprawdź "
|
||||
contribute_page: "stronę współpracy"
|
||||
contribute_suffix: ", aby dowiedzieć się więcej."
|
||||
email_toggle: "Zmień wszystkie"
|
||||
error_saving: "Błąd zapisywania"
|
||||
saved: "Zmiany zapisane"
|
||||
password_mismatch: "Nieprawidłowe hasło"
|
||||
password_mismatch: "Hasła róznią się od siebie"
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Edytuj Ustawienia"
|
||||
edit_settings: "Edytuj ustawienia"
|
||||
profile_for_prefix: "Profil"
|
||||
# profile_for_suffix: ""
|
||||
profile_for_suffix: ""
|
||||
profile: "Profil"
|
||||
user_not_found: "Nieznaleziono użytkownika. Sprawdź odnośnik URL?"
|
||||
user_not_found: "Nie znaleziono użytkownika. Sprawdź odnośnik URL."
|
||||
gravatar_not_found_mine: "Nie udało nam się znaleźć profilu powiązanego z:"
|
||||
gravatar_not_found_email_suffix: "."
|
||||
gravatar_signup_prefix: "Utwórz konto w"
|
||||
gravatar_signup_suffix: "aby rozpocząć!"
|
||||
gravatar_not_found_other: "Niestety nie ma profilu powiązanego z tym adresem email."
|
||||
gravatar_signup_prefix: "Utwórz konto w "
|
||||
gravatar_signup_suffix: ", aby rozpocząć!"
|
||||
gravatar_not_found_other: "Niestety, nie ma profilu powiązanego z tym adresem email."
|
||||
gravatar_contact: "Kontakt"
|
||||
gravatar_websites: "Strony WWW"
|
||||
# gravatar_accounts: "As Seen On"
|
||||
|
@ -161,299 +164,359 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
level_load_error: "Nie udało się wczytać poziomu: "
|
||||
done: "Zrobione"
|
||||
grid: "Siatka"
|
||||
customize_wizard: "Spersonalizuj Czarodzieja"
|
||||
customize_wizard: "Spersonalizuj czarodzieja"
|
||||
home: "Strona główna"
|
||||
guide: "Przewodnik"
|
||||
multiplayer: "Multiplayer"
|
||||
restart: "Zacznij od nowa"
|
||||
goals: "Cele"
|
||||
action_timeline: "Oś czasu"
|
||||
click_to_select: "Kliknij jednostkę by ją zaznaczyć"
|
||||
click_to_select: "Kliknij jednostkę, by ją zaznaczyć."
|
||||
reload_title: "Przywrócić cały kod?"
|
||||
reload_really: "Czy jesteś pewien, że chcesz przywrócić kod startowy tego poziomu?"
|
||||
reload_confirm: "Przywróć cały kod"
|
||||
# victory_title_prefix: ""
|
||||
victory_title_suffix: " Zakończony"
|
||||
victory_sign_up: "Zapisz się by otrzymywać akutalności"
|
||||
victory_sign_up_poke: "Chcesz otrzymywać najnowsze wiadomości na email? Załóź darmowe konto i będziemy w kontakcie."
|
||||
victory_rate_the_level: "Oceń poziom"
|
||||
victory_play_next_level: "Zagraj w następny poziom"
|
||||
victory_title_prefix: ""
|
||||
victory_title_suffix: " ukończony"
|
||||
victory_sign_up: "Zapisz się, by zapisać postępy"
|
||||
victory_sign_up_poke: "Chcesz zapisać swój kod? Utwórz bezpłatne konto!"
|
||||
victory_rate_the_level: "Oceń poziom: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Przejdź na następny poziom"
|
||||
victory_go_home: "Powrót do strony głównej"
|
||||
victory_review: "Powiedz nam coś więcej!"
|
||||
victory_hour_of_code_done: "Skończyłeś już?"
|
||||
victory_hour_of_code_done_yes: "Tak, skończyłem moją Godzinę Kodowania."
|
||||
multiplayer_title: "Ustawienia Multiplayer"
|
||||
multiplayer_link_description: "Przekaż ten link, jeśli chcesz by ktoś do Ciebie dołączył"
|
||||
victory_hour_of_code_done_yes: "Tak, skończyłem moją Godzinę Kodu."
|
||||
multiplayer_title: "Ustawienia multiplayer"
|
||||
multiplayer_link_description: "Przekaż ten link, jeśli chcesz, by ktoś do ciebie dołączył."
|
||||
multiplayer_hint_label: "Podpowiedź:"
|
||||
multiplayer_hint: "Klikjnij link by zaznaczyć wszystko, potem wciśnij Cmd-C lub Ctrl-C by skopiować ten link."
|
||||
multiplayer_coming_soon: "Wkrótce więcej opcji Multiplayer"
|
||||
multiplayer_coming_soon: "Wkrótce więcej opcji multiplayer"
|
||||
guide_title: "Przewodnik"
|
||||
tome_minion_spells: "Czary Twojego podopiecznego"
|
||||
tome_minion_spells: "Czary twojego podopiecznego"
|
||||
tome_read_only_spells: "Czary tylko do odczytu"
|
||||
tome_other_units: "Inne jednostki"
|
||||
tome_cast_button_castable: "Rzuć czar"
|
||||
tome_cast_button_casting: "Rzucam czar"
|
||||
tome_cast_button_cast: "Rzucenie czaru"
|
||||
tome_autocast_delay: "Opóźnienie automatycznego rzucania czaru"
|
||||
tome_select_spell: "Wybierz Czar"
|
||||
tome_select_a_thang: "Wybierz kogoś do"
|
||||
tome_select_spell: "Wybierz czar"
|
||||
tome_select_a_thang: "Wybierz kogoś do "
|
||||
tome_available_spells: "Dostępne czary"
|
||||
hud_continue: "Kontynuuj (naciśnij enter)"
|
||||
# spell_saved: "Spell Saved"
|
||||
# skip_tutorial: "Skip (esc)"
|
||||
hud_continue: "Kontynuuj (Shift + spacja)"
|
||||
spell_saved: "Czar zapisany"
|
||||
skip_tutorial: "Pomiń (esc)"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
# u_title: "User List"
|
||||
# lg_title: "Latest Games"
|
||||
admin:
|
||||
av_title: "Panel administracyjny"
|
||||
av_entities_sub_title: "Podmioty"
|
||||
av_entities_users_url: "Użytkownicy"
|
||||
av_entities_active_instances_url: "Aktywne podmioty"
|
||||
av_other_sub_title: "Inne"
|
||||
av_other_debug_base_url: "Baza (do debuggingu base.jade)"
|
||||
u_title: "Lista użytkowników"
|
||||
lg_title: "Ostatnie gry"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
# main_description: "Build your own levels, campaigns, units and educational content. We provide all the tools you need!"
|
||||
# article_title: "Article Editor"
|
||||
# article_description: "Write articles that give players overviews of programming concepts which can be used across a variety of levels and campaigns."
|
||||
# thang_title: "Thang Editor"
|
||||
# thang_description: "Build units, defining their default logic, graphics and audio. Currently only supports importing Flash exported vector graphics."
|
||||
# level_title: "Level Editor"
|
||||
# level_description: "Includes the tools for scripting, uploading audio, and constructing custom logic to create all sorts of levels. Everything we use ourselves!"
|
||||
# security_notice: "Many major features in these editors are not currently enabled by default. As we improve the security of these systems, they will be made generally available. If you'd like to use these features sooner, "
|
||||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
# level_tab_settings: "Settings"
|
||||
# level_tab_components: "Components"
|
||||
# level_tab_systems: "Systems"
|
||||
# level_tab_thangs_title: "Current Thangs"
|
||||
# level_tab_thangs_conditions: "Starting Conditions"
|
||||
# level_tab_thangs_add: "Add Thangs"
|
||||
# level_settings_title: "Settings"
|
||||
# level_component_tab_title: "Current Components"
|
||||
# level_component_btn_new: "Create New Component"
|
||||
# level_systems_tab_title: "Current Systems"
|
||||
# level_systems_btn_new: "Create New System"
|
||||
# level_systems_btn_add: "Add System"
|
||||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
editor:
|
||||
main_title: "Edytory CodeCombat"
|
||||
main_description: "Stwórz własne poziomy, kampanie, jednostki i materiały edukacyjne. Zapewniamy wszystkie narzędzia, jakich będziesz potrzebował!"
|
||||
article_title: "Edytor artykułów"
|
||||
article_description: "Pisz artykuły, które dostarczą graczom wiedzy co do konceptów programistycznych, które będą mogli użyć w poziomach i kampaniach."
|
||||
thang_title: "Edytor obiektów"
|
||||
thang_description: "Twórz jednostki, definiuj ich domyślną logikę, grafiki i dźwięki. Aktualnie wspiera wyłącznie importowanie grafik wektorowych wyeksportowanych przez Flash."
|
||||
level_title: "Edytor poziomów"
|
||||
level_description: "Zawiera narzędzia do skryptowania, przesyłania dźwięków i konstruowania spersonalizowanych logik, by móc tworzyć najrozmaitsze poziomy. Wszystko to, czego sami używamy!"
|
||||
security_notice: "Wiele ważnych fukncji nie jest obecnie domyślnie włączonych we wspomnianych edytorach. Wraz z ulepszeniem zabezpieczenia tych narzędzi, staną się one dostępne publicznie. Jeśli chciałbyś użyć ich już teraz, "
|
||||
contact_us: "skontaktuj się z nami!"
|
||||
hipchat_prefix: "Możesz nas też spotkać w naszym"
|
||||
hipchat_url: "pokoju HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Trochę opcji?"
|
||||
level_tab_thangs: "Obiekty"
|
||||
level_tab_scripts: "Skrypty"
|
||||
level_tab_settings: "Ustawienia"
|
||||
level_tab_components: "Komponenty"
|
||||
level_tab_systems: "Systemy"
|
||||
level_tab_thangs_title: "Aktualne obiekty"
|
||||
level_tab_thangs_conditions: "Warunki początkowe"
|
||||
level_tab_thangs_add: "Dodoaj obiekty"
|
||||
level_settings_title: "Ustawienia"
|
||||
level_component_tab_title: "Aktualne komponenty"
|
||||
level_component_btn_new: "Stwórz nowy komponent"
|
||||
level_systems_tab_title: "Aktualne systemy"
|
||||
level_systems_btn_new: "Stwórz nowy system"
|
||||
level_systems_btn_add: "Dodaj system"
|
||||
level_components_title: "Powrót do listy obiektów"
|
||||
level_components_type: "Typ"
|
||||
level_component_edit_title: "Edytuj komponent"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Edytuj system"
|
||||
create_system_title: "Stwórz nowy system"
|
||||
new_component_title: "Stwórz nowy komponent"
|
||||
new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
# edit_article_title: "Edit Article"
|
||||
article:
|
||||
edit_btn_preview: "Podgląd"
|
||||
edit_article_title: "Edytuj artykuł"
|
||||
|
||||
general:
|
||||
# and: "and"
|
||||
name: "Imie"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# version_history_for: "Version History for: "
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
and: "i"
|
||||
name: "Imię"
|
||||
body: "Zawartość"
|
||||
version: "Wersja"
|
||||
commit_msg: "Wiadomość do commitu"
|
||||
# history: "History"
|
||||
version_history_for: "Historia wersji dla: "
|
||||
# result: "Result"
|
||||
results: "Wynik"
|
||||
description: "Opis"
|
||||
or: "lub"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Wiadomość"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
# why_codecombat: "Why CodeCombat?"
|
||||
# who_description_prefix: "together started CodeCombat in 2013. We also created "
|
||||
# who_description_suffix: "in 2008, growing it to the #1 web and iOS application for learning to write Chinese and Japanese characters."
|
||||
# who_description_ending: "Now it's time to teach people to write code."
|
||||
# why_paragraph_1: "When making Skritter, George didn't know how to program and was constantly frustrated by his inability to implement his ideas. Afterwards, he tried learning, but the lessons were too slow. His housemate, wanting to reskill and stop teaching, tried Codecademy, but \"got bored.\" Each week another friend started Codecademy, then dropped off. We realized it was the same problem we'd solved with Skritter: people learning a skill via slow, intensive lessons when what they need is fast, extensive practice. We know how to fix that."
|
||||
# why_paragraph_2: "Need to learn to code? You don't need lessons. You need to write a lot of code and have a great time doing it."
|
||||
# why_paragraph_3_prefix: "That's what programming is about. It's gotta be fun. Not fun like"
|
||||
# why_paragraph_3_italic: "yay a badge"
|
||||
# why_paragraph_3_center: "but fun like"
|
||||
# why_paragraph_3_italic_caps: "NO MOM I HAVE TO FINISH THE LEVEL!"
|
||||
# why_paragraph_3_suffix: "That's why CodeCombat is a multiplayer game, not a gamified lesson course. We won't stop until you can't stop--but this time, that's a good thing."
|
||||
# why_paragraph_4: "If you're going to get addicted to some game, get addicted to this one and become one of the wizards of the tech age."
|
||||
# why_ending: "And hey, it's free. "
|
||||
# why_ending_url: "Start wizarding now!"
|
||||
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
||||
# scott_description: "Programmer extraordinaire, software architect, kitchen wizard, and master of finances. Scott is the reasonable one."
|
||||
# nick_description: "Programming wizard, eccentric motivation mage, and upside-down experimenter. Nick can do anything and chooses to build CodeCombat."
|
||||
# jeremy_description: "Customer support mage, usability tester, and community organizer; you've probably already spoken with Jeremy."
|
||||
# michael_description: "Programmer, sys-admin, and undergrad technical wunderkind, Michael is the person keeping our servers online."
|
||||
about:
|
||||
who_is_codecombat: "Czym jest CodeCombat?"
|
||||
why_codecombat: "Dlaczego CodeCombat?"
|
||||
who_description_prefix: "założyli CodeCombat w 2013 roku. Stworzyliśmy również "
|
||||
who_description_suffix: "w roku 2008, doprowadzajac go do pierwszego miejsca wśród aplikacji do nauki zapisu chińskich i japońskich znaków zarówno wśród aplikacji internetowych, jak i aplikcji dla iOS."
|
||||
who_description_ending: "Teraz nadszedł czas, by nauczyć ludzi programowania."
|
||||
why_paragraph_1: "Podczas tworzenia Skrittera, George nie umiał programować i ciągle towarzyszyła mu frustracja - nie mógł zaimplementować swoich pomysłów. Próbował się uczyć, lecz lekcje były zbyt wolne. Jego współlokator, chcąc się przebranżowić, spróbował Codeacademy, lecz \"nudziło go to.\" Każdego tygodnia któryś z kolegów podchodził do Codeacadem, by wkrótce potem zrezygnować. Zdaliśmy sobie sprawę, że mamy do czynienia z tym samym problemem, który rozwiązaliśmy Skritterem: ludzie uczący się umiejętności poprzez powolne, ciężkie lekcje, podczas gdy potrzebują oni szybkiej, energicznej praktyki. Wiemy, jak to naprawić."
|
||||
why_paragraph_2: "Chcesz nauczyć się programowania? Nie potrzeba ci lekcji. Potrzeba ci pisania dużej ilości kodu w sposób sprawiający ci przyjemność."
|
||||
why_paragraph_3_prefix: "O to chodzi w programowaniu - musi sprawiać radość. Nie radość w stylu"
|
||||
why_paragraph_3_italic: "hura, nowa odznaka"
|
||||
why_paragraph_3_center: ", ale radości w stylu"
|
||||
why_paragraph_3_italic_caps: "NIE MAMO, MUSZĘ DOKOŃCZYĆ TEN POZIOM!"
|
||||
why_paragraph_3_suffix: "Dlatego właśnie CodeCombat to gra multiplayer, a nie kurs oparty na zgamifikowanych lekcjach. Nie przestaniemy, dopóki ty nie będziesz mógł przestać--tym razem jednak w pozytywnym sensie."
|
||||
why_paragraph_4: "Jeśli planujesz uzależnić się od jakiejś gry, uzależnij się od tej i zostań jednym z czarodziejów czasu technologii."
|
||||
why_ending: "Poza tym, to nic nie kosztuje. "
|
||||
why_ending_url: "Zostań czarodziejem już teraz!"
|
||||
george_description: "CEO, człowiek od biznesu, web designer, game designer, i mistrz wszystkich początkujących programistów."
|
||||
scott_description: "Programista niezwykły, software architect, czarodziej kuchenny i mistrz finansów. Scott to ten rozsądny."
|
||||
nick_description: "Programistyczny czarownik, ekscentryczny magik i eksperymentator pełną gębą. Nich może robić cokolwiek, a decyduje się pracować przy CodeCombat."
|
||||
jeremy_description: "Magik od kontaktów z klientami, tester użyteczności i organizator społeczności; prawdopodobnie już rozmawiałeś z Jeremym."
|
||||
michael_description: "Programista, sys-admin, cudowne dziecko studiów technicznych, Michael to osoba utrzymująca nase serwery online."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
# opensource_intro: "CodeCombat is free to play and completely open source."
|
||||
# opensource_description_prefix: "Check out "
|
||||
# github_url: "our GitHub"
|
||||
# opensource_description_center: "and help out if you like! CodeCombat is built on dozens of open source projects, and we love them. See "
|
||||
# archmage_wiki_url: "our Archmage wiki"
|
||||
# opensource_description_suffix: "for a list of the software that makes this game possible."
|
||||
# practices_title: "Respectful Best Practices"
|
||||
# practices_description: "These are our promises to you, the player, in slightly less legalese."
|
||||
# privacy_title: "Privacy"
|
||||
# privacy_description: "We will not sell any of your personal information. We intend to make money through recruitment eventually, but rest assured we will not distribute your personal information to interested companies without your explicit consent."
|
||||
# security_title: "Security"
|
||||
# security_description: "We strive to keep your personal information safe. As an open source project, our site is freely open to anyone to review and improve our security systems."
|
||||
# email_title: "Email"
|
||||
# email_description_prefix: "We will not inundate you with spam. Through"
|
||||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "Currently, CodeCombat is 100% free! One of our main goals is to keep it that way, so that as many people can play as possible, regardless of place in life. If the sky darkens, we might have to charge subscriptions or for some content, but we'd rather not. With any luck, we'll be able to sustain the company with:"
|
||||
# recruitment_title: "Recruitment"
|
||||
# recruitment_description_prefix: "Here on CodeCombat, you're going to become a powerful wizard–not just in the game, but also in real life."
|
||||
# url_hire_programmers: "No one can hire programmers fast enough"
|
||||
# recruitment_description_suffix: "so once you've sharpened your skills and if you agree, we will demo your best coding accomplishments to the thousands of employers who are drooling for the chance to hire you. They pay us a little, they pay you"
|
||||
# recruitment_description_italic: "a lot"
|
||||
# recruitment_description_ending: "the site remains free and everybody's happy. That's the plan."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
# cla_url: "CLA"
|
||||
# contributor_description_suffix: "to which you should agree before contributing."
|
||||
# code_title: "Code - MIT"
|
||||
# code_description_prefix: "All code owned by CodeCombat or hosted on codecombat.com, both in the GitHub repository or in the codecombat.com database, is licensed under the"
|
||||
legal:
|
||||
page_title: "Nota prawna"
|
||||
opensource_intro: "CodeCombat jest całkowicie darmowe i całkowicie open source."
|
||||
opensource_description_prefix: "Zajrzyj na "
|
||||
github_url: "nasz GitHub"
|
||||
opensource_description_center: "i pomóż, jeśli tylko masz ochotę! CodeCombat bazuje na dziesiątkach projektów open source - kochamy je wszystkie. Wpadnij na "
|
||||
archmage_wiki_url: "naszą wiki dla Arcymagów"
|
||||
opensource_description_suffix: ", by zobaczyć listę oprogramowania, dzięki któremu niniejsza gra może istnieć."
|
||||
practices_title: "Ludzkim językiem"
|
||||
practices_description: "Oto nasze obietnice wobec ciebie, gracza, wyrażone po polsku, bez prawniczego żargonu."
|
||||
privacy_title: "Prywatność"
|
||||
privacy_description: "Nie będziemy sprzedawać żadnych z twoich prywatnych informacji. Planujemy w pewnym momencie zarobić trochę pieniędzy dzięki rekrutacjom, ale możesz spać spokojnie - nie będziemy rozpowszechniać twoich osobistych informacji zainteresowanym firmom bez twojej jednoznacznej zgody."
|
||||
security_title: "Bezpieczeństwo"
|
||||
security_description: "Z całych sił staramy się zabezpieczyć twoje prywatne informacje. Jako że jesteśmy projektem open source, każdy może sprawdzić i ulepszyć nasz system zabezpieczeń."
|
||||
email_title: "E-mail"
|
||||
email_description_prefix: "Nie będziemy nękać cię spamem. Poprzez"
|
||||
email_settings_url: "twoje ustawienia e-mail"
|
||||
email_description_suffix: "lub poprzez linki w e-mailach, które wysyłamy, możesz zmienić swoje ustawienia i w prosty sposób wypisać się z subskrypcji w dowolnym momencie."
|
||||
cost_title: "Koszty"
|
||||
cost_description: "W tym momencie CodeCombat jest w stu procentach darmowe! Jednym z naszych głównych celów jest, by utrzymac taki stan rzeczy, aby jak najwięcej ludzi miało dostęp do gry, bez względu na ich zasobnośc. Jeśli nadejdą gorsze dni, dopuszczamy możliwość wprowadzenia płatnych subskrypcji lub pobierania opłat za część zawartości, ale wolelibyśmy, by tak się nie stało. Przy odrobinie szczęścia, uda nam się podtrzymać obecną sytuację dzięki:"
|
||||
recruitment_title: "Rekrutacji"
|
||||
recruitment_description_prefix: "Dzięki CodeCombat, staniesz się potężnym czarodziejem - nie tylko w grze, ale również w prawdziwym życiu."
|
||||
url_hire_programmers: "Firmy nie nadążają z zatrudnianiem programistów"
|
||||
recruitment_description_suffix: "więc kiedy tylko odpowiednio się wyszkolisz i wyrazisz zgodę, zaprezentujemy twoje programistyczne dokonania tysiącom pracodawców tylko czekających, by dać ci pracę. Oni płacą nam trochę, tobie"
|
||||
recruitment_description_italic: "dużo"
|
||||
recruitment_description_ending: "strona pozostaje darmowa i wszyscy są szczęśliwi. Tak wygląda plan."
|
||||
copyrights_title: "Prawa autorskie i licencje"
|
||||
contributor_title: "Umowa licencyjna dla współtwórców (CLA)"
|
||||
contributor_description_prefix: "Wszyscy współtwórcy, zarówno ci ze strony jak i ci z GitHuba, podlegają naszemu"
|
||||
cla_url: "CLA"
|
||||
contributor_description_suffix: ", na które powinieneś wyrazić zgodę przed dodaniem swojego wkładu."
|
||||
code_title: "Kod - MIT"
|
||||
code_description_prefix: "Całość kodu posiadanego przez CodeCombat lub hostowanego na codecombat.com, zarówno w repozytorium GitHub, jak i bazie codecombat.com, podlega licencji"
|
||||
# mit_license_url: "MIT license"
|
||||
# code_description_suffix: "This includes all code in Systems and Components that are made available by CodeCombat for the purpose of creating levels."
|
||||
# art_title: "Art/Music - Creative Commons "
|
||||
# art_description_prefix: "All common content is available under the"
|
||||
code_description_suffix: "Zawiera się w tym całość kodu w systemach i komponentach, które są udostępnione przez CodeCombat w celu tworzenia poziomów."
|
||||
art_title: "Grafika/muzyka - Creative Commons "
|
||||
art_description_prefix: "Całość ogólnej treści dostępna jest pod licencją"
|
||||
# cc_license_url: "Creative Commons Attribution 4.0 International License"
|
||||
# art_description_suffix: "Common content is anything made generally available by CodeCombat for the purpose of creating Levels. This includes:"
|
||||
# art_music: "Music"
|
||||
# art_sound: "Sound"
|
||||
# art_artwork: "Artwork"
|
||||
# art_sprites: "Sprites"
|
||||
# art_other: "Any and all other non-code creative works that are made available when creating Levels."
|
||||
# art_access: "Currently there is no universal, easy system for fetching these assets. In general, fetch them from the URLs as used by the site, contact us for assistance, or help us in extending the site to make these assets more easily accessible."
|
||||
# art_paragraph_1: "For attribution, please name and link to codecombat.com near where the source is used or where appropriate for the medium. For example:"
|
||||
# use_list_1: "If used in a movie or another game, include codecombat.com in the credits."
|
||||
# use_list_2: "If used on a website, include a link near the usage, for example underneath an image, or in a general attributions page where you might also mention other Creative Commons works and open source software being used on the site. Something that's already clearly referencing CodeCombat, such as a blog post mentioning CodeCombat, does not need some separate attribution."
|
||||
# art_paragraph_2: "If the content being used is created not by CodeCombat but instead by a user of codecombat.com, attribute them instead, and follow attribution directions provided in that resource's description if there are any."
|
||||
# rights_title: "Rights Reserved"
|
||||
# rights_desc: "All rights are reserved for Levels themselves. This includes"
|
||||
# rights_scripts: "Scripts"
|
||||
# rights_unit: "Unit configuration"
|
||||
# rights_description: "Description"
|
||||
# rights_writings: "Writings"
|
||||
# rights_media: "Media (sounds, music) and any other creative content made specifically for that Level and not made generally available when creating Levels."
|
||||
# rights_clarification: "To clarify, anything that is made available in the Level Editor for the purpose of making levels is under CC, whereas the content created with the Level Editor or uploaded in the course of creation of Levels is not."
|
||||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
art_description_suffix: "Zawartość ogólna to wszystko, co zostało publicznie udostępnione przez CodeCombat w celu tworzenia poziomów. Wchodzą w to:"
|
||||
art_music: "Muzyka"
|
||||
art_sound: "Dźwięki"
|
||||
art_artwork: "Artworki"
|
||||
art_sprites: "Sprite'y"
|
||||
art_other: "Dowolne inne prace niezwiązane z kodem, które są dostępne podczas tworzenia poziomów."
|
||||
art_access: "Obecnie nie ma uniwersalnego, prostego sposobu, by pozyskać te zasoby. Możesz wejść w ich posiadanie poprzez URL-e, z których korzysta strona, skontaktować się z nami w celu uzyskania pomocy bądź pomóc nam w ulepszeniu strony, aby zasoby te stały się łatwiej dostępne."
|
||||
art_paragraph_1: "W celu uznania autorstwa, wymień z nazwy i podaj link do codecombat.com w pobliżu miejsca, gdzie znajduje się użyty zasób bądź w miejscu odpowiednim dla twojego medium. Na przykład:"
|
||||
use_list_1: "W przypadku użycia w filmie lub innej grze, zawrzyj codecombat.com w napisach końcowych."
|
||||
use_list_2: "W przypadku użycia na stronie internetowej, zawrzyj link w pobliżu miejsca użycia, na przykład po obrazkiem lub na ogólnej stronie poświęconej uznaniu twórców, gdzie możesz również wspomnieć o innych pracach licencjonowanych przy użyciu Creative Commons oraz oprogramowaniu open source używanym na stronie. Coś, co samo w sobie jednoznacznie odnosi się do CodeCombat, na przykład wpis na blogu dotyczący CodeCombat, nie wymaga już dodatkowego uznania autorstwa."
|
||||
art_paragraph_2: "Jeśli użyte przez ciebie zasoby zostały stworzone nie przez CodeCombat, ale jednego z naszych użytkowników, uznanie autorstwa należy się jemu - postępuj wówczas zgodnie z zasadami uznania autorstwa dostarczonymi wraz z rzeczonym zasobem (o ile takowe występują)."
|
||||
rights_title: "Prawa zastrzeżone"
|
||||
rights_desc: "Wszelkie prawa są zastrzeżone dla poziomów jako takich. Zawierają się w tym:"
|
||||
rights_scripts: "Skrypty"
|
||||
rights_unit: "Konfiguracje jednostek"
|
||||
rights_description: "Opisy"
|
||||
rights_writings: "Teksty"
|
||||
rights_media: "Multimedia (dźwięki, muzyka) i jakiekolwiek inne typy prac i zasobów stworzonych specjalnie dla danego poziomu, które nie zostały publicznie udostępnione do tworzenia poziomów."
|
||||
rights_clarification: "Gwoli wyjaśnienia, wszystko, co jest dostępne w Edytorze Poziomów w celu tworzenia nowych poziomów podlega licencji CC, podczas gdy zasoby stworzone w Edytorze Poziomów lub przesłane w toku tworzenia poziomu - nie."
|
||||
nutshell_title: "W skrócie"
|
||||
nutshell_description: "Wszelkie zasoby, które dostarczamy w Edytorze Poziomów są darmowe w użyciu w jakikolwiek sposób w celu tworzenia poziomów. Jednocześnie, zastrzegamy sobie prawo do ograniczenia rozpowszechniania poziomów (stworzonych przez codecombat.com) jako takich, aby mogła być za nie w przyszłości pobierana opłata, jeśli dojdzie do takiej konieczności."
|
||||
canonical: "Angielska wersja tego dokumentu jest ostateczna, kanoniczną wersją. Jeśli zachodzą jakieś rozbieżności pomiędzy tłumaczeniami, dokument anglojęzyczny ma pierwszeństwo."
|
||||
|
||||
# contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
# introduction_desc_pref: "We want to be where programmers of all stripes come to learn and play together, introduce others to the wonderful world of coding, and reflect the best parts of the community. We can't and don't want to do that alone; what makes projects like GitHub, Stack Overflow and Linux great are the people who use them and build on them. To that end, "
|
||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
# introduction_desc_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours."
|
||||
# introduction_desc_ending: "We hope you'll join our party!"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, and Jeremy"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
# archmage_attribute_2: "Some experience in programming and personal initiative. We'll help you get oriented, but we can't spend much time training you."
|
||||
# how_to_join: "How To Join"
|
||||
# join_desc_1: "Anyone can help out! Just check out our "
|
||||
# join_desc_2: "to get started, and check the box below to mark yourself as a brave Archmage and get the latest news by email. Want to chat about what to do or how to get more deeply involved? "
|
||||
# join_desc_3: ", or find us in our "
|
||||
# join_desc_4: "and we'll go from there!"
|
||||
# join_url_email: "Email us"
|
||||
# join_url_hipchat: "public HipChat room"
|
||||
# more_about_archmage: "Learn More About Becoming an Archmage"
|
||||
# archmage_subscribe_desc: "Get emails on new coding opportunities and announcements."
|
||||
# artisan_summary_pref: "Want to design levels and expand CodeCombat's arsenal? People are playing through our content at a pace faster than we can build! Right now, our level editor is barebone, so be wary. Making levels will be a little challenging and buggy. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_summary_suf: "then this class is for you."
|
||||
# artisan_introduction_pref: "We must construct additional levels! People be clamoring for more content, and we can only build so many ourselves. Right now your workstation is level one; our level editor is barely usable even by its creators, so be wary. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_introduction_suf: "then this class might be for you."
|
||||
# artisan_attribute_1: "Any experience in building content like this would be nice, such as using Blizzard's level editors. But not required!"
|
||||
# artisan_attribute_2: "A hankering to do a whole lot of testing and iteration. To make good levels, you need to take it to others and watch them play it, and be prepared to find a lot of things to fix."
|
||||
# artisan_attribute_3: "For the time being, endurance en par with an Adventurer. Our Level Editor is super preliminary and frustrating to use. You have been warned!"
|
||||
# artisan_join_desc: "Use the Level Editor in these steps, give or take:"
|
||||
# artisan_join_step1: "Read the documentation."
|
||||
# artisan_join_step2: "Create a new level and explore existing levels."
|
||||
# artisan_join_step3: "Find us in our public HipChat room for help."
|
||||
# artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
# more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
# artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
# adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
# adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
# adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
# adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
# adventurer_join_pref: "Either get together with (or recruit!) an Artisan and work with them, or check the box below to receive emails when there are new levels to test. We'll also be posting about levels to review on our networks like"
|
||||
# adventurer_forum_url: "our forum"
|
||||
# adventurer_join_suf: "so if you prefer to be notified those ways, sign up there!"
|
||||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
# scribe_attribute_1: "Skill in words is pretty much all you need. Not only grammar and spelling, but able to convey complicated ideas to others."
|
||||
# contact_us_url: "Contact us"
|
||||
# scribe_join_description: "tell us a little about yourself, your experience with programming and what sort of things you'd like to write about. We'll go from there!"
|
||||
# more_about_scribe: "Learn More About Becoming a Scribe"
|
||||
# scribe_subscribe_desc: "Get emails about article writing announcements."
|
||||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
# ambassador_attribute_1: "Communication skills. Be able to identify the problems players are having and help them solve them. Also, keep the rest of us informed about what players are saying, what they like and don't like and want more of!"
|
||||
# ambassador_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll go from there!"
|
||||
# ambassador_join_note_strong: "Note"
|
||||
# ambassador_join_note_desc: "One of our top priorities is to build multiplayer where players having difficulty solving levels can summon higher level wizards to help them. This will be a great way for ambassadors to do their thing. We'll keep you posted!"
|
||||
# more_about_ambassador: "Learn More About Becoming an Ambassador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
# counselor_summary: "None of the above roles fit what you are interested in? Do not worry, we are on the lookout for anybody who wants a hand in the development of CodeCombat! If you are interested in teaching, game development, open source management, or anything else that you think will be relevant to us, then this class is for you."
|
||||
# counselor_introduction_1: "Do you have life experience? A different perspective on things that can help us decide how to shape CodeCombat? Of all these roles, this will probably take the least time, but individually you may make the most difference. We're on the lookout for wisened sages, particularly in areas like: teaching, game development, open source project management, technical recruiting, entrepreneurship, or design."
|
||||
# counselor_introduction_2: "Or really anything that is relevant to the development of CodeCombat. If you have knowledge and want to share it to help grow this project, then this class might be for you."
|
||||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
# creative_artisans: "Our Creative Artisans:"
|
||||
# brave_adventurers: "Our Brave Adventurers:"
|
||||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
contribute:
|
||||
page_title: "Współpraca"
|
||||
character_classes_title: "Klasy postaci"
|
||||
introduction_desc_intro: "Pokładamy w CodeCombat duże nadzieje."
|
||||
introduction_desc_pref: "Chcemy być miejscem, w którym programiści wszelkiej maści wspólnie uczą się i bawią, zapoznają innych ze wspaniałym światem programowania i odzwierciedlają najlepsze elementy społeczności. Nie możemy, ani nie chcemy, robić tego samodzielnie; to, co czyni projekty takie jak GitHub, Stack Overflow czy Linux wielkimi to ludzie, którzy ich używają i tworzą opierając się na nich. W związku z tym, "
|
||||
introduction_desc_github_url: "CodeCombat jest całkowicie open source"
|
||||
introduction_desc_suf: " i zamierzamy zapewnić tak wiele sposobów na współpracę w projekcie jak to tylko możliwe, by był on tak samo nasz, jak i wasz."
|
||||
introduction_desc_ending: "Liczymy, że dołączysz się do nas!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael i Jeremy"
|
||||
alert_account_message_intro: "Hej tam!"
|
||||
alert_account_message_pref: "Aby zapisać się do naszego e-maila klasowego, musisz najpierw "
|
||||
alert_account_message_suf: "."
|
||||
alert_account_message_create_url: "założyć konto"
|
||||
archmage_summary: "Zainteresowany pracą przy grafice, interfejsie użytkownika, organizacji bazy danych oraz serwera, łączności multiplayer, fizyce, dźwięku lub wydajności silnika gry? Chciałbyś dołączyć się do budowania gry, która pomoże innym nauczyć się umiejętności, które sam posiadasz? Mamy wiele do zrobienia i jeśli jesteś doświadczonym programistą chcącym pomóc w rozwoju CodeCombat, ta klasa jest dla ciebie. Twoja pomoc przy budowaniu najlepszej gry programistycznej w historii będzie nieoceniona."
|
||||
archmage_introduction: "Jedną z najlepszych rzeczy w tworzeniu gier jest to, że syntetyzują one tak wiele różnych spraw. Grafika, dźwięk, łączność w czasie rzeczywistym, social networking i oczywiście wiele innych, bardziej popularnych, aspektów programowania, od niskopoziomowego zarządzania bazami danych i administracji serwerem do interfejsu użytkownika i jego tworzenia. Jest wiele do zrobienia i jeśli jesteś doświadczonym programistą z zacięciem, by zajrzeć do sedna CodeCombat, ta klasa może być dla ciebie. Bylibyśmy niezmiernie szczęśliwi mając twoją pomoc przy budowaniu najlepszej programistycznej gry wszech czasów."
|
||||
class_attributes: "Atrybuty klasowe"
|
||||
archmage_attribute_1_pref: "Znajomość "
|
||||
archmage_attribute_1_suf: " lub chęć do nauki. Większość naszego kodu napisana jest w tym języku. Jeśli jesteś fanem Ruby czy Pythona, poczujesz się jak w domu. To po prostu JavaScript, tyle że z przyjemniejszą składnią."
|
||||
archmage_attribute_2: "Pewne doświadczenie w programowaniu i własna inicjatywa. Pomożemy ci się połapać, ale nie możemy spędzić zbyt dużo czasu na szkoleniu cię."
|
||||
how_to_join: "Jak dołączyć"
|
||||
join_desc_1: "Każdy może pomóc! Zerknij po prostu na nasz "
|
||||
join_desc_2: ", aby rozpocząć i zaznacz kratkę poniżej, aby określić sie jako mężny Arcymag oraz otrzymywać najświeższe wiadomości przez e-mail. Chcesz porozmawiać na temat tego, co robić lub w jaki sposób dołączyć do współpracy jeszcze wyraźniej? "
|
||||
join_desc_3: " lub zajrzyj do naszego "
|
||||
join_desc_4: ", a dowiesz się wszystkiego!"
|
||||
join_url_email: "Napisz do nas"
|
||||
join_url_hipchat: "publicznego pokoju HipChat"
|
||||
more_about_archmage: "Dowiedz się więcej na temat stawania się Arcymagiem"
|
||||
archmage_subscribe_desc: "Otrzymuj e-maile dotyczące nowych okazji programistycznych oraz ogłoszeń."
|
||||
artisan_summary_pref: "Chcesz projektować poziomy i rozwijać arsenał CodeCombat? Ludzie grają w dostarczane przez nas zasoby szybciej, niż potrafimy je tworzyć! Obecnie, nasz edytor jest dosyć niemrawy więc czuj się ostrzeżony - tworzenie poziomów przy jego pomocy może być trochę wymagające i zbugowane. Jeśli masz wizję nowych kampanii, od pętli typu for do"
|
||||
artisan_summary_suf: ", ta klasa jest dla ciebie."
|
||||
artisan_introduction_pref: "Musimy stworzyć dodatkowe poziomy! Ludzie będą oczekiwać nowych zasobów, a my mamy ograniczone możliwości co do naszych mocy przerobowych. Obecnie, twoja stacja robocza jest na poziomie pierwszym; nasz edytor poziomów jest ledwo używalny nawet przez jego twórców - bądź tego świadom. Jeśli masz wizję nowych kampanii, od pętli typu for do"
|
||||
artisan_introduction_suf: ", ta klasa może być dla ciebie."
|
||||
artisan_attribute_1: "Jakiekolwiek doświadczenie w tworzeniu zasobów tego typu byłoby przydatne, na przykład używając edytora poziomów dostarczonego przez Blizzard. Nie jest to jednak wymagane."
|
||||
artisan_attribute_2: "Zacięcie do całej masy testowania i iteracji. Aby tworzyć dobre poziomy, musisz dostarczyć je innym i obserwować jak grają oraz być przygotowanym na wprowadzanie mnóstwa poprawek."
|
||||
artisan_attribute_3: "Na dzień dzisiejszy, cierpliwość wraz z naszym Podróżnikiem. Nasz Edytor Poziomów jest jest strasznie prymitywny i frustrujący w użyciu. Zostałeś ostrzeżony!"
|
||||
artisan_join_desc: "Używaj Edytora Poziomów mniej-więcej zgodnie z poniższymi krokami:"
|
||||
artisan_join_step1: "Przeczytaj dokumentację."
|
||||
artisan_join_step2: "Stwórz nowy poziom i przejrzyj istniejące poziomy."
|
||||
artisan_join_step3: "Zajrzyj do naszego publicznego pokoju HipChat, aby uzyskać pomoc."
|
||||
artisan_join_step4: "Pokaż swoje poziomy na forum, aby uzyskać opinie."
|
||||
more_about_artisan: "Dwiedz się więcej na temat stawania się Rzemieślnikiem"
|
||||
artisan_subscribe_desc: "Otrzymuj e-maile dotyczące aktualności w tworzeniu poziomów i ogłoszeń."
|
||||
adventurer_summary: "Bądźmy szczerzy co do twojej roli: jesteś tankiem. Będziesz przyjmował ciężkie obrażenia. Potrzebujemy ludzi do testowania nowych poziomów i pomocy w rozpoznawaniu ulepszeń, które będzie można do nich zastosować. Będzie to bolesny proces; tworzenie dobrych gier to długi proces i nikt nie trafia w dziesiątkę za pierwszym razem. Jeśli jesteś wytrzymały i masz wysoki wskaźnik constitution (D&D), ta klasa jest dla ciebie."
|
||||
adventurer_introduction: "Bądźmy szczerzy co do twojej roli: jesteś tankiem. Będziesz przyjmował ciężkie obrażenia. Potrzebujemy ludzi do testowania nowych poziomów i pomocy w rozpoznawaniu ulepszeń, które będzie można do nich zastosować. Będzie to bolesny proces; tworzenie dobrych gier to długi proces i nikt nie trafia w dziesiątkę za pierwszym razem. Jeśli jesteś wytrzymały i masz wysoki wskaźnik constitution (D&D), ta klasa jest dla ciebie."
|
||||
adventurer_attribute_1: "Głód wiedzy. Chcesz nauczyć się programować, a my chcemy ci to umożliwić. Prawdopodobnie w tym przypadku, to ty będziesz jednak przez wiele czasu stroną uczącą."
|
||||
adventurer_attribute_2: "Charyzma. Bądź uprzejmy, ale wyraźnie określaj, co wymaga poprawy, oferując sugestie co do sposobu jej uzyskania."
|
||||
adventurer_join_pref: "Zapoznaj się z Rzemieślnikiem (lub rekrutuj go!), aby wspólnie pracować lub też zaznacz kratkę poniżej, aby otrzymywać e-maile, kiedy pojawią się nowe poziomy do testowania. Będziemy również pisać o poziomach do sprawdzenia na naszych stronach w sieciach społecznościowych jak"
|
||||
adventurer_forum_url: "nasze forum"
|
||||
adventurer_join_suf: "więc jeśli wolałbyś być informowany w ten sposób, zarejestruj się na nich!"
|
||||
more_about_adventurer: "Dowiedz się więcej o stawaniu się Podróżnikiem"
|
||||
adventurer_subscribe_desc: "Otrzymuj e-maile, gdy pojawią się nowe poziomy do tesotwania."
|
||||
scribe_summary_pref: "Codecombat nie będzie tylko zbieraniną poziomów. Będzie też źródłem wiedzy programistycznej, na której gracze będą mogli sie opierać. Dzięki temu, każdy z Rzemieślników będzie mógł podać link do szczegółowego artykułu, który pomoże graczowi: dokumentacji w stylu zbudowanej przez "
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
scribe_introduction_pref: "CodeCombat nie będzie tylko zbieraniną poziomów. Będzie też zawierać źródło wiedzy, wiki programistycznych idei, na której będzie można oprzeć poziomy. Dzięki temu, każdy z Rzemieślników zamiast opisywać ze szczegółami, czym jest operator porónania, będzie mógł po prostu podać graczowi w swoim poziomie link do artykułu opisującego go. Mamy na myśli coś podobnego do "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: " . Jeśli twoją definicją zabawy jest artykułowanie idei programistycznych przy pomocy składni Markdown, ta klasa może być dla ciebie."
|
||||
scribe_attribute_1: "Umiejętne posługiwanie się słowem to właściwie wszystko, czego potrzebujesz. Nie tylko gramatyka i ortografia, ale również umiejętnośc tłumaczenia trudnego materiału innym."
|
||||
contact_us_url: "Skontaktuj się z nami"
|
||||
scribe_join_description: "powiedz nam coś o sobie, swoim doświadczeniu w programowaniu i rzeczach, o których chciałbyś pisać, a chętnie to z tobą uzgodnimy!"
|
||||
more_about_scribe: "Dowiedz się więcej na temat stawania się Skrybą"
|
||||
scribe_subscribe_desc: "Otrzymuj e-maile na temat ogłoszeń dotyczących pisania artykułów."
|
||||
diplomat_summary: "W krajach nieanglojęzycznych istnieje wielkie zainteresowanie CodeCombat! Szukamy tłumaczy chętnych do poświęcenia swojego czasu na tłumaczenie treści strony, aby CodeCombat było dostępne dla całego świata tak szybko, jak to tylko możliwe. Jeśli chcesz pomóc w sprawieniu, by CodeCombat było prawdziwie międzynarodowe, ta klasa jest dla ciebie."
|
||||
diplomat_introduction_pref: "Jeśli dowiedzieliśmy jednej rzeczy z naszego "
|
||||
diplomat_launch_url: "otwarcia w październiku"
|
||||
diplomat_introduction_suf: ", to jest nią informacja o znacznym zainteresowaniu CodeCombat w innych krajach. Tworzymy zespół tłumaczy chętnych do przemieniania zestawów słów w inne zestawy słów, aby CodeCombat było tak dostępne dla całego świata, jak to tylko możliwe. Jeśli chciabyś mieć wgląd w nadchodzącą zawartość i umożliwić swoim krajanom granie w najnowsze poziomy, ta klasa może być dla ciebie."
|
||||
diplomat_attribute_1: "Biegła znajomość angielskiego oraz języka, na który chciałbyś tłumaczyć. Kiedy przekazujesz skomplikowane idee, dobrze mieć płynność w obu z nich!"
|
||||
diplomat_join_pref_github: "Znajdź plik lokalizacyjny dla wybranego języka "
|
||||
diplomat_github_url: "na GitHubie"
|
||||
diplomat_join_suf_github: ", edytuj go online i wyślij pull request. Do tego, zaznacz kratkę poniżej, aby być na bieżąco z naszym międzynarodowym rozwojem!"
|
||||
more_about_diplomat: "Dowiedz się więcej na temat stawania się Dyplomatą"
|
||||
diplomat_subscribe_desc: "Otrzymuj e-maile na temat postępów i18n i poziomów do tłumaczenia."
|
||||
ambassador_summary: "Staramy się zbudować społeczność, a każda społeczność potrzebuje zespołu wsparcia, kiedy pojawią się kłopoty. Mamy czaty, e-maile i strony w sieciach społecznościowych, aby nasi użytkownicy mogli zapoznać się z grą. Jeśli chcesz pomóc ludziom w tym, jak do nas dołączyć, dobrze się bawić, a do tego poznać tajniki programowania, ta klasa jest dla ciebie."
|
||||
ambassador_introduction: "Oto społeczność, którą budujemy, a ty jesteś jej łącznikiem. Mamy czaty, e-maile i strony w sieciach społecznościowych oraz wielu ludzi potrzebujących pomocy w zapoznaniu się z grą oraz uczeniu się za jej pomocą. Jeśli chcesz pomóc ludziom, by do nas dołączyli i dobrze się bawili oraz mieć pełne poczucie tętna CodeCombat oraz kierunku, w którym zmierzamy, ta klasa może być dla ciebie."
|
||||
ambassador_attribute_1: "Umiejętność komunikacji. Musisz umieć rozpoznać problemy, które mają gracze i pomóc im je rozwiązać. Do tego, informuj resztę z nas, co mówią gracze - na co się skarżą, a czego chcą jeszcze więcej!"
|
||||
ambassador_join_desc: "powiedz nam coś o sobie, jakie masz doświadczenie i czym byłbyś zainteresowany. Chętnie z tobą porozmawiamy!"
|
||||
ambassador_join_note_strong: "Uwaga"
|
||||
ambassador_join_note_desc: "Jednym z naszych priorytetów jest zbudowanie trybu multiplayer, gdzie gracze mający problem z rozwiązywaniem poziomów będą mogli wezwać czarodziejów wyższego poziomu, by im pomogli. Będzie to świetna okazja dla Ambasadorów. Spodziewajcie się ogłoszenia w tej sprawie!"
|
||||
more_about_ambassador: "Dowiedz się więcej o stawaniu się Ambasadorem"
|
||||
ambassador_subscribe_desc: "Otrzymuj e-maile dotyczące aktualizacji wsparcia oraz rozwoju trybu multiplayer."
|
||||
counselor_summary: "Żadna z powyższych ról nie pokrywa się z twoimi zainteresowaniami? Nie przejmuj się, poszukujemy każdego, kto chciałby dołożyć się rozwoju CodeCombat! Jeśli jestes zainteresowany nauczaniem, tworzeniem gier, zarządzaniem projektami open source lub czymkolwiek innym, co, twoim zdaniem, jest dla nas ważne, ta klasa jest dla ciebie."
|
||||
counselor_introduction_1: "Masz doświadczenie życiowe? Inną perspektywę, która pomoże nam zdecydować, jak formować CodeCombat? Ze wszystkich wspomnianych ról, ta jest prawdopodobnie najmniej czasochłonna, ale na poziomie osobistym, to ty możesz być przyczynkiem do największych zmian. Poszukujemy oświeconych mędrców, głównie w obszarach takich jak: nauczanie, tworzenie gier, zarządzanie projektem open source, rekrutacje w sektorze technicznym, przedsiębiorczość oraz projektowanie."
|
||||
counselor_introduction_2: "Lub cokolwiek, co jest związane z rozwojem CodeCombat. Jeśli masz wiedzę i chciałbyś się nią podzielić, by pomóc temu projektowi dojrzeć, ta klasa może być dla ciebie."
|
||||
counselor_attribute_1: "Doświadczenie, w którymkolwiek z powyższych obszarów lub czymś, co uważasz za pomocne."
|
||||
counselor_attribute_2: "Trochę wolnego czasu"
|
||||
counselor_join_desc: "powiedz nam coś o sobie, o tym, czego dokonałeś i jak chciałbyś nam pomóc. Dodamy cię do naszej listy kontaktów i damy ci znać, kiedy będziemy potrzebować twojej pomocy (nie za często)."
|
||||
more_about_counselor: "Dowiedz się więcej na temat stawania się Opiekunem"
|
||||
changes_auto_save: "Zmiany zapisują się automatycznie po kliknięci kratki."
|
||||
diligent_scribes: "Nasi pilni Skrybowie:"
|
||||
powerful_archmages: "Nasi potężni Arcymagowie:"
|
||||
creative_artisans: "Nasi kreatywni Rzemieślnicy:"
|
||||
brave_adventurers: "Nasi dzielni Podróżnicy:"
|
||||
translating_diplomats: "Nasi tłumaczący Dyplomaci:"
|
||||
helpful_ambassadors: "Nasi pomocni Ambasadorzy:"
|
||||
|
||||
# classes:
|
||||
# archmage_title: "Archmage"
|
||||
# archmage_title_description: "(Coder)"
|
||||
# artisan_title: "Artisan"
|
||||
# artisan_title_description: "(Level Builder)"
|
||||
# adventurer_title: "Adventurer"
|
||||
# adventurer_title_description: "(Level Playtester)"
|
||||
# scribe_title: "Scribe"
|
||||
# scribe_title_description: "(Article Editor)"
|
||||
# diplomat_title: "Diplomat"
|
||||
# diplomat_title_description: "(Translator)"
|
||||
# ambassador_title: "Ambassador"
|
||||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
classes:
|
||||
archmage_title: "Arcymag"
|
||||
archmage_title_description: "(programista)"
|
||||
artisan_title: "Rzemieślnik"
|
||||
artisan_title_description: "(twórca poziomów)"
|
||||
adventurer_title: "Podróżnik"
|
||||
adventurer_title_description: "(playtester)"
|
||||
scribe_title: "Skryba"
|
||||
scribe_title_description: "(twórca artykułów)"
|
||||
diplomat_title: "Dyplomata"
|
||||
diplomat_title_description: "(tłumacz)"
|
||||
ambassador_title: "Ambasador"
|
||||
ambassador_title_description: "(wsparcie)"
|
||||
counselor_title: "Opiekun"
|
||||
counselor_title_description: "(ekspert/nauczyciel)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
campaign_player_created: "Criados por Jogadores"
|
||||
campaign_player_created_description: "... nos quais você batalhará contra a criatividade dos seus companheiros <a href=\"/contribute#artisan\">feiticeiros Artesãos</a>."
|
||||
level_difficulty: "Dificuldade: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contate-nos"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Senha"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Selecione qual foto do Gravatar usar"
|
||||
gravatar_add_photos: "Adicione miniaturas e fotos a uma conta do Gravatar ligada ao seu email para poder escolher uma imagem."
|
||||
gravatar_add_more_photos: "Adicione mais fotos à sua conta do Gravatar para acessá-las aqui."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
new_password_verify: "Confirmação"
|
||||
email_subscriptions: "Assinaturas para Notícias por Email"
|
||||
email_announcements: "Notícias"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Recebe notificações periódicas em sua conta."
|
||||
email_announcements_description: "Receba emails com as últimas notícias e desenvolvimentos do CodeCombat."
|
||||
contributor_emails: "Emails para as Classes de Contribuidores"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
victory_sign_up: "Assine para atualizações"
|
||||
victory_sign_up_poke: "Quer receber as últimas novidades por email? Crie uma conta grátis e nós o manteremos informado!"
|
||||
victory_rate_the_level: "Avalie o estágio: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jogar o próximo estágio"
|
||||
victory_go_home: "Ir à página inicial"
|
||||
victory_review: "Diga-nos mais!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
contact_us: "entre em contato!"
|
||||
hipchat_prefix: "Você também pode nos encontrar na nossa"
|
||||
hipchat_url: "Sala do HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Algumas Opções?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
level_components_title: "Voltar para Lista de Thangs"
|
||||
level_components_type: "Tipo"
|
||||
level_component_edit_title: "Editar Componente"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Editar Sistema"
|
||||
create_system_title: "Criar Novo Sistema"
|
||||
new_component_title: "Criar Novo Componente"
|
||||
new_component_field_system: "Sistema"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prever"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
body: "Principal"
|
||||
version: "Versão"
|
||||
commit_msg: "Mensagem do Commit"
|
||||
# history: "History"
|
||||
version_history_for: "Histórico de Versão para: "
|
||||
# result: "Result"
|
||||
results: "Resultados"
|
||||
description: "Descrição"
|
||||
or: "ou"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Mensagem"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Quem é CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
more_about_adventurer: "Saiba Mais Sobre Como Se Tornar Um Valente Aventureiro"
|
||||
adventurer_subscribe_desc: "Receba emails quando houver novos níveis para testar."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
scribe_introduction_pref: "O CodeCombat não será apenas um monte de níveis. Ele também irá incluir uma fonte de conhecimento, um wiki de conceitos de programação que os níveis podem se basear. Dessa forma, em vez de cada Artesão ter que descrever em detalhes o que é um operador de comparação, eles podem simplesmente criar um link para o artigo que o descreve. Algo na linha do que a "
|
||||
scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
scribe_introduction_suf: " construiu. Se a sua idéia de diversão é articular os conceitos de programação em Markdown, então esta classe pode ser para você."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
ambassador_title_description: "(Suporte)"
|
||||
counselor_title: "Conselheiro"
|
||||
counselor_title_description: "(Especialista/Professor)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
campaign_player_created: "Criados por Jogadores"
|
||||
campaign_player_created_description: "... onde combates contra a criatividade dos teus colegas <a href=\"/contribute#artisan\">Feiticeiros Artesãos</a>."
|
||||
level_difficulty: "Dificuldade: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contactar o CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Palavra-passe"
|
||||
emails_tab: "E-mails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Seleciona qual fotografia Gravatar a usar"
|
||||
gravatar_add_photos: "Adiciona miniaturas e fotografias a uma conta Gravatar com o teu email para escolheres uma imagem."
|
||||
gravatar_add_more_photos: "Adiciona mais fotografias à tua conta Gravatar para as acederes aqui."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Subscrições de E-mail"
|
||||
email_announcements: "Anúncios"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Recebe notificações periódicas sobre a tua conta."
|
||||
email_announcements_description: "Recebe e-mails sobre as últimas novidades e desenvolvimentos no CodeCombat."
|
||||
contributor_emails: "E-mails para Contribuintes"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
victory_sign_up: "Cria uma conta para guardar o teu progresso"
|
||||
victory_sign_up_poke: "Queres guardar o teu código? Cria uma conta grátis!"
|
||||
victory_rate_the_level: "Classifica este nível: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jogar próximo nível"
|
||||
victory_go_home: "Ir para a Home"
|
||||
victory_review: "Conta-nos mais!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
contact_us: "contacta-nos!"
|
||||
hipchat_prefix: "Podes encontrar-nos no nosso"
|
||||
hipchat_url: "canal HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Algumas opções?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
level_components_title: "Voltar para Todos os Thangs"
|
||||
level_components_type: "Tipo"
|
||||
level_component_edit_title: "Editar Componente"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Editar Sistema"
|
||||
create_system_title: "Criar novo Sistema"
|
||||
new_component_title: "Criar novo Componente"
|
||||
new_component_field_system: "Sistema"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Visualizar"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
body: "Corpo"
|
||||
version: "Versão"
|
||||
commit_msg: "Mensagem de Commit"
|
||||
# history: "History"
|
||||
version_history_for: "Histórico de versões por: "
|
||||
# result: "Result"
|
||||
results: "Resultados"
|
||||
description: "Descrição"
|
||||
or: "ou"
|
||||
email: "E-mail"
|
||||
# password: "Password"
|
||||
message: "Mensagem"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
ambassador_title_description: "(Suporte)"
|
||||
counselor_title: "Counselor"
|
||||
counselor_title_description: "(Expert/ Professor)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
campaign_player_created: "Criados por Jogadores"
|
||||
campaign_player_created_description: "... nos quais você batalhará contra a criatividade dos seus companheiros <a href=\"/contribute#artisan\">feiticeiros Artesãos</a>."
|
||||
level_difficulty: "Dificuldade: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contate-nos"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Senha"
|
||||
emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Selecione qual foto do Gravatar usar"
|
||||
gravatar_add_photos: "Adicione miniaturas e fotos a uma conta do Gravatar ligada ao seu email para poder escolher uma imagem."
|
||||
gravatar_add_more_photos: "Adicione mais fotos à sua conta do Gravatar para acessá-las aqui."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
new_password_verify: "Confirmação"
|
||||
email_subscriptions: "Assinaturas para Notícias por Email"
|
||||
email_announcements: "Notícias"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Receba emails com as últimas notícias e desenvolvimentos do CodeCombat."
|
||||
contributor_emails: "Emails para as Classes de Contribuidores"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
victory_sign_up: "Assine para atualizações"
|
||||
victory_sign_up_poke: "Quer receber as últimas novidades por email? Crie uma conta grátis e nós o manteremos informado!"
|
||||
victory_rate_the_level: "Avalie o estágio: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Jogar o próximo estágio"
|
||||
victory_go_home: "Ir à página inicial"
|
||||
victory_review: "Diga-nos mais!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "ou"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Mensagem"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
campaign_player_created: "Create de jucători"
|
||||
campaign_player_created_description: "... în care ai ocazia să testezi creativitatea colegilor tai <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "Dificultate: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
wizard_tab: "Wizard"
|
||||
password_tab: "Parolă"
|
||||
emails_tab: "Email-uri"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Selectează ce poză Gravatar vrei să foloșesti"
|
||||
gravatar_add_photos: "Adaugă thumbnails și poze la un cont Gravatar pentru email-ul tău pentru a alege o imagine."
|
||||
gravatar_add_more_photos: "Adaugă mai multe poze la contul tău Gravatar pentru a le accesa aici."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
new_password_verify: "Verifică"
|
||||
email_subscriptions: "Subscripție Email"
|
||||
email_announcements: "Anunțuri"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Primește notificări periodic pentru contul tău."
|
||||
email_announcements_description: "Primește email-uri cu ultimele știri despre CodeCombat."
|
||||
contributor_emails: "Contributor Class Emails"
|
||||
|
@ -150,12 +153,12 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
gravatar_not_found_mine: "N-am putut găsi profilul asociat cu:"
|
||||
gravatar_not_found_email_suffix: "."
|
||||
gravatar_signup_prefix: "Înscrie-te la "
|
||||
gravatar_signup_suffix: " pentru a fi gata!"
|
||||
gravatar_signup_suffix: " pentru a fi gata!"
|
||||
gravatar_not_found_other: "Din păcate nu este asociat nici un profil cu această adresă de email."
|
||||
gravatar_contact: "Contact"
|
||||
gravatar_websites: "Website-uri"
|
||||
gravatar_accounts: "Așa cum apare la"
|
||||
gravatar_profile_link: "Full Gravatar Profile" #better leave this one as it is
|
||||
gravatar_profile_link: "Full Gravatar Profile"
|
||||
|
||||
play_level:
|
||||
level_load_error: "Nivelul nu a putut fi încărcat: "
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
victory_sign_up: "Înscrie-te pentru a salva progresul"
|
||||
victory_sign_up_poke: "Vrei să-ți salvezi codul? Crează un cont gratis!"
|
||||
victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Joacă nivelul următor"
|
||||
victory_go_home: "Acasă"
|
||||
victory_review: "Spune-ne mai multe!"
|
||||
|
@ -200,6 +206,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
tome_available_spells: "Vrăjile disponibile"
|
||||
hud_continue: "Continuă (apasă shift-space)"
|
||||
spell_saved: "Vrajă salvată"
|
||||
# skip_tutorial: "Skip (esc)"
|
||||
|
||||
admin:
|
||||
av_title: "Admin vede"
|
||||
|
@ -224,6 +231,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
contact_us: "contactați-ne!"
|
||||
hipchat_prefix: "Ne puteți de asemenea găsi la"
|
||||
hipchat_url: "HipChat."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Opțiuni?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Script-uri"
|
||||
|
@ -242,10 +251,18 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
level_components_title: "Înapoi la toți Thangs"
|
||||
level_components_type: "Tip"
|
||||
level_component_edit_title: "Editează Componenta"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Editează Sistem"
|
||||
create_system_title: "Crează sistem nou"
|
||||
new_component_title: "Crează componentă nouă"
|
||||
new_component_field_system: "Sistem"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Preview"
|
||||
|
@ -257,15 +274,30 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
body: "Corp"
|
||||
version: "Versiune"
|
||||
commit_msg: "Înregistrează Mesajul"
|
||||
# history: "History"
|
||||
version_history_for: "Versiune istorie pentru: "
|
||||
# result: "Result"
|
||||
results: "Resultate"
|
||||
description: "Descriere"
|
||||
or: "sau"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Mesaj"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Cine este CodeCombat?"
|
||||
who_is_codecombat: "Cine este CodeCombat?"
|
||||
why_codecombat: "De ce CodeCombat?"
|
||||
who_description_prefix: "au pornit împreuna CodeCombat în 2013. Tot noi am creat "
|
||||
who_description_suffix: "în 2008, dezvoltând aplicația web si iOS #1 de învățat cum să scri caractere Japoneze si Chinezești."
|
||||
|
@ -328,7 +360,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
art_music: "Muzică"
|
||||
art_sound: "Sunet"
|
||||
art_artwork: "Artwork"
|
||||
art_sprites: "Sprites"
|
||||
art_sprites: "Sprites"
|
||||
art_other: "Orice si toate celelalte creații non-cod care sunt disponibile când se crează nivele."
|
||||
art_access: "Momentan nu există nici un sistem universal,ușor pentru preluarea acestor bunuri. În general, preluați-le precum site-ul din URL-urile folosite, contactați-ne pentru asistență, sau ajutați-ne sa extindem site-ul pentru a face aceste bunuri mai ușor accesibile."
|
||||
art_paragraph_1: "Pentru atribuire, vă rugăm numiți și lăsați referire link la codecombat.com unde este folosită sursa sau unde este adecvat pentru mediu. De exemplu:"
|
||||
|
@ -342,7 +374,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
rights_description: "Descriere"
|
||||
rights_writings: "Scrieri"
|
||||
rights_media: "Media (sunete, muzică) și orice alt conținut creativ dezvoltat special pentru acel nivel care nu este valabil în mod normal pentru creat nivele."
|
||||
rights_clarification: "Pentru a clarifica, orice este valabil in Editorul de Nivele pentru scopul de a crea nivele se află sub CC,pe când conținutul creat cu Editorul de Nivele sau încărcat pentru a face nivelul nu se află." #CC stands for...?
|
||||
rights_clarification: "Pentru a clarifica, orice este valabil in Editorul de Nivele pentru scopul de a crea nivele se află sub CC,pe când conținutul creat cu Editorul de Nivele sau încărcat pentru a face nivelul nu se află."
|
||||
nutshell_title: "Pe scurt"
|
||||
nutshell_description: "Orice resurse vă punem la dispoziție în Editorul de Nivele puteți folosi liber cum vreți pentru a crea nivele. Dar ne rezervăm dreptul de a rezerva distribuția de nivele în sine (care sunt create pe codecombat.com) astfel încât să se poată percepe o taxă pentru ele pe vitor, dacă se va ajunge la așa ceva."
|
||||
canonical: "Versiunea in engleză a acestui document este cea definitivă, versiunea canonică. Dacă există orice discrepanțe între traduceri, documentul in engleză are prioritate."
|
||||
|
@ -399,7 +431,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -456,3 +488,35 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
campaign_player_created: "Уровни игроков"
|
||||
campaign_player_created_description: "... в которых вы сражаетесь с креативностью ваших друзей <a href=\"/contribute#artisan\">Ремесленников</a>."
|
||||
level_difficulty: "Сложность: "
|
||||
play_as: "Играть за "
|
||||
|
||||
contact:
|
||||
contact_us: "Связаться с CodeCombat"
|
||||
|
@ -130,8 +131,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
new_password: "Новый пароль"
|
||||
new_password_verify: "Подтверждение пароля"
|
||||
email_subscriptions: "Email-подписки"
|
||||
email_notifications: "Уведомления"
|
||||
email_announcements: "Оповещения"
|
||||
email_notifications: "Уведомления"
|
||||
email_notifications_description: "Получать периодические уведомления для вашего аккаунта."
|
||||
email_announcements_description: "Получать email-оповещения о последних новостях CodeCombat."
|
||||
contributor_emails: "Рассылки по классам участников"
|
||||
|
@ -179,6 +180,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
victory_sign_up: "Зарегистрироваться"
|
||||
victory_sign_up_poke: "Хотите сохранить ваш код? Создайте бесплатный аккаунт!"
|
||||
victory_rate_the_level: "Оцените уровень:"
|
||||
victory_rank_my_game: "Оценить мою игру"
|
||||
victory_ranking_game: "Отправка..."
|
||||
victory_return_to_ladder: "Вернуться к ладдеру"
|
||||
victory_play_next_level: "Следующий уровень"
|
||||
victory_go_home: "На главную"
|
||||
victory_review: "Расскажите нам больше!"
|
||||
|
@ -200,7 +204,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
tome_select_spell: "Выбрать заклинание"
|
||||
tome_select_a_thang: "Выбрать кого-нибудь для "
|
||||
tome_available_spells: "Доступные заклинания"
|
||||
hud_continue: "Продолжить (нажмите Shift+Пробел)"
|
||||
hud_continue: "Продолжить (Shift+Пробел)"
|
||||
spell_saved: "Заклинание сохранено"
|
||||
skip_tutorial: "Пропуск (Esc)"
|
||||
|
||||
|
@ -247,6 +251,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
level_components_title: "Вернуться ко всем объектам"
|
||||
level_components_type: "Тип"
|
||||
level_component_edit_title: "Редактировать компонент"
|
||||
level_component_config_schema: "Настройка Schema"
|
||||
level_component_settings: "Настройки"
|
||||
level_system_edit_title: "Редактировать систему"
|
||||
create_system_title: "Создать новую систему"
|
||||
new_component_title: "Создать новый компонент"
|
||||
|
@ -268,13 +274,27 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
body: "Содержание"
|
||||
version: "Версия"
|
||||
commit_msg: "Сопроводительное сообщение"
|
||||
history: "История"
|
||||
version_history_for: "История версий для: "
|
||||
result: "Результат"
|
||||
results: "Результаты"
|
||||
description: "Описание"
|
||||
or: "или"
|
||||
email: "Email"
|
||||
password: "Пароль"
|
||||
message: "Сообщение"
|
||||
code: "Код"
|
||||
ladder: "Ладдер"
|
||||
when: "Когда"
|
||||
opponent: "Противник"
|
||||
rank: "Ранг"
|
||||
score: "Счёт"
|
||||
win: "Победа"
|
||||
loss: "Поражение"
|
||||
tie: "Ничья"
|
||||
easy: "Просто"
|
||||
medium: "Нормально"
|
||||
hard: "Сложно"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Кто есть CodeCombat?"
|
||||
|
@ -468,3 +488,35 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
ambassador_title_description: "(поддержка)"
|
||||
counselor_title: "Советник"
|
||||
counselor_title_description: "(эксперт/учитель)"
|
||||
|
||||
ladder:
|
||||
please_login: "Пожалуйста, перед игрой для ладдера, войдите в аккаунт."
|
||||
my_matches: "Мои матчи"
|
||||
simulate: "Симулирование"
|
||||
simulation_explanation: "Симулированием игр вы сможете быстрее получить оценку игры!"
|
||||
simulate_games: "Симулировать игры!"
|
||||
simulate_all: "СБРОСИТЬ И СИМУЛИРОВАТЬ ИГРЫ"
|
||||
leaderboard: "Таблица лидеров"
|
||||
battle_as: "Сразиться за "
|
||||
summary_your: "Ваши "
|
||||
summary_matches: "матчи - "
|
||||
summary_wins: " побед, "
|
||||
summary_losses: " поражений"
|
||||
rank_no_code: "Нет нового кода для оценки"
|
||||
rank_my_game: "Оценить мою игру!"
|
||||
rank_submitting: "Отправка..."
|
||||
rank_submitted: "Отправлено для оценки"
|
||||
rank_failed: "Сбой в оценке"
|
||||
rank_being_ranked: "Игра оценивается"
|
||||
code_being_simulated: "Ваш новый код участвует в симуляции других игроков для оценки. Обновление будет при поступлении новых матчей."
|
||||
no_ranked_matches_pre: "Нет оценённых матчей для команды"
|
||||
no_ranked_matches_post: "! Сыграйте против нескольких противников и возвращайтесь сюда для оценки вашей игры."
|
||||
choose_opponent: "Выберите противника"
|
||||
tutorial_play: "Пройти обучение"
|
||||
tutorial_recommended: "Рекомендуется, если вы раньше никогда не играли"
|
||||
tutorial_skip: "Пропустить обучение"
|
||||
tutorial_not_sure: "Не уверены, что делать дальше?"
|
||||
tutorial_play_first: "Сначала пройдите обучение."
|
||||
simple_ai: "Простой ИИ"
|
||||
warmup: "Разминка"
|
||||
vs: "против"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
campaign_player_created: "Hráčmi vytvorené levely"
|
||||
campaign_player_created_description: "... v ktorých sa popasujete s kreativitou svojich <a href=\"/contribute#artisan\">súdruhov kúzelníkov</a>."
|
||||
level_difficulty: "Obtiažnosť."
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontaktujte nás"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "alebo"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Správa"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
campaign_player_created: "Направљено од стране играча"
|
||||
campaign_player_created_description: "... у којима се бориш против креативности својих колега."
|
||||
level_difficulty: "Тежина: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Контактирај CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
wizard_tab: "Чаробњак"
|
||||
password_tab: "Шифра"
|
||||
emails_tab: "Мејлови"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Изабери Граватар фотографију "
|
||||
gravatar_add_photos: "Додај сличице и фотографије за Граватар налог за свој мејл да изабереш слику."
|
||||
gravatar_add_more_photos: "Додај још слика на свој Граватар налог да би им приступио овде."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
new_password_verify: "Потврди"
|
||||
email_subscriptions: "Мејл претплате"
|
||||
email_announcements: "Обавештења"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Прими мејл за најновије вести и достигнућа на CodeCombat-у"
|
||||
contributor_emails: "Мејлови реда сарадника"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
victory_sign_up: "Пријави се за новости"
|
||||
victory_sign_up_poke: "Желиш ли да примаш најновије вести на мејл? Направи бесплатан налог и ми ћемо те обавештавати!"
|
||||
victory_rate_the_level: "Оцени ниво: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Играј следећи ниво"
|
||||
victory_go_home: "Иди на почетну"
|
||||
victory_review: "Реци нам више!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "или"
|
||||
email: "Мејл"
|
||||
# password: "Password"
|
||||
message: "Порука"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
campaign_player_created: "Spelarskapade"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "Svårighetsgrad: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Kontakta CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
wizard_tab: "Trollkarl"
|
||||
password_tab: "Lösenord"
|
||||
emails_tab: "E-postadresser"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Välj ett Gravatar foto att använda"
|
||||
gravatar_add_photos: "Lägg till miniatyrbilder och fotografier i ett Gravatar konto kopplat till din mail för att välja profilbild."
|
||||
gravatar_add_more_photos: "Lägg till mer fotografier till i ditt Gravatar konto för att använda dem här."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
new_password_verify: "Verifiera"
|
||||
email_subscriptions: "E-post Prenumerationer"
|
||||
email_announcements: "Meddelanden"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Få e-post med de senaste nyheterna och utvecklingen på CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
victory_sign_up: "Registrera dig för att få uppdateringar"
|
||||
victory_sign_up_poke: "Vill du ha de senaste nyheterna vi e-post? Skapa ett gratiskonto så håller vi dig informerad!"
|
||||
victory_rate_the_level: "Betygsätt nivån: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Spela Nästa Nivå"
|
||||
victory_go_home: "Gå Hem"
|
||||
victory_review: "Berätta mer!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# wizard_tab: "Wizard"
|
||||
password_tab: "รหัสผ่าน"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
email_announcements: "ประกาศ"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
victory_sign_up: "สมัครสมาชิกเพื่ออัพเดท"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "เล่นด่านถัดไป"
|
||||
victory_go_home: "ไปหน้าแรก"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
campaign_player_created: "Oyuncuların Oluşturdukları"
|
||||
campaign_player_created_description: "<a href=\"/contribute#artisan\">Zanaatkâr Büyücüler</a>in yaratıcılıklarına karşı mücadele etmek için..."
|
||||
level_difficulty: "Zorluk: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "CodeCombat ile İletişim"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
wizard_tab: "Sihirbaz"
|
||||
password_tab: "Şifre"
|
||||
emails_tab: "E-postalar"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Kullanılacak Gravatar fotoğrafını seçin"
|
||||
gravatar_add_photos: "Burada resim olarak kullanmak için Gravatar hesabınıza buradaki e-posta adresinin aynısı olacak şekilde resim yükleyin."
|
||||
gravatar_add_more_photos: "Burada kullanmak üzere Gravatar hesabınıza resim yükleyin."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
new_password_verify: "Teyit Et"
|
||||
email_subscriptions: "E-posta Abonelikleri"
|
||||
email_announcements: "Duyurular"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Düzenli bilgilendirmelere kaydol."
|
||||
email_announcements_description: "CodeCombat ile ilgili son haberlere ve gelişmelere ulaşın."
|
||||
contributor_emails: "İştirakçi Sınıfı E-postaları"
|
||||
|
@ -172,11 +175,14 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
reload_title: "Tüm kod yeniden yüklensin mi?"
|
||||
reload_really: "Bu seviyeyi en baştan yüklemek istediğinizden emin misiniz?"
|
||||
reload_confirm: "Tümünü Yeniden Yükle"
|
||||
# victory_title_prefix: ""
|
||||
victory_title_prefix: ""
|
||||
victory_title_suffix: "Tamamlandı "
|
||||
victory_sign_up: " Güncellemelere Abone Ol"
|
||||
victory_sign_up_poke: "Son haberleri e-postanızda görmek ister misiniz? Ücretsiz bir hesap oluşturmanız durumunda sizi bilgilendirebiliriz."
|
||||
victory_rate_the_level: "Seviyeyi oyla:"
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Sonraki Seviyeyi Oyna: "
|
||||
victory_go_home: "Anasayfaya Git"
|
||||
victory_review: "Daha detaylı bilgi verebilirsiniz!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
contact_us: "bize ulaşın!"
|
||||
hipchat_prefix: "Bizi ayrıca"
|
||||
hipchat_url: "HipChat otasında bulabilirsiniz."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "Bazı Seçenekler?"
|
||||
level_tab_thangs: "Nesneler"
|
||||
level_tab_scripts: "Betikler"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
level_components_title: "Tüm Nesneleri Geri Dön"
|
||||
level_components_type: "Tür"
|
||||
level_component_edit_title: "Bileşen Düzenle"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "Sistem Düzenle"
|
||||
create_system_title: "Yeni Sistem Oluştur"
|
||||
new_component_title: "Yeni Bileşen Oluştur"
|
||||
new_component_field_system: "Sistem"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Önizleme"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
body: "Gövde"
|
||||
version: "Sürüm"
|
||||
commit_msg: "Gönderme İletisi"
|
||||
# history: "History"
|
||||
version_history_for: "Sürüm Geçmişi: "
|
||||
# result: "Result"
|
||||
results: "Sonuçlar"
|
||||
description: "Açıklama"
|
||||
or: "veya"
|
||||
email: "E-posta"
|
||||
# password: "Password"
|
||||
message: "İleti"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "CodeCombat kimlerden oluşur?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -412,11 +443,11 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries, particularly Brazil! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref: "We've started a lot of initial translations at "
|
||||
# diplomat_doc_url: "this forum post"
|
||||
# diplomat_join_suf: "so check it out and add things for your language. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
ambassador_title_description: "(Support)"
|
||||
counselor_title: "Danışman"
|
||||
counselor_title_description: "(Uzman/Öğretmen)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
campaign_player_created: "Рівні, створені гравцями"
|
||||
campaign_player_created_description: "... у яких ви сражаєтеся проти креативності ваших друзів-<a href=\"/contribute#artisan\">Архитекторів</a>."
|
||||
level_difficulty: "Складність: "
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "Зв'язатися з CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
wizard_tab: "Персонаж"
|
||||
password_tab: "Пароль"
|
||||
emails_tab: "Email-адреси"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "Оберіть, яке фото з Gravatar використовувати"
|
||||
gravatar_add_photos: "Додайте фото та зменшені зображення до акаунта Gravatar, пов'язаного з вашою email-адресою, щоб обрати зображення"
|
||||
gravatar_add_more_photos: "Додайти більше фото до вашого акаунта Gravatar, щоб вони були доступні тут."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
new_password_verify: "Підтвердження паролю"
|
||||
email_subscriptions: "Email-підписки"
|
||||
email_announcements: "Оголошення"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "Отримувати періодичні нагадування для Вашого акаунта."
|
||||
email_announcements_description: "Отримувати електронні листи про останні новини CodeCombat."
|
||||
contributor_emails: "Підписки за класами учасників"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
victory_sign_up: "Підписатися на оновлення"
|
||||
victory_sign_up_poke: "Хочете отримувати останні новини на email? Створіть безкоштовний акаунт, і ми будемо тримати вас в курсі!"
|
||||
victory_rate_the_level: "Оцінити рівень: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "Наступний рівень"
|
||||
victory_go_home: "На головну"
|
||||
victory_review: "Розкажіть нам більше!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
contact_us: "Зв’язатися з нами!"
|
||||
hipchat_prefix: "Ви можете також знайти нас в нашому"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# body: "Body"
|
||||
version: "Версія"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
results: "Результати"
|
||||
description: "Опис"
|
||||
or: "чи"
|
||||
email: "Email"
|
||||
# password: "Password"
|
||||
message: "Повідомлення"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Хто є CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As "
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
campaign_player_created: "创建玩家"
|
||||
campaign_player_created_description: "……在这里你可以与你的小伙伴的创造力战斗 <a href=\"/contribute#artisan\">技术指导</a>."
|
||||
level_difficulty: "难度:"
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "联系我们"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
wizard_tab: "巫师"
|
||||
password_tab: "密码"
|
||||
emails_tab: "邮件"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "选择使用 Gravatar 照片"
|
||||
gravatar_add_photos: "添加小图和照片到一个 Gravatar 账户供你选择。"
|
||||
gravatar_add_more_photos: "添加更多照片到你的 Gravatar 账户并查看。"
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
new_password_verify: "核实"
|
||||
email_subscriptions: "邮箱验证"
|
||||
email_announcements: "通知"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "接收来自你的账户的定期通知。"
|
||||
email_announcements_description: "接收关于 CodeCombat 最近的新闻和发展的邮件。"
|
||||
contributor_emails: "贡献者通知"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
victory_sign_up: "保存进度"
|
||||
victory_sign_up_poke: "想保存你的代码?创建一个免费账户吧!"
|
||||
victory_rate_the_level: "评估关卡:"
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "下一关"
|
||||
victory_go_home: "返回主页"
|
||||
victory_review: "给我们反馈!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
contact_us: "联系我们!"
|
||||
hipchat_prefix: "你也可以在这里找到我们"
|
||||
hipchat_url: "HipChat 房间。"
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
level_some_options: "有些选项?"
|
||||
level_tab_thangs: "物体"
|
||||
level_tab_scripts: "脚本"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
level_components_title: "返回到所有物体主页"
|
||||
level_components_type: "类型"
|
||||
level_component_edit_title: "编辑组件"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
level_system_edit_title: "编辑系统"
|
||||
create_system_title: "创建新的系统"
|
||||
new_component_title: "创建新的组件"
|
||||
new_component_field_system: "系统"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "预览"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
body: "正文"
|
||||
version: "版本"
|
||||
commit_msg: "提交信息"
|
||||
# history: "History"
|
||||
version_history_for: "版本历史: "
|
||||
# result: "Result"
|
||||
results: "结果"
|
||||
description: "描述"
|
||||
or: "或"
|
||||
email: "邮件"
|
||||
# password: "Password"
|
||||
message: "消息"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "什么是 CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
more_about_adventurer: "了解成为冒险家的方法"
|
||||
adventurer_subscribe_desc: "通过电子邮件获得新关卡通知。"
|
||||
scribe_summary_pref: "CodeCombat 不只是一堆关卡的集合,它还是玩家们编程知识的来源。这样的话,每个工匠都能链接详尽的文档,以供玩家们学习,类似于"
|
||||
scribe_summary_sufx: "那些。如果你喜欢解释编程概念,那这个职业适合你。"
|
||||
scribe_summary_suf: "那些。如果你喜欢解释编程概念,那这个职业适合你。"
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
ambassador_title_description: "(用户支持人员)"
|
||||
counselor_title: "顾问"
|
||||
counselor_title_description: "(专家/导师)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
campaign_player_created: "玩家建立的關卡"
|
||||
campaign_player_created_description: "...挑戰同伴的創意 <a href=\"/contribute#artisan\">技術指導</a>."
|
||||
level_difficulty: "難度"
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "聯繫我們"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
wizard_tab: "巫師"
|
||||
password_tab: "密碼"
|
||||
emails_tab: "郵件"
|
||||
# admin: "Admin"
|
||||
gravatar_select: "選擇一個Gravatar"
|
||||
gravatar_add_photos: "上傳頭像到Gravatar"
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
new_password_verify: "確認密碼"
|
||||
email_subscriptions: "訂閱"
|
||||
email_announcements: "通知"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications_description: "接收帳號通知"
|
||||
email_announcements_description: "接收關於 CodeCombat 的新聞和開發消息。"
|
||||
contributor_emails: "貢獻者電郵"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
victory_sign_up: "保存進度"
|
||||
victory_sign_up_poke: "想保存你的程式碼?建立一個免費帳號吧!"
|
||||
victory_rate_the_level: "評估關卡: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
victory_play_next_level: "下一關"
|
||||
victory_go_home: "返回首頁"
|
||||
victory_review: "給我們回饋!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "或"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
message: "訊息"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "什麼是CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -81,6 +81,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
level_difficulty: "难度"
|
||||
# play_as: "Play As "
|
||||
|
||||
contact:
|
||||
contact_us: "联系我们"
|
||||
|
@ -122,6 +123,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# gravatar_select: "Select which Gravatar photo to use"
|
||||
# gravatar_add_photos: "Add thumbnails and photos to a Gravatar account for your email to choose an image."
|
||||
# gravatar_add_more_photos: "Add more photos to your Gravatar account to access them here."
|
||||
|
@ -130,6 +132,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -177,6 +180,9 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
|
@ -225,6 +231,8 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -243,10 +251,18 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -258,12 +274,27 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# history: "History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
or: "或"
|
||||
email: "邮箱"
|
||||
# password: "Password"
|
||||
message: "留言"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -400,7 +431,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_sufx: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
|
@ -457,3 +488,35 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
CocoModel = require('./CocoModel')
|
||||
SpriteBuilder = require 'lib/sprites/SpriteBuilder'
|
||||
|
||||
buildQueue = []
|
||||
|
||||
module.exports = class ThangType extends CocoModel
|
||||
@className: "ThangType"
|
||||
urlRoot: "/db/thang.type"
|
||||
|
@ -136,7 +138,8 @@ module.exports = class ThangType extends CocoModel
|
|||
key = @spriteSheetKey(@options)
|
||||
spriteSheet = null
|
||||
if @options.async
|
||||
@builder.buildAsync()
|
||||
buildQueue.push @
|
||||
@builder.buildAsync() unless buildQueue.length > 1
|
||||
@builder.on 'complete', @onBuildSpriteSheetComplete, @, true, key
|
||||
return true
|
||||
console.warn 'Building', @get('name'), @options, 'and blocking the main thread.'
|
||||
|
@ -146,6 +149,8 @@ module.exports = class ThangType extends CocoModel
|
|||
spriteSheet
|
||||
|
||||
onBuildSpriteSheetComplete: (e, key) ->
|
||||
buildQueue = buildQueue.slice(1)
|
||||
buildQueue[0]?.builder.buildAsync()
|
||||
@spriteSheets[key] = e.target.spriteSheet
|
||||
delete @building[key]
|
||||
@trigger 'build-complete'
|
||||
|
|
|
@ -45,7 +45,8 @@ h1 h2 h3 h4
|
|||
background-color: #2f261d
|
||||
p
|
||||
margin: 0
|
||||
padding-top: 25px
|
||||
padding-top: 10px
|
||||
padding-bottom: 10px
|
||||
text-align: center
|
||||
|
||||
.mixpanel-badge, .firebase-badge
|
||||
|
@ -67,7 +68,7 @@ a[data-toggle="modal"]
|
|||
cursor: pointer
|
||||
|
||||
.share-buttons, .partner-badges
|
||||
margin-top: 10px
|
||||
padding-bottom: 10px
|
||||
text-align: center
|
||||
@include opacity(0.75)
|
||||
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
a.open-modal-button
|
||||
float: right
|
||||
|
||||
input#search
|
||||
width: 190px
|
||||
height: 30px
|
||||
padding-left: 5px
|
||||
|
||||
table.table
|
||||
background-color: white
|
||||
.body-row
|
||||
|
|
|
@ -70,7 +70,7 @@ block content
|
|||
li Turkish - Nazım Gediz Aydındoğmuş, cobaimelan, wakeup
|
||||
li Brazilian Portuguese - Gutenberg Barros, Kieizroe, Matthew Burt, brunoporto
|
||||
li Portugal Portuguese - Matthew Burt, ReiDuKuduro
|
||||
li German - Dirk, faabsen, HiroP0, Anon
|
||||
li German - Dirk, faabsen, HiroP0, Anon, bkimminich
|
||||
li Thai - Kamolchanok Jittrepit
|
||||
li Vietnamese - An Nguyen Hoang Thien
|
||||
li Dutch - Glen De Cauwsemaecker, Guido Zuidhof, Ruben Vereecken
|
||||
|
@ -81,7 +81,7 @@ block content
|
|||
li Hungarian - ferpeter, csuvsaregal, atlantisguru, Anon
|
||||
li Japanese - g1itch, kengos
|
||||
li Chinese - Adam23, spacepope
|
||||
li Polish - Anon
|
||||
li Polish - Anon, Kacper Ciepielewski
|
||||
li Danish - Einar Rasmussen, sorsjen, Anon
|
||||
li Slovak - Anon
|
||||
li Persian - Reza Habibi (Rehb)
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
h3(data-i18n="editor.level_tab_thangs_title") Current Thangs
|
||||
.btn-group(data-toggle="buttons-radio")#extant-thangs-filter
|
||||
button.btn.btn-primary All
|
||||
button.btn.btn-primary(value="Unit")
|
||||
button.btn.btn-primary(value="Unit", title="Unit")
|
||||
i.icon-user
|
||||
button.btn.btn-primary(value="Wall")
|
||||
button.btn.btn-primary(value="Wall", title="Wall")
|
||||
i.icon-home
|
||||
button.btn.btn-primary(value="Floor")
|
||||
button.btn.btn-primary(value="Floor", title="Floor")
|
||||
i.icon-globe
|
||||
button.btn.btn-primary(value="Doodad")
|
||||
button.btn.btn-primary(value="Doodad", title="Doodad")
|
||||
i.icon-leaf
|
||||
button.btn.btn-primary(value="Misc")
|
||||
button.btn.btn-primary(value="Misc", title="Misc")
|
||||
i.icon-question-sign
|
||||
#thangs-treema(title="Double click to configure a thang")
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ div#columns.row
|
|||
tr
|
||||
th(colspan=4, style="color: #{team.primaryColor}")
|
||||
span= team.name
|
||||
span
|
||||
span(data-i18n="ladder.leaderboard") Leaderboard
|
||||
tr
|
||||
th(data-i18n="general.rank") Rank
|
||||
|
|
|
@ -13,6 +13,7 @@ div#columns.row
|
|||
th(colspan=4, style="color: #{team.primaryColor}")
|
||||
span(data-i18n="ladder.summary_your") Your
|
||||
|#{team.name}
|
||||
|
|
||||
span(data-i18n="ladder.summary_matches") Matches -
|
||||
|#{team.wins}
|
||||
span(data-i18n="ladder.summary_wins") Wins,
|
||||
|
|
|
@ -33,7 +33,7 @@ button.btn.btn-xs.btn-inverse#music-button(title="Toggle Music")
|
|||
li(title="Ctrl/Cmd + G: Toggle grid display").selectable#grid-toggle
|
||||
i.icon-th
|
||||
span(data-i18n="play_level.grid") Grid
|
||||
i.icon-ok.secret
|
||||
i.icon-ok.secret.invisible
|
||||
li.selectable#edit-wizard-settings
|
||||
i.icon-user
|
||||
span(data-i18n="play_level.customize_wizard") Customize Wizard
|
||||
|
|
|
@ -6,5 +6,5 @@ ul(class="nav nav-pills" + (tabbed ? ' multiple-tabs' : ''))
|
|||
h4= group
|
||||
.tab-content
|
||||
each slug, group in entryGroupSlugs
|
||||
div(id="palette-tab-" + slug, class="tab-pane" + (group == "this" || slug == "available-spells" ? " active" : ""))
|
||||
div(id="palette-tab-" + slug, class="tab-pane" + (group == "this" || slug == defaultGroupSlug ? " active" : ""))
|
||||
div(class="properties properties-" + slug)
|
||||
|
|
|
@ -98,6 +98,7 @@ module.exports = class ThangsTabView extends View
|
|||
@$el.find('#extant-thangs-filter button:first').button('toggle')
|
||||
|
||||
onFilterExtantThangs: (e) ->
|
||||
@$el.find('#extant-thangs-filter button.active').button('toggle')
|
||||
button = $(e.target).closest('button')
|
||||
button.button('toggle')
|
||||
val = button.val()
|
||||
|
|
|
@ -67,12 +67,13 @@ module.exports = class HomeView extends View
|
|||
createWizard: (scale=3.7) ->
|
||||
spriteOptions = thangID: "Beginner Wizard", resolutionFactor: scale
|
||||
@wizardSprite = new WizardSprite @wizardType, spriteOptions
|
||||
@wizardSprite.update()
|
||||
wizardDisplayObject = @wizardSprite.displayObject
|
||||
wizardDisplayObject.x = 70
|
||||
wizardDisplayObject.y = 120
|
||||
wizardDisplayObject.scaleX = wizardDisplayObject.scaleY = scale
|
||||
wizardDisplayObject.scaleX *= -1
|
||||
@wizardSprite.queueAction 'idle'
|
||||
@wizardSprite.update()
|
||||
@stage.addChild wizardDisplayObject
|
||||
@stage.update()
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
View = require 'views/kinds/CocoView'
|
||||
template = require 'templates/play/level/goals'
|
||||
{me} = require 'lib/auth'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
stateIconMap =
|
||||
incomplete: 'icon-minus'
|
||||
|
@ -31,7 +32,7 @@ module.exports = class GoalsView extends View
|
|||
state = e.goalStates[goal.id]
|
||||
continue if goal.hiddenGoal and state.status isnt 'failure'
|
||||
continue if goal.team and me.team isnt goal.team
|
||||
text = goal.i18n?[me.lang()]?.name ? goal.name
|
||||
text = utils.i18n goal, 'name'
|
||||
if state.killed
|
||||
dead = _.filter(_.values(state.killed)).length
|
||||
targeted = _.values(state.killed).length
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
View = require 'views/kinds/ModalView'
|
||||
template = require 'templates/play/level/modal/docs'
|
||||
Article = require 'models/Article'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
# let's implement this once we have the docs database schema set up
|
||||
|
||||
module.exports = class DocsModal extends View
|
||||
template: template
|
||||
id: 'docs-modal'
|
||||
|
||||
|
||||
shortcuts:
|
||||
'enter': 'hide'
|
||||
|
||||
|
@ -25,8 +26,8 @@ module.exports = class DocsModal extends View
|
|||
@docs = specific.concat(general)
|
||||
marked.setOptions {gfm: true, sanitize: false, smartLists: true, breaks: false}
|
||||
@docs = _.cloneDeep(@docs)
|
||||
doc.html = marked(doc.i18n?[me.lang()]?.body or doc.body) for doc in @docs
|
||||
doc.name = (doc.i18n?[me.lang()]?.name or doc.name) for doc in @docs
|
||||
doc.html = marked(utils.i18n doc, 'body') for doc in @docs
|
||||
doc.name = (utils.i18n doc, 'name') for doc in @docs
|
||||
doc.slug = _.string.slugify(doc.name) for doc in @docs
|
||||
super()
|
||||
|
||||
|
@ -49,4 +50,4 @@ module.exports = class DocsModal extends View
|
|||
@$el.find('li.active').removeClass('active')
|
||||
|
||||
onHidden: ->
|
||||
Backbone.Mediator.publish 'level:docs-hidden'
|
||||
Backbone.Mediator.publish 'level:docs-hidden'
|
||||
|
|
|
@ -2,8 +2,7 @@ View = require 'views/kinds/ModalView'
|
|||
template = require 'templates/play/level/modal/victory'
|
||||
{me} = require 'lib/auth'
|
||||
LevelFeedback = require 'models/LevelFeedback'
|
||||
|
||||
# let's implement this once we have the docs database schema set up
|
||||
utils = require 'lib/utils'
|
||||
|
||||
module.exports = class VictoryModal extends View
|
||||
id: 'level-victory-modal'
|
||||
|
@ -26,7 +25,7 @@ module.exports = class VictoryModal extends View
|
|||
|
||||
constructor: (options) ->
|
||||
victory = options.level.get('victory')
|
||||
body = victory?.i18n?[me.lang()]?.body or victory.body or 'Sorry, this level has no victory message yet.'
|
||||
body = utils.i18n(victory, 'body') or 'Sorry, this level has no victory message yet.'
|
||||
@body = marked(body)
|
||||
@level = options.level
|
||||
@session = options.session
|
||||
|
@ -80,7 +79,7 @@ module.exports = class VictoryModal extends View
|
|||
c.body = @body
|
||||
c.me = me
|
||||
c.hasNextLevel = _.isObject(@level.get('nextLevel')) and (@level.get('name') isnt "Mobile Artillery")
|
||||
c.levelName = @level.get('i18n')?[me.lang()]?.name ? @level.get('name')
|
||||
c.levelName = utils.i18n @level.attributes, 'name'
|
||||
c.level = @level
|
||||
if c.level.get('type') is 'ladder'
|
||||
c1 = @session?.get('code')
|
||||
|
|
|
@ -27,6 +27,7 @@ module.exports = class SpellPaletteView extends View
|
|||
c.entryGroups = @entryGroups
|
||||
c.entryGroupSlugs = @entryGroupSlugs
|
||||
c.tabbed = _.size(@entryGroups) > 1
|
||||
c.defaultGroupSlug = @defaultGroupSlug
|
||||
c
|
||||
|
||||
afterRender: ->
|
||||
|
@ -89,6 +90,7 @@ module.exports = class SpellPaletteView extends View
|
|||
defaultGroup = $.i18n.t("play_level.tome_available_spells", defaultValue: "Available Spells")
|
||||
@entryGroups = {}
|
||||
@entryGroups[defaultGroup] = @entries
|
||||
@defaultGroupSlug = _.string.slugify defaultGroup
|
||||
@entryGroupSlugs = {}
|
||||
for group, entries of @entryGroups
|
||||
@entryGroupSlugs[group] = _.string.slugify group
|
||||
|
|
|
@ -130,7 +130,7 @@ module.exports = class TomeView extends View
|
|||
unless method.cloneOf
|
||||
skipProtectAPI = @getQueryVariable("skip_protect_api") is "true" or @options.levelID isnt 'brawlwood'
|
||||
skipProtectAPI = true # gah, it's so slow :( and somehow still affects simulation
|
||||
#skipProtectAPI = false if @options.levelID is 'dungeon-arena'
|
||||
skipProtectAPI = false if @options.levelID is 'dungeon-arena'
|
||||
skipFlow = @getQueryVariable("skip_flow") is "true" or @options.levelID is 'brawlwood'
|
||||
spell = @spells[spellKey] = new Spell programmableMethod: method, spellKey: spellKey, pathComponents: pathPrefixComponents.concat(pathComponents), session: @options.session, supermodel: @supermodel, skipFlow: skipFlow, skipProtectAPI: skipProtectAPI, worker: @worker
|
||||
for thangID, spellKeys of @thangSpells
|
||||
|
|
|
@ -2,6 +2,7 @@ View = require 'views/kinds/RootView'
|
|||
template = require 'templates/play/level'
|
||||
{me} = require('lib/auth')
|
||||
ThangType = require 'models/ThangType'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
# temp hard coded data
|
||||
World = require 'lib/world/world'
|
||||
|
@ -133,7 +134,6 @@ module.exports = class PlayLevelView extends View
|
|||
session = @levelLoader.session
|
||||
diff = new Date().getTime() - new Date(session.get('created')).getTime()
|
||||
return if showFrequency is 'first-time' and diff > (5 * 60 * 1000)
|
||||
return unless @levelLoader.level.loaded
|
||||
articles = @levelLoader.supermodel.getModels Article
|
||||
for article in articles
|
||||
return unless article.loaded
|
||||
|
@ -153,7 +153,7 @@ module.exports = class PlayLevelView extends View
|
|||
if window.currentModal and not window.currentModal.destroyed
|
||||
@loadingScreen.showReady()
|
||||
return Backbone.Mediator.subscribeOnce 'modal-closed', @onLevelLoaderLoaded, @
|
||||
|
||||
|
||||
localStorage["lastLevel"] = @levelID if localStorage?
|
||||
@grabLevelLoaderData()
|
||||
team = @getQueryVariable("team") ? @world.teamForPlayer(0)
|
||||
|
@ -175,7 +175,7 @@ module.exports = class PlayLevelView extends View
|
|||
if @otherSession
|
||||
# TODO: colorize name and cloud by team, colorize wizard by user's color config
|
||||
@surface.createOpponentWizard id: @otherSession.get('creator'), name: @otherSession.get('creatorName'), team: @otherSession.get('team')
|
||||
|
||||
|
||||
grabLevelLoaderData: ->
|
||||
@session = @levelLoader.session
|
||||
@world = @levelLoader.world
|
||||
|
@ -183,7 +183,7 @@ module.exports = class PlayLevelView extends View
|
|||
@otherSession = @levelLoader.opponentSession
|
||||
@levelLoader.destroy()
|
||||
@levelLoader = null
|
||||
|
||||
|
||||
loadOpponentTeam: (myTeam) ->
|
||||
opponentSpells = []
|
||||
for spellTeam, spells of @session.get('teamSpells') ? @otherSession?.get('teamSpells') ? {}
|
||||
|
@ -202,7 +202,7 @@ module.exports = class PlayLevelView extends View
|
|||
# For now, ladderGame will disallow multiplayer, because session code combining doesn't play nice yet.
|
||||
@session.set 'multiplayer', false
|
||||
|
||||
|
||||
|
||||
onSupermodelLoadedOne: =>
|
||||
@modelsLoaded ?= 0
|
||||
@modelsLoaded += 1
|
||||
|
@ -224,7 +224,7 @@ module.exports = class PlayLevelView extends View
|
|||
@insertSubView new GoldView {}
|
||||
@insertSubView new HUDView {}
|
||||
@insertSubView new ChatView levelID: @levelID, sessionID: @session.id, session: @session
|
||||
worldName = @level.get('i18n')?[me.lang()]?.name ? @level.get('name')
|
||||
worldName = utils.i18n @level.attributes, 'name'
|
||||
@controlBar = @insertSubView new ControlBarView {worldName: worldName, session: @session, level: @level, supermodel: @supermodel, playableTeams: @world.playableTeams, ladderGame: subviewOptions.ladderGame}
|
||||
#Backbone.Mediator.publish('level-set-debug', debug: true) if me.displayName() is 'Nick!'
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ View = require 'views/kinds/RootView'
|
|||
template = require 'templates/play/spectate'
|
||||
{me} = require('lib/auth')
|
||||
ThangType = require 'models/ThangType'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
# temp hard coded data
|
||||
World = require 'lib/world/world'
|
||||
|
||||
# tools
|
||||
|
@ -92,8 +92,8 @@ module.exports = class SpectateLevelView extends View
|
|||
@load()
|
||||
|
||||
load: ->
|
||||
@levelLoader = new LevelLoader
|
||||
supermodel: @supermodel
|
||||
@levelLoader = new LevelLoader
|
||||
supermodel: @supermodel
|
||||
levelID: @levelID
|
||||
sessionID: @sessionOne
|
||||
opponentSessionID: @sessionTwo
|
||||
|
@ -160,19 +160,16 @@ module.exports = class SpectateLevelView extends View
|
|||
@register()
|
||||
@controlBar.setBus(@bus)
|
||||
@surface.showLevel()
|
||||
if me.id isnt @session.get 'creator'
|
||||
if me.id isnt @session.get 'creator'
|
||||
@surface.createOpponentWizard
|
||||
id: @session.get('creator')
|
||||
name: @session.get('creatorName')
|
||||
team: @session.get('team')
|
||||
|
||||
@surface.createOpponentWizard
|
||||
|
||||
@surface.createOpponentWizard
|
||||
id: @otherSession.get('creator')
|
||||
name: @otherSession.get('creatorName')
|
||||
team: @otherSession.get('team')
|
||||
|
||||
|
||||
|
||||
|
||||
grabLevelLoaderData: ->
|
||||
@session = @levelLoader.session
|
||||
|
@ -221,7 +218,7 @@ module.exports = class SpectateLevelView extends View
|
|||
|
||||
@insertSubView new GoldView {}
|
||||
@insertSubView new HUDView {}
|
||||
worldName = @level.get('i18n')?[me.lang()]?.name ? @level.get('name')
|
||||
worldName = utils.i18n @level.attributes, 'name'
|
||||
@controlBar = @insertSubView new ControlBarView {worldName: worldName, session: @session, level: @level, supermodel: @supermodel, playableTeams: @world.playableTeams, spectateGame: true}
|
||||
#Backbone.Mediator.publish('level-set-debug', debug: true) if me.displayName() is 'Nick!'
|
||||
|
||||
|
@ -423,7 +420,7 @@ module.exports = class SpectateLevelView extends View
|
|||
continue unless thangType = _.find thangTypes, (m) -> m.get('name') is spriteName
|
||||
continue unless sound = AudioPlayer.soundForDialogue message, thangType.get('soundTriggers')
|
||||
AudioPlayer.preloadSoundReference sound
|
||||
|
||||
|
||||
onNextGamePressed: (e) ->
|
||||
console.log "You want to see the next game!"
|
||||
@sessionOne = "53193c8f7a89df21c4d968e9"
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"firepad": "~0.1.2",
|
||||
"marked": "~0.3.0",
|
||||
"moment": "~2.5.0",
|
||||
"aether": "~0.1.2",
|
||||
"aether": "~0.1.9",
|
||||
"underscore.string": "~2.3.3",
|
||||
"firebase": "~1.0.2",
|
||||
"catiline": "~2.9.3"
|
||||
|
|
|
@ -13,7 +13,7 @@ for file in dir when not (file in ['locale.coffee', 'en.coffee'])
|
|||
lines.push "#{if catMissing then '#' else ''} #{enCat}:"
|
||||
first = false
|
||||
for enTag, enString of enTags
|
||||
tagMissing = not cat[enTag]
|
||||
tagMissing = not cat[enTag]?
|
||||
tag = (cat[enTag] ?= enString)
|
||||
tag = tag.replace /"/g, '\\"'
|
||||
lines.push "#{if tagMissing then '#' else ''} #{enTag}: \"#{tag}\""
|
||||
|
|
|
@ -25,7 +25,7 @@ module.exports.setup = (app) ->
|
|||
|
||||
hash = User.hashPassword(password)
|
||||
unless user.get('passwordHash') is hash
|
||||
return done(null, false, {message:'is wrong, wrong, wrong', property:'password'})
|
||||
return done(null, false, {message:'is wrong.', property:'password'})
|
||||
return done(null, user)
|
||||
)
|
||||
))
|
||||
|
|
46
test/app/lib/utils.spec.coffee
Normal file
46
test/app/lib/utils.spec.coffee
Normal file
|
@ -0,0 +1,46 @@
|
|||
describe 'utils library', ->
|
||||
util = require 'lib/utils'
|
||||
|
||||
beforeEach ->
|
||||
this.fixture1 =
|
||||
"text": "G'day, Wizard! Come to practice? Well, let's get started..."
|
||||
"blurb": "G'day"
|
||||
"i18n":
|
||||
"es-419":
|
||||
"text": "¡Buenas, Hechicero! ¿Vienes a practicar? Bueno, empecemos..."
|
||||
"es-ES":
|
||||
"text": "¡Buenas Mago! ¿Vienes a practicar? Bien, empecemos..."
|
||||
"es":
|
||||
"text": "¡Buenas Mago! ¿Vienes a practicar? Muy bien, empecemos..."
|
||||
"fr":
|
||||
"text": "S'lut, Magicien! Venu pratiquer? Ok, bien débutons..."
|
||||
"pt-BR":
|
||||
"text": "Bom dia, feiticeiro! Veio praticar? Então vamos começar..."
|
||||
"en":
|
||||
"text": "Ohai Magician!"
|
||||
"de":
|
||||
"text": "'N Tach auch, Zauberer! Kommst Du zum Üben? Dann lass uns anfangen..."
|
||||
"sv":
|
||||
"text": "Godagens, trollkarl! Kommit för att öva? Nå, låt oss börja..."
|
||||
|
||||
|
||||
it 'i18n should find a valid target string', ->
|
||||
expect(util.i18n(this.fixture1, 'text', 'sv')).toEqual(this.fixture1.i18n['sv'].text)
|
||||
expect(util.i18n(this.fixture1, 'text', 'es-ES')).toEqual(this.fixture1.i18n['es-ES'].text)
|
||||
|
||||
it 'i18n picks the correct fallback for a specific language', ->
|
||||
expect(util.i18n(this.fixture1, 'text', 'fr-be')).toEqual(this.fixture1.i18n['fr'].text)
|
||||
|
||||
it 'i18n picks the correct fallback', ->
|
||||
expect(util.i18n(this.fixture1, 'text', 'nl')).toEqual(this.fixture1.i18n['en'].text)
|
||||
expect(util.i18n(this.fixture1, 'text', 'nl', 'de')).toEqual(this.fixture1.i18n['de'].text)
|
||||
|
||||
it 'i18n falls back to the default text, even for other targets (like blurb)', ->
|
||||
delete this.fixture1.i18n['en']
|
||||
expect(util.i18n(this.fixture1, 'text', 'en')).toEqual(this.fixture1.text)
|
||||
expect(util.i18n(this.fixture1, 'blurb', 'en')).toEqual(this.fixture1.blurb)
|
||||
delete this.fixture1.blurb
|
||||
expect(util.i18n(this.fixture1, 'blurb', 'en')).toEqual(this.fixture1.text)
|
||||
|
||||
it 'i18n can fall forward if a general language is not found', ->
|
||||
expect(util.i18n(this.fixture1, 'text', 'pt')).toEqual(this.fixture1.i18n['pt-BR'].text)
|
Loading…
Add table
Add a link
Reference in a new issue