mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-01 11:27:14 -05:00
Merge branch 'master' into production
This commit is contained in:
commit
04ba060b06
64 changed files with 718 additions and 89 deletions
|
@ -12,6 +12,7 @@ channelSchemas =
|
||||||
'tome': require './schemas/subscriptions/tome'
|
'tome': require './schemas/subscriptions/tome'
|
||||||
'god': require './schemas/subscriptions/god'
|
'god': require './schemas/subscriptions/god'
|
||||||
'scripts': require './schemas/subscriptions/scripts'
|
'scripts': require './schemas/subscriptions/scripts'
|
||||||
|
'world': require './schemas/subscriptions/world'
|
||||||
|
|
||||||
definitionSchemas =
|
definitionSchemas =
|
||||||
'bus': require './schemas/definitions/bus'
|
'bus': require './schemas/definitions/bus'
|
||||||
|
|
|
@ -271,7 +271,6 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass
|
||||||
@run()
|
@run()
|
||||||
|
|
||||||
onEndNoteGroup: (e) ->
|
onEndNoteGroup: (e) ->
|
||||||
e?.preventDefault()
|
|
||||||
# press enter
|
# press enter
|
||||||
return unless @currentNoteGroup?.script.skippable
|
return unless @currentNoteGroup?.script.skippable
|
||||||
@endNoteGroup()
|
@endNoteGroup()
|
||||||
|
@ -285,7 +284,7 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass
|
||||||
clearTimeout(timeout) for timeout in @currentTimeouts
|
clearTimeout(timeout) for timeout in @currentTimeouts
|
||||||
for module in @currentNoteGroup.modules
|
for module in @currentNoteGroup.modules
|
||||||
@processNote(note, @currentNoteGroup) for note in module.endNotes()
|
@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
|
@scriptInProgress = false
|
||||||
@trackScriptCompletionsFromNoteGroup(@currentNoteGroup)
|
@trackScriptCompletionsFromNoteGroup(@currentNoteGroup)
|
||||||
@currentNoteGroup = null
|
@currentNoteGroup = null
|
||||||
|
|
|
@ -297,7 +297,7 @@ module.exports = class SpriteBoss extends CocoClass
|
||||||
selectSprite: (e, sprite=null, spellName=null, treemaThangSelected = null) ->
|
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
|
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 = 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
|
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)
|
@camera.zoomTo(sprite?.imageObject or @camera.worldToSurface(worldPos), @camera.zoom, 1000, true)
|
||||||
sprite = null if @options.choosing # Don't select sprites while choosing
|
sprite = null if @options.choosing # Don't select sprites while choosing
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
level_difficulty: "Dificultat: "
|
level_difficulty: "Dificultat: "
|
||||||
play_as: "Jugar com"
|
play_as: "Jugar com"
|
||||||
spectate: "Spectate"
|
spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacta CodeCombat"
|
contact_us: "Contacta CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
level_difficulty: "Obtížnost: "
|
level_difficulty: "Obtížnost: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Konktujte CodeCombat"
|
contact_us: "Konktujte CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hotovo"
|
done: "Hotovo"
|
||||||
grid: "Mřížka"
|
|
||||||
customize_wizard: "Upravit Kouzelníka"
|
customize_wizard: "Upravit Kouzelníka"
|
||||||
home: "Domů"
|
home: "Domů"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
level_difficulty: "Sværhedsgrad: "
|
level_difficulty: "Sværhedsgrad: "
|
||||||
play_as: "Spil Som "
|
play_as: "Spil Som "
|
||||||
spectate: "Observér"
|
spectate: "Observér"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontakt CodeCombat"
|
contact_us: "Kontakt CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Færdig"
|
done: "Færdig"
|
||||||
grid: "Gitter"
|
|
||||||
customize_wizard: "Tilpas troldmand"
|
customize_wizard: "Tilpas troldmand"
|
||||||
home: "Hjem"
|
home: "Hjem"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
level_difficulty: "Schwierigkeit: "
|
level_difficulty: "Schwierigkeit: "
|
||||||
play_as: "Spiele als "
|
play_as: "Spiele als "
|
||||||
spectate: "Zuschauen"
|
spectate: "Zuschauen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontaktiere CodeCombat"
|
contact_us: "Kontaktiere CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Bearbeite den Zauberer"
|
customize_wizard: "Bearbeite den Zauberer"
|
||||||
home: "Startseite"
|
home: "Startseite"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
choose_hero_tab: "Level neustarten"
|
# choose_hero_tab: "Restart Level"
|
||||||
save_load_tab: "Speichere/Lade"
|
# save_load_tab: "Save/Load"
|
||||||
options_tab: "Optionen"
|
# options_tab: "Options"
|
||||||
# guide_tab: "Guide"
|
# guide_tab: "Guide"
|
||||||
multiplayer_tab: "Mehrspieler"
|
# multiplayer_tab: "Multiplayer"
|
||||||
# inventory_caption: "Equip your hero"
|
# inventory_caption: "Equip your hero"
|
||||||
# choose_hero_caption: "Choose hero, language"
|
# choose_hero_caption: "Choose hero, language"
|
||||||
# save_load_caption: "... and view history"
|
# save_load_caption: "... and view history"
|
||||||
options_caption: "Konfiguriere Einstellungen"
|
# options_caption: "Configure settings"
|
||||||
# guide_caption: "Docs and tips"
|
# guide_caption: "Docs and tips"
|
||||||
multiplayer_caption: "Spiele mit Freunden!"
|
# multiplayer_caption: "Play with friends!"
|
||||||
|
|
||||||
# inventory:
|
# inventory:
|
||||||
# temp: "Temp"
|
# temp: "Temp"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
unknown: "Unbekannter Fehler."
|
unknown: "Unbekannter Fehler."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Meine Sessions"
|
your_sessions: "Meine Sessions"
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Social Network APIs"
|
social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
system: "System"
|
system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Komponente"
|
component: "Komponente"
|
||||||
components: "Komponenten"
|
components: "Komponenten"
|
||||||
thang: "Thang"
|
thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
document: "Dokument"
|
document: "Dokument"
|
||||||
sprite_sheet: "Sprite Sheet"
|
sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
candidate_sessions: "Kandidat-Sessions"
|
candidate_sessions: "Kandidat-Sessions"
|
||||||
user_remark: "Benutzerkommentar"
|
user_remark: "Benutzerkommentar"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
versions: "Versionen"
|
versions: "Versionen"
|
||||||
items: "Gegenstände"
|
items: "Gegenstände"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "hinzugefügt"
|
added: "hinzugefügt"
|
||||||
|
@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
|
|
||||||
# user:
|
# user:
|
||||||
# stats: "Stats"
|
# stats: "Stats"
|
||||||
singleplayer_title: "Einzelspieler Levels"
|
# singleplayer_title: "Singleplayer Levels"
|
||||||
multiplayer_title: "Mehrspieler Levels"
|
# multiplayer_title: "Multiplayer Levels"
|
||||||
# achievements_title: "Achievements"
|
# achievements_title: "Achievements"
|
||||||
last_played: "Zuletzt gespielt"
|
# last_played: "Last Played"
|
||||||
# status: "Status"
|
# status: "Status"
|
||||||
# status_completed: "Completed"
|
# status_completed: "Completed"
|
||||||
# status_unfinished: "Unfinished"
|
# status_unfinished: "Unfinished"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
level_difficulty: "Schwierigkeit: "
|
level_difficulty: "Schwierigkeit: "
|
||||||
play_as: "Spiel als"
|
play_as: "Spiel als"
|
||||||
spectate: "Zueluege"
|
spectate: "Zueluege"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "CodeCombat kontaktiere"
|
contact_us: "CodeCombat kontaktiere"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
grid: "Gitter"
|
|
||||||
customize_wizard: "Zauberer apasse"
|
customize_wizard: "Zauberer apasse"
|
||||||
home: "Home"
|
home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
toggle_grid: "Gitter ischalte/usschalte."
|
toggle_grid: "Gitter ischalte/usschalte."
|
||||||
toggle_pathfinding: "Wegfinder ischalte/usschalte."
|
toggle_pathfinding: "Wegfinder ischalte/usschalte."
|
||||||
beautify: "Mach din Code schöner, indem du sini Formatierig standartisiersch."
|
beautify: "Mach din Code schöner, indem du sini Formatierig standartisiersch."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
move_wizard: "Beweg din Zauberer durs Level."
|
move_wizard: "Beweg din Zauberer durs Level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
level_difficulty: "Schwierigkeit: "
|
level_difficulty: "Schwierigkeit: "
|
||||||
play_as: "Spiele als "
|
play_as: "Spiele als "
|
||||||
spectate: "Zuschauen"
|
spectate: "Zuschauen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontaktiere CodeCombat"
|
contact_us: "Kontaktiere CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Bearbeite den Zauberer"
|
customize_wizard: "Bearbeite den Zauberer"
|
||||||
home: "Startseite"
|
home: "Startseite"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
choose_hero_tab: "Level neustarten"
|
# choose_hero_tab: "Restart Level"
|
||||||
save_load_tab: "Speichere/Lade"
|
# save_load_tab: "Save/Load"
|
||||||
options_tab: "Optionen"
|
# options_tab: "Options"
|
||||||
# guide_tab: "Guide"
|
# guide_tab: "Guide"
|
||||||
multiplayer_tab: "Mehrspieler"
|
# multiplayer_tab: "Multiplayer"
|
||||||
# inventory_caption: "Equip your hero"
|
# inventory_caption: "Equip your hero"
|
||||||
# choose_hero_caption: "Choose hero, language"
|
# choose_hero_caption: "Choose hero, language"
|
||||||
# save_load_caption: "... and view history"
|
# save_load_caption: "... and view history"
|
||||||
options_caption: "Konfiguriere Einstellungen"
|
# options_caption: "Configure settings"
|
||||||
# guide_caption: "Docs and tips"
|
# guide_caption: "Docs and tips"
|
||||||
multiplayer_caption: "Spiele mit Freunden!"
|
# multiplayer_caption: "Play with friends!"
|
||||||
|
|
||||||
# inventory:
|
# inventory:
|
||||||
# temp: "Temp"
|
# temp: "Temp"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
unknown: "Unbekannter Fehler."
|
unknown: "Unbekannter Fehler."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Meine Sessions"
|
your_sessions: "Meine Sessions"
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Social Network APIs"
|
social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
system: "System"
|
system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Komponente"
|
component: "Komponente"
|
||||||
components: "Komponenten"
|
components: "Komponenten"
|
||||||
thang: "Thang"
|
thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
document: "Dokument"
|
document: "Dokument"
|
||||||
sprite_sheet: "Sprite Sheet"
|
sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
candidate_sessions: "Kandidat-Sessions"
|
candidate_sessions: "Kandidat-Sessions"
|
||||||
user_remark: "Benutzerkommentar"
|
user_remark: "Benutzerkommentar"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
versions: "Versionen"
|
versions: "Versionen"
|
||||||
items: "Gegenstände"
|
items: "Gegenstände"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "hinzugefügt"
|
added: "hinzugefügt"
|
||||||
|
@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
|
|
||||||
# user:
|
# user:
|
||||||
# stats: "Stats"
|
# stats: "Stats"
|
||||||
singleplayer_title: "Einzelspieler Levels"
|
# singleplayer_title: "Singleplayer Levels"
|
||||||
multiplayer_title: "Mehrspieler Levels"
|
# multiplayer_title: "Multiplayer Levels"
|
||||||
# achievements_title: "Achievements"
|
# achievements_title: "Achievements"
|
||||||
last_played: "Zuletzt gespielt"
|
# last_played: "Last Played"
|
||||||
# status: "Status"
|
# status: "Status"
|
||||||
# status_completed: "Completed"
|
# status_completed: "Completed"
|
||||||
# status_unfinished: "Unfinished"
|
# status_unfinished: "Unfinished"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
level_difficulty: "Schwierigkeit: "
|
level_difficulty: "Schwierigkeit: "
|
||||||
play_as: "Spiele als "
|
play_as: "Spiele als "
|
||||||
spectate: "Zuschauen"
|
spectate: "Zuschauen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontaktiere CodeCombat"
|
contact_us: "Kontaktiere CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Bearbeite den Zauberer"
|
customize_wizard: "Bearbeite den Zauberer"
|
||||||
home: "Startseite"
|
home: "Startseite"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -435,17 +436,17 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
choose_hero_tab: "Level neustarten"
|
# choose_hero_tab: "Restart Level"
|
||||||
save_load_tab: "Speichere/Lade"
|
# save_load_tab: "Save/Load"
|
||||||
options_tab: "Optionen"
|
# options_tab: "Options"
|
||||||
# guide_tab: "Guide"
|
# guide_tab: "Guide"
|
||||||
multiplayer_tab: "Mehrspieler"
|
# multiplayer_tab: "Multiplayer"
|
||||||
# inventory_caption: "Equip your hero"
|
# inventory_caption: "Equip your hero"
|
||||||
# choose_hero_caption: "Choose hero, language"
|
# choose_hero_caption: "Choose hero, language"
|
||||||
# save_load_caption: "... and view history"
|
# save_load_caption: "... and view history"
|
||||||
options_caption: "Konfiguriere Einstellungen"
|
# options_caption: "Configure settings"
|
||||||
# guide_caption: "Docs and tips"
|
# guide_caption: "Docs and tips"
|
||||||
multiplayer_caption: "Spiele mit Freunden!"
|
# multiplayer_caption: "Play with friends!"
|
||||||
|
|
||||||
# inventory:
|
# inventory:
|
||||||
# temp: "Temp"
|
# temp: "Temp"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
unknown: "Unbekannter Fehler."
|
unknown: "Unbekannter Fehler."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Meine Sessions"
|
your_sessions: "Meine Sessions"
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Social Network APIs"
|
social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
system: "System"
|
system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Komponente"
|
component: "Komponente"
|
||||||
components: "Komponenten"
|
components: "Komponenten"
|
||||||
thang: "Thang"
|
thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
document: "Dokument"
|
document: "Dokument"
|
||||||
sprite_sheet: "Sprite Sheet"
|
sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
candidate_sessions: "Kandidat-Sessions"
|
candidate_sessions: "Kandidat-Sessions"
|
||||||
user_remark: "Benutzerkommentar"
|
user_remark: "Benutzerkommentar"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
versions: "Versionen"
|
versions: "Versionen"
|
||||||
items: "Gegenstände"
|
items: "Gegenstände"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "hinzugefügt"
|
added: "hinzugefügt"
|
||||||
|
@ -953,10 +964,10 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
||||||
|
|
||||||
# user:
|
# user:
|
||||||
# stats: "Stats"
|
# stats: "Stats"
|
||||||
singleplayer_title: "Einzelspieler Levels"
|
# singleplayer_title: "Singleplayer Levels"
|
||||||
multiplayer_title: "Mehrspieler Levels"
|
# multiplayer_title: "Multiplayer Levels"
|
||||||
# achievements_title: "Achievements"
|
# achievements_title: "Achievements"
|
||||||
last_played: "Zuletzt gespielt"
|
# last_played: "Last Played"
|
||||||
# status: "Status"
|
# status: "Status"
|
||||||
# status_completed: "Completed"
|
# status_completed: "Completed"
|
||||||
# status_unfinished: "Unfinished"
|
# status_unfinished: "Unfinished"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
level_difficulty: "Δυσκολία: "
|
level_difficulty: "Δυσκολία: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Επικοινωνήστε μαζί μας"
|
contact_us: "Επικοινωνήστε μαζί μας"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Έτοιμο"
|
done: "Έτοιμο"
|
||||||
grid: "Πλέγμα"
|
|
||||||
customize_wizard: "Προσαρμόστε τον Μάγο"
|
customize_wizard: "Προσαρμόστε τον Μάγο"
|
||||||
home: "Αρχική"
|
home: "Αρχική"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
customize_wizard: "Customise Wizard"
|
customize_wizard: "Customise Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
level_difficulty: "Dificultad: "
|
level_difficulty: "Dificultad: "
|
||||||
play_as: "Jugar Como "
|
play_as: "Jugar Como "
|
||||||
spectate: "Observar"
|
spectate: "Observar"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacta a CodeCombat"
|
contact_us: "Contacta a CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Listo"
|
done: "Listo"
|
||||||
grid: "Cuadricula"
|
|
||||||
customize_wizard: "Personalizar Hechicero"
|
customize_wizard: "Personalizar Hechicero"
|
||||||
home: "Inicio"
|
home: "Inicio"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
unknown: "Error desconocido."
|
unknown: "Error desconocido."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Tus sesiones"
|
your_sessions: "Tus sesiones"
|
||||||
level: "Nivel"
|
level: "Nivel"
|
||||||
social_network_apis: "APIs de Redes Sociales"
|
social_network_apis: "APIs de Redes Sociales"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Modelo"
|
model: "Modelo"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
level_difficulty: "Dificultad: "
|
level_difficulty: "Dificultad: "
|
||||||
play_as: "Jugar como"
|
play_as: "Jugar como"
|
||||||
spectate: "Observar"
|
spectate: "Observar"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacta con CodeCombat"
|
contact_us: "Contacta con CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hecho"
|
done: "Hecho"
|
||||||
grid: "Cuadrícula"
|
|
||||||
customize_wizard: "Personalizar Mago"
|
customize_wizard: "Personalizar Mago"
|
||||||
home: "Inicio"
|
home: "Inicio"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
unknown: "Error desconocido."
|
unknown: "Error desconocido."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Tus sesiones"
|
your_sessions: "Tus sesiones"
|
||||||
level: "Nivel"
|
level: "Nivel"
|
||||||
social_network_apis: "APIs de redes sociales"
|
social_network_apis: "APIs de redes sociales"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Modelo"
|
model: "Modelo"
|
||||||
system: "Sistema"
|
system: "Sistema"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Componente"
|
component: "Componente"
|
||||||
components: "Componentes"
|
components: "Componentes"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
source_document: "Documento fuente"
|
source_document: "Documento fuente"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "Añadido"
|
added: "Añadido"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
level_difficulty: "Dificultad: "
|
level_difficulty: "Dificultad: "
|
||||||
play_as: "Juega como "
|
play_as: "Juega como "
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacta a CodeCombat"
|
contact_us: "Contacta a CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hecho"
|
done: "Hecho"
|
||||||
grid: "Cuadrícrula"
|
|
||||||
customize_wizard: "Personalizar Mago"
|
customize_wizard: "Personalizar Mago"
|
||||||
home: "Inicio"
|
home: "Inicio"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
level_difficulty: "سختی: "
|
level_difficulty: "سختی: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "CodeCombatتماس با "
|
contact_us: "CodeCombatتماس با "
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
level_difficulty: "Difficulté: "
|
level_difficulty: "Difficulté: "
|
||||||
play_as: "Jouer comme "
|
play_as: "Jouer comme "
|
||||||
spectate: "Spectateur"
|
spectate: "Spectateur"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacter CodeCombat"
|
contact_us: "Contacter CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fait"
|
done: "Fait"
|
||||||
grid: "Grille"
|
|
||||||
customize_wizard: "Personnaliser le magicien"
|
customize_wizard: "Personnaliser le magicien"
|
||||||
home: "Accueil"
|
home: "Accueil"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
unknown: "Erreur inconnue."
|
unknown: "Erreur inconnue."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "vos Sessions"
|
your_sessions: "vos Sessions"
|
||||||
level: "Niveau"
|
level: "Niveau"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
system: "Système"
|
system: "Système"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
source_document: "Document Source"
|
source_document: "Document Source"
|
||||||
document: "Document"
|
document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "Ajouté"
|
added: "Ajouté"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
level_difficulty: "רמת קושי: "
|
level_difficulty: "רמת קושי: "
|
||||||
play_as: "שחק בתור "
|
play_as: "שחק בתור "
|
||||||
spectate: "צופה"
|
spectate: "צופה"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "צור קשר"
|
contact_us: "צור קשר"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
level_difficulty: "Nehézség: "
|
level_difficulty: "Nehézség: "
|
||||||
play_as: "Játssz mint"
|
play_as: "Játssz mint"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Lépj kapcsolatba velünk"
|
contact_us: "Lépj kapcsolatba velünk"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Kész"
|
done: "Kész"
|
||||||
grid: "Rács"
|
|
||||||
customize_wizard: "Varázsló testreszabása"
|
customize_wizard: "Varázsló testreszabása"
|
||||||
home: "Kezdőlap"
|
home: "Kezdőlap"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
level_difficulty: "Difficoltà: "
|
level_difficulty: "Difficoltà: "
|
||||||
play_as: "Gioca come "
|
play_as: "Gioca come "
|
||||||
spectate: "Spettatore"
|
spectate: "Spettatore"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contatta CodeCombat"
|
contact_us: "Contatta CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fatto"
|
done: "Fatto"
|
||||||
grid: "Griglia"
|
|
||||||
customize_wizard: "Personalizza stregone"
|
customize_wizard: "Personalizza stregone"
|
||||||
home: "Pagina iniziale"
|
home: "Pagina iniziale"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
level_difficulty: "難易度: "
|
level_difficulty: "難易度: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "お問い合わせ"
|
contact_us: "お問い合わせ"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完了"
|
done: "完了"
|
||||||
grid: "グリッド"
|
|
||||||
customize_wizard: "魔法使いの設定"
|
customize_wizard: "魔法使いの設定"
|
||||||
home: "ホーム"
|
home: "ホーム"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
level_difficulty: "난이도: "
|
level_difficulty: "난이도: "
|
||||||
play_as: "Play As "
|
play_as: "Play As "
|
||||||
spectate: "관중모드"
|
spectate: "관중모드"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "코드컴뱃에 전할 말"
|
contact_us: "코드컴뱃에 전할 말"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "완료"
|
done: "완료"
|
||||||
grid: "그리드"
|
|
||||||
customize_wizard: "사용자 정의 마법사"
|
customize_wizard: "사용자 정의 마법사"
|
||||||
home: "홈"
|
home: "홈"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
unknown: "알 수 없는 에러 발생"
|
unknown: "알 수 없는 에러 발생"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
level: "레벨"
|
level: "레벨"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
system: "시스템"
|
system: "시스템"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Hubungi CodeCombat"
|
contact_us: "Hubungi CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
level_difficulty: "Vanskelighetsgrad: "
|
level_difficulty: "Vanskelighetsgrad: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontakt CodeCombat"
|
contact_us: "Kontakt CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Ferdig"
|
done: "Ferdig"
|
||||||
grid: "Grid"
|
|
||||||
customize_wizard: "Spesiallag Trollmann"
|
customize_wizard: "Spesiallag Trollmann"
|
||||||
home: "Hjem"
|
home: "Hjem"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
level_difficulty: "Moeilijkheidsgraad: "
|
level_difficulty: "Moeilijkheidsgraad: "
|
||||||
play_as: "Speel als "
|
play_as: "Speel als "
|
||||||
spectate: "Toeschouwen"
|
spectate: "Toeschouwen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contact opnemen met CodeCombat"
|
contact_us: "Contact opnemen met CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klaar"
|
done: "Klaar"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Pas Tovenaar aan"
|
customize_wizard: "Pas Tovenaar aan"
|
||||||
home: "Home"
|
home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
unknown: "Onbekende fout."
|
unknown: "Onbekende fout."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Jouw sessies."
|
your_sessions: "Jouw sessies."
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Sociale netwerk APIs"
|
social_network_apis: "Sociale netwerk APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
level_difficulty: "Moeilijkheidsgraad: "
|
level_difficulty: "Moeilijkheidsgraad: "
|
||||||
play_as: "Speel als "
|
play_as: "Speel als "
|
||||||
spectate: "Toeschouwen"
|
spectate: "Toeschouwen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contact opnemen met CodeCombat"
|
contact_us: "Contact opnemen met CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klaar"
|
done: "Klaar"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Pas Tovenaar aan"
|
customize_wizard: "Pas Tovenaar aan"
|
||||||
home: "Home"
|
home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
unknown: "Onbekende fout."
|
unknown: "Onbekende fout."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Jouw sessies."
|
your_sessions: "Jouw sessies."
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Sociale netwerk APIs"
|
social_network_apis: "Sociale netwerk APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
level_difficulty: "Moeilijkheidsgraad: "
|
level_difficulty: "Moeilijkheidsgraad: "
|
||||||
play_as: "Speel als "
|
play_as: "Speel als "
|
||||||
spectate: "Toeschouwen"
|
spectate: "Toeschouwen"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contact opnemen met CodeCombat"
|
contact_us: "Contact opnemen met CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klaar"
|
done: "Klaar"
|
||||||
grid: "Raster"
|
|
||||||
customize_wizard: "Pas Tovenaar aan"
|
customize_wizard: "Pas Tovenaar aan"
|
||||||
home: "Home"
|
home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
unknown: "Onbekende fout."
|
unknown: "Onbekende fout."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Jouw sessies."
|
your_sessions: "Jouw sessies."
|
||||||
level: "Level"
|
level: "Level"
|
||||||
social_network_apis: "Sociale netwerk APIs"
|
social_network_apis: "Sociale netwerk APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
model: "Model"
|
model: "Model"
|
||||||
system: "Systeem"
|
system: "Systeem"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Component"
|
component: "Component"
|
||||||
components: "Componenten"
|
components: "Componenten"
|
||||||
thang: "Thang"
|
thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
level_difficulty: "Vanskelighetsgrad: "
|
level_difficulty: "Vanskelighetsgrad: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontakt CodeCombat"
|
contact_us: "Kontakt CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Ferdig"
|
done: "Ferdig"
|
||||||
grid: "Grid"
|
|
||||||
customize_wizard: "Spesiallag Trollmann"
|
customize_wizard: "Spesiallag Trollmann"
|
||||||
home: "Hjem"
|
home: "Hjem"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
level_difficulty: "Poziom trudności: "
|
level_difficulty: "Poziom trudności: "
|
||||||
play_as: "Graj jako "
|
play_as: "Graj jako "
|
||||||
spectate: "Oglądaj"
|
spectate: "Oglądaj"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontakt z CodeCombat"
|
contact_us: "Kontakt z CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Zrobione"
|
done: "Zrobione"
|
||||||
grid: "Siatka"
|
|
||||||
customize_wizard: "Spersonalizuj czarodzieja"
|
customize_wizard: "Spersonalizuj czarodzieja"
|
||||||
home: "Strona główna"
|
home: "Strona główna"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
level_difficulty: "Dificuldade: "
|
level_difficulty: "Dificuldade: "
|
||||||
play_as: "Jogar Como "
|
play_as: "Jogar Como "
|
||||||
spectate: "Assistir"
|
spectate: "Assistir"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contate-nos"
|
contact_us: "Contate-nos"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Pronto"
|
done: "Pronto"
|
||||||
grid: "Grade"
|
|
||||||
customize_wizard: "Personalize o feiticeiro"
|
customize_wizard: "Personalize o feiticeiro"
|
||||||
home: "Início"
|
home: "Início"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
level_difficulty: "Dificuldade: "
|
level_difficulty: "Dificuldade: "
|
||||||
play_as: "Jogar Como"
|
play_as: "Jogar Como"
|
||||||
spectate: "Espectar"
|
spectate: "Espectar"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contacte o CodeCombat"
|
contact_us: "Contacte o CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Concluir"
|
done: "Concluir"
|
||||||
grid: "Grelha"
|
|
||||||
customize_wizard: "Personalizar Feiticeiro"
|
customize_wizard: "Personalizar Feiticeiro"
|
||||||
home: "Início"
|
home: "Início"
|
||||||
stop: "Parar"
|
stop: "Parar"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
toggle_grid: "Ativar/desativar a sobreposição da grelha."
|
toggle_grid: "Ativar/desativar a sobreposição da grelha."
|
||||||
toggle_pathfinding: "Ativar/desativar a sobreposição do encontrador de caminho."
|
toggle_pathfinding: "Ativar/desativar a sobreposição do encontrador de caminho."
|
||||||
beautify: "Embelezar o código ao estandardizar a formatação."
|
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."
|
move_wizard: "Mover o seu Feiticeiro pelo nível."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
unknown: "Erro desconhecido."
|
unknown: "Erro desconhecido."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "As Suas Sessões"
|
your_sessions: "As Suas Sessões"
|
||||||
level: "Nível"
|
level: "Nível"
|
||||||
social_network_apis: "APIs das Redes Sociais"
|
social_network_apis: "APIs das Redes Sociais"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
patched_model: "Documento Fonte"
|
patched_model: "Documento Fonte"
|
||||||
model: "Modelo"
|
model: "Modelo"
|
||||||
system: "Sistema"
|
system: "Sistema"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Componente"
|
component: "Componente"
|
||||||
components: "Componentes"
|
components: "Componentes"
|
||||||
thang: "Thang"
|
thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
source_document: "Documento Fonte"
|
source_document: "Documento Fonte"
|
||||||
document: "Documento"
|
document: "Documento"
|
||||||
sprite_sheet: "Folha de Sprite"
|
sprite_sheet: "Folha de Sprite"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
candidate_sessions: "Sessões de Candidatos"
|
candidate_sessions: "Sessões de Candidatos"
|
||||||
user_remark: "Observação do Utilizador"
|
user_remark: "Observação do Utilizador"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
versions: "Versões"
|
versions: "Versões"
|
||||||
items: "Itens"
|
items: "Itens"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "Adicionados/as"
|
added: "Adicionados/as"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
level_difficulty: "Dificuldade: "
|
level_difficulty: "Dificuldade: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contate-nos"
|
contact_us: "Contate-nos"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Pronto"
|
done: "Pronto"
|
||||||
grid: "Grade"
|
|
||||||
customize_wizard: "Personalize o feiticeiro"
|
customize_wizard: "Personalize o feiticeiro"
|
||||||
home: "Início"
|
home: "Início"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
level_difficulty: "Dificultate: "
|
level_difficulty: "Dificultate: "
|
||||||
play_as: "Alege-ți echipa"
|
play_as: "Alege-ți echipa"
|
||||||
spectate: "Spectator"
|
spectate: "Spectator"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Contact CodeCombat"
|
contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Gata"
|
done: "Gata"
|
||||||
grid: "Grilă"
|
|
||||||
customize_wizard: "Personalizează Wizard-ul"
|
customize_wizard: "Personalizează Wizard-ul"
|
||||||
home: "Acasă"
|
home: "Acasă"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
level_difficulty: "Сложность: "
|
level_difficulty: "Сложность: "
|
||||||
play_as: "Играть за "
|
play_as: "Играть за "
|
||||||
spectate: "Наблюдать"
|
spectate: "Наблюдать"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Связаться с CodeCombat"
|
contact_us: "Связаться с CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
grid: "Сетка"
|
|
||||||
customize_wizard: "Настройки волшебника"
|
customize_wizard: "Настройки волшебника"
|
||||||
home: "На главную"
|
home: "На главную"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
toggle_grid: "Включить наложение сетки."
|
toggle_grid: "Включить наложение сетки."
|
||||||
toggle_pathfinding: "Включить путевой оверлей.."
|
toggle_pathfinding: "Включить путевой оверлей.."
|
||||||
beautify: "Приукрасьте свой код стандартизацией его форматирования."
|
beautify: "Приукрасьте свой код стандартизацией его форматирования."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
move_wizard: "Перемещайте своего Волшебника по уровню."
|
move_wizard: "Перемещайте своего Волшебника по уровню."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
unknown: "Неизвестная ошибка."
|
unknown: "Неизвестная ошибка."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Ваши сессии"
|
your_sessions: "Ваши сессии"
|
||||||
level: "Уровень"
|
level: "Уровень"
|
||||||
social_network_apis: "API социальных сетей"
|
social_network_apis: "API социальных сетей"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
patched_model: "Исходный документ"
|
patched_model: "Исходный документ"
|
||||||
model: "Модель"
|
model: "Модель"
|
||||||
system: "Система"
|
system: "Система"
|
||||||
|
# systems: "Systems"
|
||||||
component: "Компонент"
|
component: "Компонент"
|
||||||
components: "Компоненты"
|
components: "Компоненты"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
source_document: "Исходный документ"
|
source_document: "Исходный документ"
|
||||||
document: "Документ"
|
document: "Документ"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
user_remark: "Пользовательские поправки"
|
user_remark: "Пользовательские поправки"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
versions: "Версии"
|
versions: "Версии"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
delta:
|
delta:
|
||||||
added: "Добавлено"
|
added: "Добавлено"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
level_difficulty: "Obtiažnosť."
|
level_difficulty: "Obtiažnosť."
|
||||||
play_as: "Hraj ako"
|
play_as: "Hraj ako"
|
||||||
spectate: "Sleduj"
|
spectate: "Sleduj"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontaktujte nás"
|
contact_us: "Kontaktujte nás"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
level_difficulty: "Тежина: "
|
level_difficulty: "Тежина: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Контактирај CodeCombat"
|
contact_us: "Контактирај CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Урађено"
|
done: "Урађено"
|
||||||
grid: "Мрежа"
|
|
||||||
customize_wizard: "Прилагоди Чаробњака"
|
customize_wizard: "Прилагоди Чаробњака"
|
||||||
home: "Почетна"
|
home: "Почетна"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
level_difficulty: "Svårighetsgrad: "
|
level_difficulty: "Svårighetsgrad: "
|
||||||
play_as: "Spela som "
|
play_as: "Spela som "
|
||||||
spectate: "Titta på"
|
spectate: "Titta på"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Kontakta CodeCombat"
|
contact_us: "Kontakta CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klar"
|
done: "Klar"
|
||||||
grid: "Rutnät"
|
|
||||||
customize_wizard: "Skräddarsy trollkarl"
|
customize_wizard: "Skräddarsy trollkarl"
|
||||||
home: "Hem"
|
home: "Hem"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "เสร็จสิ้น"
|
done: "เสร็จสิ้น"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
home: "หน้าแรก"
|
home: "หน้าแรก"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
level_difficulty: "Zorluk: "
|
level_difficulty: "Zorluk: "
|
||||||
play_as: "Olarak Oyna"
|
play_as: "Olarak Oyna"
|
||||||
spectate: "İzleyici olarak katıl"
|
spectate: "İzleyici olarak katıl"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "CodeCombat ile İletişim"
|
contact_us: "CodeCombat ile İletişim"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Tamamdır"
|
done: "Tamamdır"
|
||||||
grid: "Harita Bölmeleri"
|
|
||||||
customize_wizard: "Sihirbazı Düzenle"
|
customize_wizard: "Sihirbazı Düzenle"
|
||||||
home: "Anasayfa"
|
home: "Anasayfa"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
unknown: "Bilinmeyen hata."
|
unknown: "Bilinmeyen hata."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
your_sessions: "Oturumlarınız"
|
your_sessions: "Oturumlarınız"
|
||||||
level: "Seviye"
|
level: "Seviye"
|
||||||
social_network_apis: "Sosyal Ağ API'leri"
|
social_network_apis: "Sosyal Ağ API'leri"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
level_difficulty: "Складність: "
|
level_difficulty: "Складність: "
|
||||||
play_as: "Грати як"
|
play_as: "Грати як"
|
||||||
spectate: "Спостерігати"
|
spectate: "Спостерігати"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Зв'язатися з CodeCombat"
|
contact_us: "Зв'язатися з CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
grid: "Решітка"
|
|
||||||
customize_wizard: "Налаштування персонажа"
|
customize_wizard: "Налаштування персонажа"
|
||||||
home: "На головну"
|
home: "На головну"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
level_difficulty: "Khó: "
|
level_difficulty: "Khó: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "Liên hệ CodeCombat"
|
contact_us: "Liên hệ CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hoàn thành"
|
done: "Hoàn thành"
|
||||||
# grid: "Grid"
|
|
||||||
customize_wizard: "Tùy chỉnh Wizard"
|
customize_wizard: "Tùy chỉnh Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
level_difficulty: "难度:"
|
level_difficulty: "难度:"
|
||||||
play_as: "Play As"
|
play_as: "Play As"
|
||||||
spectate: "旁观他人的游戏"
|
spectate: "旁观他人的游戏"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "联系我们"
|
contact_us: "联系我们"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完成"
|
done: "完成"
|
||||||
grid: "格子"
|
|
||||||
customize_wizard: "自定义向导"
|
customize_wizard: "自定义向导"
|
||||||
home: "主页"
|
home: "主页"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
beautify: "利用标准编码格式美化你的代码。"
|
beautify: "利用标准编码格式美化你的代码。"
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
move_wizard: "在关卡中移动你的巫师角色。"
|
move_wizard: "在关卡中移动你的巫师角色。"
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
unknown: "未知错误."
|
unknown: "未知错误."
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
level: "等级"
|
level: "等级"
|
||||||
social_network_apis: "社交网络 APIs"
|
social_network_apis: "社交网络 APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
level_difficulty: "難度"
|
level_difficulty: "難度"
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "聯繫我們"
|
contact_us: "聯繫我們"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完成"
|
done: "完成"
|
||||||
grid: "格子"
|
|
||||||
customize_wizard: "自定義巫師"
|
customize_wizard: "自定義巫師"
|
||||||
home: "首頁"
|
home: "首頁"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# level_difficulty: "Difficulty: "
|
# level_difficulty: "Difficulty: "
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
# contact:
|
# contact:
|
||||||
# contact_us: "Contact CodeCombat"
|
# contact_us: "Contact CodeCombat"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
level_difficulty: "難度:"
|
level_difficulty: "難度:"
|
||||||
play_as: "Play As"
|
play_as: "Play As"
|
||||||
spectate: "望別人攪遊戲"
|
spectate: "望別人攪遊戲"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "搭我裏聯繫"
|
contact_us: "搭我裏聯繫"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "妝下落"
|
done: "妝下落"
|
||||||
grid: "格子"
|
|
||||||
customize_wizard: "自設定獻路人"
|
customize_wizard: "自設定獻路人"
|
||||||
home: "主頁"
|
home: "主頁"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
unknown: "弗識錯誤。"
|
unknown: "弗識錯誤。"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
level: "等級"
|
level: "等級"
|
||||||
social_network_apis: "社交網絡 APIs"
|
social_network_apis: "社交網絡 APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -126,6 +126,8 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
level_difficulty: "难度"
|
level_difficulty: "难度"
|
||||||
# play_as: "Play As"
|
# play_as: "Play As"
|
||||||
# spectate: "Spectate"
|
# spectate: "Spectate"
|
||||||
|
# players: "players"
|
||||||
|
# hours_played: "hours played"
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
contact_us: "联系我们"
|
contact_us: "联系我们"
|
||||||
|
@ -355,7 +357,6 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
# grid: "Grid"
|
|
||||||
# customize_wizard: "Customize Wizard"
|
# customize_wizard: "Customize Wizard"
|
||||||
# home: "Home"
|
# home: "Home"
|
||||||
# stop: "Stop"
|
# stop: "Stop"
|
||||||
|
@ -512,6 +513,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
# toggle_grid: "Toggle grid overlay."
|
# toggle_grid: "Toggle grid overlay."
|
||||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||||
# beautify: "Beautify your code by standardizing its formatting."
|
# beautify: "Beautify your code by standardizing its formatting."
|
||||||
|
# maximize_editor: "Maximize/minimize code editor."
|
||||||
# move_wizard: "Move your Wizard around the level."
|
# move_wizard: "Move your Wizard around the level."
|
||||||
|
|
||||||
# admin:
|
# admin:
|
||||||
|
@ -908,6 +910,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
# unknown: "Unknown error."
|
# unknown: "Unknown error."
|
||||||
|
|
||||||
# resources:
|
# resources:
|
||||||
|
# sessions: "Sessions"
|
||||||
# your_sessions: "Your Sessions"
|
# your_sessions: "Your Sessions"
|
||||||
# level: "Level"
|
# level: "Level"
|
||||||
# social_network_apis: "Social Network APIs"
|
# social_network_apis: "Social Network APIs"
|
||||||
|
@ -923,6 +926,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
# patched_model: "Source Document"
|
# patched_model: "Source Document"
|
||||||
# model: "Model"
|
# model: "Model"
|
||||||
# system: "System"
|
# system: "System"
|
||||||
|
# systems: "Systems"
|
||||||
# component: "Component"
|
# component: "Component"
|
||||||
# components: "Components"
|
# components: "Components"
|
||||||
# thang: "Thang"
|
# thang: "Thang"
|
||||||
|
@ -937,10 +941,17 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
||||||
# source_document: "Source Document"
|
# source_document: "Source Document"
|
||||||
# document: "Document"
|
# document: "Document"
|
||||||
# sprite_sheet: "Sprite Sheet"
|
# sprite_sheet: "Sprite Sheet"
|
||||||
|
# employers: "Employers"
|
||||||
|
# candidates: "Candidates"
|
||||||
# candidate_sessions: "Candidate Sessions"
|
# candidate_sessions: "Candidate Sessions"
|
||||||
# user_remark: "User Remark"
|
# user_remark: "User Remark"
|
||||||
|
# user_remarks: "User Remarks"
|
||||||
# versions: "Versions"
|
# versions: "Versions"
|
||||||
# items: "Items"
|
# items: "Items"
|
||||||
|
# wizard: "Wizard"
|
||||||
|
# achievement: "Achievement"
|
||||||
|
# clas: "CLAs"
|
||||||
|
# play_counts: "Play Counts"
|
||||||
|
|
||||||
# delta:
|
# delta:
|
||||||
# added: "Added"
|
# added: "Added"
|
||||||
|
|
|
@ -50,4 +50,4 @@ module.exports =
|
||||||
|
|
||||||
'god:debug-value-return': c.object {required: ['key']},
|
'god:debug-value-return': c.object {required: ['key']},
|
||||||
key: {type: 'string'}
|
key: {type: 'string'}
|
||||||
value: {type: ['any', 'undefined']}
|
value: {}
|
||||||
|
|
|
@ -27,3 +27,7 @@ module.exports =
|
||||||
|
|
||||||
'achievements:new': c.object {required: 'earnedAchievements'},
|
'achievements:new': c.object {required: 'earnedAchievements'},
|
||||||
earnedAchievements: {type: 'object'}
|
earnedAchievements: {type: 'object'}
|
||||||
|
|
||||||
|
'ladder:game-submitted': c.object {required: ['session', 'level']},
|
||||||
|
session: {type: 'object'}
|
||||||
|
level: {type: 'object'}
|
||||||
|
|
|
@ -107,7 +107,7 @@ module.exports =
|
||||||
|
|
||||||
'level:highlight-dom': c.object {required: ['selector']},
|
'level:highlight-dom': c.object {required: ['selector']},
|
||||||
selector: {type: 'string'}
|
selector: {type: 'string'}
|
||||||
delay: {type: 'number'}
|
delay: {type: ['number', 'null', 'undefined']}
|
||||||
sides: {type: 'array', items: {'enum': ['left', 'right', 'top', 'bottom']}}
|
sides: {type: 'array', items: {'enum': ['left', 'right', 'top', 'bottom']}}
|
||||||
offset: {type: 'object'}
|
offset: {type: 'object'}
|
||||||
rotation: {type: 'number'}
|
rotation: {type: 'number'}
|
||||||
|
|
|
@ -102,13 +102,14 @@ module.exports = # /app/lib/surface
|
||||||
|
|
||||||
'sprite:highlight-sprites': c.object {},
|
'sprite:highlight-sprites': c.object {},
|
||||||
thangIDs: c.array {}, {type: 'string'}
|
thangIDs: c.array {}, {type: 'string'}
|
||||||
delay: {type: 'number'}
|
delay: {type: ['number', 'null', 'undefined']}
|
||||||
|
|
||||||
'sprite:move': c.object {required: ['spriteID', 'pos']},
|
'sprite:move': c.object {required: ['spriteID', 'pos']},
|
||||||
spriteID: {type: 'string'}
|
spriteID: {type: 'string'}
|
||||||
pos: c.object {required: ['x', 'y']},
|
pos: c.object {required: ['x', 'y']},
|
||||||
x: {type: 'number'}
|
x: {type: 'number'}
|
||||||
y: {type: 'number'}
|
y: {type: 'number'}
|
||||||
|
z: {type: 'number'}
|
||||||
duration: {type: 'number', minimum: 0}
|
duration: {type: 'number', minimum: 0}
|
||||||
|
|
||||||
'sprite:mouse-down': spriteMouseEventSchema
|
'sprite:mouse-down': spriteMouseEventSchema
|
||||||
|
|
30
app/schemas/subscriptions/world.coffee
Normal file
30
app/schemas/subscriptions/world.coffee
Normal file
|
@ -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'}
|
|
@ -9,7 +9,7 @@ module.exports = class ChooseHeroView extends CocoView
|
||||||
template: template
|
template: template
|
||||||
|
|
||||||
events:
|
events:
|
||||||
'click #restart-level-confirm-button': -> Backbone.Mediator.publish 'level:restart-level', {}
|
'click #restart-level-confirm-button': -> Backbone.Mediator.publish 'level:restart', {}
|
||||||
|
|
||||||
getRenderData: (context={}) ->
|
getRenderData: (context={}) ->
|
||||||
context = super(context)
|
context = super(context)
|
||||||
|
|
|
@ -223,7 +223,7 @@ module.exports = class TomeView extends CocoView
|
||||||
|
|
||||||
reloadAllCode: ->
|
reloadAllCode: ->
|
||||||
spell.view.reloadCode false for spellKey, spell of @spells when spell.team is me.team or (spell.team in ['common', 'neutral', null])
|
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) ->
|
updateLanguageForAllSpells: (e) ->
|
||||||
spell.updateLanguageAether e.language for spellKey, spell of @spells when spell.canWrite()
|
spell.updateLanguageAether e.language for spellKey, spell of @spells when spell.canWrite()
|
||||||
|
|
Loading…
Reference in a new issue