From aee18523b05e5ec333f7454a77b0a669de6b63cf Mon Sep 17 00:00:00 2001 From: Shrihari Date: Tue, 25 Mar 2014 13:28:22 +0530 Subject: [PATCH 01/22] Fix for #506 --- app/views/play/level/playback_view.coffee | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/views/play/level/playback_view.coffee b/app/views/play/level/playback_view.coffee index 26a9058f5..dbd54d1a1 100644 --- a/app/views/play/level/playback_view.coffee +++ b/app/views/play/level/playback_view.coffee @@ -57,8 +57,14 @@ module.exports = class PlaybackView extends View @$el.find('#music-button').toggleClass('music-on', me.get('music')) onSetLetterbox: (e) -> - buttons = @$el.find '#play-button, .scrubber-handle' - buttons.css 'visibility', if e.on then 'hidden' else 'visible' + if e.on + $('.scrubber .progress', @$el).slider('disable', true) + $('#play-button', @$el).addClass('disabled') + $('.scrubber-handle', @$el).css('visibility', 'hidden') + else + $('.scrubber .progress', @$el).slider('enable', true) + $('#play-button', @$el).removeClass('disabled') + $('.scrubber-handle', @$el).css('visibility', 'visible') @disabled = e.on onWindowResize: (s...) => From 648df5eb41e3225374d27961aa4d7928b77276f0 Mon Sep 17 00:00:00 2001 From: Jayant Jain Date: Thu, 27 Mar 2014 03:36:10 +0530 Subject: [PATCH 02/22] Updated rank my game check, fixes #666 --- app/views/play/ladder/my_matches_tab.coffee | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/views/play/ladder/my_matches_tab.coffee b/app/views/play/ladder/my_matches_tab.coffee index 1c2960cf4..4841d0857 100644 --- a/app/views/play/ladder/my_matches_tab.coffee +++ b/app/views/play/ladder/my_matches_tab.coffee @@ -112,9 +112,18 @@ module.exports = class MyMatchesTabView extends CocoView readyToRank: (session) -> return false unless session?.get('levelID') # If it hasn't been denormalized, then it's not ready. + c1 = session?.get('code') c2 = session?.get('submittedCode') - c1 and not _.isEqual(c1, c2) + team = session?.get('team') + thangSpellArr = (s.split("/") for s in session?.get('teamSpells')[team]) + return false unless c1 + + for item in thangSpellArr + thang = item[0] + spell = item[1] + return true if c1[thang][spell] isnt c2?[thang][spell] + return false rankSession: (e) -> button = $(e.target).closest('.rank-button') From 38bf27020a05c12782d5e80b8a1e81266406429c Mon Sep 17 00:00:00 2001 From: Pedro Sobrinho Date: Wed, 26 Mar 2014 20:55:03 -0400 Subject: [PATCH 03/22] Fixed issue #597 --- app/views/modal/login_modal.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/modal/login_modal.coffee b/app/views/modal/login_modal.coffee index 26499bd62..8a433dd28 100644 --- a/app/views/modal/login_modal.coffee +++ b/app/views/modal/login_modal.coffee @@ -16,7 +16,7 @@ module.exports = class LoginModalView extends View events: "click #login-button": "loginAccount" - "keydown input": "loginAccount" + "keydown #login-password": "loginAccount" subscriptions: 'server-error': 'onServerError' From 5d894ea053f6ad508769d3237d724d82b181b9e7 Mon Sep 17 00:00:00 2001 From: Laura Lebbah Date: Thu, 27 Mar 2014 21:33:59 +0100 Subject: [PATCH 04/22] Migrate .on, .once - ThangTypeEditView --- app/views/editor/thang/edit.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/editor/thang/edit.coffee b/app/views/editor/thang/edit.coffee index a8a67ff39..1b0132b09 100644 --- a/app/views/editor/thang/edit.coffee +++ b/app/views/editor/thang/edit.coffee @@ -45,8 +45,8 @@ module.exports = class ThangTypeEditView extends View @thangType.saveBackups = true @thangType.fetch() @thangType.loadSchema() - @thangType.schema().once 'sync', @onThangTypeSync, @ - @thangType.once 'sync', @onThangTypeSync, @ + @listenToOnce(@thangType.schema(), 'sync', @onThangTypeSync) + @listenToOnce(@thangType, 'sync', @onThangTypeSync) @refreshAnimation = _.debounce @refreshAnimation, 500 onThangTypeSync: -> From 31119f402aacad1fbb3d13703af99e4bd28b7fdb Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Thu, 27 Mar 2014 14:55:45 -0700 Subject: [PATCH 05/22] Cleaned up readyToRank logic a bit. --- app/views/play/ladder/my_matches_tab.coffee | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app/views/play/ladder/my_matches_tab.coffee b/app/views/play/ladder/my_matches_tab.coffee index 4841d0857..ac8223442 100644 --- a/app/views/play/ladder/my_matches_tab.coffee +++ b/app/views/play/ladder/my_matches_tab.coffee @@ -112,17 +112,14 @@ module.exports = class MyMatchesTabView extends CocoView readyToRank: (session) -> return false unless session?.get('levelID') # If it hasn't been denormalized, then it's not ready. - - c1 = session?.get('code') - c2 = session?.get('submittedCode') - team = session?.get('team') - thangSpellArr = (s.split("/") for s in session?.get('teamSpells')[team]) - return false unless c1 - + return false unless c1 = session.get('code') + return false unless team = session.get('team') + 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 true if c1[thang][spell] isnt c2[thang][spell] return false rankSession: (e) -> @@ -132,7 +129,7 @@ module.exports = class MyMatchesTabView extends CocoView return unless @readyToRank(session) @setRankingButtonText(button, 'submitting') - success = => + success = => @setRankingButtonText(button, 'submitted') failure = (jqxhr, textStatus, errorThrown) => console.log jqxhr.responseText From b0b37aa9d83c63bf53a1d8665eed379da2bff82c Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Thu, 27 Mar 2014 15:07:37 -0700 Subject: [PATCH 06/22] Made play/pause and scrubber look even more disabled when disabled. --- app/styles/play/level/playback.sass | 5 +++++ app/views/play/level/playback_view.coffee | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app/styles/play/level/playback.sass b/app/styles/play/level/playback.sass index 73d7f6b01..ebeff9846 100644 --- a/app/styles/play/level/playback.sass +++ b/app/styles/play/level/playback.sass @@ -58,6 +58,8 @@ li:hover background: #add8e6 + #play-button.disabled i + @include opacity(0.5) #play-button.playing i.icon-pause display: inline-block #play-button.paused i.icon-play @@ -96,6 +98,9 @@ border-radius: 0 border: 0 + &.disabled + cursor: default + .progress-bar @include transition(width .0s linear) position: relative diff --git a/app/views/play/level/playback_view.coffee b/app/views/play/level/playback_view.coffee index 3ecd68027..e0ddbb24d 100644 --- a/app/views/play/level/playback_view.coffee +++ b/app/views/play/level/playback_view.coffee @@ -58,11 +58,11 @@ module.exports = class PlaybackView extends View onSetLetterbox: (e) -> if e.on - $('.scrubber .progress', @$el).slider('disable', true) + $('.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) + $('.scrubber .progress', @$el).slider('enable', true).removeClass('disabled') $('#play-button', @$el).removeClass('disabled') $('.scrubber-handle', @$el).css('visibility', 'visible') @disabled = e.on From f4a81f43a27fafa209059b78826c98c30c126c0e Mon Sep 17 00:00:00 2001 From: Darredevil Date: Fri, 28 Mar 2014 00:13:30 +0200 Subject: [PATCH 07/22] Added funny tip --- app/locale/en.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/app/locale/en.coffee b/app/locale/en.coffee index 236e3fe7e..da72bd1bf 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -239,6 +239,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr 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 skills comes great debug responsibility." admin: av_title: "Admin Views" From a91e06754946e6d18f87eb14017482324beb7e0d Mon Sep 17 00:00:00 2001 From: Darredevil Date: Fri, 28 Mar 2014 00:13:40 +0200 Subject: [PATCH 08/22] Added funny tip --- app/templates/play/level/level_loading.jade | 1 + 1 file changed, 1 insertion(+) diff --git a/app/templates/play/level/level_loading.jade b/app/templates/play/level/level_loading.jade index 2a3d59122..aa848dd9c 100644 --- a/app/templates/play/level/level_loading.jade +++ b/app/templates/play/level/level_loading.jade @@ -22,6 +22,7 @@ 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_reticulating') Reticulating spines. + strong.tip.rare(data-i18n='play_level.tip_great_responsibility') With great coding skills comes great debug responsibility. strong.tip.rare span(data-i18n='play_level.tip_harry') Yer a Wizard, span= me.get('name') || 'Anoner' From 6f027483111dc58f628b324b40374ad1a01448fe Mon Sep 17 00:00:00 2001 From: Dom Date: Fri, 28 Mar 2014 00:29:31 +0100 Subject: [PATCH 09/22] Update fr.coffee fixed typos --- app/locale/fr.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/locale/fr.coffee b/app/locale/fr.coffee index 6415acd2e..31738ca6a 100644 --- a/app/locale/fr.coffee +++ b/app/locale/fr.coffee @@ -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 ! " play: "Jouer" 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" for_beginners: "Pour débutants" multiplayer: "Multijoueurs" From 0388376d99a1bee165145776a9479725aed626fa Mon Sep 17 00:00:00 2001 From: "Arni Mc.Frag" Date: Fri, 28 Mar 2014 00:29:54 +0100 Subject: [PATCH 10/22] Update ca.coffee --- app/locale/ca.coffee | 136 +++++++++++++++++++++---------------------- 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/app/locale/ca.coffee b/app/locale/ca.coffee index fa6930efe..219cdb8be 100644 --- a/app/locale/ca.coffee +++ b/app/locale/ca.coffee @@ -1,105 +1,105 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", translation: # common: -# loading: "Loading..." -# saving: "Saving..." -# sending: "Sending..." -# cancel: "Cancel" -# save: "Save" -# delay_1_sec: "1 second" -# delay_3_sec: "3 seconds" -# delay_5_sec: "5 seconds" +# loading: "Carregant..." +# saving: "Guardant..." +# sending: "Enviant..." +# cancel: "Cancel·lant" +# save: "Guardar" +# delay_1_sec: "1 segon" +# delay_3_sec: "3 segons" +# delay_5_sec: "5 segons" # manual: "Manual" # fork: "Fork" -# play: "Play" +# play: "Jugar" # modal: -# close: "Close" -# okay: "Okay" +# close: "Tancar" +# okay: "Okey" # not_found: # page_not_found: "Page not found" # nav: -# play: "Levels" +# play: "Nivells" # editor: "Editor" # blog: "Blog" -# forum: "Forum" +# forum: "Fòrum" # admin: "Admin" -# home: "Home" -# contribute: "Contribute" -# legal: "Legal" -# about: "About" -# contact: "Contact" -# twitter_follow: "Follow" -# employers: "Employers" +# home: "Inici" +# contribute: "Col·laborar" +# legal: "Legalitat" +# about: "Sobre Nosaltres" +# contact: "Contacta" +# twitter_follow: "Segueix-nos" +# employers: "Treballadors" # versions: -# save_version_title: "Save New Version" +# save_version_title: "Guarda una nova versió" # 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_suffix: "." -# cla_agree: "I AGREE" +# cla_agree: "Estic d'acord" # login: -# sign_up: "Create Account" -# log_in: "Log In" -# log_out: "Log Out" -# recover: "recover account" +# sign_up: "Crear un compte" +# log_in: "Iniciar Sessió" +# log_out: "Tancar Sessió" +# recover: "Recuperar un compte" # recover: -# recover_account_title: "Recover Account" -# send_password: "Send Recovery Password" +# recover_account_title: "Recuperar Compte" +# send_password: "Enviar contrasenya oblidada" # signup: -# create_account_title: "Create Account to Save Progress" -# description: "It's free. Just need a couple things and you'll be good to go:" -# email_announcements: "Receive announcements by email" -# coppa: "13+ or non-USA " -# coppa_why: "(Why?)" -# creating: "Creating Account..." -# sign_up: "Sign Up" -# log_in: "log in with password" +# create_account_title: "Crear un compte per tal de guardar els progressos" +# description: "És gratuit. Només calen un parell de coses i ja podràs començar:" +# email_announcements: "Rebre anuncis via email" +# coppa: " més de 13 anys o fora dels Estats Units" +# coppa_why: "(Per què?)" +# creating: "Creant Compte..." +# sign_up: "Registrar-se" +# log_in: "Iniciar sessió amb la teva contrasenya" # home: -# slogan: "Learn to Code JavaScript by Playing a Game" -# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" -# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" -# play: "Play" -# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" -# old_browser_suffix: "You can try anyway, but it probably won't work." -# campaign: "Campaign" -# for_beginners: "For Beginners" -# multiplayer: "Multiplayer" -# for_developers: "For Developers" +# slogan: "Aprén a programar JavaScript tot Jugant" +# no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!" +# no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!" +# play: "Jugar" +# old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!" +# old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni." +# campaign: "Campanya" +# for_beginners: "Per a principiants" +# multiplayer: "Multijugador" +# for_developers: "Per a Desenvolupadors" # play: -# choose_your_level: "Choose Your Level" -# adventurer_prefix: "You can jump to any level below, or discuss the levels on " -# adventurer_forum: "the Adventurer forum" +# choose_your_level: "Escull el teu nivell" +# adventurer_prefix: "Pots saltar a qualsevols dels nivells de més abaix, o discutir els nivells de més amunt." +# adventurer_forum: "El fòrum de l'aventurer" # adventurer_suffix: "." -# campaign_beginner: "Beginner Campaign" -# campaign_beginner_description: "... in which you learn the wizardry of programming." -# campaign_dev: "Random Harder Levels" -# campaign_dev_description: "... in which you learn the interface while doing something a little harder." -# campaign_multiplayer: "Multiplayer Arenas" -# campaign_multiplayer_description: "... in which you code head-to-head against other players." -# campaign_player_created: "Player-Created" -# campaign_player_created_description: "... in which you battle against the creativity of your fellow Artisan Wizards." -# level_difficulty: "Difficulty: " -# play_as: "Play As" +# campaign_beginner: "Campanya del principiant" +# campaign_beginner_description: "... on aprens la bruixeria de la programació." +# campaign_dev: "Nivells difícils aleatoris" +# campaign_dev_description: "... on aprens a interactuar amb la interfície tot fent coses un pèl més difícils." +# campaign_multiplayer: "Arenes Multijugador" +# campaign_multiplayer_description: "... on programes cara a cara contra altres jugadors." +# campaign_player_created: "Creats pel Jugador" +# campaign_player_created_description: "... on lluites contra la creativitat dels teus companys Artisan Wizards." +# level_difficulty: "Dificultat: " +# play_as: "Jugar com" # spectate: "Spectate" # contact: -# contact_us: "Contact CodeCombat" -# welcome: "Good to hear from you! Use this form to send us email. " -# contribute_prefix: "If you're interested in contributing, check out our " -# contribute_page: "contribute page" +# contact_us: "Contacta CodeCombat" +# welcome: "Què bé poder escoltar-te! Fes servir aquest formulari per enviar-nos un email. " +# contribute_prefix: "Si estàs interessat en col·laborar, dona un cop d'ull a la nostra " +# contribute_page: "pàgina de col·laboració" # contribute_suffix: "!" -# forum_prefix: "For anything public, please try " -# forum_page: "our forum" -# forum_suffix: " instead." -# send: "Send Feedback" +# forum_prefix: "Per a qualsevol publicació, si us plau prova " +# forum_page: "el nostre fòrum" +# forum_suffix: " sinó" +# send: "Enviar comentari" diplomat_suggestion: # title: "Help translate CodeCombat!" From 15590252f17c45139b87aede81de9208ae8977fb Mon Sep 17 00:00:00 2001 From: Dom Date: Fri, 28 Mar 2014 00:38:31 +0100 Subject: [PATCH 11/22] Update fr.coffee fixed other typos and translated a definition --- app/locale/fr.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/locale/fr.coffee b/app/locale/fr.coffee index 31738ca6a..cbea79a91 100644 --- a/app/locale/fr.coffee +++ b/app/locale/fr.coffee @@ -83,7 +83,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t 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_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_description: "... Dans laquelle vous serez confrontés à la créativité des votres.Artisan Wizards." level_difficulty: "Difficulté: " @@ -350,7 +350,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." 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." -# 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: page_title: "Légal" From e0f50d04a874c96e956b7b2593b02a84eafcba95 Mon Sep 17 00:00:00 2001 From: Michael Schmatz Date: Fri, 28 Mar 2014 09:13:08 -0700 Subject: [PATCH 12/22] Uncomment translations --- app/locale/ca.coffee | 176 +++++++++++++++++++++---------------------- 1 file changed, 88 insertions(+), 88 deletions(-) diff --git a/app/locale/ca.coffee b/app/locale/ca.coffee index 219cdb8be..70eaac42e 100644 --- a/app/locale/ca.coffee +++ b/app/locale/ca.coffee @@ -1,105 +1,105 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", translation: -# common: -# loading: "Carregant..." -# saving: "Guardant..." -# sending: "Enviant..." -# cancel: "Cancel·lant" -# save: "Guardar" -# delay_1_sec: "1 segon" -# delay_3_sec: "3 segons" -# delay_5_sec: "5 segons" -# manual: "Manual" -# fork: "Fork" -# play: "Jugar" + common: + loading: "Carregant..." + saving: "Guardant..." + sending: "Enviant..." + cancel: "Cancel·lant" + save: "Guardar" + delay_1_sec: "1 segon" + delay_3_sec: "3 segons" + delay_5_sec: "5 segons" + manual: "Manual" + fork: "Fork" + play: "Jugar" -# modal: -# close: "Tancar" -# okay: "Okey" + modal: + close: "Tancar" + okay: "Okey" # not_found: # page_not_found: "Page not found" -# nav: -# play: "Nivells" -# editor: "Editor" -# blog: "Blog" -# forum: "Fòrum" -# admin: "Admin" -# home: "Inici" -# contribute: "Col·laborar" -# legal: "Legalitat" -# about: "Sobre Nosaltres" -# contact: "Contacta" -# twitter_follow: "Segueix-nos" -# employers: "Treballadors" + nav: + play: "Nivells" + editor: "Editor" + blog: "Blog" + forum: "Fòrum" + admin: "Admin" + home: "Inici" + contribute: "Col·laborar" + legal: "Legalitat" + about: "Sobre Nosaltres" + contact: "Contacta" + twitter_follow: "Segueix-nos" + employers: "Treballadors" -# versions: -# save_version_title: "Guarda una nova versió" + versions: + save_version_title: "Guarda una nova versió" # new_major_version: "New Major Version" -# cla_prefix: "Per guardar els canvis primer has d'acceptar" -# cla_url: "CLA" -# cla_suffix: "." -# cla_agree: "Estic d'acord" + cla_prefix: "Per guardar els canvis primer has d'acceptar" + cla_url: "CLA" + cla_suffix: "." + cla_agree: "Estic d'acord" -# login: -# sign_up: "Crear un compte" -# log_in: "Iniciar Sessió" -# log_out: "Tancar Sessió" -# recover: "Recuperar un compte" + login: + sign_up: "Crear un compte" + log_in: "Iniciar Sessió" + log_out: "Tancar Sessió" + recover: "Recuperar un compte" -# recover: -# recover_account_title: "Recuperar Compte" -# send_password: "Enviar contrasenya oblidada" + recover: + recover_account_title: "Recuperar Compte" + send_password: "Enviar contrasenya oblidada" -# signup: -# create_account_title: "Crear un compte per tal de guardar els progressos" -# description: "És gratuit. Només calen un parell de coses i ja podràs començar:" -# email_announcements: "Rebre anuncis via email" -# coppa: " més de 13 anys o fora dels Estats Units" -# coppa_why: "(Per què?)" -# creating: "Creant Compte..." -# sign_up: "Registrar-se" -# log_in: "Iniciar sessió amb la teva contrasenya" + signup: + create_account_title: "Crear un compte per tal de guardar els progressos" + description: "És gratuit. Només calen un parell de coses i ja podràs començar:" + email_announcements: "Rebre anuncis via email" + coppa: " més de 13 anys o fora dels Estats Units" + coppa_why: "(Per què?)" + creating: "Creant Compte..." + sign_up: "Registrar-se" + log_in: "Iniciar sessió amb la teva contrasenya" -# home: -# slogan: "Aprén a programar JavaScript tot Jugant" -# no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!" -# no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!" -# play: "Jugar" -# old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!" -# old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni." -# campaign: "Campanya" -# for_beginners: "Per a principiants" -# multiplayer: "Multijugador" -# for_developers: "Per a Desenvolupadors" + home: + slogan: "Aprén a programar JavaScript tot Jugant" + no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!" + no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!" + play: "Jugar" + old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!" + old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni." + campaign: "Campanya" + for_beginners: "Per a principiants" + multiplayer: "Multijugador" + for_developers: "Per a Desenvolupadors" -# play: -# choose_your_level: "Escull el teu nivell" -# adventurer_prefix: "Pots saltar a qualsevols dels nivells de més abaix, o discutir els nivells de més amunt." -# adventurer_forum: "El fòrum de l'aventurer" -# adventurer_suffix: "." -# campaign_beginner: "Campanya del principiant" -# campaign_beginner_description: "... on aprens la bruixeria de la programació." -# campaign_dev: "Nivells difícils aleatoris" -# campaign_dev_description: "... on aprens a interactuar amb la interfície tot fent coses un pèl més difícils." -# campaign_multiplayer: "Arenes Multijugador" -# campaign_multiplayer_description: "... on programes cara a cara contra altres jugadors." -# campaign_player_created: "Creats pel Jugador" -# campaign_player_created_description: "... on lluites contra la creativitat dels teus companys Artisan Wizards." -# level_difficulty: "Dificultat: " -# play_as: "Jugar com" -# spectate: "Spectate" + play: + choose_your_level: "Escull el teu nivell" + adventurer_prefix: "Pots saltar a qualsevols dels nivells de més abaix, o discutir els nivells de més amunt." + adventurer_forum: "El fòrum de l'aventurer" + adventurer_suffix: "." + campaign_beginner: "Campanya del principiant" + campaign_beginner_description: "... on aprens la bruixeria de la programació." + campaign_dev: "Nivells difícils aleatoris" + campaign_dev_description: "... on aprens a interactuar amb la interfície tot fent coses un pèl més difícils." + campaign_multiplayer: "Arenes Multijugador" + campaign_multiplayer_description: "... on programes cara a cara contra altres jugadors." + campaign_player_created: "Creats pel Jugador" + campaign_player_created_description: "... on lluites contra la creativitat dels teus companys Artisan Wizards." + level_difficulty: "Dificultat: " + play_as: "Jugar com" + spectate: "Spectate" -# contact: -# contact_us: "Contacta CodeCombat" -# welcome: "Què bé poder escoltar-te! Fes servir aquest formulari per enviar-nos un email. " -# contribute_prefix: "Si estàs interessat en col·laborar, dona un cop d'ull a la nostra " -# contribute_page: "pàgina de col·laboració" -# contribute_suffix: "!" -# forum_prefix: "Per a qualsevol publicació, si us plau prova " -# forum_page: "el nostre fòrum" -# forum_suffix: " sinó" -# send: "Enviar comentari" + contact: + contact_us: "Contacta CodeCombat" + welcome: "Què bé poder escoltar-te! Fes servir aquest formulari per enviar-nos un email. " + contribute_prefix: "Si estàs interessat en col·laborar, dona un cop d'ull a la nostra " + contribute_page: "pàgina de col·laboració" + contribute_suffix: "!" + forum_prefix: "Per a qualsevol publicació, si us plau prova " + forum_page: "el nostre fòrum" + forum_suffix: " sinó" + send: "Enviar comentari" diplomat_suggestion: # title: "Help translate CodeCombat!" From 62867534a7feabaa3de5ae8fe4116b44c8bc73ef Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 09:52:07 -0700 Subject: [PATCH 13/22] Fixed #727. --- app/views/editor/level/thangs_tab_view.coffee | 4 ++-- app/views/play/level/tome/tome_view.coffee | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/views/editor/level/thangs_tab_view.coffee b/app/views/editor/level/thangs_tab_view.coffee index a831c33c0..3e61df4f8 100644 --- a/app/views/editor/level/thangs_tab_view.coffee +++ b/app/views/editor/level/thangs_tab_view.coffee @@ -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 onExtantThangSelected: (e) -> - @selectedExtantSprite?.setNameLabel null unless @selectedExtantSprite is e.sprite + @selectedExtantSprite?.setNameLabel? null unless @selectedExtantSprite is e.sprite @selectedExtantThang = e.thang @selectedExtantSprite = e.sprite 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 if not treemaThang.isSelected() 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 # We clicked on the background when we had an add Thang selected, so add it @addThang @addThangType, @addThangSprite.thang.pos diff --git a/app/views/play/level/tome/tome_view.coffee b/app/views/play/level/tome/tome_view.coffee index 205b66ded..a60179969 100644 --- a/app/views/play/level/tome/tome_view.coffee +++ b/app/views/play/level/tome/tome_view.coffee @@ -130,7 +130,6 @@ module.exports = class TomeView extends View unless method.cloneOf skipProtectAPI = @getQueryVariable "skip_protect_api", not @options.ladderGame 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 for thangID, spellKeys of @thangSpells thang = world.getThangByID thangID From cd3019296cf66648f215d0818ba6e4fc5c484bd9 Mon Sep 17 00:00:00 2001 From: Jasper D'haene Date: Fri, 28 Mar 2014 18:42:12 +0100 Subject: [PATCH 14/22] added tips/quotes to loading bar --- app/locale/en.coffee | 13 ++++++++++++- app/templates/play/level/level_loading.jade | 11 +++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/app/locale/en.coffee b/app/locale/en.coffee index 2de78fd88..84b989bb4 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -1,4 +1,4 @@ -module.exports = nativeDescription: "English", englishDescription: "English", translation: +module.exports = nativeDescription: "English", englishDescription: "English", translation: common: loading: "Loading..." saving: "Saving..." @@ -234,11 +234,22 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr 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, theory and practice are the same. In practice, they’re not." + tip_error_free: "There are two ways to write error-free programs; only the third one works." + tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in." + 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_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." + tip_no_try: "Do. Or do not. There is no try." + tip_patience: "Patience you must have,young Padawan." + tip_documented_bug: "A documented bug is not a bug; it is a feature." admin: av_title: "Admin Views" diff --git a/app/templates/play/level/level_loading.jade b/app/templates/play/level/level_loading.jade index 2a3d59122..00c320148 100644 --- a/app/templates/play/level/level_loading.jade +++ b/app/templates/play/level/level_loading.jade @@ -17,11 +17,22 @@ 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_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, theory and practice are the same. In practice, theyre not. + strong.tip(data-i18n='play_level.tip_error_free') There are two ways to write error-free programs; only the third one works. + 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. + strong.tip(data-i18n='play_level.tip_forums') Head over to the forums and tell us what you think! 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_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_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. + strong.tip.rare(data-i18n='play_level.tip_no_try') Do. Or do not. There is no try. + strong.tip.rare(data-i18n='play_level.tip_patience') Patience you must have,young Padawan. + strong.tip.rare(data-i18n='play_level.tip_documented_bug') A documented bug is not a bug; it is a feature. strong.tip.rare span(data-i18n='play_level.tip_harry') Yer a Wizard, span= me.get('name') || 'Anoner' From ff7e2d5d478af747ed9662668d63613e7e4d1006 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 11:02:23 -0700 Subject: [PATCH 15/22] Fixed #728. --- app/templates/editor/level/add_thangs.jade | 2 +- app/views/editor/level/thangs_tab_view.coffee | 2 +- server/commons/Handler.coffee | 17 +++++++++++++++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/app/templates/editor/level/add_thangs.jade b/app/templates/editor/level/add_thangs.jade index 09857d0ad..5b2419072 100644 --- a/app/templates/editor/level/add_thangs.jade +++ b/app/templates/editor/level/add_thangs.jade @@ -1,5 +1,5 @@ h3(data-i18n="editor.level_tab_thangs_add") Add Thangs -input(type="text", id="thang-search") +input(type="search", id="thang-search") #thangs-list for group in groups h4= group.name diff --git a/app/views/editor/level/thangs_tab_view.coffee b/app/views/editor/level/thangs_tab_view.coffee index 3e61df4f8..72f245a7f 100644 --- a/app/views/editor/level/thangs_tab_view.coffee +++ b/app/views/editor/level/thangs_tab_view.coffee @@ -21,7 +21,7 @@ componentOriginals = "physics.Physical" : "524b75ad7fc0f6d519000001" 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 module.exports = class ThangsTabView extends View diff --git a/server/commons/Handler.coffee b/server/commons/Handler.coffee index 3435107cb..21249a039 100644 --- a/server/commons/Handler.coffee +++ b/server/commons/Handler.coffee @@ -2,6 +2,8 @@ async = require 'async' mongoose = require('mongoose') Grid = require 'gridfs-stream' errors = require './errors' +log = require 'winston' + PROJECT = {original:1, name:1, version:1, description: 1, slug:1, kind: 1} FETCH_LIMIT = 150 @@ -99,6 +101,17 @@ module.exports = class Handler filters = [{filter: {index: true}}] if @modelClass.schema.uses_coco_permissions and req.user 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 callback = (err, results) => return @sendDatabaseError(res, err) if err @@ -111,11 +124,11 @@ module.exports = class Handler res.send matchedObjects res.end() if term - filter.project = PROJECT if req.query.project + filter.project = projection @modelClass.textSearch term, filter, callback else args = [filter.filter] - args.push PROJECT if req.query.project + args.push projection if projection @modelClass.find(args...).limit(FETCH_LIMIT).exec callback versions: (req, res, id) -> From dbc3f91f453127e9ac5e3ed8ef83e1affc8d3979 Mon Sep 17 00:00:00 2001 From: Michael Schmatz Date: Fri, 28 Mar 2014 11:28:07 -0700 Subject: [PATCH 16/22] Allowing all 2.6.0 versions --- bin/coco-mongodb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/coco-mongodb b/bin/coco-mongodb index 4ff889493..55b60e90e 100755 --- a/bin/coco-mongodb +++ b/bin/coco-mongodb @@ -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])) -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): mongo_executable = "mongod" else: From 62f2fe80c3bd7b830fd57725b1a35f0ab82f4bf0 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 11:55:24 -0700 Subject: [PATCH 17/22] Updated CoordinateDisplay styles; fixed #10. --- app/lib/surface/CoordinateDisplay.coffee | 33 +++++++++++++++++++----- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/app/lib/surface/CoordinateDisplay.coffee b/app/lib/surface/CoordinateDisplay.coffee index 5f07fd67f..3094e49f2 100644 --- a/app/lib/surface/CoordinateDisplay.coffee +++ b/app/lib/surface/CoordinateDisplay.coffee @@ -23,9 +23,11 @@ module.exports = class CoordinateDisplay extends createjs.Container build: -> @mouseEnabled = @mouseChildren = false - @addChild @label = new createjs.Text("", "40px Arial", "#003300") - @label.name = 'position text' - @label.shadow = new createjs.Shadow("#FFFFFF", 1, 1, 0) + @addChild @background = new createjs.Shape() + @addChild @label = new createjs.Text("", "bold 32px Arial", "#FFFFFF") + @label.name = 'Coordinate Display Text' + @label.shadow = new createjs.Shadow("#000000", 1, 1, 0) + @background.name = "Coordinate Display Background" onMouseOver: (e) -> @mouseInBounds = true onMouseOut: (e) -> @mouseInBounds = false @@ -57,17 +59,34 @@ module.exports = class CoordinateDisplay extends createjs.Container hide: -> return unless @label.parent @removeChild @label + @removeChild @background @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: => return unless @mouseInBounds and @lastPos and not @destroyed @label.text = "(#{@lastPos.x}, #{@lastPos.y})" - [width, height] = [@label.getMeasuredWidth(), @label.getMeasuredHeight()] - @label.regX = width / 2 - @label.regY = height / 2 + [width, height] = @updateSize() sup = @camera.worldToSurface @lastPos @x = sup.x - @y = sup.y - 7 + @y = sup.y - 5 + @addChild @background @addChild @label @cache -width / 2, -height / 2, width, height Backbone.Mediator.publish 'surface:coordinates-shown', {} From fa6ef5aa49ae903060546d107f85e94eeabf1545 Mon Sep 17 00:00:00 2001 From: Jasper D'haene Date: Fri, 28 Mar 2014 19:52:45 +0100 Subject: [PATCH 18/22] added authors to quotations --- app/locale/en.coffee | 13 +++++++------ app/templates/play/level/level_loading.jade | 13 +++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/app/locale/en.coffee b/app/locale/en.coffee index 84b989bb4..077d43fc8 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -235,9 +235,9 @@ 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, theory and practice are the same. In practice, they’re not." - tip_error_free: "There are two ways to write error-free programs; only the third one works." - tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in." + 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." @@ -246,10 +246,11 @@ tip_harry: "Yer a Wizard, " 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." - tip_no_try: "Do. Or do not. There is no try." - tip_patience: "Patience you must have,young Padawan." + 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: av_title: "Admin Views" diff --git a/app/templates/play/level/level_loading.jade b/app/templates/play/level/level_loading.jade index 00c320148..ce5bd654f 100644 --- a/app/templates/play/level/level_loading.jade +++ b/app/templates/play/level/level_loading.jade @@ -18,10 +18,11 @@ 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_think_solution') Think of the solution, not the problem. - strong.tip(data-i18n='play_level.tip_theory_practice') In theory, theory and practice are the same. In practice, theyre not. - strong.tip(data-i18n='play_level.tip_error_free') There are two ways to write error-free programs; only the third one works. - 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. + 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_morale_improves') Loading will continue until morale improves. @@ -29,9 +30,9 @@ strong.tip.rare(data-i18n='play_level.tip_reticulating') Reticulating spines. 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. - strong.tip.rare(data-i18n='play_level.tip_no_try') Do. Or do not. There is no try. - strong.tip.rare(data-i18n='play_level.tip_patience') Patience you must have,young Padawan. + 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 span(data-i18n='play_level.tip_harry') Yer a Wizard, From c4a56dc9a5d279e5fd335e074cfd545e21f447bc Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 12:22:53 -0700 Subject: [PATCH 19/22] Added a thing which highlights the guide every 5 minutes until clicked. Fixed #11. --- app/views/play/level/control_bar_view.coffee | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/app/views/play/level/control_bar_view.coffee b/app/views/play/level/control_bar_view.coffee index 6e6bd6d2e..62f1932d1 100644 --- a/app/views/play/level/control_bar_view.coffee +++ b/app/views/play/level/control_bar_view.coffee @@ -24,7 +24,7 @@ module.exports = class ControlBarView extends View 'click #restart-button': -> window.tracker?.trackEvent 'Clicked Restart', level: @worldName, label: @worldName @showRestartModal() - + 'click #next-game-button': -> Backbone.Mediator.publish 'next-game-pressed' @@ -64,9 +64,23 @@ module.exports = class ControlBarView extends View c.homeLink = "/play/ladder/" + levelID 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: -> options = {docs: @level.get('documentation'), supermodel: @supermodel} @openModalView(new DocsModal(options)) + clearInterval @guideHighlightInterval + @guideHighlightInterval = null showMultiplayerModal: -> @openModalView(new MultiplayerModal(session: @session, playableTeams: @playableTeams, level: @level, ladderGame: @ladderGame)) From 5e30ab091b99b3fcc157874f12d4790ed52817a4 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 13:19:17 -0700 Subject: [PATCH 20/22] Updated i18n tags. --- app/locale/ar.coffee | 15 +++++++++- app/locale/bg.coffee | 15 +++++++++- app/locale/ca.coffee | 15 +++++++++- app/locale/cs.coffee | 15 +++++++++- app/locale/da.coffee | 15 +++++++++- app/locale/de.coffee | 15 +++++++++- app/locale/el.coffee | 15 +++++++++- app/locale/en-AU.coffee | 15 +++++++++- app/locale/en-GB.coffee | 15 +++++++++- app/locale/en-US.coffee | 15 +++++++++- app/locale/en.coffee | 2 +- app/locale/es-419.coffee | 15 +++++++++- app/locale/es-ES.coffee | 15 +++++++++- app/locale/es.coffee | 15 +++++++++- app/locale/fa.coffee | 15 +++++++++- app/locale/fi.coffee | 15 +++++++++- app/locale/fr.coffee | 15 +++++++++- app/locale/he.coffee | 15 +++++++++- app/locale/hi.coffee | 15 +++++++++- app/locale/hu.coffee | 15 +++++++++- app/locale/id.coffee | 15 +++++++++- app/locale/it.coffee | 17 +++++++++-- app/locale/ja.coffee | 15 +++++++++- app/locale/ko.coffee | 15 +++++++++- app/locale/lt.coffee | 15 +++++++++- app/locale/ms.coffee | 17 +++++++++-- app/locale/nb.coffee | 15 +++++++++- app/locale/nl-BE.coffee | 32 ++++++++++++++++++++- app/locale/nl-NL.coffee | 32 ++++++++++++++++++++- app/locale/nl.coffee | 15 +++++++++- app/locale/nn.coffee | 15 +++++++++- app/locale/no.coffee | 15 +++++++++- app/locale/pl.coffee | 15 +++++++++- app/locale/pt-BR.coffee | 15 +++++++++- app/locale/pt-PT.coffee | 15 +++++++++- app/locale/pt.coffee | 15 +++++++++- app/locale/ro.coffee | 21 +++++++++++--- app/locale/ru.coffee | 15 +++++++++- app/locale/sk.coffee | 15 +++++++++- app/locale/sl.coffee | 15 +++++++++- app/locale/sr.coffee | 15 +++++++++- app/locale/sv.coffee | 15 +++++++++- app/locale/th.coffee | 15 +++++++++- app/locale/tr.coffee | 15 +++++++++- app/locale/uk.coffee | 15 +++++++++- app/locale/ur.coffee | 15 +++++++++- app/locale/vi.coffee | 17 +++++++++-- app/locale/zh-HANS.coffee | 15 +++++++++- app/locale/zh-HANT.coffee | 15 +++++++++- app/locale/zh.coffee | 15 +++++++++- app/templates/multiplayer_launch_modal.jade | 2 +- 51 files changed, 728 insertions(+), 57 deletions(-) diff --git a/app/locale/ar.coffee b/app/locale/ar.coffee index 57b218210..1ad88e315 100644 --- a/app/locale/ar.coffee +++ b/app/locale/ar.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/bg.coffee b/app/locale/bg.coffee index 86e75f7d1..858e3737f 100644 --- a/app/locale/bg.coffee +++ b/app/locale/bg.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "български език", englishDescri # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "български език", englishDescri # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ca.coffee b/app/locale/ca.coffee index 70eaac42e..70ba36a0c 100644 --- a/app/locale/ca.coffee +++ b/app/locale/ca.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/cs.coffee b/app/locale/cs.coffee index 148407ab4..4995d25f3 100644 --- a/app/locale/cs.coffee +++ b/app/locale/cs.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # 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: av_title: "Administrátorský pohled" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/da.coffee b/app/locale/da.coffee index 2451185ac..5ec5a51e6 100644 --- a/app/locale/da.coffee +++ b/app/locale/da.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/de.coffee b/app/locale/de.coffee index 6918515a1..f7014e42f 100644 --- a/app/locale/de.coffee +++ b/app/locale/de.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # 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: av_title: "Administrator Übersicht" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/el.coffee b/app/locale/el.coffee index 5b81c3252..03abd572c 100644 --- a/app/locale/el.coffee +++ b/app/locale/el.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/en-AU.coffee b/app/locale/en-AU.coffee index b4fed64ae..c8790b5dd 100644 --- a/app/locale/en-AU.coffee +++ b/app/locale/en-AU.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/en-GB.coffee b/app/locale/en-GB.coffee index bf3e0b2bd..a3aa4caab 100644 --- a/app/locale/en-GB.coffee +++ b/app/locale/en-GB.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/en-US.coffee b/app/locale/en-US.coffee index 05c803d8e..61676d89d 100644 --- a/app/locale/en-US.coffee +++ b/app/locale/en-US.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/en.coffee b/app/locale/en.coffee index 726da974b..12d01b8cd 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -573,7 +573,7 @@ multiplayer_launch: 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!" 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." diff --git a/app/locale/es-419.coffee b/app/locale/es-419.coffee index 91d815341..7ef97e410 100644 --- a/app/locale/es-419.coffee +++ b/app/locale/es-419.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/es-ES.coffee b/app/locale/es-ES.coffee index 8bd1f88b5..bae8322d1 100644 --- a/app/locale/es-ES.coffee +++ b/app/locale/es-ES.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/es.coffee b/app/locale/es.coffee index d90c0f463..07602534b 100644 --- a/app/locale/es.coffee +++ b/app/locale/es.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/fa.coffee b/app/locale/fa.coffee index d4e3bb62f..903a3e7d1 100644 --- a/app/locale/fa.coffee +++ b/app/locale/fa.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/fi.coffee b/app/locale/fi.coffee index 828fb2621..ecd1befc3 100644 --- a/app/locale/fi.coffee +++ b/app/locale/fi.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/fr.coffee b/app/locale/fr.coffee index cbea79a91..709764273 100644 --- a/app/locale/fr.coffee +++ b/app/locale/fr.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "français", englishDescription: "French", t # 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: av_title: "Vues d'administrateurs" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t multiplayer_launch: # 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!" # 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." diff --git a/app/locale/he.coffee b/app/locale/he.coffee index 378a641eb..3f30faac7 100644 --- a/app/locale/he.coffee +++ b/app/locale/he.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/hi.coffee b/app/locale/hi.coffee index 09fe082f9..5cb526125 100644 --- a/app/locale/hi.coffee +++ b/app/locale/hi.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/hu.coffee b/app/locale/hu.coffee index a15e7a340..00fbff803 100644 --- a/app/locale/hu.coffee +++ b/app/locale/hu.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/id.coffee b/app/locale/id.coffee index 6f818b095..08099ebf8 100644 --- a/app/locale/id.coffee +++ b/app/locale/id.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/it.coffee b/app/locale/it.coffee index 7ae76da5f..c959621be 100644 --- a/app/locale/it.coffee +++ b/app/locale/it.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # 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: av_title: "Vista amministratore" @@ -523,7 +536,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t counselor_title: "Consigliere" counselor_title_description: "(Esperto/Insegnante)" -# ladder: + ladder: # please_login: "Please log in first before playing a ladder game." # my_matches: "My Matches" simulate: "Simula" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ja.coffee b/app/locale/ja.coffee index e158a4809..0d485c06e 100644 --- a/app/locale/ja.coffee +++ b/app/locale/ja.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # 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: av_title: "管理画面" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ko.coffee b/app/locale/ko.coffee index a8dbb1a63..cdc31398d 100644 --- a/app/locale/ko.coffee +++ b/app/locale/ko.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t # 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: av_title: "관리자 뷰" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/lt.coffee b/app/locale/lt.coffee index d41a4a5f3..78a68a2c7 100644 --- a/app/locale/lt.coffee +++ b/app/locale/lt.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ms.coffee b/app/locale/ms.coffee index abbf9f164..7ea8e6314 100644 --- a/app/locale/ms.coffee +++ b/app/locale/ms.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # 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: # 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_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_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_url: "Mulalah bermain sekarang!" # 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: # 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!" # 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." diff --git a/app/locale/nb.coffee b/app/locale/nb.coffee index 959259e82..299402c42 100644 --- a/app/locale/nb.coffee +++ b/app/locale/nb.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/nl-BE.coffee b/app/locale/nl-BE.coffee index a31590f5c..f0b447f45 100644 --- a/app/locale/nl-BE.coffee +++ b/app/locale/nl-BE.coffee @@ -225,6 +225,33 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren." editor_config_behaviors_label: "Slim gedrag" 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: 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)" u_title: "Gebruikerslijst" lg_title: "Laatste Spelletjes" +# clas: "CLAs" editor: 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!" simulate_games: "Simuleer spellen!" simulate_all: "RESET EN SIMULEER SPELLEN" +# games_simulated_by: "Games simulated by you:" +# games_simulated_for: "Games simulated for you:" leaderboard: "Leaderboard" battle_as: "Vecht als " summary_your: "Jouw " @@ -542,7 +572,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: multiplayer_launch: 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!" 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." diff --git a/app/locale/nl-NL.coffee b/app/locale/nl-NL.coffee index 7dccfb48e..33c99e8f5 100644 --- a/app/locale/nl-NL.coffee +++ b/app/locale/nl-NL.coffee @@ -225,6 +225,33 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription editor_config_indentguides_description: "Toon verticale hulplijnen om de zichtbaarheid te verbeteren." editor_config_behaviors_label: "Slim gedrag" 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: 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)" u_title: "Gebruikerslijst" lg_title: "Laatste Spelletjes" +# clas: "CLAs" editor: 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!" simulate_games: "Simuleer spellen!" simulate_all: "RESET EN SIMULEER SPELLEN" +# games_simulated_by: "Games simulated by you:" +# games_simulated_for: "Games simulated for you:" leaderboard: "Leaderboard" battle_as: "Vecht als " summary_your: "Jouw " @@ -542,7 +572,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription multiplayer_launch: 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!" 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." diff --git a/app/locale/nl.coffee b/app/locale/nl.coffee index d15858c15..d364134f1 100644 --- a/app/locale/nl.coffee +++ b/app/locale/nl.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t tip_beta_launch: "CodeCombat lanceerde zijn beta versie in Oktober, 2013." 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." +# 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_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_reticulating: "Reticulating spines." +# tip_reticulating: "Reticulating spines." 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: av_title: "Administrator panels" diff --git a/app/locale/nn.coffee b/app/locale/nn.coffee index 79e8ff1d5..e14e48a70 100644 --- a/app/locale/nn.coffee +++ b/app/locale/nn.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/no.coffee b/app/locale/no.coffee index 8b96da638..3ff11675d 100644 --- a/app/locale/no.coffee +++ b/app/locale/no.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/pl.coffee b/app/locale/pl.coffee index 978997d5b..a4b429371 100644 --- a/app/locale/pl.coffee +++ b/app/locale/pl.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish # 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: av_title: "Panel administracyjny" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish multiplayer_launch: 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!" 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." diff --git a/app/locale/pt-BR.coffee b/app/locale/pt-BR.coffee index 55bb12c4d..d17831a30 100644 --- a/app/locale/pt-BR.coffee +++ b/app/locale/pt-BR.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: # 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: av_title: "Visualização de Administrador" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: multiplayer_launch: 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!" 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." diff --git a/app/locale/pt-PT.coffee b/app/locale/pt-PT.coffee index 60c77e2ab..82872dfbb 100644 --- a/app/locale/pt-PT.coffee +++ b/app/locale/pt-PT.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P # 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: av_title: "Visualizações de Admin" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P multiplayer_launch: 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!" # 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." diff --git a/app/locale/pt.coffee b/app/locale/pt.coffee index 671df5365..0c90d0c5c 100644 --- a/app/locale/pt.coffee +++ b/app/locale/pt.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ro.coffee b/app/locale/ro.coffee index 8d60ffad2..084d9b042 100644 --- a/app/locale/ro.coffee +++ b/app/locale/ro.coffee @@ -218,12 +218,12 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman editor_config_title: "Configurare Editor" editor_config_keybindings_label: "Mapare taste" 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_description: "Arată spațiile și taburile invizibile." editor_config_indentguides_label: "Arată ghidul de indentare" 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." loading_ready: "Gata!" 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_js_beginning: "JavaScript este doar începutul." 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_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_reticulating: "Reticulating spines." ??????????context ??? +# tip_reticulating: "Reticulating spines." 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: av_title: "Admin vede" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ru.coffee b/app/locale/ru.coffee index e250ac0e7..e3a8ff30c 100644 --- a/app/locale/ru.coffee +++ b/app/locale/ru.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi tip_beta_launch: "CodeCombat запустил бета-тестирование в октябре 2013." tip_js_beginning: "JavaScript это только начало." 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_morale_improves: "Загрузка будет продолжаться, пока боевой дух не улучшится." tip_all_species: "Мы верим в равные возможности для обучения программированию для всех видов." tip_reticulating: "Ретикуляция сплайнов." 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: av_title: "Админ панель" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi multiplayer_launch: introducing_dungeon_arena: "Представляем Арену подземелья" - new_way: "17 марта 2014: Новый способ соревноваться с помощью кода." + new_way: "Новый способ соревноваться с помощью кода." to_battle: "В бой, разработчики!" modern_day_sorcerer: "Вы знаете, как программировать? Это круто. Вы волшебник наших дней! Разве не время, чтобы вы использовали свои магические силы программирования для управления миньонами в эпичной битве? И мы не говорим здесь роботы." arenas_are_here: "Мультиплеерные арены CodeCombat на равных уже здесь." diff --git a/app/locale/sk.coffee b/app/locale/sk.coffee index dadd6f2fb..0cc4ae42c 100644 --- a/app/locale/sk.coffee +++ b/app/locale/sk.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/sl.coffee b/app/locale/sl.coffee index 7002befa3..d76f92f08 100644 --- a/app/locale/sl.coffee +++ b/app/locale/sl.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/sr.coffee b/app/locale/sr.coffee index f96be188f..11cf72ef7 100644 --- a/app/locale/sr.coffee +++ b/app/locale/sr.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/sv.coffee b/app/locale/sv.coffee index 14c37958c..1d8ad25f3 100644 --- a/app/locale/sv.coffee +++ b/app/locale/sv.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr # 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: av_title: "Administratörsvyer" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr multiplayer_launch: 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!" 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." diff --git a/app/locale/th.coffee b/app/locale/th.coffee index 42f00b812..adde71bc2 100644 --- a/app/locale/th.coffee +++ b/app/locale/th.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/tr.coffee b/app/locale/tr.coffee index 1918eb050..ec06640a7 100644 --- a/app/locale/tr.coffee +++ b/app/locale/tr.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t # 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: av_title: "Yönetici Görünümleri" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/uk.coffee b/app/locale/uk.coffee index 079b99a80..8070661ee 100644 --- a/app/locale/uk.coffee +++ b/app/locale/uk.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "українська мова", englishDesc # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "українська мова", englishDesc # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/ur.coffee b/app/locale/ur.coffee index b41348323..cdfd31584 100644 --- a/app/locale/ur.coffee +++ b/app/locale/ur.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/vi.coffee b/app/locale/vi.coffee index c36cded02..dea709660 100644 --- a/app/locale/vi.coffee +++ b/app/locale/vi.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # 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: # 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_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours." # introduction_desc_ending: "We hope you'll join our party!" -# introduction_desc_signature: "- Nick, George, Scott, Michael, ,Jeremy and Glen" +# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen" # alert_account_message_intro: "Hey there!" # alert_account_message_pref: "To subscribe for class emails, you'll need to " # alert_account_message_suf: "first." @@ -559,7 +572,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/zh-HANS.coffee b/app/locale/zh-HANS.coffee index 3b54c39f4..f763fb117 100644 --- a/app/locale/zh-HANS.coffee +++ b/app/locale/zh-HANS.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese # 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: av_title: "管理员视图" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/zh-HANT.coffee b/app/locale/zh-HANT.coffee index 6a58e891e..d352bd1f4 100644 --- a/app/locale/zh-HANT.coffee +++ b/app/locale/zh-HANT.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # multiplayer_launch: # 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!" # 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." diff --git a/app/locale/zh.coffee b/app/locale/zh.coffee index 891ed4e08..8ef06fb1d 100644 --- a/app/locale/zh.coffee +++ b/app/locale/zh.coffee @@ -234,11 +234,24 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # 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: # av_title: "Admin Views" @@ -559,7 +572,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # multiplayer_launch: # 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!" # 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." diff --git a/app/templates/multiplayer_launch_modal.jade b/app/templates/multiplayer_launch_modal.jade index 918d593f2..181f2515d 100644 --- a/app/templates/multiplayer_launch_modal.jade +++ b/app/templates/multiplayer_launch_modal.jade @@ -2,7 +2,7 @@ extends /templates/modal/modal_base block modal-header-content 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 From 05fed5f79b69d9a09565ddb7a67a41f794379977 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 13:51:52 -0700 Subject: [PATCH 21/22] Fixed #29. --- server/commons/Handler.coffee | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/commons/Handler.coffee b/server/commons/Handler.coffee index 21249a039..2f11b5dbf 100644 --- a/server/commons/Handler.coffee +++ b/server/commons/Handler.coffee @@ -136,8 +136,9 @@ module.exports = class Handler # Keeping it simple for now and just allowing access to the first FETCH_LIMIT results. query = {'original': mongoose.Types.ObjectId(id)} sort = {'created': -1} - selectString = 'slug name version commitMessage created permissions' # Is this even working? - @modelClass.find(query).select(selectString).limit(FETCH_LIMIT).sort(sort).exec (err, results) => + selectString = 'slug name version commitMessage created permissions' + aggregate = $match: query + @modelClass.aggregate(aggregate).project(selectString).limit(FETCH_LIMIT).sort(sort).exec (err, results) => return @sendDatabaseError(res, err) if err for doc in results return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, doc) From cf81d51a892eca3663bae56907b0abde319cdad5 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Fri, 28 Mar 2014 15:23:12 -0700 Subject: [PATCH 22/22] Fixed #46. --- app/lib/surface/CocoSprite.coffee | 18 ++++++++---------- app/views/play/level/hud_view.coffee | 2 +- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/app/lib/surface/CocoSprite.coffee b/app/lib/surface/CocoSprite.coffee index 8250f4d40..04942a549 100644 --- a/app/lib/surface/CocoSprite.coffee +++ b/app/lib/surface/CocoSprite.coffee @@ -287,7 +287,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass rotationType = @thangType.get('rotationType') return if rotationType is 'fixed' 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. # At midair we must see the original angle (delta = 0), but at launch time # 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). # 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. - velocity = @thang.velocity.z - factor = rotation - factor = -factor if factor < 0 - flip = 1 - if factor > 90 - factor = 180 - factor - flip = -1 # when the arrow is on the left, 'up' means subtracting - 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 + vz = @thang.velocity.z + if vz and speed = @thang.velocity.magnitude(true) + vx = @thang.velocity.x + heading = @thang.velocity.heading() + xFactor = Math.cos heading + zFactor = vz / Math.sqrt(vz * vz + vx * vx) + rotation -= xFactor * zFactor * 45 imageObject ?= @imageObject return imageObject.rotation = rotation if not rotationType @updateIsometricRotation(rotation, imageObject) diff --git a/app/views/play/level/hud_view.coffee b/app/views/play/level/hud_view.coffee index 810092493..581a5fb2f 100644 --- a/app/views/play/level/hud_view.coffee +++ b/app/views/play/level/hud_view.coffee @@ -150,7 +150,7 @@ module.exports = class HUDView extends View createActions: -> 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 return unless showActions @buildActionTimespans()