mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-01 19:36:57 -05:00
Merge branch 'master' into production
This commit is contained in:
commit
bc9c30142b
66 changed files with 945 additions and 187 deletions
|
@ -287,7 +287,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
|
||||||
rotationType = @thangType.get('rotationType')
|
rotationType = @thangType.get('rotationType')
|
||||||
return if rotationType is 'fixed'
|
return if rotationType is 'fixed'
|
||||||
rotation = @getRotation()
|
rotation = @getRotation()
|
||||||
if @thang.maximizesArc and @thangType.get('name') in ['Arrow', 'Spear']
|
if @thangType.get('name') in ['Arrow', 'Spear']
|
||||||
# Rotates the arrow to see it arc based on velocity.z.
|
# Rotates the arrow to see it arc based on velocity.z.
|
||||||
# At midair we must see the original angle (delta = 0), but at launch time
|
# At midair we must see the original angle (delta = 0), but at launch time
|
||||||
# and arrow must point upwards/downwards respectively.
|
# and arrow must point upwards/downwards respectively.
|
||||||
|
@ -296,15 +296,13 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
|
||||||
# higher speed -> higher steep (0 at midpoint).
|
# higher speed -> higher steep (0 at midpoint).
|
||||||
# All constants are empirical. Notice that rotation here does not affect thang's state - it is just the effect.
|
# All constants are empirical. Notice that rotation here does not affect thang's state - it is just the effect.
|
||||||
# Thang's rotation is always pointing where it is heading.
|
# Thang's rotation is always pointing where it is heading.
|
||||||
velocity = @thang.velocity.z
|
vz = @thang.velocity.z
|
||||||
factor = rotation
|
if vz and speed = @thang.velocity.magnitude(true)
|
||||||
factor = -factor if factor < 0
|
vx = @thang.velocity.x
|
||||||
flip = 1
|
heading = @thang.velocity.heading()
|
||||||
if factor > 90
|
xFactor = Math.cos heading
|
||||||
factor = 180 - factor
|
zFactor = vz / Math.sqrt(vz * vz + vx * vx)
|
||||||
flip = -1 # when the arrow is on the left, 'up' means subtracting
|
rotation -= xFactor * zFactor * 45
|
||||||
factor = Math.max(factor / 90, 0.4) # between 0.4 and 1.0
|
|
||||||
rotation += flip * (velocity / 12) * factor * 45 # theoretically, 45 is the maximal delta we can make here
|
|
||||||
imageObject ?= @imageObject
|
imageObject ?= @imageObject
|
||||||
return imageObject.rotation = rotation if not rotationType
|
return imageObject.rotation = rotation if not rotationType
|
||||||
@updateIsometricRotation(rotation, imageObject)
|
@updateIsometricRotation(rotation, imageObject)
|
||||||
|
|
|
@ -23,9 +23,11 @@ module.exports = class CoordinateDisplay extends createjs.Container
|
||||||
|
|
||||||
build: ->
|
build: ->
|
||||||
@mouseEnabled = @mouseChildren = false
|
@mouseEnabled = @mouseChildren = false
|
||||||
@addChild @label = new createjs.Text("", "40px Arial", "#003300")
|
@addChild @background = new createjs.Shape()
|
||||||
@label.name = 'position text'
|
@addChild @label = new createjs.Text("", "bold 32px Arial", "#FFFFFF")
|
||||||
@label.shadow = new createjs.Shadow("#FFFFFF", 1, 1, 0)
|
@label.name = 'Coordinate Display Text'
|
||||||
|
@label.shadow = new createjs.Shadow("#000000", 1, 1, 0)
|
||||||
|
@background.name = "Coordinate Display Background"
|
||||||
|
|
||||||
onMouseOver: (e) -> @mouseInBounds = true
|
onMouseOver: (e) -> @mouseInBounds = true
|
||||||
onMouseOut: (e) -> @mouseInBounds = false
|
onMouseOut: (e) -> @mouseInBounds = false
|
||||||
|
@ -57,17 +59,34 @@ module.exports = class CoordinateDisplay extends createjs.Container
|
||||||
hide: ->
|
hide: ->
|
||||||
return unless @label.parent
|
return unless @label.parent
|
||||||
@removeChild @label
|
@removeChild @label
|
||||||
|
@removeChild @background
|
||||||
@uncache()
|
@uncache()
|
||||||
|
|
||||||
|
updateSize: ->
|
||||||
|
margin = 6
|
||||||
|
radius = 5
|
||||||
|
width = @label.getMeasuredWidth() + 2 * margin
|
||||||
|
height = @label.getMeasuredHeight() + 2 * margin
|
||||||
|
@label.regX = @background.regX = width / 2 - margin
|
||||||
|
@label.regY = @background.regY = height / 2 - margin
|
||||||
|
@background.graphics
|
||||||
|
.clear()
|
||||||
|
.beginFill("rgba(0, 0, 0, 0.4)")
|
||||||
|
.beginStroke("rgba(0, 0, 0, 0.6)")
|
||||||
|
.setStrokeStyle(1)
|
||||||
|
.drawRoundRect(0, 0, width, height, radius)
|
||||||
|
.endFill()
|
||||||
|
.endStroke()
|
||||||
|
[width, height]
|
||||||
|
|
||||||
show: =>
|
show: =>
|
||||||
return unless @mouseInBounds and @lastPos and not @destroyed
|
return unless @mouseInBounds and @lastPos and not @destroyed
|
||||||
@label.text = "(#{@lastPos.x}, #{@lastPos.y})"
|
@label.text = "(#{@lastPos.x}, #{@lastPos.y})"
|
||||||
[width, height] = [@label.getMeasuredWidth(), @label.getMeasuredHeight()]
|
[width, height] = @updateSize()
|
||||||
@label.regX = width / 2
|
|
||||||
@label.regY = height / 2
|
|
||||||
sup = @camera.worldToSurface @lastPos
|
sup = @camera.worldToSurface @lastPos
|
||||||
@x = sup.x
|
@x = sup.x
|
||||||
@y = sup.y - 7
|
@y = sup.y - 5
|
||||||
|
@addChild @background
|
||||||
@addChild @label
|
@addChild @label
|
||||||
@cache -width / 2, -height / 2, width, height
|
@cache -width / 2, -height / 2, width, height
|
||||||
Backbone.Mediator.publish 'surface:coordinates-shown', {}
|
Backbone.Mediator.publish 'surface:coordinates-shown', {}
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -1,105 +1,105 @@
|
||||||
module.exports = nativeDescription: "Català", englishDescription: "Catalan", translation:
|
module.exports = nativeDescription: "Català", englishDescription: "Catalan", translation:
|
||||||
# common:
|
common:
|
||||||
# loading: "Loading..."
|
loading: "Carregant..."
|
||||||
# saving: "Saving..."
|
saving: "Guardant..."
|
||||||
# sending: "Sending..."
|
sending: "Enviant..."
|
||||||
# cancel: "Cancel"
|
cancel: "Cancel·lant"
|
||||||
# save: "Save"
|
save: "Guardar"
|
||||||
# delay_1_sec: "1 second"
|
delay_1_sec: "1 segon"
|
||||||
# delay_3_sec: "3 seconds"
|
delay_3_sec: "3 segons"
|
||||||
# delay_5_sec: "5 seconds"
|
delay_5_sec: "5 segons"
|
||||||
# manual: "Manual"
|
manual: "Manual"
|
||||||
# fork: "Fork"
|
fork: "Fork"
|
||||||
# play: "Play"
|
play: "Jugar"
|
||||||
|
|
||||||
# modal:
|
modal:
|
||||||
# close: "Close"
|
close: "Tancar"
|
||||||
# okay: "Okay"
|
okay: "Okey"
|
||||||
|
|
||||||
# not_found:
|
# not_found:
|
||||||
# page_not_found: "Page not found"
|
# page_not_found: "Page not found"
|
||||||
|
|
||||||
# nav:
|
nav:
|
||||||
# play: "Levels"
|
play: "Nivells"
|
||||||
# editor: "Editor"
|
editor: "Editor"
|
||||||
# blog: "Blog"
|
blog: "Blog"
|
||||||
# forum: "Forum"
|
forum: "Fòrum"
|
||||||
# admin: "Admin"
|
admin: "Admin"
|
||||||
# home: "Home"
|
home: "Inici"
|
||||||
# contribute: "Contribute"
|
contribute: "Col·laborar"
|
||||||
# legal: "Legal"
|
legal: "Legalitat"
|
||||||
# about: "About"
|
about: "Sobre Nosaltres"
|
||||||
# contact: "Contact"
|
contact: "Contacta"
|
||||||
# twitter_follow: "Follow"
|
twitter_follow: "Segueix-nos"
|
||||||
# employers: "Employers"
|
employers: "Treballadors"
|
||||||
|
|
||||||
# versions:
|
versions:
|
||||||
# save_version_title: "Save New Version"
|
save_version_title: "Guarda una nova versió"
|
||||||
# new_major_version: "New Major Version"
|
# new_major_version: "New Major Version"
|
||||||
# cla_prefix: "To save changes, first you must agree to our"
|
cla_prefix: "Per guardar els canvis primer has d'acceptar"
|
||||||
# cla_url: "CLA"
|
cla_url: "CLA"
|
||||||
# cla_suffix: "."
|
cla_suffix: "."
|
||||||
# cla_agree: "I AGREE"
|
cla_agree: "Estic d'acord"
|
||||||
|
|
||||||
# login:
|
login:
|
||||||
# sign_up: "Create Account"
|
sign_up: "Crear un compte"
|
||||||
# log_in: "Log In"
|
log_in: "Iniciar Sessió"
|
||||||
# log_out: "Log Out"
|
log_out: "Tancar Sessió"
|
||||||
# recover: "recover account"
|
recover: "Recuperar un compte"
|
||||||
|
|
||||||
# recover:
|
recover:
|
||||||
# recover_account_title: "Recover Account"
|
recover_account_title: "Recuperar Compte"
|
||||||
# send_password: "Send Recovery Password"
|
send_password: "Enviar contrasenya oblidada"
|
||||||
|
|
||||||
# signup:
|
signup:
|
||||||
# create_account_title: "Create Account to Save Progress"
|
create_account_title: "Crear un compte per tal de guardar els progressos"
|
||||||
# description: "It's free. Just need a couple things and you'll be good to go:"
|
description: "És gratuit. Només calen un parell de coses i ja podràs començar:"
|
||||||
# email_announcements: "Receive announcements by email"
|
email_announcements: "Rebre anuncis via email"
|
||||||
# coppa: "13+ or non-USA "
|
coppa: " més de 13 anys o fora dels Estats Units"
|
||||||
# coppa_why: "(Why?)"
|
coppa_why: "(Per què?)"
|
||||||
# creating: "Creating Account..."
|
creating: "Creant Compte..."
|
||||||
# sign_up: "Sign Up"
|
sign_up: "Registrar-se"
|
||||||
# log_in: "log in with password"
|
log_in: "Iniciar sessió amb la teva contrasenya"
|
||||||
|
|
||||||
# home:
|
home:
|
||||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
slogan: "Aprén a programar JavaScript tot Jugant"
|
||||||
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
|
no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!"
|
||||||
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
|
no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!"
|
||||||
# play: "Play"
|
play: "Jugar"
|
||||||
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
|
old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!"
|
||||||
# old_browser_suffix: "You can try anyway, but it probably won't work."
|
old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni."
|
||||||
# campaign: "Campaign"
|
campaign: "Campanya"
|
||||||
# for_beginners: "For Beginners"
|
for_beginners: "Per a principiants"
|
||||||
# multiplayer: "Multiplayer"
|
multiplayer: "Multijugador"
|
||||||
# for_developers: "For Developers"
|
for_developers: "Per a Desenvolupadors"
|
||||||
|
|
||||||
# play:
|
play:
|
||||||
# choose_your_level: "Choose Your Level"
|
choose_your_level: "Escull el teu nivell"
|
||||||
# adventurer_prefix: "You can jump to any level below, or discuss the levels on "
|
adventurer_prefix: "Pots saltar a qualsevols dels nivells de més abaix, o discutir els nivells de més amunt."
|
||||||
# adventurer_forum: "the Adventurer forum"
|
adventurer_forum: "El fòrum de l'aventurer"
|
||||||
# adventurer_suffix: "."
|
adventurer_suffix: "."
|
||||||
# campaign_beginner: "Beginner Campaign"
|
campaign_beginner: "Campanya del principiant"
|
||||||
# campaign_beginner_description: "... in which you learn the wizardry of programming."
|
campaign_beginner_description: "... on aprens la bruixeria de la programació."
|
||||||
# campaign_dev: "Random Harder Levels"
|
campaign_dev: "Nivells difícils aleatoris"
|
||||||
# campaign_dev_description: "... in which you learn the interface while doing something a little harder."
|
campaign_dev_description: "... on aprens a interactuar amb la interfície tot fent coses un pèl més difícils."
|
||||||
# campaign_multiplayer: "Multiplayer Arenas"
|
campaign_multiplayer: "Arenes Multijugador"
|
||||||
# campaign_multiplayer_description: "... in which you code head-to-head against other players."
|
campaign_multiplayer_description: "... on programes cara a cara contra altres jugadors."
|
||||||
# campaign_player_created: "Player-Created"
|
campaign_player_created: "Creats pel Jugador"
|
||||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
campaign_player_created_description: "... on lluites contra la creativitat dels teus companys <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||||
# level_difficulty: "Difficulty: "
|
level_difficulty: "Dificultat: "
|
||||||
# play_as: "Play As"
|
play_as: "Jugar com"
|
||||||
# spectate: "Spectate"
|
spectate: "Spectate"
|
||||||
|
|
||||||
# contact:
|
contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
contact_us: "Contacta CodeCombat"
|
||||||
# welcome: "Good to hear from you! Use this form to send us email. "
|
welcome: "Què bé poder escoltar-te! Fes servir aquest formulari per enviar-nos un email. "
|
||||||
# contribute_prefix: "If you're interested in contributing, check out our "
|
contribute_prefix: "Si estàs interessat en col·laborar, dona un cop d'ull a la nostra "
|
||||||
# contribute_page: "contribute page"
|
contribute_page: "pàgina de col·laboració"
|
||||||
# contribute_suffix: "!"
|
contribute_suffix: "!"
|
||||||
# forum_prefix: "For anything public, please try "
|
forum_prefix: "Per a qualsevol publicació, si us plau prova "
|
||||||
# forum_page: "our forum"
|
forum_page: "el nostre fòrum"
|
||||||
# forum_suffix: " instead."
|
forum_suffix: " sinó"
|
||||||
# send: "Send Feedback"
|
send: "Enviar comentari"
|
||||||
|
|
||||||
diplomat_suggestion:
|
diplomat_suggestion:
|
||||||
# title: "Help translate CodeCombat!"
|
# title: "Help translate CodeCombat!"
|
||||||
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administrátorský pohled"
|
av_title: "Administrátorský pohled"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administrator Übersicht"
|
av_title: "Administrator Übersicht"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module.exports = nativeDescription: "English", englishDescription: "English", translation:
|
module.exports = nativeDescription: "English", englishDescription: "English", translation:
|
||||||
common:
|
common:
|
||||||
loading: "Loading..."
|
loading: "Loading..."
|
||||||
saving: "Saving..."
|
saving: "Saving..."
|
||||||
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
||||||
tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
tip_js_beginning: "JavaScript is just the beginning."
|
tip_js_beginning: "JavaScript is just the beginning."
|
||||||
tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
think_solution: "Think of the solution, not the problem."
|
||||||
|
tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
tip_baby_coders: "In the future, even babies will be Archmages."
|
tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
tip_morale_improves: "Loading will continue until morale improves."
|
tip_morale_improves: "Loading will continue until morale improves."
|
||||||
tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
tip_reticulating: "Reticulating spines."
|
tip_reticulating: "Reticulating spines."
|
||||||
tip_harry: "Yer a Wizard, "
|
tip_harry: "Yer a Wizard, "
|
||||||
|
tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Admin Views"
|
av_title: "Admin Views"
|
||||||
|
@ -560,7 +573,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introducing Dungeon Arena"
|
introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
new_way: "March 17, 2014: The new way to compete with code."
|
new_way: "The new way to compete with code."
|
||||||
to_battle: "To Battle, Developers!"
|
to_battle: "To Battle, Developers!"
|
||||||
modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -67,7 +67,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
no_mobile: "CodeCombat n'a pas été créé pour les plateformes mobiles donc il est possible qu'il ne fonctionne pas correctement ! "
|
no_mobile: "CodeCombat n'a pas été créé pour les plateformes mobiles donc il est possible qu'il ne fonctionne pas correctement ! "
|
||||||
play: "Jouer"
|
play: "Jouer"
|
||||||
old_browser: "Oh oh, votre navigateur est trop vieux pour executer CodeCombat. Désolé!"
|
old_browser: "Oh oh, votre navigateur est trop vieux pour executer CodeCombat. Désolé!"
|
||||||
old_browser_suffix: "Vous pouvez essayer quan même, mais celà ne marchera probablement pas."
|
old_browser_suffix: "Vous pouvez essayer quand même, mais celà ne marchera probablement pas."
|
||||||
campaign: "Campagne"
|
campaign: "Campagne"
|
||||||
for_beginners: "Pour débutants"
|
for_beginners: "Pour débutants"
|
||||||
multiplayer: "Multijoueurs"
|
multiplayer: "Multijoueurs"
|
||||||
|
@ -83,7 +83,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
campaign_dev: "Niveaux aléatoires plus difficiles"
|
campaign_dev: "Niveaux aléatoires plus difficiles"
|
||||||
campaign_dev_description: "... dans lesquels vous apprendrez à utiliser l'interface en faisant quelque chose d'un petit peu plus dur."
|
campaign_dev_description: "... dans lesquels vous apprendrez à utiliser l'interface en faisant quelque chose d'un petit peu plus dur."
|
||||||
campaign_multiplayer: "Campagne multi-joueurs"
|
campaign_multiplayer: "Campagne multi-joueurs"
|
||||||
campaign_multiplayer_description: "... dans laquelle vous coderez en face à face contre d'autre joueurs."
|
campaign_multiplayer_description: "... dans laquelle vous coderez en face à face contre d'autres joueurs."
|
||||||
campaign_player_created: "Niveaux créés par les joueurs"
|
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>."
|
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é: "
|
level_difficulty: "Difficulté: "
|
||||||
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Vues d'administrateurs"
|
av_title: "Vues d'administrateurs"
|
||||||
|
@ -350,7 +363,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
nick_description: "Assistant programmeur, mage à la motivation excentrique, et bidouilleur de l'extrême. Nick peut faire n'importe quoi mais il a choisi CodeCombat."
|
nick_description: "Assistant programmeur, mage à la motivation excentrique, et bidouilleur de l'extrême. Nick peut faire n'importe quoi mais il a choisi CodeCombat."
|
||||||
jeremy_description: "Mage de l'assistance client, testeur de maniabilité, et community manager; vous avez probablement déjà parlé avec Jeremy."
|
jeremy_description: "Mage de l'assistance client, testeur de maniabilité, et community manager; vous avez probablement déjà parlé avec Jeremy."
|
||||||
michael_description: "Programmeur, administrateur réseau, et l'enfant prodige du premier cycle, Michael est la personne qui maintient nos serveurs en ligne."
|
michael_description: "Programmeur, administrateur réseau, et l'enfant prodige du premier cycle, Michael est la personne qui maintient nos serveurs en ligne."
|
||||||
# glen_description: "Programmer and passionate game developer, with the motivation to make this world a better place, by developing things that matter. The word impossible can't be found in his dictionary. Learning new skills is his joy!"
|
glen_description: "Programmeur et développeur de jeux passioné, avec la motivation pour faire de ce monde un meilleur endroit, en développant des choses qui comptent. Le mot impossible est introuvable dans son dictionnaire. Apprendre de nouveaux talents est sa joie !"
|
||||||
|
|
||||||
legal:
|
legal:
|
||||||
page_title: "Légal"
|
page_title: "Légal"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Vista amministratore"
|
av_title: "Vista amministratore"
|
||||||
|
@ -523,7 +536,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
counselor_title: "Consigliere"
|
counselor_title: "Consigliere"
|
||||||
counselor_title_description: "(Esperto/Insegnante)"
|
counselor_title_description: "(Esperto/Insegnante)"
|
||||||
|
|
||||||
# ladder:
|
ladder:
|
||||||
# please_login: "Please log in first before playing a ladder game."
|
# please_login: "Please log in first before playing a ladder game."
|
||||||
# my_matches: "My Matches"
|
# my_matches: "My Matches"
|
||||||
simulate: "Simula"
|
simulate: "Simula"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "管理画面"
|
av_title: "管理画面"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "관리자 뷰"
|
av_title: "관리자 뷰"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -342,7 +355,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
why_paragraph_3_center: "tapi bersukaria seperti"
|
why_paragraph_3_center: "tapi bersukaria seperti"
|
||||||
why_paragraph_3_italic_caps: "TIDAK MAK SAYA PERLU HABISKAN LEVEL!"
|
why_paragraph_3_italic_caps: "TIDAK MAK SAYA PERLU HABISKAN LEVEL!"
|
||||||
why_paragraph_3_suffix: "Itulah kenapa CodeCombat adalah permainan multiplayer, tapi bukan sebuah khursus dibuat sebagai permainan. Kami tidak akan berhenti sehingga kamu tidak akan--tetapi buat masa kini, itulah perkara yang baik."
|
why_paragraph_3_suffix: "Itulah kenapa CodeCombat adalah permainan multiplayer, tapi bukan sebuah khursus dibuat sebagai permainan. Kami tidak akan berhenti sehingga kamu tidak akan--tetapi buat masa kini, itulah perkara yang baik."
|
||||||
why_paragraph_4: "Jika kamu mahu berasa ketagih terhadap sesuatu permainan komputer, jadilah ketagih kepada permainan ini dan jadilah seorang pakar dalam zaman teknologi terkini."
|
why_paragraph_4: "Jika kamu mahu berasa ketagih terhadap sesuatu permainan komputer, jadilah ketagih kepada permainan ini dan jadilah seorang pakar dalam zaman teknologi terkini."
|
||||||
why_ending: "Dan ia adalah percuma! "
|
why_ending: "Dan ia adalah percuma! "
|
||||||
why_ending_url: "Mulalah bermain sekarang!"
|
why_ending_url: "Mulalah bermain sekarang!"
|
||||||
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -225,6 +225,33 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren."
|
editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren."
|
||||||
editor_config_behaviors_label: "Slim gedrag"
|
editor_config_behaviors_label: "Slim gedrag"
|
||||||
editor_config_behaviors_description: "Auto-aanvulling (gekrulde) haakjes en aanhalingstekens."
|
editor_config_behaviors_description: "Auto-aanvulling (gekrulde) haakjes en aanhalingstekens."
|
||||||
|
# loading_ready: "Ready!"
|
||||||
|
# tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
|
||||||
|
# tip_toggle_play: "Toggle play/paused with Ctrl+P."
|
||||||
|
# tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward."
|
||||||
|
# tip_guide_exists: "Click the guide at the top of the page for useful info."
|
||||||
|
# tip_open_source: "CodeCombat is 100% open source!"
|
||||||
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
|
# tip_reticulating: "Reticulating spines."
|
||||||
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administrator panels"
|
av_title: "Administrator panels"
|
||||||
|
@ -235,6 +262,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
||||||
u_title: "Gebruikerslijst"
|
u_title: "Gebruikerslijst"
|
||||||
lg_title: "Laatste Spelletjes"
|
lg_title: "Laatste Spelletjes"
|
||||||
|
# clas: "CLAs"
|
||||||
|
|
||||||
editor:
|
editor:
|
||||||
main_title: "CodeCombat Editors"
|
main_title: "CodeCombat Editors"
|
||||||
|
@ -515,6 +543,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
simulation_explanation: "Door spellen te simuleren kan je zelf sneller beoordeeld worden!"
|
simulation_explanation: "Door spellen te simuleren kan je zelf sneller beoordeeld worden!"
|
||||||
simulate_games: "Simuleer spellen!"
|
simulate_games: "Simuleer spellen!"
|
||||||
simulate_all: "RESET EN SIMULEER SPELLEN"
|
simulate_all: "RESET EN SIMULEER SPELLEN"
|
||||||
|
# games_simulated_by: "Games simulated by you:"
|
||||||
|
# games_simulated_for: "Games simulated for you:"
|
||||||
leaderboard: "Leaderboard"
|
leaderboard: "Leaderboard"
|
||||||
battle_as: "Vecht als "
|
battle_as: "Vecht als "
|
||||||
summary_your: "Jouw "
|
summary_your: "Jouw "
|
||||||
|
@ -542,7 +572,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introductie van Dungeon Arena"
|
introducing_dungeon_arena: "Introductie van Dungeon Arena"
|
||||||
new_way: "17 maart, 2014: De nieuwe manier om te concurreren met code."
|
new_way: "De nieuwe manier om te concurreren met code."
|
||||||
to_battle: "Naar het slagveld, ontwikkelaars!"
|
to_battle: "Naar het slagveld, ontwikkelaars!"
|
||||||
modern_day_sorcerer: "Kan jij programmeren? Hoe stoer is dat. Jij bent een modere voetballer! is het niet tijd dat je jouw magische krachten gebruikt voor het controlleren van jou minions in het slagveld? En nee, we praten heir niet over robots."
|
modern_day_sorcerer: "Kan jij programmeren? Hoe stoer is dat. Jij bent een modere voetballer! is het niet tijd dat je jouw magische krachten gebruikt voor het controlleren van jou minions in het slagveld? En nee, we praten heir niet over robots."
|
||||||
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -225,6 +225,33 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren."
|
editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren."
|
||||||
editor_config_behaviors_label: "Slim gedrag"
|
editor_config_behaviors_label: "Slim gedrag"
|
||||||
editor_config_behaviors_description: "Auto-aanvulling (gekrulde) haakjes en aanhalingstekens."
|
editor_config_behaviors_description: "Auto-aanvulling (gekrulde) haakjes en aanhalingstekens."
|
||||||
|
# loading_ready: "Ready!"
|
||||||
|
# tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
|
||||||
|
# tip_toggle_play: "Toggle play/paused with Ctrl+P."
|
||||||
|
# tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward."
|
||||||
|
# tip_guide_exists: "Click the guide at the top of the page for useful info."
|
||||||
|
# tip_open_source: "CodeCombat is 100% open source!"
|
||||||
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
|
# tip_reticulating: "Reticulating spines."
|
||||||
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administrator panels"
|
av_title: "Administrator panels"
|
||||||
|
@ -235,6 +262,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
||||||
u_title: "Gebruikerslijst"
|
u_title: "Gebruikerslijst"
|
||||||
lg_title: "Laatste Spelletjes"
|
lg_title: "Laatste Spelletjes"
|
||||||
|
# clas: "CLAs"
|
||||||
|
|
||||||
editor:
|
editor:
|
||||||
main_title: "CodeCombat Editors"
|
main_title: "CodeCombat Editors"
|
||||||
|
@ -515,6 +543,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
simulation_explanation: "Door spellen te simuleren kan je zelf sneller beoordeeld worden!"
|
simulation_explanation: "Door spellen te simuleren kan je zelf sneller beoordeeld worden!"
|
||||||
simulate_games: "Simuleer spellen!"
|
simulate_games: "Simuleer spellen!"
|
||||||
simulate_all: "RESET EN SIMULEER SPELLEN"
|
simulate_all: "RESET EN SIMULEER SPELLEN"
|
||||||
|
# games_simulated_by: "Games simulated by you:"
|
||||||
|
# games_simulated_for: "Games simulated for you:"
|
||||||
leaderboard: "Leaderboard"
|
leaderboard: "Leaderboard"
|
||||||
battle_as: "Vecht als "
|
battle_as: "Vecht als "
|
||||||
summary_your: "Jouw "
|
summary_your: "Jouw "
|
||||||
|
@ -542,7 +572,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introductie van Dungeon Arena"
|
introducing_dungeon_arena: "Introductie van Dungeon Arena"
|
||||||
new_way: "17 maart, 2014: De nieuwe manier om te concurreren met code."
|
new_way: "De nieuwe manier om te concurreren met code."
|
||||||
to_battle: "Naar het slagveld, ontwikkelaars!"
|
to_battle: "Naar het slagveld, ontwikkelaars!"
|
||||||
modern_day_sorcerer: "Kan jij programmeren? Hoe stoer is dat. Jij bent een modere voetballer! is het niet tijd dat je jouw magische krachten gebruikt voor het controlleren van jou minions in het slagveld? En nee, we praten heir niet over robots."
|
modern_day_sorcerer: "Kan jij programmeren? Hoe stoer is dat. Jij bent een modere voetballer! is het niet tijd dat je jouw magische krachten gebruikt voor het controlleren van jou minions in het slagveld? En nee, we praten heir niet over robots."
|
||||||
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
tip_beta_launch: "CodeCombat lanceerde zijn beta versie in Oktober, 2013."
|
tip_beta_launch: "CodeCombat lanceerde zijn beta versie in Oktober, 2013."
|
||||||
tip_js_beginning: "JavaScript is nog maar het begin."
|
tip_js_beginning: "JavaScript is nog maar het begin."
|
||||||
tip_autocast_setting: "Verander de autocast instelling door te klikken op het tandwiel naast de cast knop."
|
tip_autocast_setting: "Verander de autocast instelling door te klikken op het tandwiel naast de cast knop."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
tip_baby_coders: "Zelfs babies zullen in de toekomst een Tovenaar zijn."
|
tip_baby_coders: "Zelfs babies zullen in de toekomst een Tovenaar zijn."
|
||||||
tip_morale_improves: "Het spel zal blijven laden tot de moreel verbeterd."
|
tip_morale_improves: "Het spel zal blijven laden tot de moreel verbeterd."
|
||||||
tip_all_species: "Wij geloven in gelijke kansen voor alle wezens om te leren programmeren."
|
tip_all_species: "Wij geloven in gelijke kansen voor alle wezens om te leren programmeren."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
tip_harry: "Je bent een tovenaar, "
|
tip_harry: "Je bent een tovenaar, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administrator panels"
|
av_title: "Administrator panels"
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Panel administracyjny"
|
av_title: "Panel administracyjny"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Oto Dungeon Arena"
|
introducing_dungeon_arena: "Oto Dungeon Arena"
|
||||||
new_way: "17. marca 2014: Nowy sposób, by współzawodniczyć dzięki programowaniu."
|
new_way: "Nowy sposób, by współzawodniczyć dzięki programowaniu."
|
||||||
to_battle: "Do broni, developerzy!"
|
to_battle: "Do broni, developerzy!"
|
||||||
modern_day_sorcerer: "Wiesz, jak programować? Super. Jesteś współczesnym czarodziejem. Czy nie najwyższy czas, aby użyć swoich mocy, by dowodzić jednostkami w epickiej batalii? I nie mamy tutaj na myśli robotów."
|
modern_day_sorcerer: "Wiesz, jak programować? Super. Jesteś współczesnym czarodziejem. Czy nie najwyższy czas, aby użyć swoich mocy, by dowodzić jednostkami w epickiej batalii? I nie mamy tutaj na myśli robotów."
|
||||||
arenas_are_here: "Areny wieloosobowych potyczek CodeCombat właśnie nastały."
|
arenas_are_here: "Areny wieloosobowych potyczek CodeCombat właśnie nastały."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Visualização de Administrador"
|
av_title: "Visualização de Administrador"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introduzindo a Dungeon Arena"
|
introducing_dungeon_arena: "Introduzindo a Dungeon Arena"
|
||||||
new_way: "17 de Março de 2014: O novo meio de competir com código."
|
new_way: "O novo meio de competir com código."
|
||||||
to_battle: "Para a Batalha, Desenvolvedores!"
|
to_battle: "Para a Batalha, Desenvolvedores!"
|
||||||
modern_day_sorcerer: "Você sabe como codificar? Isso é incrível. Você é um feiticeiro dos tempos modernos! Não é tempo de usar seus poderes mágicos de codificação para comandar seus lacaios em um combate épico? E não estamos falando de robôs aqui."
|
modern_day_sorcerer: "Você sabe como codificar? Isso é incrível. Você é um feiticeiro dos tempos modernos! Não é tempo de usar seus poderes mágicos de codificação para comandar seus lacaios em um combate épico? E não estamos falando de robôs aqui."
|
||||||
arenas_are_here: "As arenas de combatte um contra um do CodeCombat estão aqui."
|
arenas_are_here: "As arenas de combatte um contra um do CodeCombat estão aqui."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Visualizações de Admin"
|
av_title: "Visualizações de Admin"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introduzindo a Dungeon Arena"
|
introducing_dungeon_arena: "Introduzindo a Dungeon Arena"
|
||||||
new_way: "17 de Março de 2014: Uma nova forma de competir com código."
|
new_way: "Uma nova forma de competir com código."
|
||||||
to_battle: "Às armas, Programadores!"
|
to_battle: "Às armas, Programadores!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
arenas_are_here: "As arenas mano-a-mano multiplayer de CodeCombat estão aqui."
|
arenas_are_here: "As arenas mano-a-mano multiplayer de CodeCombat estão aqui."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -218,12 +218,12 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
editor_config_title: "Configurare Editor"
|
editor_config_title: "Configurare Editor"
|
||||||
editor_config_keybindings_label: "Mapare taste"
|
editor_config_keybindings_label: "Mapare taste"
|
||||||
editor_config_keybindings_default: "Default (Ace)"
|
editor_config_keybindings_default: "Default (Ace)"
|
||||||
editor_config_keybindings_description: "Adaugă comenzi rapide suplimentare cunoscute din editoarele obisnuite." # not sure, where is this on the site?
|
editor_config_keybindings_description: "Adaugă comenzi rapide suplimentare cunoscute din editoarele obisnuite."
|
||||||
editor_config_invisibles_label: "Arată etichetele invizibile"
|
editor_config_invisibles_label: "Arată etichetele invizibile"
|
||||||
editor_config_invisibles_description: "Arată spațiile și taburile invizibile."
|
editor_config_invisibles_description: "Arată spațiile și taburile invizibile."
|
||||||
editor_config_indentguides_label: "Arată ghidul de indentare"
|
editor_config_indentguides_label: "Arată ghidul de indentare"
|
||||||
editor_config_indentguides_description: "Arată linii verticale pentru a vedea mai bine indentarea."
|
editor_config_indentguides_description: "Arată linii verticale pentru a vedea mai bine indentarea."
|
||||||
editor_config_behaviors_label: "Comportamente inteligente" # context?
|
editor_config_behaviors_label: "Comportamente inteligente"
|
||||||
editor_config_behaviors_description: "Completează automat parantezele, ghilimele etc."
|
editor_config_behaviors_description: "Completează automat parantezele, ghilimele etc."
|
||||||
loading_ready: "Gata!"
|
loading_ready: "Gata!"
|
||||||
tip_insert_positions: "Shift+Click oriunde pe harta pentru a insera punctul în editorul de vrăji."
|
tip_insert_positions: "Shift+Click oriunde pe harta pentru a insera punctul în editorul de vrăji."
|
||||||
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
tip_beta_launch: "CodeCombat a fost lansat beta in Octombrie 2013."
|
tip_beta_launch: "CodeCombat a fost lansat beta in Octombrie 2013."
|
||||||
tip_js_beginning: "JavaScript este doar începutul."
|
tip_js_beginning: "JavaScript este doar începutul."
|
||||||
tip_autocast_setting: "Ajutează setările de autocast apăsând pe rotița de pe buton."
|
tip_autocast_setting: "Ajutează setările de autocast apăsând pe rotița de pe buton."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
tip_baby_coders: "În vitor până și bebelușii vor fi Archmage."
|
tip_baby_coders: "În vitor până și bebelușii vor fi Archmage."
|
||||||
tip_morale_improves: "Se va încărca până până când va crește moralul."
|
tip_morale_improves: "Se va încărca până până când va crește moralul."
|
||||||
tip_all_species: "Noi credem în șanse egale de a învăța programare pentru toate speciile."
|
tip_all_species: "Noi credem în șanse egale de a învăța programare pentru toate speciile."
|
||||||
# tip_reticulating: "Reticulating spines." ??????????context ???
|
# tip_reticulating: "Reticulating spines."
|
||||||
tip_harry: "Ha un Wizard, "
|
tip_harry: "Ha un Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Admin vede"
|
av_title: "Admin vede"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
tip_beta_launch: "CodeCombat запустил бета-тестирование в октябре 2013."
|
tip_beta_launch: "CodeCombat запустил бета-тестирование в октябре 2013."
|
||||||
tip_js_beginning: "JavaScript это только начало."
|
tip_js_beginning: "JavaScript это только начало."
|
||||||
tip_autocast_setting: "Изменяйте настройки авточтения заклинания, щёлкнув по шестерёнке на кнопке прочтения."
|
tip_autocast_setting: "Изменяйте настройки авточтения заклинания, щёлкнув по шестерёнке на кнопке прочтения."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
tip_baby_coders: "В будущем, даже младенцы будут Архимагами."
|
tip_baby_coders: "В будущем, даже младенцы будут Архимагами."
|
||||||
tip_morale_improves: "Загрузка будет продолжаться, пока боевой дух не улучшится."
|
tip_morale_improves: "Загрузка будет продолжаться, пока боевой дух не улучшится."
|
||||||
tip_all_species: "Мы верим в равные возможности для обучения программированию для всех видов."
|
tip_all_species: "Мы верим в равные возможности для обучения программированию для всех видов."
|
||||||
tip_reticulating: "Ретикуляция сплайнов."
|
tip_reticulating: "Ретикуляция сплайнов."
|
||||||
tip_harry: "Ты волшебник, "
|
tip_harry: "Ты волшебник, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Админ панель"
|
av_title: "Админ панель"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Представляем Арену подземелья"
|
introducing_dungeon_arena: "Представляем Арену подземелья"
|
||||||
new_way: "17 марта 2014: Новый способ соревноваться с помощью кода."
|
new_way: "Новый способ соревноваться с помощью кода."
|
||||||
to_battle: "В бой, разработчики!"
|
to_battle: "В бой, разработчики!"
|
||||||
modern_day_sorcerer: "Вы знаете, как программировать? Это круто. Вы волшебник наших дней! Разве не время, чтобы вы использовали свои магические силы программирования для управления миньонами в эпичной битве? И мы не говорим здесь роботы."
|
modern_day_sorcerer: "Вы знаете, как программировать? Это круто. Вы волшебник наших дней! Разве не время, чтобы вы использовали свои магические силы программирования для управления миньонами в эпичной битве? И мы не говорим здесь роботы."
|
||||||
arenas_are_here: "Мультиплеерные арены CodeCombat на равных уже здесь."
|
arenas_are_here: "Мультиплеерные арены CodeCombat на равных уже здесь."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Administratörsvyer"
|
av_title: "Administratörsvyer"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
|
|
||||||
multiplayer_launch:
|
multiplayer_launch:
|
||||||
introducing_dungeon_arena: "Introducerar grottarenan"
|
introducing_dungeon_arena: "Introducerar grottarenan"
|
||||||
new_way: "17 mars 2014: Det nya sättet att tävla i kod."
|
new_way: "Det nya sättet att tävla i kod."
|
||||||
to_battle: "Till slagfältet, utvecklare!"
|
to_battle: "Till slagfältet, utvecklare!"
|
||||||
modern_day_sorcerer: "Du vet hur man kodar? Det är coolt. Du är en modern trollkarl! Är det inte dags att du använde dina magiska kodarkrafter för att leda dina undersåtar i episka strider? Och vi snackar inte om robotar nu."
|
modern_day_sorcerer: "Du vet hur man kodar? Det är coolt. Du är en modern trollkarl! Är det inte dags att du använde dina magiska kodarkrafter för att leda dina undersåtar i episka strider? Och vi snackar inte om robotar nu."
|
||||||
arenas_are_here: "CodeCombats flerspelararenor är här."
|
arenas_are_here: "CodeCombats flerspelararenor är här."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "Yönetici Görünümleri"
|
av_title: "Yönetici Görünümleri"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -421,7 +434,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
# 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_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_ending: "We hope you'll join our party!"
|
||||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, ,Jeremy and Glen"
|
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||||
# alert_account_message_intro: "Hey there!"
|
# alert_account_message_intro: "Hey there!"
|
||||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||||
# alert_account_message_suf: "first."
|
# alert_account_message_suf: "first."
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
av_title: "管理员视图"
|
av_title: "管理员视图"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -234,11 +234,24 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||||
# tip_js_beginning: "JavaScript is just the beginning."
|
# tip_js_beginning: "JavaScript is just the beginning."
|
||||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||||
|
# think_solution: "Think of the solution, not the problem."
|
||||||
|
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||||
|
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||||
|
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||||
|
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||||
# tip_morale_improves: "Loading will continue until morale improves."
|
# tip_morale_improves: "Loading will continue until morale improves."
|
||||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||||
# tip_reticulating: "Reticulating spines."
|
# tip_reticulating: "Reticulating spines."
|
||||||
# tip_harry: "Yer a Wizard, "
|
# tip_harry: "Yer a Wizard, "
|
||||||
|
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||||
|
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||||
|
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||||
|
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||||
|
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||||
|
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||||
|
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||||
|
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
# av_title: "Admin Views"
|
# av_title: "Admin Views"
|
||||||
|
@ -559,7 +572,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
|
|
||||||
# multiplayer_launch:
|
# multiplayer_launch:
|
||||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||||
# new_way: "March 17, 2014: The new way to compete with code."
|
# new_way: "The new way to compete with code."
|
||||||
# to_battle: "To Battle, Developers!"
|
# to_battle: "To Battle, Developers!"
|
||||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||||
|
|
|
@ -58,6 +58,8 @@
|
||||||
li:hover
|
li:hover
|
||||||
background: #add8e6
|
background: #add8e6
|
||||||
|
|
||||||
|
#play-button.disabled i
|
||||||
|
@include opacity(0.5)
|
||||||
#play-button.playing i.icon-pause
|
#play-button.playing i.icon-pause
|
||||||
display: inline-block
|
display: inline-block
|
||||||
#play-button.paused i.icon-play
|
#play-button.paused i.icon-play
|
||||||
|
@ -96,6 +98,9 @@
|
||||||
border-radius: 0
|
border-radius: 0
|
||||||
border: 0
|
border: 0
|
||||||
|
|
||||||
|
&.disabled
|
||||||
|
cursor: default
|
||||||
|
|
||||||
.progress-bar
|
.progress-bar
|
||||||
@include transition(width .0s linear)
|
@include transition(width .0s linear)
|
||||||
position: relative
|
position: relative
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
h3(data-i18n="editor.level_tab_thangs_add") Add Thangs
|
h3(data-i18n="editor.level_tab_thangs_add") Add Thangs
|
||||||
input(type="text", id="thang-search")
|
input(type="search", id="thang-search")
|
||||||
#thangs-list
|
#thangs-list
|
||||||
for group in groups
|
for group in groups
|
||||||
h4= group.name
|
h4= group.name
|
||||||
|
|
|
@ -2,7 +2,7 @@ extends /templates/modal/modal_base
|
||||||
|
|
||||||
block modal-header-content
|
block modal-header-content
|
||||||
h1(data-i18n="multiplayer_launch.introducing_dungeon_arena") Introducing Dungeon Arena
|
h1(data-i18n="multiplayer_launch.introducing_dungeon_arena") Introducing Dungeon Arena
|
||||||
em(data-i18n="multiplayer_launch.new_way") March 17, 2014: The new way to compete with code.
|
em(data-i18n="multiplayer_launch.new_way") The new way to compete with code.
|
||||||
|
|
||||||
block modal-body-content
|
block modal-body-content
|
||||||
|
|
||||||
|
|
|
@ -17,11 +17,24 @@
|
||||||
strong.tip(data-i18n='play_level.tip_beta_launch') CodeCombat launched its beta in October, 2013.
|
strong.tip(data-i18n='play_level.tip_beta_launch') CodeCombat launched its beta in October, 2013.
|
||||||
strong.tip(data-i18n='play_level.tip_js_beginning') JavaScript is just the beginning.
|
strong.tip(data-i18n='play_level.tip_js_beginning') JavaScript is just the beginning.
|
||||||
strong.tip(data-i18n='play_level.tip_autocast_setting') Adjust autocast settings by clicking the gear on the cast button.
|
strong.tip(data-i18n='play_level.tip_autocast_setting') Adjust autocast settings by clicking the gear on the cast button.
|
||||||
|
strong.tip(data-i18n='play_level.tip_think_solution') Think of the solution, not the problem.
|
||||||
|
strong.tip(data-i18n='play_level.tip_theory_practice') In theory there is no difference between theory and practice; in practice there is. - Yogi Berra
|
||||||
|
strong.tip(data-i18n='play_level.tip_error_free') There are two ways to write error-free programs; only the third one works. - Alan Perlis
|
||||||
|
strong.tip(data-i18n='play_level.tip_debugging_program') If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra
|
||||||
|
strong.tip(data-i18n='play_level.tip_forums') Head over to the forums and tell us what you think!
|
||||||
|
strong.tip(data-i18n='play_level.tip_impossible') It always seems impossible until it's done. - Nelson Mandela
|
||||||
|
|
||||||
strong.tip.rare(data-i18n='play_level.tip_baby_coders') In the future, even babies will be Archmages.
|
strong.tip.rare(data-i18n='play_level.tip_baby_coders') In the future, even babies will be Archmages.
|
||||||
strong.tip.rare(data-i18n='play_level.tip_morale_improves') Loading will continue until morale improves.
|
strong.tip.rare(data-i18n='play_level.tip_morale_improves') Loading will continue until morale improves.
|
||||||
strong.tip.rare(data-i18n='play_level.tip_all_species') We believe in equal opportunities to learn programming for all species.
|
strong.tip.rare(data-i18n='play_level.tip_all_species') We believe in equal opportunities to learn programming for all species.
|
||||||
strong.tip.rare(data-i18n='play_level.tip_reticulating') Reticulating spines.
|
strong.tip.rare(data-i18n='play_level.tip_reticulating') Reticulating spines.
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_great_responsibility') With great coding skill comes great debug responsibility.
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_munchkin') If you don't eat your vegetables, a munchkin will come after you while you're asleep.
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_binary') There are only 10 types of people in the world: those who understand binary, and those who don't.
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_commitment_yoda') A programmer must have the deepest commitment, the most serious mind. ~ Yoda
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_no_try') Do. Or do not. There is no try. - Yoda
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_patience') Patience you must have, young Padawan. - Yoda
|
||||||
|
strong.tip.rare(data-i18n='play_level.tip_documented_bug') A documented bug is not a bug; it is a feature.
|
||||||
strong.tip.rare
|
strong.tip.rare
|
||||||
span(data-i18n='play_level.tip_harry') Yer a Wizard,
|
span(data-i18n='play_level.tip_harry') Yer a Wizard,
|
||||||
span= me.get('name') || 'Anoner'
|
span= me.get('name') || 'Anoner'
|
||||||
|
|
|
@ -21,7 +21,7 @@ componentOriginals =
|
||||||
"physics.Physical" : "524b75ad7fc0f6d519000001"
|
"physics.Physical" : "524b75ad7fc0f6d519000001"
|
||||||
|
|
||||||
class ThangTypeSearchCollection extends CocoCollection
|
class ThangTypeSearchCollection extends CocoCollection
|
||||||
url: '/db/thang.type/search?project=true'
|
url: '/db/thang.type/search?project=original,name,version,slug,kind,components'
|
||||||
model: ThangType
|
model: ThangType
|
||||||
|
|
||||||
module.exports = class ThangsTabView extends View
|
module.exports = class ThangsTabView extends View
|
||||||
|
@ -219,7 +219,7 @@ module.exports = class ThangsTabView extends View
|
||||||
|
|
||||||
# TODO: figure out a good way to have all Surface clicks and Treema clicks just proxy in one direction, so we can maintain only one way of handling selection and deletion
|
# TODO: figure out a good way to have all Surface clicks and Treema clicks just proxy in one direction, so we can maintain only one way of handling selection and deletion
|
||||||
onExtantThangSelected: (e) ->
|
onExtantThangSelected: (e) ->
|
||||||
@selectedExtantSprite?.setNameLabel null unless @selectedExtantSprite is e.sprite
|
@selectedExtantSprite?.setNameLabel? null unless @selectedExtantSprite is e.sprite
|
||||||
@selectedExtantThang = e.thang
|
@selectedExtantThang = e.thang
|
||||||
@selectedExtantSprite = e.sprite
|
@selectedExtantSprite = e.sprite
|
||||||
if e.thang and (key.alt or key.meta)
|
if e.thang and (key.alt or key.meta)
|
||||||
|
@ -236,7 +236,7 @@ module.exports = class ThangsTabView extends View
|
||||||
@selectedExtantSprite.setNameLabel @selectedExtantSprite.thangType.get('name') + ': ' + @selectedExtantThang.id
|
@selectedExtantSprite.setNameLabel @selectedExtantSprite.thangType.get('name') + ': ' + @selectedExtantThang.id
|
||||||
if not treemaThang.isSelected()
|
if not treemaThang.isSelected()
|
||||||
treemaThang.select()
|
treemaThang.select()
|
||||||
@thangsTreema.$el.scrollTop(@thangsTreema.$el.find('.treema-children .treema-selected')[0].offsetTop)
|
@thangsTreema.$el.scrollTop(@thangsTreema.$el.find('.treema-children .treema-selected')[0].offsetTop)
|
||||||
else if @addThangSprite
|
else if @addThangSprite
|
||||||
# We clicked on the background when we had an add Thang selected, so add it
|
# We clicked on the background when we had an add Thang selected, so add it
|
||||||
@addThang @addThangType, @addThangSprite.thang.pos
|
@addThang @addThangType, @addThangSprite.thang.pos
|
||||||
|
|
|
@ -45,8 +45,8 @@ module.exports = class ThangTypeEditView extends View
|
||||||
@thangType.saveBackups = true
|
@thangType.saveBackups = true
|
||||||
@thangType.fetch()
|
@thangType.fetch()
|
||||||
@thangType.loadSchema()
|
@thangType.loadSchema()
|
||||||
@thangType.schema().once 'sync', @onThangTypeSync, @
|
@listenToOnce(@thangType.schema(), 'sync', @onThangTypeSync)
|
||||||
@thangType.once 'sync', @onThangTypeSync, @
|
@listenToOnce(@thangType, 'sync', @onThangTypeSync)
|
||||||
@refreshAnimation = _.debounce @refreshAnimation, 500
|
@refreshAnimation = _.debounce @refreshAnimation, 500
|
||||||
|
|
||||||
onThangTypeSync: ->
|
onThangTypeSync: ->
|
||||||
|
|
|
@ -16,7 +16,7 @@ module.exports = class LoginModalView extends View
|
||||||
|
|
||||||
events:
|
events:
|
||||||
"click #login-button": "loginAccount"
|
"click #login-button": "loginAccount"
|
||||||
"keydown input": "loginAccount"
|
"keydown #login-password": "loginAccount"
|
||||||
|
|
||||||
subscriptions:
|
subscriptions:
|
||||||
'server-error': 'onServerError'
|
'server-error': 'onServerError'
|
||||||
|
|
|
@ -112,9 +112,15 @@ module.exports = class MyMatchesTabView extends CocoView
|
||||||
|
|
||||||
readyToRank: (session) ->
|
readyToRank: (session) ->
|
||||||
return false unless session?.get('levelID') # If it hasn't been denormalized, then it's not ready.
|
return false unless session?.get('levelID') # If it hasn't been denormalized, then it's not ready.
|
||||||
c1 = session?.get('code')
|
return false unless c1 = session.get('code')
|
||||||
c2 = session?.get('submittedCode')
|
return false unless team = session.get('team')
|
||||||
c1 and not _.isEqual(c1, c2)
|
return true unless c2 = session.get('submittedCode')
|
||||||
|
thangSpellArr = (s.split("/") for s in session.get('teamSpells')[team])
|
||||||
|
for item in thangSpellArr
|
||||||
|
thang = item[0]
|
||||||
|
spell = item[1]
|
||||||
|
return true if c1[thang][spell] isnt c2[thang][spell]
|
||||||
|
return false
|
||||||
|
|
||||||
rankSession: (e) ->
|
rankSession: (e) ->
|
||||||
button = $(e.target).closest('.rank-button')
|
button = $(e.target).closest('.rank-button')
|
||||||
|
@ -123,7 +129,7 @@ module.exports = class MyMatchesTabView extends CocoView
|
||||||
return unless @readyToRank(session)
|
return unless @readyToRank(session)
|
||||||
|
|
||||||
@setRankingButtonText(button, 'submitting')
|
@setRankingButtonText(button, 'submitting')
|
||||||
success = =>
|
success = =>
|
||||||
@setRankingButtonText(button, 'submitted')
|
@setRankingButtonText(button, 'submitted')
|
||||||
failure = (jqxhr, textStatus, errorThrown) =>
|
failure = (jqxhr, textStatus, errorThrown) =>
|
||||||
console.log jqxhr.responseText
|
console.log jqxhr.responseText
|
||||||
|
|
|
@ -24,7 +24,7 @@ module.exports = class ControlBarView extends View
|
||||||
'click #restart-button': ->
|
'click #restart-button': ->
|
||||||
window.tracker?.trackEvent 'Clicked Restart', level: @worldName, label: @worldName
|
window.tracker?.trackEvent 'Clicked Restart', level: @worldName, label: @worldName
|
||||||
@showRestartModal()
|
@showRestartModal()
|
||||||
|
|
||||||
'click #next-game-button': ->
|
'click #next-game-button': ->
|
||||||
Backbone.Mediator.publish 'next-game-pressed'
|
Backbone.Mediator.publish 'next-game-pressed'
|
||||||
|
|
||||||
|
@ -64,9 +64,23 @@ module.exports = class ControlBarView extends View
|
||||||
c.homeLink = "/play/ladder/" + levelID
|
c.homeLink = "/play/ladder/" + levelID
|
||||||
c
|
c
|
||||||
|
|
||||||
|
afterRender: ->
|
||||||
|
super()
|
||||||
|
@guideHighlightInterval ?= setInterval @onGuideHighlight, 5 * 60 * 1000
|
||||||
|
|
||||||
|
destroy: ->
|
||||||
|
clearInterval @guideHighlightInterval if @guideHighlightInterval
|
||||||
|
super()
|
||||||
|
|
||||||
|
onGuideHighlight: =>
|
||||||
|
return if @destroyed or @guideShownOnce
|
||||||
|
@$el.find('#docs-button').hide().show('highlight', 4000)
|
||||||
|
|
||||||
showGuideModal: ->
|
showGuideModal: ->
|
||||||
options = {docs: @level.get('documentation'), supermodel: @supermodel}
|
options = {docs: @level.get('documentation'), supermodel: @supermodel}
|
||||||
@openModalView(new DocsModal(options))
|
@openModalView(new DocsModal(options))
|
||||||
|
clearInterval @guideHighlightInterval
|
||||||
|
@guideHighlightInterval = null
|
||||||
|
|
||||||
showMultiplayerModal: ->
|
showMultiplayerModal: ->
|
||||||
@openModalView(new MultiplayerModal(session: @session, playableTeams: @playableTeams, level: @level, ladderGame: @ladderGame))
|
@openModalView(new MultiplayerModal(session: @session, playableTeams: @playableTeams, level: @level, ladderGame: @ladderGame))
|
||||||
|
|
|
@ -150,7 +150,7 @@ module.exports = class HUDView extends View
|
||||||
|
|
||||||
createActions: ->
|
createActions: ->
|
||||||
actions = @$el.find('.thang-actions tbody').empty()
|
actions = @$el.find('.thang-actions tbody').empty()
|
||||||
showActions = @thang.world and not _.isEmpty(@thang.actions) and 'action' in @thang.hudProperties ? []
|
showActions = @thang.world and not @thang.notOfThisWorld and not _.isEmpty(@thang.actions) and 'action' in (@thang.hudProperties ? [])
|
||||||
@$el.find('.thang-actions').toggleClass 'secret', not showActions
|
@$el.find('.thang-actions').toggleClass 'secret', not showActions
|
||||||
return unless showActions
|
return unless showActions
|
||||||
@buildActionTimespans()
|
@buildActionTimespans()
|
||||||
|
|
|
@ -57,8 +57,14 @@ module.exports = class PlaybackView extends View
|
||||||
@$el.find('#music-button').toggleClass('music-on', me.get('music'))
|
@$el.find('#music-button').toggleClass('music-on', me.get('music'))
|
||||||
|
|
||||||
onSetLetterbox: (e) ->
|
onSetLetterbox: (e) ->
|
||||||
buttons = @$el.find '#play-button, .scrubber-handle'
|
if e.on
|
||||||
buttons.css 'visibility', if e.on then 'hidden' else 'visible'
|
$('.scrubber .progress', @$el).slider('disable', true).addClass('disabled')
|
||||||
|
$('#play-button', @$el).addClass('disabled')
|
||||||
|
$('.scrubber-handle', @$el).css('visibility', 'hidden')
|
||||||
|
else
|
||||||
|
$('.scrubber .progress', @$el).slider('enable', true).removeClass('disabled')
|
||||||
|
$('#play-button', @$el).removeClass('disabled')
|
||||||
|
$('.scrubber-handle', @$el).css('visibility', 'visible')
|
||||||
@disabled = e.on
|
@disabled = e.on
|
||||||
|
|
||||||
onWindowResize: (s...) =>
|
onWindowResize: (s...) =>
|
||||||
|
|
|
@ -130,7 +130,6 @@ module.exports = class TomeView extends View
|
||||||
unless method.cloneOf
|
unless method.cloneOf
|
||||||
skipProtectAPI = @getQueryVariable "skip_protect_api", not @options.ladderGame
|
skipProtectAPI = @getQueryVariable "skip_protect_api", not @options.ladderGame
|
||||||
skipFlow = @getQueryVariable "skip_flow", @options.levelID is 'brawlwood'
|
skipFlow = @getQueryVariable "skip_flow", @options.levelID is 'brawlwood'
|
||||||
console.log 'skip protect api', skipProtectAPI, 'skip flow', skipFlow
|
|
||||||
spell = @spells[spellKey] = new Spell programmableMethod: method, spellKey: spellKey, pathComponents: pathPrefixComponents.concat(pathComponents), session: @options.session, supermodel: @supermodel, skipFlow: skipFlow, skipProtectAPI: skipProtectAPI, worker: @worker
|
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
|
for thangID, spellKeys of @thangSpells
|
||||||
thang = world.getThangByID thangID
|
thang = world.getThangByID thangID
|
||||||
|
|
|
@ -71,7 +71,7 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None):
|
||||||
|
|
||||||
|
|
||||||
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
|
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
|
||||||
allowedMongoVersions = ["v2.5.4","v2.5.5","v2.6.0-rc1"]
|
allowedMongoVersions = ["v2.5.4","v2.5.5","v2.6.0"]
|
||||||
if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
|
if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
|
||||||
mongo_executable = "mongod"
|
mongo_executable = "mongod"
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -2,6 +2,8 @@ async = require 'async'
|
||||||
mongoose = require('mongoose')
|
mongoose = require('mongoose')
|
||||||
Grid = require 'gridfs-stream'
|
Grid = require 'gridfs-stream'
|
||||||
errors = require './errors'
|
errors = require './errors'
|
||||||
|
log = require 'winston'
|
||||||
|
|
||||||
PROJECT = {original:1, name:1, version:1, description: 1, slug:1, kind: 1}
|
PROJECT = {original:1, name:1, version:1, description: 1, slug:1, kind: 1}
|
||||||
FETCH_LIMIT = 150
|
FETCH_LIMIT = 150
|
||||||
|
|
||||||
|
@ -99,6 +101,17 @@ module.exports = class Handler
|
||||||
filters = [{filter: {index: true}}]
|
filters = [{filter: {index: true}}]
|
||||||
if @modelClass.schema.uses_coco_permissions and req.user
|
if @modelClass.schema.uses_coco_permissions and req.user
|
||||||
filters.push {filter: {index: req.user.get('id')}}
|
filters.push {filter: {index: req.user.get('id')}}
|
||||||
|
projection = null
|
||||||
|
if req.query.project is 'true'
|
||||||
|
projection = PROJECT
|
||||||
|
else if req.query.project
|
||||||
|
if @modelClass.className is 'User'
|
||||||
|
projection = PROJECTION
|
||||||
|
log.warn "Whoa, we haven't yet thought about public properties for User projection yet."
|
||||||
|
else
|
||||||
|
projection = {}
|
||||||
|
for field in req.query.project.split(',')
|
||||||
|
projection[field] = 1
|
||||||
for filter in filters
|
for filter in filters
|
||||||
callback = (err, results) =>
|
callback = (err, results) =>
|
||||||
return @sendDatabaseError(res, err) if err
|
return @sendDatabaseError(res, err) if err
|
||||||
|
@ -111,11 +124,11 @@ module.exports = class Handler
|
||||||
res.send matchedObjects
|
res.send matchedObjects
|
||||||
res.end()
|
res.end()
|
||||||
if term
|
if term
|
||||||
filter.project = PROJECT if req.query.project
|
filter.project = projection
|
||||||
@modelClass.textSearch term, filter, callback
|
@modelClass.textSearch term, filter, callback
|
||||||
else
|
else
|
||||||
args = [filter.filter]
|
args = [filter.filter]
|
||||||
args.push PROJECT if req.query.project
|
args.push projection if projection
|
||||||
@modelClass.find(args...).limit(FETCH_LIMIT).exec callback
|
@modelClass.find(args...).limit(FETCH_LIMIT).exec callback
|
||||||
|
|
||||||
versions: (req, res, id) ->
|
versions: (req, res, id) ->
|
||||||
|
@ -123,8 +136,9 @@ module.exports = class Handler
|
||||||
# Keeping it simple for now and just allowing access to the first FETCH_LIMIT results.
|
# Keeping it simple for now and just allowing access to the first FETCH_LIMIT results.
|
||||||
query = {'original': mongoose.Types.ObjectId(id)}
|
query = {'original': mongoose.Types.ObjectId(id)}
|
||||||
sort = {'created': -1}
|
sort = {'created': -1}
|
||||||
selectString = 'slug name version commitMessage created permissions' # Is this even working?
|
selectString = 'slug name version commitMessage created permissions'
|
||||||
@modelClass.find(query).select(selectString).limit(FETCH_LIMIT).sort(sort).exec (err, results) =>
|
aggregate = $match: query
|
||||||
|
@modelClass.aggregate(aggregate).project(selectString).limit(FETCH_LIMIT).sort(sort).exec (err, results) =>
|
||||||
return @sendDatabaseError(res, err) if err
|
return @sendDatabaseError(res, err) if err
|
||||||
for doc in results
|
for doc in results
|
||||||
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, doc)
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, doc)
|
||||||
|
|
Loading…
Reference in a new issue