From ec6b3d7e5fc96b433fb0885cd3d52dcfc7f74630 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Thu, 28 Aug 2014 09:27:42 -0700 Subject: [PATCH 1/2] Fixed #1481. More Mediator schema fixes. --- app/initialize.coffee | 1 + app/lib/scripts/ScriptManager.coffee | 3 +-- app/lib/surface/SpriteBoss.coffee | 2 +- app/schemas/subscriptions/god.coffee | 2 +- app/schemas/subscriptions/misc.coffee | 4 +++ app/schemas/subscriptions/play.coffee | 2 +- app/schemas/subscriptions/surface.coffee | 3 ++- app/schemas/subscriptions/world.coffee | 30 +++++++++++++++++++++++ app/views/game-menu/ChooseHeroView.coffee | 2 +- app/views/play/level/tome/TomeView.coffee | 2 +- 10 files changed, 43 insertions(+), 8 deletions(-) create mode 100644 app/schemas/subscriptions/world.coffee diff --git a/app/initialize.coffee b/app/initialize.coffee index 11921b81b..fb744211a 100644 --- a/app/initialize.coffee +++ b/app/initialize.coffee @@ -12,6 +12,7 @@ channelSchemas = 'tome': require './schemas/subscriptions/tome' 'god': require './schemas/subscriptions/god' 'scripts': require './schemas/subscriptions/scripts' + 'world': require './schemas/subscriptions/world' definitionSchemas = 'bus': require './schemas/definitions/bus' diff --git a/app/lib/scripts/ScriptManager.coffee b/app/lib/scripts/ScriptManager.coffee index 796551f58..7c05c58e6 100644 --- a/app/lib/scripts/ScriptManager.coffee +++ b/app/lib/scripts/ScriptManager.coffee @@ -271,7 +271,6 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass @run() onEndNoteGroup: (e) -> - e?.preventDefault() # press enter return unless @currentNoteGroup?.script.skippable @endNoteGroup() @@ -285,7 +284,7 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass clearTimeout(timeout) for timeout in @currentTimeouts for module in @currentNoteGroup.modules @processNote(note, @currentNoteGroup) for note in module.endNotes() - Backbone.Mediator.publish 'script:note-group-ended' unless @quiet + Backbone.Mediator.publish 'script:note-group-ended', {} unless @quiet @scriptInProgress = false @trackScriptCompletionsFromNoteGroup(@currentNoteGroup) @currentNoteGroup = null diff --git a/app/lib/surface/SpriteBoss.coffee b/app/lib/surface/SpriteBoss.coffee index bedb45d6c..511c2830a 100644 --- a/app/lib/surface/SpriteBoss.coffee +++ b/app/lib/surface/SpriteBoss.coffee @@ -297,7 +297,7 @@ module.exports = class SpriteBoss extends CocoClass selectSprite: (e, sprite=null, spellName=null, treemaThangSelected = null) -> return if e and (@disabled or @selectLocked) # Ignore clicks for selection/panning/wizard movement while disabled or select is locked worldPos = sprite?.thang?.pos - worldPos ?= @camera.screenToWorld {x: e.originalEvent.rawX, y: e.originalEvent.rawY} if e + worldPos ?= @camera.screenToWorld {x: e.originalEvent.rawX, y: e.originalEvent.rawY} if e?.originalEvent if worldPos and (@options.navigateToSelection or not sprite or treemaThangSelected) and e?.originalEvent?.nativeEvent?.which isnt 3 @camera.zoomTo(sprite?.imageObject or @camera.worldToSurface(worldPos), @camera.zoom, 1000, true) sprite = null if @options.choosing # Don't select sprites while choosing diff --git a/app/schemas/subscriptions/god.coffee b/app/schemas/subscriptions/god.coffee index cd164806f..6121b838d 100644 --- a/app/schemas/subscriptions/god.coffee +++ b/app/schemas/subscriptions/god.coffee @@ -50,4 +50,4 @@ module.exports = 'god:debug-value-return': c.object {required: ['key']}, key: {type: 'string'} - value: {type: ['any', 'undefined']} + value: {} diff --git a/app/schemas/subscriptions/misc.coffee b/app/schemas/subscriptions/misc.coffee index bb41e1e7a..0f9d9b0c3 100644 --- a/app/schemas/subscriptions/misc.coffee +++ b/app/schemas/subscriptions/misc.coffee @@ -27,3 +27,7 @@ module.exports = 'achievements:new': c.object {required: 'earnedAchievements'}, earnedAchievements: {type: 'object'} + + 'ladder:game-submitted': c.object {required: ['session', 'level']}, + session: {type: 'object'} + level: {type: 'object'} diff --git a/app/schemas/subscriptions/play.coffee b/app/schemas/subscriptions/play.coffee index a19530bf3..608086eb1 100644 --- a/app/schemas/subscriptions/play.coffee +++ b/app/schemas/subscriptions/play.coffee @@ -107,7 +107,7 @@ module.exports = 'level:highlight-dom': c.object {required: ['selector']}, selector: {type: 'string'} - delay: {type: 'number'} + delay: {type: ['number', 'null', 'undefined']} sides: {type: 'array', items: {'enum': ['left', 'right', 'top', 'bottom']}} offset: {type: 'object'} rotation: {type: 'number'} diff --git a/app/schemas/subscriptions/surface.coffee b/app/schemas/subscriptions/surface.coffee index 418e8f784..7bc8cea8b 100644 --- a/app/schemas/subscriptions/surface.coffee +++ b/app/schemas/subscriptions/surface.coffee @@ -102,13 +102,14 @@ module.exports = # /app/lib/surface 'sprite:highlight-sprites': c.object {}, thangIDs: c.array {}, {type: 'string'} - delay: {type: 'number'} + delay: {type: ['number', 'null', 'undefined']} 'sprite:move': c.object {required: ['spriteID', 'pos']}, spriteID: {type: 'string'} pos: c.object {required: ['x', 'y']}, x: {type: 'number'} y: {type: 'number'} + z: {type: 'number'} duration: {type: 'number', minimum: 0} 'sprite:mouse-down': spriteMouseEventSchema diff --git a/app/schemas/subscriptions/world.coffee b/app/schemas/subscriptions/world.coffee new file mode 100644 index 000000000..4b2a42248 --- /dev/null +++ b/app/schemas/subscriptions/world.coffee @@ -0,0 +1,30 @@ +c = require 'schemas/schemas' + +module.exports = + 'world:won': c.object {}, + replacedNoteChain: {type: 'array'} + + 'world:thang-died': c.object {required: ['thang', 'killer']}, + replacedNoteChain: {type: 'array'} + thang: {type: 'object'} + killer: {type: 'object'} + + 'world:thang-touched-goal': c.object {required: ['actor', 'touched']}, + replacedNoteChain: {type: 'array'} + thang: {type: 'object'} + actor: {type: 'object'} + touched: {type: 'object'} + + 'world:thang-collected-item': c.object {required: ['actor', 'item']}, + replacedNoteChain: {type: 'array'} + thang: {type: 'object'} + actor: {type: 'object'} + item: {type: 'object'} + + 'world:thang-finished-plans': c.object {required: ['thang']}, + replacedNoteChain: {type: 'array'} + thang: {type: 'object'} + + 'world:attacked-when-out-of-range': c.object {required: ['thang']}, + replacedNoteChain: {type: 'array'} + thang: {type: 'object'} diff --git a/app/views/game-menu/ChooseHeroView.coffee b/app/views/game-menu/ChooseHeroView.coffee index 88632e1c4..10069bc04 100644 --- a/app/views/game-menu/ChooseHeroView.coffee +++ b/app/views/game-menu/ChooseHeroView.coffee @@ -9,7 +9,7 @@ module.exports = class ChooseHeroView extends CocoView template: template events: - 'click #restart-level-confirm-button': -> Backbone.Mediator.publish 'level:restart-level', {} + 'click #restart-level-confirm-button': -> Backbone.Mediator.publish 'level:restart', {} getRenderData: (context={}) -> context = super(context) diff --git a/app/views/play/level/tome/TomeView.coffee b/app/views/play/level/tome/TomeView.coffee index 87fef0715..c8014f6a3 100644 --- a/app/views/play/level/tome/TomeView.coffee +++ b/app/views/play/level/tome/TomeView.coffee @@ -223,7 +223,7 @@ module.exports = class TomeView extends CocoView reloadAllCode: -> spell.view.reloadCode false for spellKey, spell of @spells when spell.team is me.team or (spell.team in ['common', 'neutral', null]) - Backbone.Mediator.publish 'tome:cast-spells', spells: @spells, preload: false + Backbone.Mediator.publish 'tome:cast-spells', spells: @spells, preload: false, realTime: false updateLanguageForAllSpells: (e) -> spell.updateLanguageAether e.language for spellKey, spell of @spells when spell.canWrite() From a39097b36618398b5f65259f2dc4176bc0af1964 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Thu, 28 Aug 2014 09:29:38 -0700 Subject: [PATCH 2/2] Fixed #1494. --- app/locale/ar.coffee | 13 ++++++++++++- app/locale/bg.coffee | 13 ++++++++++++- app/locale/ca.coffee | 13 ++++++++++++- app/locale/cs.coffee | 13 ++++++++++++- app/locale/da.coffee | 13 ++++++++++++- app/locale/de-AT.coffee | 31 +++++++++++++++++++++---------- app/locale/de-CH.coffee | 13 ++++++++++++- app/locale/de-DE.coffee | 31 +++++++++++++++++++++---------- app/locale/de.coffee | 31 +++++++++++++++++++++---------- app/locale/el.coffee | 13 ++++++++++++- app/locale/en-AU.coffee | 13 ++++++++++++- app/locale/en-GB.coffee | 13 ++++++++++++- app/locale/en-US.coffee | 13 ++++++++++++- app/locale/es-419.coffee | 13 ++++++++++++- app/locale/es-ES.coffee | 13 ++++++++++++- app/locale/es.coffee | 13 ++++++++++++- app/locale/fa.coffee | 13 ++++++++++++- app/locale/fi.coffee | 13 ++++++++++++- app/locale/fr.coffee | 13 ++++++++++++- app/locale/he.coffee | 13 ++++++++++++- app/locale/hi.coffee | 13 ++++++++++++- app/locale/hu.coffee | 13 ++++++++++++- app/locale/id.coffee | 13 ++++++++++++- app/locale/it.coffee | 13 ++++++++++++- app/locale/ja.coffee | 13 ++++++++++++- app/locale/ko.coffee | 13 ++++++++++++- app/locale/lt.coffee | 13 ++++++++++++- app/locale/ms.coffee | 13 ++++++++++++- app/locale/nb.coffee | 13 ++++++++++++- app/locale/nl-BE.coffee | 13 ++++++++++++- app/locale/nl-NL.coffee | 13 ++++++++++++- app/locale/nl.coffee | 13 ++++++++++++- app/locale/nn.coffee | 13 ++++++++++++- app/locale/no.coffee | 13 ++++++++++++- app/locale/pl.coffee | 13 ++++++++++++- app/locale/pt-BR.coffee | 13 ++++++++++++- app/locale/pt-PT.coffee | 13 ++++++++++++- app/locale/pt.coffee | 13 ++++++++++++- app/locale/ro.coffee | 13 ++++++++++++- app/locale/ru.coffee | 13 ++++++++++++- app/locale/sk.coffee | 13 ++++++++++++- app/locale/sl.coffee | 13 ++++++++++++- app/locale/sr.coffee | 13 ++++++++++++- app/locale/sv.coffee | 13 ++++++++++++- app/locale/th.coffee | 13 ++++++++++++- app/locale/tr.coffee | 13 ++++++++++++- app/locale/uk.coffee | 13 ++++++++++++- app/locale/ur.coffee | 13 ++++++++++++- app/locale/vi.coffee | 13 ++++++++++++- app/locale/zh-HANS.coffee | 13 ++++++++++++- app/locale/zh-HANT.coffee | 13 ++++++++++++- app/locale/zh-WUU-HANS.coffee | 13 ++++++++++++- app/locale/zh-WUU-HANT.coffee | 13 ++++++++++++- app/locale/zh.coffee | 13 ++++++++++++- 54 files changed, 675 insertions(+), 81 deletions(-) diff --git a/app/locale/ar.coffee b/app/locale/ar.coffee index 8a79b097b..010730af7 100644 --- a/app/locale/ar.coffee +++ b/app/locale/ar.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/bg.coffee b/app/locale/bg.coffee index f1200a700..280e57c66 100644 --- a/app/locale/bg.coffee +++ b/app/locale/bg.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "български език", englishDescri # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "български език", englishDescri play_level: done: "Готово" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "български език", englishDescri # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "български език", englishDescri # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "български език", englishDescri # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "български език", englishDescri # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ca.coffee b/app/locale/ca.coffee index 447edf05c..98d0982ac 100644 --- a/app/locale/ca.coffee +++ b/app/locale/ca.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr level_difficulty: "Dificultat: " play_as: "Jugar com" spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacta CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/cs.coffee b/app/locale/cs.coffee index 6e55a881a..9dcb046f6 100644 --- a/app/locale/cs.coffee +++ b/app/locale/cs.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr level_difficulty: "Obtížnost: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Konktujte CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr play_level: done: "Hotovo" - grid: "Mřížka" customize_wizard: "Upravit Kouzelníka" home: "Domů" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/da.coffee b/app/locale/da.coffee index 33d925272..63f1b56b5 100644 --- a/app/locale/da.coffee +++ b/app/locale/da.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans level_difficulty: "Sværhedsgrad: " play_as: "Spil Som " spectate: "Observér" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontakt CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans play_level: done: "Færdig" - grid: "Gitter" customize_wizard: "Tilpas troldmand" home: "Hjem" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/de-AT.coffee b/app/locale/de-AT.coffee index 5d6ece832..c9365f521 100644 --- a/app/locale/de-AT.coffee +++ b/app/locale/de-AT.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: level_difficulty: "Schwierigkeit: " play_as: "Spiele als " spectate: "Zuschauen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontaktiere CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: play_level: done: "Fertig" - grid: "Raster" customize_wizard: "Bearbeite den Zauberer" home: "Startseite" # stop: "Stop" @@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: # game_menu: # inventory_tab: "Inventory" - choose_hero_tab: "Level neustarten" - save_load_tab: "Speichere/Lade" - options_tab: "Optionen" +# choose_hero_tab: "Restart Level" +# save_load_tab: "Save/Load" +# options_tab: "Options" # guide_tab: "Guide" - multiplayer_tab: "Mehrspieler" +# multiplayer_tab: "Multiplayer" # inventory_caption: "Equip your hero" # choose_hero_caption: "Choose hero, language" # save_load_caption: "... and view history" - options_caption: "Konfiguriere Einstellungen" +# options_caption: "Configure settings" # guide_caption: "Docs and tips" - multiplayer_caption: "Spiele mit Freunden!" +# multiplayer_caption: "Play with friends!" # inventory: # temp: "Temp" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: unknown: "Unbekannter Fehler." resources: +# sessions: "Sessions" your_sessions: "Meine Sessions" level: "Level" social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: # patched_model: "Source Document" model: "Model" system: "System" +# systems: "Systems" component: "Komponente" components: "Komponenten" thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: # source_document: "Source Document" document: "Dokument" sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" candidate_sessions: "Kandidat-Sessions" user_remark: "Benutzerkommentar" +# user_remarks: "User Remarks" versions: "Versionen" items: "Gegenstände" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "hinzugefügt" @@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: # user: # stats: "Stats" - singleplayer_title: "Einzelspieler Levels" - multiplayer_title: "Mehrspieler Levels" +# singleplayer_title: "Singleplayer Levels" +# multiplayer_title: "Multiplayer Levels" # achievements_title: "Achievements" - last_played: "Zuletzt gespielt" +# last_played: "Last Played" # status: "Status" # status_completed: "Completed" # status_unfinished: "Unfinished" diff --git a/app/locale/de-CH.coffee b/app/locale/de-CH.coffee index e7a52ffd0..a0ac35ce7 100644 --- a/app/locale/de-CH.coffee +++ b/app/locale/de-CH.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge level_difficulty: "Schwierigkeit: " play_as: "Spiel als" spectate: "Zueluege" +# players: "players" +# hours_played: "hours played" contact: contact_us: "CodeCombat kontaktiere" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge play_level: done: "Fertig" - grid: "Gitter" customize_wizard: "Zauberer apasse" home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge toggle_grid: "Gitter ischalte/usschalte." toggle_pathfinding: "Wegfinder ischalte/usschalte." beautify: "Mach din Code schöner, indem du sini Formatierig standartisiersch." +# maximize_editor: "Maximize/minimize code editor." move_wizard: "Beweg din Zauberer durs Level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/de-DE.coffee b/app/locale/de-DE.coffee index ed5bed64e..1c2f3e64d 100644 --- a/app/locale/de-DE.coffee +++ b/app/locale/de-DE.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: level_difficulty: "Schwierigkeit: " play_as: "Spiele als " spectate: "Zuschauen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontaktiere CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: play_level: done: "Fertig" - grid: "Raster" customize_wizard: "Bearbeite den Zauberer" home: "Startseite" # stop: "Stop" @@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: # game_menu: # inventory_tab: "Inventory" - choose_hero_tab: "Level neustarten" - save_load_tab: "Speichere/Lade" - options_tab: "Optionen" +# choose_hero_tab: "Restart Level" +# save_load_tab: "Save/Load" +# options_tab: "Options" # guide_tab: "Guide" - multiplayer_tab: "Mehrspieler" +# multiplayer_tab: "Multiplayer" # inventory_caption: "Equip your hero" # choose_hero_caption: "Choose hero, language" # save_load_caption: "... and view history" - options_caption: "Konfiguriere Einstellungen" +# options_caption: "Configure settings" # guide_caption: "Docs and tips" - multiplayer_caption: "Spiele mit Freunden!" +# multiplayer_caption: "Play with friends!" # inventory: # temp: "Temp" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: unknown: "Unbekannter Fehler." resources: +# sessions: "Sessions" your_sessions: "Meine Sessions" level: "Level" social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: # patched_model: "Source Document" model: "Model" system: "System" +# systems: "Systems" component: "Komponente" components: "Komponenten" thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: # source_document: "Source Document" document: "Dokument" sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" candidate_sessions: "Kandidat-Sessions" user_remark: "Benutzerkommentar" +# user_remarks: "User Remarks" versions: "Versionen" items: "Gegenstände" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "hinzugefügt" @@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: # user: # stats: "Stats" - singleplayer_title: "Einzelspieler Levels" - multiplayer_title: "Mehrspieler Levels" +# singleplayer_title: "Singleplayer Levels" +# multiplayer_title: "Multiplayer Levels" # achievements_title: "Achievements" - last_played: "Zuletzt gespielt" +# last_played: "Last Played" # status: "Status" # status_completed: "Completed" # status_unfinished: "Unfinished" diff --git a/app/locale/de.coffee b/app/locale/de.coffee index ec1df6b59..ae66eb7df 100644 --- a/app/locale/de.coffee +++ b/app/locale/de.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra level_difficulty: "Schwierigkeit: " play_as: "Spiele als " spectate: "Zuschauen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontaktiere CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra play_level: done: "Fertig" - grid: "Raster" customize_wizard: "Bearbeite den Zauberer" home: "Startseite" # stop: "Stop" @@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # game_menu: # inventory_tab: "Inventory" - choose_hero_tab: "Level neustarten" - save_load_tab: "Speichere/Lade" - options_tab: "Optionen" +# choose_hero_tab: "Restart Level" +# save_load_tab: "Save/Load" +# options_tab: "Options" # guide_tab: "Guide" - multiplayer_tab: "Mehrspieler" +# multiplayer_tab: "Multiplayer" # inventory_caption: "Equip your hero" # choose_hero_caption: "Choose hero, language" # save_load_caption: "... and view history" - options_caption: "Konfiguriere Einstellungen" +# options_caption: "Configure settings" # guide_caption: "Docs and tips" - multiplayer_caption: "Spiele mit Freunden!" +# multiplayer_caption: "Play with friends!" # inventory: # temp: "Temp" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra unknown: "Unbekannter Fehler." resources: +# sessions: "Sessions" your_sessions: "Meine Sessions" level: "Level" social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # patched_model: "Source Document" model: "Model" system: "System" +# systems: "Systems" component: "Komponente" components: "Komponenten" thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # source_document: "Source Document" document: "Dokument" sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" candidate_sessions: "Kandidat-Sessions" user_remark: "Benutzerkommentar" +# user_remarks: "User Remarks" versions: "Versionen" items: "Gegenstände" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "hinzugefügt" @@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra # user: # stats: "Stats" - singleplayer_title: "Einzelspieler Levels" - multiplayer_title: "Mehrspieler Levels" +# singleplayer_title: "Singleplayer Levels" +# multiplayer_title: "Multiplayer Levels" # achievements_title: "Achievements" - last_played: "Zuletzt gespielt" +# last_played: "Last Played" # status: "Status" # status_completed: "Completed" # status_unfinished: "Unfinished" diff --git a/app/locale/el.coffee b/app/locale/el.coffee index a69dafea2..63a002c9e 100644 --- a/app/locale/el.coffee +++ b/app/locale/el.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre level_difficulty: "Δυσκολία: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Επικοινωνήστε μαζί μας" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre play_level: done: "Έτοιμο" - grid: "Πλέγμα" customize_wizard: "Προσαρμόστε τον Μάγο" home: "Αρχική" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/en-AU.coffee b/app/locale/en-AU.coffee index fa2e6be39..f22c6dbe2 100644 --- a/app/locale/en-AU.coffee +++ b/app/locale/en-AU.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/en-GB.coffee b/app/locale/en-GB.coffee index 204b86335..925c908c6 100644 --- a/app/locale/en-GB.coffee +++ b/app/locale/en-GB.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English play_level: # done: "Done" -# grid: "Grid" customize_wizard: "Customise Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/en-US.coffee b/app/locale/en-US.coffee index d28200cc5..8ad30dd89 100644 --- a/app/locale/en-US.coffee +++ b/app/locale/en-US.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/es-419.coffee b/app/locale/es-419.coffee index 504e3e588..a4d767b13 100644 --- a/app/locale/es-419.coffee +++ b/app/locale/es-419.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip level_difficulty: "Dificultad: " play_as: "Jugar Como " spectate: "Observar" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacta a CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip play_level: done: "Listo" - grid: "Cuadricula" customize_wizard: "Personalizar Hechicero" home: "Inicio" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip unknown: "Error desconocido." resources: +# sessions: "Sessions" your_sessions: "Tus sesiones" level: "Nivel" social_network_apis: "APIs de Redes Sociales" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip # patched_model: "Source Document" model: "Modelo" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/es-ES.coffee b/app/locale/es-ES.coffee index 5e16d2609..64cb82fcb 100644 --- a/app/locale/es-ES.coffee +++ b/app/locale/es-ES.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis level_difficulty: "Dificultad: " play_as: "Jugar como" spectate: "Observar" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacta con CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis play_level: done: "Hecho" - grid: "Cuadrícula" customize_wizard: "Personalizar Mago" home: "Inicio" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis unknown: "Error desconocido." resources: +# sessions: "Sessions" your_sessions: "Tus sesiones" level: "Nivel" social_network_apis: "APIs de redes sociales" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis # patched_model: "Source Document" model: "Modelo" system: "Sistema" +# systems: "Systems" component: "Componente" components: "Componentes" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis source_document: "Documento fuente" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "Añadido" diff --git a/app/locale/es.coffee b/app/locale/es.coffee index 488972156..62896d625 100644 --- a/app/locale/es.coffee +++ b/app/locale/es.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t level_difficulty: "Dificultad: " play_as: "Juega como " # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacta a CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t play_level: done: "Hecho" - grid: "Cuadrícrula" customize_wizard: "Personalizar Mago" home: "Inicio" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/fa.coffee b/app/locale/fa.coffee index 715c431f8..2a75ddb3e 100644 --- a/app/locale/fa.coffee +++ b/app/locale/fa.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", level_difficulty: "سختی: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "CodeCombatتماس با " @@ -355,7 +357,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian", # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/fi.coffee b/app/locale/fi.coffee index b0d4a9daa..6fb9c21d8 100644 --- a/app/locale/fi.coffee +++ b/app/locale/fi.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/fr.coffee b/app/locale/fr.coffee index 93a1b33f1..913dda2c9 100644 --- a/app/locale/fr.coffee +++ b/app/locale/fr.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "français", englishDescription: "French", t level_difficulty: "Difficulté: " play_as: "Jouer comme " spectate: "Spectateur" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacter CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t play_level: done: "Fait" - grid: "Grille" customize_wizard: "Personnaliser le magicien" home: "Accueil" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t unknown: "Erreur inconnue." resources: +# sessions: "Sessions" your_sessions: "vos Sessions" level: "Niveau" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t # patched_model: "Source Document" # model: "Model" system: "Système" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "français", englishDescription: "French", t source_document: "Document Source" document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "Ajouté" diff --git a/app/locale/he.coffee b/app/locale/he.coffee index dcee6fb7f..380bbdc08 100644 --- a/app/locale/he.coffee +++ b/app/locale/he.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", level_difficulty: "רמת קושי: " play_as: "שחק בתור " spectate: "צופה" +# players: "players" +# hours_played: "hours played" contact: contact_us: "צור קשר" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew", # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/hi.coffee b/app/locale/hi.coffee index 90322a62e..4d00d4dee 100644 --- a/app/locale/hi.coffee +++ b/app/locale/hi.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/hu.coffee b/app/locale/hu.coffee index 0d1581b13..1e530b4c7 100644 --- a/app/locale/hu.coffee +++ b/app/locale/hu.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t level_difficulty: "Nehézség: " play_as: "Játssz mint" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Lépj kapcsolatba velünk" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t play_level: done: "Kész" - grid: "Rács" customize_wizard: "Varázsló testreszabása" home: "Kezdőlap" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/id.coffee b/app/locale/id.coffee index f16c274a8..ee80dff66 100644 --- a/app/locale/id.coffee +++ b/app/locale/id.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/it.coffee b/app/locale/it.coffee index f37ebd62e..84c168299 100644 --- a/app/locale/it.coffee +++ b/app/locale/it.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t level_difficulty: "Difficoltà: " play_as: "Gioca come " spectate: "Spettatore" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contatta CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t play_level: done: "Fatto" - grid: "Griglia" customize_wizard: "Personalizza stregone" home: "Pagina iniziale" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ja.coffee b/app/locale/ja.coffee index d9ea03f13..20202577b 100644 --- a/app/locale/ja.coffee +++ b/app/locale/ja.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", level_difficulty: "難易度: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "お問い合わせ" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", play_level: done: "完了" - grid: "グリッド" customize_wizard: "魔法使いの設定" home: "ホーム" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese", # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ko.coffee b/app/locale/ko.coffee index e079bb5ed..e3a4ef045 100644 --- a/app/locale/ko.coffee +++ b/app/locale/ko.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t level_difficulty: "난이도: " play_as: "Play As " spectate: "관중모드" +# players: "players" +# hours_played: "hours played" contact: contact_us: "코드컴뱃에 전할 말" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t play_level: done: "완료" - grid: "그리드" customize_wizard: "사용자 정의 마법사" home: "홈" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t unknown: "알 수 없는 에러 발생" resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" level: "레벨" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t # patched_model: "Source Document" # model: "Model" system: "시스템" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/lt.coffee b/app/locale/lt.coffee index 19f715148..e5ca1fffa 100644 --- a/app/locale/lt.coffee +++ b/app/locale/lt.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ms.coffee b/app/locale/ms.coffee index 36396cd35..d9d6fa714 100644 --- a/app/locale/ms.coffee +++ b/app/locale/ms.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Hubungi CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/nb.coffee b/app/locale/nb.coffee index 226dd397c..0c3b52b92 100644 --- a/app/locale/nb.coffee +++ b/app/locale/nb.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg level_difficulty: "Vanskelighetsgrad: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontakt CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg play_level: done: "Ferdig" - grid: "Grid" customize_wizard: "Spesiallag Trollmann" home: "Hjem" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/nl-BE.coffee b/app/locale/nl-BE.coffee index 67013d913..dca53ac5d 100644 --- a/app/locale/nl-BE.coffee +++ b/app/locale/nl-BE.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: level_difficulty: "Moeilijkheidsgraad: " play_as: "Speel als " spectate: "Toeschouwen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contact opnemen met CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: play_level: done: "Klaar" - grid: "Raster" customize_wizard: "Pas Tovenaar aan" home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: unknown: "Onbekende fout." resources: +# sessions: "Sessions" your_sessions: "Jouw sessies." level: "Level" social_network_apis: "Sociale netwerk APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: # patched_model: "Source Document" model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription: # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/nl-NL.coffee b/app/locale/nl-NL.coffee index 720933693..16d8706e0 100644 --- a/app/locale/nl-NL.coffee +++ b/app/locale/nl-NL.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription level_difficulty: "Moeilijkheidsgraad: " play_as: "Speel als " spectate: "Toeschouwen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contact opnemen met CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription play_level: done: "Klaar" - grid: "Raster" customize_wizard: "Pas Tovenaar aan" home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription unknown: "Onbekende fout." resources: +# sessions: "Sessions" your_sessions: "Jouw sessies." level: "Level" social_network_apis: "Sociale netwerk APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription # patched_model: "Source Document" model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/nl.coffee b/app/locale/nl.coffee index 4742bedfe..51399f105 100644 --- a/app/locale/nl.coffee +++ b/app/locale/nl.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t level_difficulty: "Moeilijkheidsgraad: " play_as: "Speel als " spectate: "Toeschouwen" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contact opnemen met CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t play_level: done: "Klaar" - grid: "Raster" customize_wizard: "Pas Tovenaar aan" home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t unknown: "Onbekende fout." resources: +# sessions: "Sessions" your_sessions: "Jouw sessies." level: "Level" social_network_apis: "Sociale netwerk APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t # patched_model: "Source Document" model: "Model" system: "Systeem" +# systems: "Systems" component: "Component" components: "Componenten" thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/nn.coffee b/app/locale/nn.coffee index cc22a06cc..bcf5762e7 100644 --- a/app/locale/nn.coffee +++ b/app/locale/nn.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/no.coffee b/app/locale/no.coffee index 0ba5010b8..f5333d761 100644 --- a/app/locale/no.coffee +++ b/app/locale/no.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr level_difficulty: "Vanskelighetsgrad: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontakt CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr play_level: done: "Ferdig" - grid: "Grid" customize_wizard: "Spesiallag Trollmann" home: "Hjem" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/pl.coffee b/app/locale/pl.coffee index 0c73d4fd3..befbc7ca9 100644 --- a/app/locale/pl.coffee +++ b/app/locale/pl.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish level_difficulty: "Poziom trudności: " play_as: "Graj jako " spectate: "Oglądaj" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontakt z CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish play_level: done: "Zrobione" - grid: "Siatka" customize_wizard: "Spersonalizuj czarodzieja" home: "Strona główna" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/pt-BR.coffee b/app/locale/pt-BR.coffee index f84b22c20..76e1efe86 100644 --- a/app/locale/pt-BR.coffee +++ b/app/locale/pt-BR.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: level_difficulty: "Dificuldade: " play_as: "Jogar Como " spectate: "Assistir" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contate-nos" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: play_level: done: "Pronto" - grid: "Grade" customize_wizard: "Personalize o feiticeiro" home: "Início" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "português do Brasil", englishDescription: # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/pt-PT.coffee b/app/locale/pt-PT.coffee index 8be7d0bee..3c1bc4872 100644 --- a/app/locale/pt-PT.coffee +++ b/app/locale/pt-PT.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: level_difficulty: "Dificuldade: " play_as: "Jogar Como" spectate: "Espectar" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contacte o CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: play_level: done: "Concluir" - grid: "Grelha" customize_wizard: "Personalizar Feiticeiro" home: "Início" stop: "Parar" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: toggle_grid: "Ativar/desativar a sobreposição da grelha." toggle_pathfinding: "Ativar/desativar a sobreposição do encontrador de caminho." beautify: "Embelezar o código ao estandardizar a formatação." +# maximize_editor: "Maximize/minimize code editor." move_wizard: "Mover o seu Feiticeiro pelo nível." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: unknown: "Erro desconhecido." resources: +# sessions: "Sessions" your_sessions: "As Suas Sessões" level: "Nível" social_network_apis: "APIs das Redes Sociais" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: patched_model: "Documento Fonte" model: "Modelo" system: "Sistema" +# systems: "Systems" component: "Componente" components: "Componentes" thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription: source_document: "Documento Fonte" document: "Documento" sprite_sheet: "Folha de Sprite" +# employers: "Employers" +# candidates: "Candidates" candidate_sessions: "Sessões de Candidatos" user_remark: "Observação do Utilizador" +# user_remarks: "User Remarks" versions: "Versões" items: "Itens" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "Adicionados/as" diff --git a/app/locale/pt.coffee b/app/locale/pt.coffee index 218eda379..2c9518552 100644 --- a/app/locale/pt.coffee +++ b/app/locale/pt.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues level_difficulty: "Dificuldade: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contate-nos" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues play_level: done: "Pronto" - grid: "Grade" customize_wizard: "Personalize o feiticeiro" home: "Início" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ro.coffee b/app/locale/ro.coffee index 1c1e7e471..0a8d6cc97 100644 --- a/app/locale/ro.coffee +++ b/app/locale/ro.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman level_difficulty: "Dificultate: " play_as: "Alege-ți echipa" spectate: "Spectator" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman play_level: done: "Gata" - grid: "Grilă" customize_wizard: "Personalizează Wizard-ul" home: "Acasă" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ru.coffee b/app/locale/ru.coffee index bae39c1df..c5ea9cd1e 100644 --- a/app/locale/ru.coffee +++ b/app/locale/ru.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi level_difficulty: "Сложность: " play_as: "Играть за " spectate: "Наблюдать" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Связаться с CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi play_level: done: "Готово" - grid: "Сетка" customize_wizard: "Настройки волшебника" home: "На главную" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi toggle_grid: "Включить наложение сетки." toggle_pathfinding: "Включить путевой оверлей.." beautify: "Приукрасьте свой код стандартизацией его форматирования." +# maximize_editor: "Maximize/minimize code editor." move_wizard: "Перемещайте своего Волшебника по уровню." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi unknown: "Неизвестная ошибка." resources: +# sessions: "Sessions" your_sessions: "Ваши сессии" level: "Уровень" social_network_apis: "API социальных сетей" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi patched_model: "Исходный документ" model: "Модель" system: "Система" +# systems: "Systems" component: "Компонент" components: "Компоненты" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi source_document: "Исходный документ" document: "Документ" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" user_remark: "Пользовательские поправки" +# user_remarks: "User Remarks" versions: "Версии" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" delta: added: "Добавлено" diff --git a/app/locale/sk.coffee b/app/locale/sk.coffee index 8427e05ae..db7a48f7d 100644 --- a/app/locale/sk.coffee +++ b/app/locale/sk.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", level_difficulty: "Obtiažnosť." play_as: "Hraj ako" spectate: "Sleduj" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontaktujte nás" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak", # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/sl.coffee b/app/locale/sl.coffee index ec8ccdc35..28c63cbf1 100644 --- a/app/locale/sl.coffee +++ b/app/locale/sl.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/sr.coffee b/app/locale/sr.coffee index 75d4ef3e0..2ec357ed0 100644 --- a/app/locale/sr.coffee +++ b/app/locale/sr.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian level_difficulty: "Тежина: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Контактирај CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian play_level: done: "Урађено" - grid: "Мрежа" customize_wizard: "Прилагоди Чаробњака" home: "Почетна" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/sv.coffee b/app/locale/sv.coffee index 9e499f9c5..7c733b528 100644 --- a/app/locale/sv.coffee +++ b/app/locale/sv.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr level_difficulty: "Svårighetsgrad: " play_as: "Spela som " spectate: "Titta på" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Kontakta CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr play_level: done: "Klar" - grid: "Rutnät" customize_wizard: "Skräddarsy trollkarl" home: "Hem" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/th.coffee b/app/locale/th.coffee index fdf097547..661573d41 100644 --- a/app/locale/th.coffee +++ b/app/locale/th.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra play_level: done: "เสร็จสิ้น" -# grid: "Grid" # customize_wizard: "Customize Wizard" home: "หน้าแรก" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/tr.coffee b/app/locale/tr.coffee index 6af459752..720488b3d 100644 --- a/app/locale/tr.coffee +++ b/app/locale/tr.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t level_difficulty: "Zorluk: " play_as: "Olarak Oyna" spectate: "İzleyici olarak katıl" +# players: "players" +# hours_played: "hours played" contact: contact_us: "CodeCombat ile İletişim" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t play_level: done: "Tamamdır" - grid: "Harita Bölmeleri" customize_wizard: "Sihirbazı Düzenle" home: "Anasayfa" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t unknown: "Bilinmeyen hata." resources: +# sessions: "Sessions" your_sessions: "Oturumlarınız" level: "Seviye" social_network_apis: "Sosyal Ağ API'leri" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/uk.coffee b/app/locale/uk.coffee index baad95d10..d94e271e6 100644 --- a/app/locale/uk.coffee +++ b/app/locale/uk.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "українська мова", englishDesc level_difficulty: "Складність: " play_as: "Грати як" spectate: "Спостерігати" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Зв'язатися з CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "українська мова", englishDesc play_level: done: "Готово" - grid: "Решітка" customize_wizard: "Налаштування персонажа" home: "На головну" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "українська мова", englishDesc # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "українська мова", englishDesc # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "українська мова", englishDesc # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "українська мова", englishDesc # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/ur.coffee b/app/locale/ur.coffee index 054e3e52a..4df03e932 100644 --- a/app/locale/ur.coffee +++ b/app/locale/ur.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu", # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/vi.coffee b/app/locale/vi.coffee index 539719266..e451dfecf 100644 --- a/app/locale/vi.coffee +++ b/app/locale/vi.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn level_difficulty: "Khó: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "Liên hệ CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn play_level: done: "Hoàn thành" -# grid: "Grid" customize_wizard: "Tùy chỉnh Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/zh-HANS.coffee b/app/locale/zh-HANS.coffee index 9bfd6185a..9845fd8bc 100644 --- a/app/locale/zh-HANS.coffee +++ b/app/locale/zh-HANS.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese level_difficulty: "难度:" play_as: "Play As" spectate: "旁观他人的游戏" +# players: "players" +# hours_played: "hours played" contact: contact_us: "联系我们" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese play_level: done: "完成" - grid: "格子" customize_wizard: "自定义向导" home: "主页" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." beautify: "利用标准编码格式美化你的代码。" +# maximize_editor: "Maximize/minimize code editor." move_wizard: "在关卡中移动你的巫师角色。" admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese unknown: "未知错误." resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" level: "等级" social_network_apis: "社交网络 APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/zh-HANT.coffee b/app/locale/zh-HANT.coffee index afeb27ccc..b2494cd5d 100644 --- a/app/locale/zh-HANT.coffee +++ b/app/locale/zh-HANT.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese level_difficulty: "難度" # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "聯繫我們" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese play_level: done: "完成" - grid: "格子" customize_wizard: "自定義巫師" home: "首頁" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/zh-WUU-HANS.coffee b/app/locale/zh-WUU-HANS.coffee index 91817c16f..b548ee9c8 100644 --- a/app/locale/zh-WUU-HANS.coffee +++ b/app/locale/zh-WUU-HANS.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # level_difficulty: "Difficulty: " # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" # contact: # contact_us: "Contact CodeCombat" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/zh-WUU-HANT.coffee b/app/locale/zh-WUU-HANT.coffee index e86235c8a..5e531075a 100644 --- a/app/locale/zh-WUU-HANT.coffee +++ b/app/locale/zh-WUU-HANT.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio level_difficulty: "難度:" play_as: "Play As" spectate: "望別人攪遊戲" +# players: "players" +# hours_played: "hours played" contact: contact_us: "搭我裏聯繫" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio play_level: done: "妝下落" - grid: "格子" customize_wizard: "自設定獻路人" home: "主頁" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio unknown: "弗識錯誤。" resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" level: "等級" social_network_apis: "社交網絡 APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added" diff --git a/app/locale/zh.coffee b/app/locale/zh.coffee index 08ffa2544..988c73d08 100644 --- a/app/locale/zh.coffee +++ b/app/locale/zh.coffee @@ -126,6 +126,8 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra level_difficulty: "难度" # play_as: "Play As" # spectate: "Spectate" +# players: "players" +# hours_played: "hours played" contact: contact_us: "联系我们" @@ -355,7 +357,6 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # play_level: # done: "Done" -# grid: "Grid" # customize_wizard: "Customize Wizard" # home: "Home" # stop: "Stop" @@ -512,6 +513,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # toggle_grid: "Toggle grid overlay." # toggle_pathfinding: "Toggle pathfinding overlay." # beautify: "Beautify your code by standardizing its formatting." +# maximize_editor: "Maximize/minimize code editor." # move_wizard: "Move your Wizard around the level." # admin: @@ -908,6 +910,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # unknown: "Unknown error." # resources: +# sessions: "Sessions" # your_sessions: "Your Sessions" # level: "Level" # social_network_apis: "Social Network APIs" @@ -923,6 +926,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # patched_model: "Source Document" # model: "Model" # system: "System" +# systems: "Systems" # component: "Component" # components: "Components" # thang: "Thang" @@ -937,10 +941,17 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra # source_document: "Source Document" # document: "Document" # sprite_sheet: "Sprite Sheet" +# employers: "Employers" +# candidates: "Candidates" # candidate_sessions: "Candidate Sessions" # user_remark: "User Remark" +# user_remarks: "User Remarks" # versions: "Versions" # items: "Items" +# wizard: "Wizard" +# achievement: "Achievement" +# clas: "CLAs" +# play_counts: "Play Counts" # delta: # added: "Added"