Merge branch 'master' into production

This commit is contained in:
Nick Winter 2014-09-21 20:20:12 -07:00
commit e8a222e6bd
137 changed files with 5913 additions and 1882 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

View file

@ -1 +1 @@
ace.define("ace/mode/python",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/python_highlight_rules","ace/mode/folding/pythonic","ace/range"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("./python_highlight_rules").PythonHighlightRules,o=e("./folding/pythonic").FoldMode,u=e("../range").Range,a=function(){this.HighlightRules=s,this.foldingRules=new o("\\:")};r.inherits(a,i),function(){this.lineCommentStart="#",this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=this.getTokenizer().getLineTokens(t,e),s=i.tokens;if(s.length&&s[s.length-1].type=="comment")return r;if(e=="start"){var o=t.match(/^.*[\{\(\[\:]\s*$/);o&&(r+=n)}return r};var e={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(t,n,r){if(r!=="\r\n"&&r!=="\r"&&r!=="\n")return!1;var i=this.getTokenizer().getLineTokens(n.trim(),t).tokens;if(!i)return!1;do var s=i.pop();while(s&&(s.type=="comment"||s.type=="text"&&s.value.match(/^\s+$/)));return s?s.type=="keyword"&&e[s.value]:!1},this.autoOutdent=function(e,t,n){n+=1;var r=this.$getIndent(t.getLine(n)),i=t.getTabString();r.slice(-i.length)==i&&t.remove(new u(n,r.length-i.length,n,r.length))},this.$id="ace/mode/python"}.call(a.prototype),t.Mode=a}),ace.define("ace/mode/python_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield",t="True|False|None|NotImplemented|Ellipsis|__debug__",n="abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern",r=this.createKeywordMapper({"invalid.deprecated":"debugger","support.function":n,"constant.language":t,keyword:e},"identifier"),i="(?:r|u|ur|R|U|UR|Ur|uR)?",s="(?:(?:[1-9]\\d*)|(?:0))",o="(?:0[oO]?[0-7]+)",u="(?:0[xX][\\dA-Fa-f]+)",a="(?:0[bB][01]+)",f="(?:"+s+"|"+o+"|"+u+"|"+a+")",l="(?:[eE][+-]?\\d+)",c="(?:\\.\\d+)",h="(?:\\d+)",p="(?:(?:"+h+"?"+c+")|(?:"+h+"\\.))",d="(?:(?:"+p+"|"+h+")"+l+")",v="(?:"+d+"|"+p+")",m="\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\abfnrtv'\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:i+'"{3}',next:"qqstring3"},{token:"string",regex:i+'"(?=.)',next:"qqstring"},{token:"string",regex:i+"'{3}",next:"qstring3"},{token:"string",regex:i+"'(?=.)",next:"qstring"},{token:"constant.numeric",regex:"(?:"+v+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:v},{token:"constant.numeric",regex:f+"[lL]\\b"},{token:"constant.numeric",regex:f+"\\b"},{token:r,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"paren.lparen",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring3:[{token:"constant.language.escape",regex:m},{token:"string",regex:'"{3}',next:"start"},{defaultToken:"string"}],qstring3:[{token:"constant.language.escape",regex:m},{token:"string",regex:"'{3}",next:"start"},{defaultToken:"string"}],qqstring:[{token:"constant.language.escape",regex:m},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:m},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"start"},{defaultToken:"string"}]}};r.inherits(s,i),t.PythonHighlightRules=s}),ace.define("ace/mode/folding/pythonic",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"],function(e,t,n){var r=e("../../lib/oop"),i=e("./fold_mode").FoldMode,s=t.FoldMode=function(e){this.foldingStartMarker=new RegExp("([\\[{])(?:\\s*)$|("+e+")(?:\\s*)(?:#.*)?$")};r.inherits(s,i),function(){this.getFoldWidgetRange=function(e,t,n){var r=e.getLine(n),i=r.match(this.foldingStartMarker);if(i)return i[1]?this.openingBracketBlock(e,i[1],n,i.index):i[2]?this.indentationBlock(e,n,i.index+i[2].length):this.indentationBlock(e,n)}}.call(s.prototype)}) ace.define("ace/mode/python",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/python_highlight_rules","ace/mode/folding/pythonic","ace/range"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("./python_highlight_rules").PythonHighlightRules,o=e("./folding/pythonic").FoldMode,u=e("../range").Range,a=function(){this.HighlightRules=s,this.foldingRules=new o("\\:")};r.inherits(a,i),function(){this.lineCommentStart="#",this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=this.getTokenizer().getLineTokens(t,e),s=i.tokens;if(s.length&&s[s.length-1].type=="comment")return r;if(e=="start"){var o=t.match(/^.*[\{\(\[\:]\s*$/);o&&(r+=n)}return r};var e={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(t,n,r){if(r!=="\r\n"&&r!=="\r"&&r!=="\n")return!1;var i=this.getTokenizer().getLineTokens(n.trim(),t).tokens;if(!i)return!1;do var s=i.pop();while(s&&(s.type=="comment"||s.type=="text"&&s.value.match(/^\s+$/)));return s?s.type=="keyword"&&e[s.value]:!1},this.autoOutdent=function(e,t,n){n+=1;var r=this.$getIndent(t.getLine(n)),i=t.getTabString();r.slice(-i.length)==i&&t.remove(new u(n,r.length-i.length,n,r.length))},this.$id="ace/mode/python"}.call(a.prototype),t.Mode=a}),ace.define("ace/mode/python_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|loop|not|or|pass|print|raise|return|try|while|with|yield",t="True|False|None|NotImplemented|Ellipsis|__debug__",n="abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern",r=this.createKeywordMapper({"invalid.deprecated":"debugger","support.function":n,"constant.language":t,keyword:e},"identifier"),i="(?:r|u|ur|R|U|UR|Ur|uR)?",s="(?:(?:[1-9]\\d*)|(?:0))",o="(?:0[oO]?[0-7]+)",u="(?:0[xX][\\dA-Fa-f]+)",a="(?:0[bB][01]+)",f="(?:"+s+"|"+o+"|"+u+"|"+a+")",l="(?:[eE][+-]?\\d+)",c="(?:\\.\\d+)",h="(?:\\d+)",p="(?:(?:"+h+"?"+c+")|(?:"+h+"\\.))",d="(?:(?:"+p+"|"+h+")"+l+")",v="(?:"+d+"|"+p+")",m="\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\abfnrtv'\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:i+'"{3}',next:"qqstring3"},{token:"string",regex:i+'"(?=.)',next:"qqstring"},{token:"string",regex:i+"'{3}",next:"qstring3"},{token:"string",regex:i+"'(?=.)",next:"qstring"},{token:"constant.numeric",regex:"(?:"+v+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:v},{token:"constant.numeric",regex:f+"[lL]\\b"},{token:"constant.numeric",regex:f+"\\b"},{token:r,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"paren.lparen",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring3:[{token:"constant.language.escape",regex:m},{token:"string",regex:'"{3}',next:"start"},{defaultToken:"string"}],qstring3:[{token:"constant.language.escape",regex:m},{token:"string",regex:"'{3}",next:"start"},{defaultToken:"string"}],qqstring:[{token:"constant.language.escape",regex:m},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:m},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"start"},{defaultToken:"string"}]}};r.inherits(s,i),t.PythonHighlightRules=s}),ace.define("ace/mode/folding/pythonic",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"],function(e,t,n){var r=e("../../lib/oop"),i=e("./fold_mode").FoldMode,s=t.FoldMode=function(e){this.foldingStartMarker=new RegExp("([\\[{])(?:\\s*)$|("+e+")(?:\\s*)(?:#.*)?$")};r.inherits(s,i),function(){this.getFoldWidgetRange=function(e,t,n){var r=e.getLine(n),i=r.match(this.foldingStartMarker);if(i)return i[1]?this.openingBracketBlock(e,i[1],n,i.index):i[2]?this.indentationBlock(e,n,i.index+i[2].length):this.indentationBlock(e,n)}}.call(s.prototype)})

View file

@ -92,7 +92,7 @@ module.exports = class Angel extends CocoClass
Backbone.Mediator.publish 'god:user-code-problem', problem: event.data.problem Backbone.Mediator.publish 'god:user-code-problem', problem: event.data.problem
when 'world-load-progress-changed' when 'world-load-progress-changed'
Backbone.Mediator.publish 'god:world-load-progress-changed', progress: event.data.progress Backbone.Mediator.publish 'god:world-load-progress-changed', progress: event.data.progress
unless event.data.progress is 1 or @work.preload or @work.headless or @work.synchronous or @deserializationQueue.length or @shared.firstWorld unless event.data.progress is 1 or @work.preload or @work.headless or @work.synchronous or @deserializationQueue.length or (@shared.firstWorld and not @shared.spectate)
@worker.postMessage func: 'serializeFramesSoFar' # Stream it! @worker.postMessage func: 'serializeFramesSoFar' # Stream it!
# We have some or all of the frames serialized, so let's send the (partially?) simulated world to the Surface. # We have some or all of the frames serialized, so let's send the (partially?) simulated world to the Surface.
@ -143,6 +143,9 @@ module.exports = class Angel extends CocoClass
@deserializationQueue = [] @deserializationQueue = []
@running = false @running = false
_.remove @shared.busyAngels, @ _.remove @shared.busyAngels, @
clearTimeout @condemnTimeout
clearInterval @purgatoryTimer
@condemnTimeout = @purgatoryTimer = null
@doWork() @doWork()
finalizePreload: -> finalizePreload: ->

View file

@ -24,6 +24,7 @@ module.exports = class God extends CocoClass
@angelsShare = @angelsShare =
workerCode: options.workerCode or '/javascripts/workers/worker_world.js' # Either path or function workerCode: options.workerCode or '/javascripts/workers/worker_world.js' # Either path or function
headless: options.headless # Whether to just simulate the goals, or to deserialize all simulation results headless: options.headless # Whether to just simulate the goals, or to deserialize all simulation results
spectate: options.spectate
godNick: @nick godNick: @nick
workQueue: [] workQueue: []
firstWorld: true firstWorld: true

View file

@ -56,13 +56,14 @@ module.exports = class LevelLoader extends CocoClass
onLevelLoaded: -> onLevelLoaded: ->
@loadSession() @loadSession()
@populateLevel() @populateLevel()
Backbone.Mediator.publish 'level:loaded', level: @level, team: @team ? 'humans'
# Session Loading # Session Loading
loadSession: -> loadSession: ->
return if @headless return if @headless
if @sessionID if @sessionID
url = "/db/level_session/#{@sessionID}" url = "/db/level.session/#{@sessionID}"
else else
url = "/db/level/#{@levelID}/session" url = "/db/level/#{@levelID}/session"
url += "?team=#{@team}" if @team url += "?team=#{@team}" if @team
@ -71,14 +72,15 @@ module.exports = class LevelLoader extends CocoClass
@sessionResource = @supermodel.loadModel(session, 'level_session', {cache: false}) @sessionResource = @supermodel.loadModel(session, 'level_session', {cache: false})
@session = @sessionResource.model @session = @sessionResource.model
if @session.loaded if @session.loaded
@session.setURL '/db/level.session/' + @session.id
@loadDependenciesForSession @session @loadDependenciesForSession @session
else else
@listenToOnce @session, 'sync', -> @listenToOnce @session, 'sync', ->
@session.url = -> '/db/level.session/' + @id @session.setURL '/db/level.session/' + @session.id
@loadDependenciesForSession @session @loadDependenciesForSession @session
if @opponentSessionID if @opponentSessionID
opponentSession = new LevelSession().setURL "/db/level_session/#{@opponentSessionID}" opponentSession = new LevelSession().setURL "/db/level.session/#{@opponentSessionID}"
@opponentSessionResource = @supermodel.loadModel(opponentSession, 'opponent_session') @opponentSessionResource = @supermodel.loadModel(opponentSession, 'opponent_session')
@opponentSession = @opponentSessionResource.model @opponentSession = @opponentSessionResource.model
if @opponentSession.loaded if @opponentSession.loaded
@ -89,9 +91,9 @@ module.exports = class LevelLoader extends CocoClass
loadDependenciesForSession: (session) -> loadDependenciesForSession: (session) ->
return unless @level.get('type', true) is 'hero' return unless @level.get('type', true) is 'hero'
heroConfig = session.get('heroConfig') heroConfig = session.get('heroConfig')
unless heroConfig heroConfig ?= me.get('heroConfig')
heroConfig = {inventory: {}, thangType: '529ffbf1cf1818f2be000001'} # Temp: assign Tharin as the hero heroConfig ?= {inventory: {}, thangType: '529ffbf1cf1818f2be000001'} # If we got here not from PlayLevelModal (like level editor preview), assign Tharin as the hero.
session.set 'heroConfig', heroConfig session.set 'heroConfig', heroConfig unless _.isEqual heroConfig, session.get('heroConfig')
url = "/db/thang.type/#{heroConfig.thangType}/version?project=name,components,original" url = "/db/thang.type/#{heroConfig.thangType}/version?project=name,components,original"
@worldNecessities.push @maybeLoadURL(url, ThangType, 'thang') @worldNecessities.push @maybeLoadURL(url, ThangType, 'thang')
@ -99,6 +101,9 @@ module.exports = class LevelLoader extends CocoClass
url = "/db/thang.type/#{itemThangType}/version?project=name,components,original" url = "/db/thang.type/#{itemThangType}/version?project=name,components,original"
@worldNecessities.push @maybeLoadURL(url, ThangType, 'thang') @worldNecessities.push @maybeLoadURL(url, ThangType, 'thang')
if session is @session
Backbone.Mediator.publish 'level:session-loaded', level: @level, session: @session
# Grabbing the rest of the required data for the level # Grabbing the rest of the required data for the level
populateLevel: -> populateLevel: ->

View file

@ -10,6 +10,7 @@ module.exports.createAetherOptions = (options) ->
protectAPI: not options.skipProtectAPI protectAPI: not options.skipProtectAPI
includeFlow: false includeFlow: false
yieldConditionally: options.functionName is 'plan' yieldConditionally: options.functionName is 'plan'
simpleLoops: true
globals: ['Vector', '_'] globals: ['Vector', '_']
problems: problems:
jshint_W040: {level: 'ignore'} jshint_W040: {level: 'ignore'}

View file

@ -28,7 +28,7 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass
subscriptions: subscriptions:
'script:end-current-script': 'onEndNoteGroup' 'script:end-current-script': 'onEndNoteGroup'
'level:started': -> @setWorldLoading(false) 'level:loading-view-unveiling': -> @setWorldLoading(false)
'level:restarted': 'onLevelRestarted' 'level:restarted': 'onLevelRestarted'
'level:shift-space-pressed': 'onEndNoteGroup' 'level:shift-space-pressed': 'onEndNoteGroup'
'level:escape-pressed': 'onEndAll' 'level:escape-pressed': 'onEndAll'

View file

@ -34,7 +34,7 @@ module.exports = Surface = class Surface extends CocoClass
currentFrame: 0 currentFrame: 0
lastFrame: null lastFrame: null
totalFramesDrawn: 0 totalFramesDrawn: 0
playing: true # play vs. pause playing: false # play vs. pause
dead: false # if we kill it for some reason dead: false # if we kill it for some reason
imagesLoaded: false imagesLoaded: false
worldLoaded: false worldLoaded: false
@ -146,7 +146,6 @@ module.exports = Surface = class Surface extends CocoClass
@showLevel() @showLevel()
@updateState true if @loaded @updateState true if @loaded
@onFrameChanged() @onFrameChanged()
Backbone.Mediator.publish 'surface:world-set-up', {world: @world}
showLevel: -> showLevel: ->
return if @destroyed return if @destroyed

View file

@ -318,7 +318,7 @@ module.exports.thangNames = thangNames =
'Griffin Rider': [ 'Griffin Rider': [
'Aeoldan' 'Aeoldan'
'Bestarius' 'Bestarius'
'Letholdus'
] ]
'Potion Master': [ 'Potion Master': [
'Snake' 'Snake'
@ -373,4 +373,6 @@ module.exports.thangNames = thangNames =
'Lia' 'Lia'
'Hardcastle' 'Hardcastle'
'Leona' 'Leona'
'Jarin'
'Helena'
] ]

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
delay_5_sec: "5 ثواني" delay_5_sec: "5 ثواني"
manual: "يدوي" manual: "يدوي"
fork: "إنسخ" fork: "إنسخ"
play: "إلعب" play: "إلعب" # When used as an action verb, like "Play next level"
retry: "إعادة" retry: "إعادة"
watch: "مشاهدة" watch: "مشاهدة"
unwatch: "إنهاء المشاهدة" unwatch: "إنهاء المشاهدة"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
page_not_found: "الصفحة غير موجودة" page_not_found: "الصفحة غير موجودة"
nav: nav:
play: "إلعب" play: "إلعب" # The top nav bar entry where players choose which levels to play
community: "مجتمع" community: "مجتمع"
editor: "محرّر" editor: "محرّر"
blog: "مدوّنة" blog: "مدوّنة"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
slogan: "تعلّم البرمجة من لعب لعبة" slogan: "تعلّم البرمجة من لعب لعبة"
no_ie: "CodeCombat لا يعمل في Internet Explorer 9 أو أقل. آسف!" no_ie: "CodeCombat لا يعمل في Internet Explorer 9 أو أقل. آسف!"
no_mobile: "لم يصمم CodeCombat للهواتف النقالة وقد لا يعمل!" no_mobile: "لم يصمم CodeCombat للهواتف النقالة وقد لا يعمل!"
play: "إلعب" play: "إلعب" # The big play button that just starts playing a level
old_browser: "اه أوه، متصفحك قديم جدا لتشغيل CodeCombat. آسف!" old_browser: "اه أوه، متصفحك قديم جدا لتشغيل CodeCombat. آسف!"
old_browser_suffix: "يمكنك محاولة على أي حال، لكنه ربما لن يعمل." old_browser_suffix: "يمكنك محاولة على أي حال، لكنه ربما لن يعمل."
campaign: "حملة" campaign: "حملة"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
spectate: "مشاهد" spectate: "مشاهد"
players: "لاعبين" players: "لاعبين"
hours_played: "ساعات اللّعب" hours_played: "ساعات اللّعب"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "الاتّصال بـ CodeCombat" contact_us: "الاتّصال بـ CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "български език", englishDescri
delay_5_sec: "5 секунди" delay_5_sec: "5 секунди"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "български език", englishDescri
page_not_found: "Страницата не е намерена" page_not_found: "Страницата не е намерена"
nav: nav:
play: "Нива" play: "Нива" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Редактор" editor: "Редактор"
blog: "Блог" blog: "Блог"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "български език", englishDescri
slogan: "Научи се да програмираш, докато играеш игра " slogan: "Научи се да програмираш, докато играеш игра "
no_ie: "CodeCombat не работи под Internet Explorer 9 или по-стар. Съжалявам!" no_ie: "CodeCombat не работи под Internet Explorer 9 или по-стар. Съжалявам!"
no_mobile: "CodeCombat не е направен за мобилни устройства и може да не работи!" no_mobile: "CodeCombat не е направен за мобилни устройства и може да не работи!"
play: "Играй" play: "Играй" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "български език", englishDescri
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "български език", englishDescri
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "български език", englishDescri
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "български език", englishDescri
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
delay_5_sec: "5 segons" delay_5_sec: "5 segons"
manual: "Manual" manual: "Manual"
fork: "Fork" fork: "Fork"
play: "Jugar" play: "Jugar" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
# page_not_found: "Page not found" # page_not_found: "Page not found"
nav: nav:
play: "Nivells" play: "Nivells" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
slogan: "Aprén a programar tot Jugant" slogan: "Aprén a programar tot Jugant"
no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!" no_ie: "CodeCombat no funciona en Internet Explorer 9 o versions anteriors. Perdó!"
no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!" no_mobile: "CodeCombat no ha estat dissenyat per dispositius mòbils i per tant no funcionarà!"
play: "Jugar" play: "Jugar" # The big play button that just starts playing a level
old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!" old_browser: "Uh oh, el teu navegador és massa antic per fer funcionar CodeCombat. Perdó!"
old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni." old_browser_suffix: "Pots probar-ho igualment, però el més segur és que no funcioni."
campaign: "Campanya" campaign: "Campanya"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
spectate: "Spectate" spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contacta CodeCombat" contact_us: "Contacta CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
delay_5_sec: "5 vteřin" delay_5_sec: "5 vteřin"
manual: "Ručně" manual: "Ručně"
fork: "Klonovat" fork: "Klonovat"
play: "Přehrát" play: "Přehrát" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
page_not_found: "Stránka nenalezena" page_not_found: "Stránka nenalezena"
nav: nav:
play: "Úrovně" play: "Úrovně" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
slogan: "Naučte se programování tu při hraní více-hráčové programovací hry." slogan: "Naučte se programování tu při hraní více-hráčové programovací hry."
no_ie: "Omlouváme se, ale CodeCombat boužel nefunguje v Internet Exploreru 9 nebo starším." no_ie: "Omlouváme se, ale CodeCombat boužel nefunguje v Internet Exploreru 9 nebo starším."
no_mobile: "CodeCombat není navržen pro mobilní zařízení a nemusí fungovat správně!" no_mobile: "CodeCombat není navržen pro mobilní zařízení a nemusí fungovat správně!"
play: "Hrát" play: "Hrát" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Konktujte CodeCombat" contact_us: "Konktujte CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
delay_5_sec: "5 sekunder" delay_5_sec: "5 sekunder"
manual: "Manual" manual: "Manual"
fork: "Forgren" fork: "Forgren"
play: "Spil" play: "Spil" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
page_not_found: "Siden blev ikke fundet" page_not_found: "Siden blev ikke fundet"
nav: nav:
play: "Spil" play: "Spil" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
slogan: "Lær at Kode ved at Spille et Spil" slogan: "Lær at Kode ved at Spille et Spil"
no_ie: "CodeCombat kan desværre ikke køre i Internet Explorer 9 eller ældre. Beklager!" no_ie: "CodeCombat kan desværre ikke køre i Internet Explorer 9 eller ældre. Beklager!"
no_mobile: "CodeCombat er ikke designet til mobile enheder og vil måske ikke virke!" no_mobile: "CodeCombat er ikke designet til mobile enheder og vil måske ikke virke!"
play: "Spil" play: "Spil" # The big play button that just starts playing a level
old_browser: "Åh åh, din browser er for gammel til at køre CodeCombat. Beklager!" old_browser: "Åh åh, din browser er for gammel til at køre CodeCombat. Beklager!"
old_browser_suffix: "Du kan godt prøve alligevel, men det vil nok ikke virke." old_browser_suffix: "Du kan godt prøve alligevel, men det vil nok ikke virke."
campaign: "Kampagne" campaign: "Kampagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
spectate: "Observér" spectate: "Observér"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontakt CodeCombat" contact_us: "Kontakt CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
delay_5_sec: "5 Sekunden" delay_5_sec: "5 Sekunden"
manual: "Manuell" manual: "Manuell"
fork: "Fork" fork: "Fork"
play: "Abspielen" play: "Abspielen" # When used as an action verb, like "Play next level"
retry: "Erneut versuchen" retry: "Erneut versuchen"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
page_not_found: "Seite nicht gefunden" page_not_found: "Seite nicht gefunden"
nav: nav:
play: "Spielen" play: "Spielen" # The top nav bar entry where players choose which levels to play
community: "Community" community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
slogan: "Lerne spielend Programmieren" slogan: "Lerne spielend Programmieren"
no_ie: "CodeCombat läuft nicht im IE8 oder älteren Browsern. Tut uns Leid!" no_ie: "CodeCombat läuft nicht im IE8 oder älteren Browsern. Tut uns Leid!"
no_mobile: "CodeCombat ist nicht für Mobilgeräte optimiert und funktioniert möglicherweise nicht." no_mobile: "CodeCombat ist nicht für Mobilgeräte optimiert und funktioniert möglicherweise nicht."
play: "Spielen" play: "Spielen" # The big play button that just starts playing a level
old_browser: "Oh! Dein Browser ist zu alt für CodeCombat. Sorry!" old_browser: "Oh! Dein Browser ist zu alt für CodeCombat. Sorry!"
old_browser_suffix: "Du kannst es trotzdem versuchen, aber es wird wahrscheinlich nicht funktionieren." old_browser_suffix: "Du kannst es trotzdem versuchen, aber es wird wahrscheinlich nicht funktionieren."
campaign: "Kampagne" campaign: "Kampagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
spectate: "Zuschauen" spectate: "Zuschauen"
players: "Spieler" players: "Spieler"
hours_played: "Stunden gespielt" hours_played: "Stunden gespielt"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontaktiere CodeCombat" contact_us: "Kontaktiere CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
multiplayer_caption: "Spiele mit Freunden!" multiplayer_caption: "Spiele mit Freunden!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
save_load: save_load:
granularity_saved_games: "Gespeichert" granularity_saved_games: "Gespeichert"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
tutorial_play_first: "Spiele zuerst das Tutorial." tutorial_play_first: "Spiele zuerst das Tutorial."
simple_ai: "Einfache KI" simple_ai: "Einfache KI"
warmup: "Aufwärmen" warmup: "Aufwärmen"
vs: "VS"
friends_playing: "spielende Freunde" friends_playing: "spielende Freunde"
log_in_for_friends: "Melde dich an um mit deinen Freunden zu spielen!" log_in_for_friends: "Melde dich an um mit deinen Freunden zu spielen!"
social_connect_blurb: "Verbinde und spiele gegen deine Freunde!" social_connect_blurb: "Verbinde und spiele gegen deine Freunde!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
user_remarks: "Benutzerkommentare" user_remarks: "Benutzerkommentare"
versions: "Versionen" versions: "Versionen"
items: "Gegenstände" items: "Gegenstände"
# heroes: "Heroes"
wizard: "Zauberer" wizard: "Zauberer"
achievement: "Achievement" achievement: "Achievement"
clas: "CLAs" clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
delay_5_sec: "5 sekunde" delay_5_sec: "5 sekunde"
manual: "Aleitig" manual: "Aleitig"
# fork: "Fork" # fork: "Fork"
play: "Spiele" play: "Spiele" # When used as an action verb, like "Play next level"
retry: "nomol versuche" retry: "nomol versuche"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
page_not_found: "Siite nid gfunde" page_not_found: "Siite nid gfunde"
nav: nav:
play: "Levels" play: "Levels" # The top nav bar entry where players choose which levels to play
community: "Community" community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
slogan: "Lern, wiemer JavaScript programmiert indem du es Spiel spielsch!" slogan: "Lern, wiemer JavaScript programmiert indem du es Spiel spielsch!"
no_ie: "CodeCombat funktioniert uf InternetExplorer 9 und älter nid. Sorry!" no_ie: "CodeCombat funktioniert uf InternetExplorer 9 und älter nid. Sorry!"
no_mobile: "CodeCombat isch nid für mobili Grät entwicklet worde und funktioniert vilicht nid!" no_mobile: "CodeCombat isch nid für mobili Grät entwicklet worde und funktioniert vilicht nid!"
play: "Spiele" play: "Spiele" # The big play button that just starts playing a level
old_browser: "Uh oh, din Browser isch z alt zum CodeCombat spiele. Sorry!" old_browser: "Uh oh, din Browser isch z alt zum CodeCombat spiele. Sorry!"
old_browser_suffix: "Du chasches gliich probiere, aber es funktioniert worschinli nid." old_browser_suffix: "Du chasches gliich probiere, aber es funktioniert worschinli nid."
campaign: "Kampagne" campaign: "Kampagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
spectate: "Zueluege" spectate: "Zueluege"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "CodeCombat kontaktiere" contact_us: "CodeCombat kontaktiere"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
delay_5_sec: "5 Sekunden" delay_5_sec: "5 Sekunden"
manual: "Manuell" manual: "Manuell"
fork: "Fork" fork: "Fork"
play: "Abspielen" play: "Abspielen" # When used as an action verb, like "Play next level"
retry: "Erneut versuchen" retry: "Erneut versuchen"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
page_not_found: "Seite nicht gefunden" page_not_found: "Seite nicht gefunden"
nav: nav:
play: "Spielen" play: "Spielen" # The top nav bar entry where players choose which levels to play
community: "Community" community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
slogan: "Lerne spielend Programmieren" slogan: "Lerne spielend Programmieren"
no_ie: "CodeCombat läuft nicht im IE8 oder älteren Browsern. Tut uns Leid!" no_ie: "CodeCombat läuft nicht im IE8 oder älteren Browsern. Tut uns Leid!"
no_mobile: "CodeCombat ist nicht für Mobilgeräte optimiert und funktioniert möglicherweise nicht." no_mobile: "CodeCombat ist nicht für Mobilgeräte optimiert und funktioniert möglicherweise nicht."
play: "Spielen" play: "Spielen" # The big play button that just starts playing a level
old_browser: "Oh! Dein Browser ist zu alt für CodeCombat. Sorry!" old_browser: "Oh! Dein Browser ist zu alt für CodeCombat. Sorry!"
old_browser_suffix: "Du kannst es trotzdem versuchen, aber es wird wahrscheinlich nicht funktionieren." old_browser_suffix: "Du kannst es trotzdem versuchen, aber es wird wahrscheinlich nicht funktionieren."
campaign: "Kampagne" campaign: "Kampagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
spectate: "Zuschauen" spectate: "Zuschauen"
players: "Spieler" players: "Spieler"
hours_played: "Stunden gespielt" hours_played: "Stunden gespielt"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontaktiere CodeCombat" contact_us: "Kontaktiere CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
multiplayer_caption: "Spiele mit Freunden!" multiplayer_caption: "Spiele mit Freunden!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
save_load: save_load:
granularity_saved_games: "Gespeichert" granularity_saved_games: "Gespeichert"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
tutorial_play_first: "Spiele zuerst das Tutorial." tutorial_play_first: "Spiele zuerst das Tutorial."
simple_ai: "Einfache KI" simple_ai: "Einfache KI"
warmup: "Aufwärmen" warmup: "Aufwärmen"
vs: "VS"
friends_playing: "spielende Freunde" friends_playing: "spielende Freunde"
log_in_for_friends: "Melde dich an um mit deinen Freunden zu spielen!" log_in_for_friends: "Melde dich an um mit deinen Freunden zu spielen!"
social_connect_blurb: "Verbinde und spiele gegen deine Freunde!" social_connect_blurb: "Verbinde und spiele gegen deine Freunde!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
user_remarks: "Benutzerkommentare" user_remarks: "Benutzerkommentare"
versions: "Versionen" versions: "Versionen"
items: "Gegenstände" items: "Gegenstände"
# heroes: "Heroes"
wizard: "Zauberer" wizard: "Zauberer"
achievement: "Achievement" achievement: "Achievement"
clas: "CLAs" clas: "CLAs"

View file

@ -1,19 +1,19 @@
module.exports = nativeDescription: "ελληνικά", englishDescription: "Greek", translation: module.exports = nativeDescription: "Ελληνικά", englishDescription: "Greek", translation:
common: common:
loading: "Φορτώνει..." loading: "Φορτώνει..."
saving: "Γίνεται αποθήκευση" saving: "Αποθήκευση..."
sending: "Αποστολή ..." sending: "Αποστολή..."
# send: "Send" send: "Στείλε"
cancel: "Ακύρωση" cancel: "Ακύρωση"
save: "Αποθήκευση" save: "Αποθήκευση"
publish: "Δημοσιοποίηση" publish: "Δημοσίευση"
create: "Δημιουργία" create: "Δημιουργία"
delay_1_sec: "1 δευτερόλεπτο" delay_1_sec: "1 δευτερόλεπτο"
delay_3_sec: "3 δευτερόλεπτα" delay_3_sec: "3 δευτερόλεπτα"
delay_5_sec: "5 δευτερόλεπτα" delay_5_sec: "5 δευτερόλεπτα"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,23 +43,23 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
page_not_found: "Η σελίδα δεν βρέθηκε" page_not_found: "Η σελίδα δεν βρέθηκε"
nav: nav:
play: "Επίπεδα" play: "Επίπεδα" # The top nav bar entry where players choose which levels to play
# community: "Community" community: "Κοινότητα"
# editor: "Editor" editor: "Συγγραφέας"
blog: "Μπλόγκ" blog: "Μπλόγκ"
forum: "Φόρουμ" forum: "Φόρουμ"
account: "Λογαριασμός" account: "Λογαριασμός"
# profile: "Profile" profile: "Προφίλ"
# stats: "Stats" stats: "Στατιστικά"
# code: "Code" code: "Κώδικας"
admin: "Διαχειριστής" admin: "Διαχειριστής"
home: "Αρχική" home: "Αρχική"
contribute: "Συμβάλλω" contribute: "Συνεισφέρω"
legal: "Νόμιμο" legal: "Νόμικά"
about: "Σχετικά με" about: "Σχετικά με"
contact: "Επικοίνωνω" contact: "Επικοινωνία"
twitter_follow: "Follow" twitter_follow: "Ακολούθησε"
# employers: "Employers" employers: "Εργοδότες"
# versions: # versions:
# save_version_title: "Save New Version" # save_version_title: "Save New Version"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
slogan: "Μάθε να προγραμμάτιζεις με JavaScript μέσω ενός παιχνιδιού" slogan: "Μάθε να προγραμμάτιζεις με JavaScript μέσω ενός παιχνιδιού"
no_ie: "Το CodeCombat δεν παίζει με το Internet Explorer 9 ή κάποια παλαιότερη έκδοση. Συγνώμη!" no_ie: "Το CodeCombat δεν παίζει με το Internet Explorer 9 ή κάποια παλαιότερη έκδοση. Συγνώμη!"
no_mobile: "Το CodeCombat δεν σχεδιάστηκε για κινητά και μπορεί να μην δουλεύει!" no_mobile: "Το CodeCombat δεν σχεδιάστηκε για κινητά και μπορεί να μην δουλεύει!"
play: "Παίξε" play: "Παίξε" # The big play button that just starts playing a level
old_browser: "Ωχ, ο περιηγητής σας είναι πολύ παλιός για να τρέξετε το CodeCombat. Συγνώμη!" old_browser: "Ωχ, ο περιηγητής σας είναι πολύ παλιός για να τρέξετε το CodeCombat. Συγνώμη!"
old_browser_suffix: "Μπορείτε να δοκιμάσετε, αλλά πιθανών να μην λειτουργήσει." old_browser_suffix: "Μπορείτε να δοκιμάσετε, αλλά πιθανών να μην λειτουργήσει."
campaign: "Εκστρατεία" campaign: "Εκστρατεία"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Επικοινωνήστε μαζί μας" contact_us: "Επικοινωνήστε μαζί μας"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@
delay_5_sec: "5 seconds" delay_5_sec: "5 seconds"
manual: "Manual" manual: "Manual"
fork: "Fork" fork: "Fork"
play: "Play" play: "Play" # When used as an action verb, like "Play next level"
retry: "Retry" retry: "Retry"
watch: "Watch" watch: "Watch"
unwatch: "Unwatch" unwatch: "Unwatch"
@ -43,7 +43,7 @@
page_not_found: "Page not found" page_not_found: "Page not found"
nav: nav:
play: "Levels" play: "Levels" # The top nav bar entry where players choose which levels to play
community: "Community" community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@
slogan: "Learn to Code by Playing a Game" slogan: "Learn to Code by Playing a Game"
no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
play: "Play" play: "Play" # The big play button that just starts playing a level
old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
old_browser_suffix: "You can try anyway, but it probably won't work." old_browser_suffix: "You can try anyway, but it probably won't work."
campaign: "Campaign" campaign: "Campaign"
@ -136,6 +136,9 @@
achievements: "Achievements" achievements: "Achievements"
account: "Account" account: "Account"
settings: "Settings" settings: "Settings"
next: "Next"
previous: "Previous"
choose_inventory: "Equip Items"
items: items:
armor: "Armor" armor: "Armor"
@ -415,6 +418,7 @@
skip_tutorial: "Skip (esc)" skip_tutorial: "Skip (esc)"
keyboard_shortcuts: "Key Shortcuts" keyboard_shortcuts: "Key Shortcuts"
loading_ready: "Ready!" loading_ready: "Ready!"
loading_start: "Start Level"
tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor." tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
tip_toggle_play: "Toggle play/paused with Ctrl+P." tip_toggle_play: "Toggle play/paused with Ctrl+P."
tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward." tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward."
@ -465,10 +469,16 @@
multiplayer_caption: "Play with friends!" multiplayer_caption: "Play with friends!"
inventory: inventory:
temp: "Temp" choose_inventory: "Equip Items"
choose_hero: choose_hero:
temp: "Temp" choose_hero: "Choose Your Hero"
programming_language: "Programming Language"
programming_language_description: "Which programming language do you want to use?"
status: "Status"
weapons: "Weapons"
health: "Health"
speed: "Speed"
save_load: save_load:
granularity_saved_games: "Saved" granularity_saved_games: "Saved"
@ -979,6 +989,7 @@
user_remarks: "User Remarks" user_remarks: "User Remarks"
versions: "Versions" versions: "Versions"
items: "Items" items: "Items"
heroes: "Heroes"
wizard: "Wizard" wizard: "Wizard"
achievement: "Achievement" achievement: "Achievement"
clas: "CLAs" clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
delay_5_sec: "5 segundos" delay_5_sec: "5 segundos"
manual: "Manual" manual: "Manual"
fork: "Bifurcar" fork: "Bifurcar"
play: "Jugar" play: "Jugar" # When used as an action verb, like "Play next level"
retry: "Reintentar" retry: "Reintentar"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
page_not_found: "Página no encontrada" page_not_found: "Página no encontrada"
nav: nav:
play: "Jugar" play: "Jugar" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
slogan: "Aprende a programar jugando" slogan: "Aprende a programar jugando"
no_ie: "¡Lo sentimos! CodeCombat no funciona en Internet Explorer 9 o versiones anteriores." no_ie: "¡Lo sentimos! CodeCombat no funciona en Internet Explorer 9 o versiones anteriores."
no_mobile: "¡CodeCombat no fue diseñado para dispositivos móviles y quizás no funcione!" no_mobile: "¡CodeCombat no fue diseñado para dispositivos móviles y quizás no funcione!"
play: "Jugar" play: "Jugar" # The big play button that just starts playing a level
old_browser: "¡Oh! ¡Oh! Tu navegador es muy antiguo para correr CodeCombat. ¡Lo Sentimos!" old_browser: "¡Oh! ¡Oh! Tu navegador es muy antiguo para correr CodeCombat. ¡Lo Sentimos!"
old_browser_suffix: "Puedes probar de todas formas, pero probablemente no funcione." old_browser_suffix: "Puedes probar de todas formas, pero probablemente no funcione."
campaign: "Campaña" campaign: "Campaña"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
spectate: "Observar" spectate: "Observar"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contacta a CodeCombat" contact_us: "Contacta a CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
tutorial_play_first: "Juega el Tutorial primero." tutorial_play_first: "Juega el Tutorial primero."
simple_ai: "IA Simple" simple_ai: "IA Simple"
warmup: "Calentamiento" warmup: "Calentamiento"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
delay_5_sec: "5 segundos" delay_5_sec: "5 segundos"
manual: "Manual" manual: "Manual"
fork: "Bifurcar" fork: "Bifurcar"
play: "Jugar" play: "Jugar" # When used as an action verb, like "Play next level"
retry: "Reintentar" retry: "Reintentar"
watch: "Mirar" watch: "Mirar"
unwatch: "Pasar" unwatch: "Pasar"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
page_not_found: "Página no encontrada" page_not_found: "Página no encontrada"
nav: nav:
play: "Jugar" play: "Jugar" # The top nav bar entry where players choose which levels to play
community: "Comunidad" community: "Comunidad"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
slogan: "Aprende a programar jugando" slogan: "Aprende a programar jugando"
no_ie: "CodeCombat no funciona en Internet Explorer 9 o anteriores. ¡Lo sentimos!" no_ie: "CodeCombat no funciona en Internet Explorer 9 o anteriores. ¡Lo sentimos!"
no_mobile: "¡CodeCombat no fue diseñado para dispositivos móviles y puede que no funcione!" no_mobile: "¡CodeCombat no fue diseñado para dispositivos móviles y puede que no funcione!"
play: "Jugar" play: "Jugar" # The big play button that just starts playing a level
old_browser: "Ay, su navegador es demasiado viejo para ejecutar CodeCombat. ¡Lo sentimos!" old_browser: "Ay, su navegador es demasiado viejo para ejecutar CodeCombat. ¡Lo sentimos!"
old_browser_suffix: "Lo puede intentar de todos modos, pero probablemente no va a funcionar." old_browser_suffix: "Lo puede intentar de todos modos, pero probablemente no va a funcionar."
campaign: "Campaña" campaign: "Campaña"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
spectate: "Observar" spectate: "Observar"
players: "jugadores" players: "jugadores"
hours_played: "horas jugadas" hours_played: "horas jugadas"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contacta con CodeCombat" contact_us: "Contacta con CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
multiplayer_caption: "Juega con amigos!" multiplayer_caption: "Juega con amigos!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
save_load: save_load:
granularity_saved_games: "Salvado" granularity_saved_games: "Salvado"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
tutorial_play_first: "Prueba el Tutorial primero." tutorial_play_first: "Prueba el Tutorial primero."
simple_ai: "IA sencilla" simple_ai: "IA sencilla"
warmup: "calentamiento" warmup: "calentamiento"
vs: "VS"
friends_playing: "Amigos jugando" friends_playing: "Amigos jugando"
log_in_for_friends: "¡Inicia sesión para jugar con tus amigos!" log_in_for_friends: "¡Inicia sesión para jugar con tus amigos!"
social_connect_blurb: "¡Conectate y juega contra tus amigos!" social_connect_blurb: "¡Conectate y juega contra tus amigos!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
versions: "Versiones" versions: "Versiones"
items: "Objetos" items: "Objetos"
# heroes: "Heroes"
wizard: "Mago" wizard: "Mago"
achievement: "Logro" achievement: "Logro"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
delay_5_sec: "5 ثانیه" delay_5_sec: "5 ثانیه"
manual: "دستی" manual: "دستی"
# fork: "Fork" # fork: "Fork"
play: "سطوح" play: "سطوح" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
page_not_found: "صفحه پیدا نشد" page_not_found: "صفحه پیدا نشد"
nav: nav:
play: "سطوح" play: "سطوح" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "ویرایشگر" editor: "ویرایشگر"
blog: "بلاگ" blog: "بلاگ"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
slogan: "کد نویسیا با بازی بیاموزید" slogan: "کد نویسیا با بازی بیاموزید"
no_ie: "متاسفیم اما بازی بر روی مرورگر های اینترنت اکسپلورر نسخه ۹ به قبل اجرا نمی شود" no_ie: "متاسفیم اما بازی بر روی مرورگر های اینترنت اکسپلورر نسخه ۹ به قبل اجرا نمی شود"
no_mobile: "این بازی برای دستگاه های موبایل طراحی نشده است و بر روی آن ها اجرا نمی شود" no_mobile: "این بازی برای دستگاه های موبایل طراحی نشده است و بر روی آن ها اجرا نمی شود"
play: "شروع بازی" play: "شروع بازی" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "CodeCombatتماس با " contact_us: "CodeCombatتماس با "
@ -452,10 +468,16 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
delay_5_sec: "5 secondes" delay_5_sec: "5 secondes"
manual: "Manuel" manual: "Manuel"
fork: "Fork" fork: "Fork"
play: "Jouer" play: "Jouer" # When used as an action verb, like "Play next level"
retry: "Reessayer" retry: "Reessayer"
watch: "Regarder" watch: "Regarder"
unwatch: "Ne plus regarder" unwatch: "Ne plus regarder"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
page_not_found: "Page non trouvée" page_not_found: "Page non trouvée"
nav: nav:
play: "Jouer" play: "Jouer" # The top nav bar entry where players choose which levels to play
community: "Communauté" community: "Communauté"
editor: "Éditeur" editor: "Éditeur"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
slogan: "Apprenez à coder tout en jouant" slogan: "Apprenez à coder tout en jouant"
no_ie: "CodeCombat ne fonctionnera pas sous Internet Explorer 9 ou moins. Désolé !" no_ie: "CodeCombat ne fonctionnera pas sous Internet Explorer 9 ou moins. Désolé !"
no_mobile: "CodeCombat n'a pas été créé pour les plateformes mobiles donc il est possible qu'il ne fonctionne pas correctement ! " no_mobile: "CodeCombat n'a pas été créé pour les plateformes mobiles donc il est possible qu'il ne fonctionne pas correctement ! "
play: "Jouer" play: "Jouer" # The big play button that just starts playing a level
old_browser: "Oh oh, votre navigateur est trop vieux pour executer CodeCombat. Désolé!" old_browser: "Oh oh, votre navigateur est trop vieux pour executer CodeCombat. Désolé!"
old_browser_suffix: "Vous pouvez essayer quand même, mais celà ne marchera probablement pas." old_browser_suffix: "Vous pouvez essayer quand même, mais celà ne marchera probablement pas."
campaign: "Campagne" campaign: "Campagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
spectate: "Spectateur" spectate: "Spectateur"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contacter CodeCombat" contact_us: "Contacter CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
tutorial_play_first: "Jouer au Tutoriel d'abord." tutorial_play_first: "Jouer au Tutoriel d'abord."
simple_ai: "IA simple" simple_ai: "IA simple"
warmup: "Préchauffe" warmup: "Préchauffe"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
log_in_for_friends: "Connectez vous pour jouer avec vos amis!" log_in_for_friends: "Connectez vous pour jouer avec vos amis!"
social_connect_blurb: "Connectez vous pour jouer contre vos amis!" social_connect_blurb: "Connectez vous pour jouer contre vos amis!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
delay_5_sec: "חמש שניות" delay_5_sec: "חמש שניות"
manual: "מדריך" manual: "מדריך"
fork: "קילשון" fork: "קילשון"
play: "שחק" play: "שחק" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
page_not_found: "העמוד לא נמצא" page_not_found: "העמוד לא נמצא"
nav: nav:
play: "שלבים" play: "שלבים" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "עורך" editor: "עורך"
blog: "בלוג" blog: "בלוג"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
slogan: "גם לשחק וגם ללמוד לתכנת" slogan: "גם לשחק וגם ללמוד לתכנת"
no_ie: "המשחק לא עובד באקפלורר 9 וישן יותר. סליחה!" no_ie: "המשחק לא עובד באקפלורר 9 וישן יותר. סליחה!"
no_mobile: "המשחק לא עוצב לטלפונים ואולי לא יעבוד" no_mobile: "המשחק לא עוצב לטלפונים ואולי לא יעבוד"
play: "שחק" play: "שחק" # The big play button that just starts playing a level
old_browser: "או או, נראה כי הדפדפן שלך יותר מידי ישן כדי להריץ את המשחק. סליחה!" old_browser: "או או, נראה כי הדפדפן שלך יותר מידי ישן כדי להריץ את המשחק. סליחה!"
old_browser_suffix: "אתה יכול לנסות בכול מקרה אבל זה כנראה לא יעבוד." old_browser_suffix: "אתה יכול לנסות בכול מקרה אבל זה כנראה לא יעבוד."
campaign: "מסע" campaign: "מסע"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
spectate: "צופה" spectate: "צופה"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "צור קשר" contact_us: "צור קשר"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
delay_5_sec: "5 másodperc" delay_5_sec: "5 másodperc"
manual: "Kézi" manual: "Kézi"
# fork: "Fork" # fork: "Fork"
play: "Játék" play: "Játék" # When used as an action verb, like "Play next level"
retry: "Próbáld újra!" retry: "Próbáld újra!"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
page_not_found: "Az oldal nem található" page_not_found: "Az oldal nem található"
nav: nav:
play: "Játék" play: "Játék" # The top nav bar entry where players choose which levels to play
community: "Közösség" community: "Közösség"
editor: "Szerkesztő" editor: "Szerkesztő"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
slogan: "Tanulj meg nyelven programozni, miközben játszol!" slogan: "Tanulj meg nyelven programozni, miközben játszol!"
no_ie: "A CodeCombat nem támogatja az Internet Explorer 9, vagy korábbi verzióit. Bocsi!" no_ie: "A CodeCombat nem támogatja az Internet Explorer 9, vagy korábbi verzióit. Bocsi!"
no_mobile: "A CodeCombat nem mobil eszközökre lett tervezve. Valószínűleg nem működik helyesen." no_mobile: "A CodeCombat nem mobil eszközökre lett tervezve. Valószínűleg nem működik helyesen."
play: "Játssz!" play: "Játssz!" # The big play button that just starts playing a level
old_browser: "Hohó, a böngésződ már túl régi ahhoz, hogy a CodeCombat futhasson rajta. Bocsi!" old_browser: "Hohó, a böngésződ már túl régi ahhoz, hogy a CodeCombat futhasson rajta. Bocsi!"
old_browser_suffix: "Megpróbálhatod éppen, da valószínűleg nem fog működni.." old_browser_suffix: "Megpróbálhatod éppen, da valószínűleg nem fog működni.."
campaign: "Kampány" campaign: "Kampány"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Lépj kapcsolatba velünk" contact_us: "Lépj kapcsolatba velünk"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
delay_5_sec: "5 secondi" delay_5_sec: "5 secondi"
manual: "Manuale" manual: "Manuale"
fork: "Fork" fork: "Fork"
play: "Gioca" play: "Gioca" # When used as an action verb, like "Play next level"
retry: "Riprova" retry: "Riprova"
watch: "Guarda" watch: "Guarda"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
page_not_found: "Pagina non trovata" page_not_found: "Pagina non trovata"
nav: nav:
play: "Livelli" play: "Livelli" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
slogan: "Impara a programmare giocando" slogan: "Impara a programmare giocando"
no_ie: "CodeCombat non supporta Internet Explorer 9 o browser precedenti. Ci dispiace!" no_ie: "CodeCombat non supporta Internet Explorer 9 o browser precedenti. Ci dispiace!"
no_mobile: "CodeCombat non è stato progettato per dispositivi mobile e potrebbe non funzionare!" no_mobile: "CodeCombat non è stato progettato per dispositivi mobile e potrebbe non funzionare!"
play: "Gioca" play: "Gioca" # The big play button that just starts playing a level
old_browser: "Accidenti, il tuo browser è troppo vecchio per giocare a CodeCombat. Mi spiace!" old_browser: "Accidenti, il tuo browser è troppo vecchio per giocare a CodeCombat. Mi spiace!"
old_browser_suffix: "Puoi provare lo stesso, ma probabilmente non funzionerà." old_browser_suffix: "Puoi provare lo stesso, ma probabilmente non funzionerà."
campaign: "Campagna" campaign: "Campagna"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
spectate: "Spettatore" spectate: "Spettatore"
players: "giocatori" players: "giocatori"
hours_played: "ore di gioco" hours_played: "ore di gioco"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contatta CodeCombat" contact_us: "Contatta CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
multiplayer_caption: "Gioca con i tuoi amici!" multiplayer_caption: "Gioca con i tuoi amici!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
save_load: save_load:
granularity_saved_games: "Salvato" granularity_saved_games: "Salvato"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
tutorial_play_first: "Prima di tutto gioca al Tutorial." tutorial_play_first: "Prima di tutto gioca al Tutorial."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
delay_5_sec: "5秒" delay_5_sec: "5秒"
manual: "手動" manual: "手動"
# fork: "Fork" # fork: "Fork"
play: "ゲームスタート" play: "ゲームスタート" # When used as an action verb, like "Play next level"
retry: "リトライ" retry: "リトライ"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
page_not_found: "ページが見つかりません" page_not_found: "ページが見つかりません"
nav: nav:
play: "ゲームスタート" play: "ゲームスタート" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "レベルエディタ" editor: "レベルエディタ"
blog: "ブログ" blog: "ブログ"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
slogan: "ゲームをプレイして学びましょう" slogan: "ゲームをプレイして学びましょう"
no_ie: "大変申し訳ありませんが、ご利用のブラウザIE8以下はサポートされていません。(ChromeやFirefoxをご利用ください)" no_ie: "大変申し訳ありませんが、ご利用のブラウザIE8以下はサポートされていません。(ChromeやFirefoxをご利用ください)"
no_mobile: "CodeCombat は携帯端末向けに制作されていないため、動作しない可能性があります。" no_mobile: "CodeCombat は携帯端末向けに制作されていないため、動作しない可能性があります。"
play: "ゲームスタート" play: "ゲームスタート" # The big play button that just starts playing a level
old_browser: "ご利用のブラウザはCodeCombatを動作させるには古すぎるようです" old_browser: "ご利用のブラウザはCodeCombatを動作させるには古すぎるようです"
old_browser_suffix: "このまま進めることもできますが、正常動作は保証されません" old_browser_suffix: "このまま進めることもできますが、正常動作は保証されません"
campaign: "キャンペーンモード" campaign: "キャンペーンモード"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "お問い合わせ" contact_us: "お問い合わせ"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
delay_5_sec: "5초" delay_5_sec: "5초"
manual: "수동" manual: "수동"
fork: "Fork" fork: "Fork"
play: "시작" play: "시작" # When used as an action verb, like "Play next level"
retry: "재시도" retry: "재시도"
watch: "보기" watch: "보기"
unwatch: "보기 해제" unwatch: "보기 해제"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
page_not_found: "페이지를 찾을 수 없습니다" page_not_found: "페이지를 찾을 수 없습니다"
nav: nav:
play: "레벨" play: "레벨" # The top nav bar entry where players choose which levels to play
community: "커뮤니티" community: "커뮤니티"
editor: "에디터" editor: "에디터"
blog: "블로그" blog: "블로그"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
slogan: "쉽고 간단한 게임 배우기" slogan: "쉽고 간단한 게임 배우기"
no_ie: "죄송하지만 코드컴뱃은 인터넷 익스플로러 9에서는 동작하지 않습니다." no_ie: "죄송하지만 코드컴뱃은 인터넷 익스플로러 9에서는 동작하지 않습니다."
no_mobile: "코드 컴뱃은 모바일 기기용으로 제작되지 않았습니다. 아마 동작하지 않을 가능성이 높습니다." no_mobile: "코드 컴뱃은 모바일 기기용으로 제작되지 않았습니다. 아마 동작하지 않을 가능성이 높습니다."
play: "시작" play: "시작" # The big play button that just starts playing a level
old_browser: "브라우저가 너무 오래된 버전이라 코드 컴뱃을 실행할 수 없습니다." old_browser: "브라우저가 너무 오래된 버전이라 코드 컴뱃을 실행할 수 없습니다."
old_browser_suffix: "시도해볼 수는 있겠지만..안될 수도 있습니다." old_browser_suffix: "시도해볼 수는 있겠지만..안될 수도 있습니다."
campaign: "캠페인" campaign: "캠페인"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
spectate: "관중모드" spectate: "관중모드"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "코드컴뱃에 전할 말" contact_us: "코드컴뱃에 전할 말"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
tutorial_play_first: "튜토리얼을 먼저 플레이해보세요." tutorial_play_first: "튜토리얼을 먼저 플레이해보세요."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
log_in_for_friends: "로그인하시고 친구들과 게임을 즐기세요!" log_in_for_friends: "로그인하시고 친구들과 게임을 즐기세요!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
manual: "Panduan" manual: "Panduan"
# fork: "Fork" # fork: "Fork"
play: "Mula" play: "Mula" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
page_not_found: "Halaman tidak ditemui" page_not_found: "Halaman tidak ditemui"
nav: nav:
play: "Mula" play: "Mula" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
slogan: "Belajar Kod bDengan Permainan" slogan: "Belajar Kod bDengan Permainan"
no_ie: "CodeCombat tidak berfungsi dalam Internet Explorer 9 dan terdahulu. Maaf!" no_ie: "CodeCombat tidak berfungsi dalam Internet Explorer 9 dan terdahulu. Maaf!"
no_mobile: "CodeCombat tidak dibangunkan untuk telefon mudah-alih dan tablet dan tidak akan berfungsi!" no_mobile: "CodeCombat tidak dibangunkan untuk telefon mudah-alih dan tablet dan tidak akan berfungsi!"
play: "Mula" play: "Mula" # The big play button that just starts playing a level
old_browser: "Uh oh, browser anda terlalu lama untuk CodeCombat berfungsi. Maaf!" old_browser: "Uh oh, browser anda terlalu lama untuk CodeCombat berfungsi. Maaf!"
old_browser_suffix: "Anda boleh mencuba, tapi mungkin ia tidak akan berfungsi." old_browser_suffix: "Anda boleh mencuba, tapi mungkin ia tidak akan berfungsi."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Hubungi CodeCombat" contact_us: "Hubungi CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
delay_5_sec: "5 sekunder" delay_5_sec: "5 sekunder"
manual: "Manuelt" manual: "Manuelt"
# fork: "Fork" # fork: "Fork"
play: "Spill" play: "Spill" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
page_not_found: "Finner ikke siden" page_not_found: "Finner ikke siden"
nav: nav:
play: "Spill" play: "Spill" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blogg" blog: "Blogg"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
slogan: "Lær å Kode ved å Spille et Spill" slogan: "Lær å Kode ved å Spille et Spill"
no_ie: "CodeCombat kjører ikke på IE8 eller eldre. Beklager!" no_ie: "CodeCombat kjører ikke på IE8 eller eldre. Beklager!"
no_mobile: "CodeCombat ble ikke designet for mobile enheter, og vil muligens ikke virke!" no_mobile: "CodeCombat ble ikke designet for mobile enheter, og vil muligens ikke virke!"
play: "Spill" play: "Spill" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontakt CodeCombat" contact_us: "Kontakt CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
delay_5_sec: "5 secondes" delay_5_sec: "5 secondes"
manual: "Handleiding" manual: "Handleiding"
fork: "Fork" fork: "Fork"
play: "Spelen" play: "Spelen" # When used as an action verb, like "Play next level"
retry: "Probeer opnieuw" retry: "Probeer opnieuw"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
page_not_found: "Pagina niet gevonden" page_not_found: "Pagina niet gevonden"
nav: nav:
play: "Levels" play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
slogan: "Leer programmeren door het spelen van een spel" slogan: "Leer programmeren door het spelen van een spel"
no_ie: "CodeCombat werkt niet in IE8 of ouder. Sorry!" no_ie: "CodeCombat werkt niet in IE8 of ouder. Sorry!"
no_mobile: "CodeCombat is niet gemaakt voor mobiele apparaten en werkt misschien niet!" no_mobile: "CodeCombat is niet gemaakt voor mobiele apparaten en werkt misschien niet!"
play: "Speel" play: "Speel" # The big play button that just starts playing a level
old_browser: "Uh oh, jouw browser is te oud om CodeCombat te kunnen spelen, Sorry!" old_browser: "Uh oh, jouw browser is te oud om CodeCombat te kunnen spelen, Sorry!"
old_browser_suffix: "Je kan toch proberen, maar het zal waarschijnlijk niet werken!" old_browser_suffix: "Je kan toch proberen, maar het zal waarschijnlijk niet werken!"
campaign: "Campagne" campaign: "Campagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
spectate: "Toeschouwen" spectate: "Toeschouwen"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contact opnemen met CodeCombat" contact_us: "Contact opnemen met CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
tutorial_play_first: "Speel eerst de Tutorial." tutorial_play_first: "Speel eerst de Tutorial."
simple_ai: "Simpele AI" simple_ai: "Simpele AI"
warmup: "Opwarming" warmup: "Opwarming"
vs: "tegen"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
delay_5_sec: "5 secondes" delay_5_sec: "5 secondes"
manual: "Handleiding" manual: "Handleiding"
fork: "Fork" fork: "Fork"
play: "Spelen" play: "Spelen" # When used as an action verb, like "Play next level"
retry: "Probeer opnieuw" retry: "Probeer opnieuw"
watch: "Volgen" watch: "Volgen"
unwatch: "Ontvolgen" unwatch: "Ontvolgen"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
page_not_found: "Pagina niet gevonden" page_not_found: "Pagina niet gevonden"
nav: nav:
play: "Levels" play: "Levels" # The top nav bar entry where players choose which levels to play
community: "Gemeenschap" community: "Gemeenschap"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
slogan: "Leer programmeren door het spelen van een spel" slogan: "Leer programmeren door het spelen van een spel"
no_ie: "CodeCombat werkt niet in IE8 of ouder. Sorry!" no_ie: "CodeCombat werkt niet in IE8 of ouder. Sorry!"
no_mobile: "CodeCombat is niet gemaakt voor mobiele apparaten en werkt misschien niet!" no_mobile: "CodeCombat is niet gemaakt voor mobiele apparaten en werkt misschien niet!"
play: "Speel" play: "Speel" # The big play button that just starts playing a level
old_browser: "Uh oh, jouw browser is te oud om CodeCombat te kunnen spelen, Sorry!" old_browser: "Uh oh, jouw browser is te oud om CodeCombat te kunnen spelen, Sorry!"
old_browser_suffix: "Je kan toch proberen, maar het zal waarschijnlijk niet werken!" old_browser_suffix: "Je kan toch proberen, maar het zal waarschijnlijk niet werken!"
campaign: "Campagne" campaign: "Campagne"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
spectate: "Toeschouwen" spectate: "Toeschouwen"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contact opnemen met CodeCombat" contact_us: "Contact opnemen met CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
tutorial_play_first: "Speel eerst de Tutorial." tutorial_play_first: "Speel eerst de Tutorial."
simple_ai: "Simpele AI" simple_ai: "Simpele AI"
warmup: "Opwarming" warmup: "Opwarming"
vs: "tegen"
friends_playing: "Spelende Vrienden" friends_playing: "Spelende Vrienden"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
social_connect_blurb: "Koppel je sociaal netwerk om tegen je vrienden te spelen!" social_connect_blurb: "Koppel je sociaal netwerk om tegen je vrienden te spelen!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
delay_5_sec: "5 sekunder" delay_5_sec: "5 sekunder"
manual: "Manuelt" manual: "Manuelt"
# fork: "Fork" # fork: "Fork"
play: "Spill" play: "Spill" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
page_not_found: "Finner ikke siden" page_not_found: "Finner ikke siden"
nav: nav:
play: "Spill" play: "Spill" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blogg" blog: "Blogg"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
slogan: "Lær å kode ved å spille et spill" slogan: "Lær å kode ved å spille et spill"
no_ie: "CodeCombat kjører ikke på IE8 eller eldre. Beklager!" no_ie: "CodeCombat kjører ikke på IE8 eller eldre. Beklager!"
no_mobile: "CodeCombat ble ikke designet for mobile enheter, og vil muligens ikke virke!" no_mobile: "CodeCombat ble ikke designet for mobile enheter, og vil muligens ikke virke!"
play: "Spill" play: "Spill" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontakt CodeCombat" contact_us: "Kontakt CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
delay_5_sec: "5 sekund" delay_5_sec: "5 sekund"
manual: "Ręcznie" manual: "Ręcznie"
fork: "Fork" fork: "Fork"
play: "Graj" play: "Graj" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
page_not_found: "Strona nie istnieje" page_not_found: "Strona nie istnieje"
nav: nav:
play: "Graj" play: "Graj" # The top nav bar entry where players choose which levels to play
community: "Społeczność" community: "Społeczność"
editor: "Edytor" editor: "Edytor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
slogan: "Naucz się programowania grając" slogan: "Naucz się programowania grając"
no_ie: "CodeCombat nie działa na Internet Explorer 9 lub starszym. Przepraszamy!" no_ie: "CodeCombat nie działa na Internet Explorer 9 lub starszym. Przepraszamy!"
no_mobile: "CodeCombat nie został zaprojektowany dla urządzeń przenośnych więc może nie działać!" no_mobile: "CodeCombat nie został zaprojektowany dla urządzeń przenośnych więc może nie działać!"
play: "Graj" play: "Graj" # The big play button that just starts playing a level
old_browser: "Wygląda na to, że twoja przeglądarka jest zbyt stara, by obsłużyć CodeCombat. Wybacz!" old_browser: "Wygląda na to, że twoja przeglądarka jest zbyt stara, by obsłużyć CodeCombat. Wybacz!"
old_browser_suffix: "Możesz spróbowac mimo tego, ale prawdopodobnie gra nie będzie działać." old_browser_suffix: "Możesz spróbowac mimo tego, ale prawdopodobnie gra nie będzie działać."
campaign: "Kampania" campaign: "Kampania"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
spectate: "Oglądaj" spectate: "Oglądaj"
players: "graczy" players: "graczy"
hours_played: "rozegranych godzin" hours_played: "rozegranych godzin"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontakt z CodeCombat" contact_us: "Kontakt z CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
multiplayer_caption: "Graj ze znajomymi!" multiplayer_caption: "Graj ze znajomymi!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
tutorial_play_first: "Rozegraj najpierw samouczek." tutorial_play_first: "Rozegraj najpierw samouczek."
simple_ai: "Proste AI" simple_ai: "Proste AI"
warmup: "Rozgrzewka" warmup: "Rozgrzewka"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
delay_5_sec: "5 segundos" delay_5_sec: "5 segundos"
manual: "Manual" manual: "Manual"
fork: "Fork" fork: "Fork"
play: "Jogar" play: "Jogar" # When used as an action verb, like "Play next level"
retry: "Tente novamente" retry: "Tente novamente"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
page_not_found: "Página não encontrada" page_not_found: "Página não encontrada"
nav: nav:
play: "Jogar" play: "Jogar" # The top nav bar entry where players choose which levels to play
community: "Comunidade" community: "Comunidade"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
slogan: "Aprenda a programar enquanto se diverte com um jogo." slogan: "Aprenda a programar enquanto se diverte com um jogo."
no_ie: "CodeCombat não roda em versões mais antigas que o Internet Explorer 10. Desculpe!" no_ie: "CodeCombat não roda em versões mais antigas que o Internet Explorer 10. Desculpe!"
no_mobile: "CodeCombat não foi projetado para dispositivos móveis e pode não funcionar!" no_mobile: "CodeCombat não foi projetado para dispositivos móveis e pode não funcionar!"
play: "Jogar" play: "Jogar" # The big play button that just starts playing a level
old_browser: "Ops, seu navegador é muito antigo para rodar o CodeCombat. Desculpe!" old_browser: "Ops, seu navegador é muito antigo para rodar o CodeCombat. Desculpe!"
old_browser_suffix: "Você pode tentar de qualquer forma, mas provavelmente não irá funcionar." old_browser_suffix: "Você pode tentar de qualquer forma, mas provavelmente não irá funcionar."
campaign: "Campanha" campaign: "Campanha"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
spectate: "Assistir" spectate: "Assistir"
players: "jogadores" players: "jogadores"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contate-nos" contact_us: "Contate-nos"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
tutorial_play_first: "Jogue o Tutorial primeiro." tutorial_play_first: "Jogue o Tutorial primeiro."
simple_ai: "IA Simples" simple_ai: "IA Simples"
warmup: "Aquecimento" warmup: "Aquecimento"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
delay_5_sec: "5 segundos" delay_5_sec: "5 segundos"
manual: "Manual" manual: "Manual"
fork: "Bifurcar" fork: "Bifurcar"
play: "Jogar" play: "Jogar" # When used as an action verb, like "Play next level"
retry: "Tentar Novamente" retry: "Tentar Novamente"
watch: "Vigiar" watch: "Vigiar"
unwatch: "Desvigiar" unwatch: "Desvigiar"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
page_not_found: "Página não encontrada" page_not_found: "Página não encontrada"
nav: nav:
play: "Níveis" play: "Níveis" # The top nav bar entry where players choose which levels to play
community: "Comunidade" community: "Comunidade"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
slogan: "Aprenda a Programar ao Jogar um Jogo" slogan: "Aprenda a Programar ao Jogar um Jogo"
no_ie: "O CodeCombat não funciona no Internet Explorer 9 ou anterior. Desculpe!" no_ie: "O CodeCombat não funciona no Internet Explorer 9 ou anterior. Desculpe!"
no_mobile: "O CodeCombat não foi feito para dispositivos móveis e pode não funcionar!" no_mobile: "O CodeCombat não foi feito para dispositivos móveis e pode não funcionar!"
play: "Jogar" play: "Jogar" # The big play button that just starts playing a level
old_browser: "Ups, o seu navegador é demasiado antigo para que o CodeCombat funcione. Desculpe!" old_browser: "Ups, o seu navegador é demasiado antigo para que o CodeCombat funcione. Desculpe!"
old_browser_suffix: "Mesmo assim pode tentar, mas provavelmente não irá funcionar." old_browser_suffix: "Mesmo assim pode tentar, mas provavelmente não irá funcionar."
campaign: "Campanha" campaign: "Campanha"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
spectate: "Espectar" spectate: "Espectar"
players: "jogadores" players: "jogadores"
hours_played: "horas jogadas" hours_played: "horas jogadas"
items: "Itens"
heroes: "Heróis"
achievements: "Conquistas"
account: "Conta"
settings: "Definições"
next: "Seguinte"
previous: "Anterior"
choose_inventory: "Equipar Itens"
items:
armor: "Armadura"
hands: "Mãos"
accessories: "Acessórios"
books: "Livros"
minions: "Minions"
misc: "Vários"
contact: contact:
contact_us: "Contacte o CodeCombat" contact_us: "Contacte o CodeCombat"
@ -451,11 +467,17 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
guide_caption: "Documentos e dicas" guide_caption: "Documentos e dicas"
multiplayer_caption: "Jogue com amigos!" multiplayer_caption: "Jogue com amigos!"
# inventory: inventory:
# temp: "Temp" choose_inventory: "Equipar Itens"
# choose_hero: choose_hero:
# temp: "Temp" choose_hero: "Escolha o Seu Herói"
programming_language: "Linguagem de Programação"
programming_language_description: "Que linguagem de programação quer usar?"
status: "Estado"
weapons: "Armas"
health: "Vida"
speed: "Velocidade"
save_load: save_load:
granularity_saved_games: "Guardados" granularity_saved_games: "Guardados"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
tutorial_play_first: "Joga o Tutorial primeiro." tutorial_play_first: "Joga o Tutorial primeiro."
simple_ai: "Inteligência Artificial Simples" simple_ai: "Inteligência Artificial Simples"
warmup: "Aquecimento" warmup: "Aquecimento"
vs: "VS"
friends_playing: "Amigos a Jogar" friends_playing: "Amigos a Jogar"
log_in_for_friends: "Inicie sessão para jogar com os seus amigos!" log_in_for_friends: "Inicie sessão para jogar com os seus amigos!"
social_connect_blurb: "Conecte-se e jogue contra os seus amigos!" social_connect_blurb: "Conecte-se e jogue contra os seus amigos!"
@ -967,10 +988,11 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
user_remarks: "Observações de Utilizador" user_remarks: "Observações de Utilizador"
versions: "Versões" versions: "Versões"
items: "Itens" items: "Itens"
heroes: "Heróis"
wizard: "Feiticeiro" wizard: "Feiticeiro"
achievement: "Conquista" achievement: "Conquista"
clas: "CLAs" clas: "CLAs"
# play_counts: "Play Counts" play_counts: "Número de Jogos"
feedback: "Feedback" feedback: "Feedback"
delta: delta:

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
delay_5_sec: "5 secunde" delay_5_sec: "5 secunde"
manual: "Manual" manual: "Manual"
fork: "Fork" fork: "Fork"
play: "Joacă" play: "Joacă" # When used as an action verb, like "Play next level"
retry: "Reîncearca" retry: "Reîncearca"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
page_not_found: "Pagina nu a fost gasită" page_not_found: "Pagina nu a fost gasită"
nav: nav:
play: "Nivele" play: "Nivele" # The top nav bar entry where players choose which levels to play
community: "Communitate" community: "Communitate"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
slogan: "Învață sa scrii cod jucându-te" slogan: "Învață sa scrii cod jucându-te"
no_ie: "CodeCombat nu merge pe Internet Explorer 9 sau mai vechi. Scuze!" no_ie: "CodeCombat nu merge pe Internet Explorer 9 sau mai vechi. Scuze!"
no_mobile: "CodeCombat nu a fost proiectat pentru dispozitive mobile si s-ar putea sa nu meargă!" no_mobile: "CodeCombat nu a fost proiectat pentru dispozitive mobile si s-ar putea sa nu meargă!"
play: "Joacă" play: "Joacă" # The big play button that just starts playing a level
old_browser: "Mda , browser-ul tău este prea vechi pentru CodeCombat. Scuze!" old_browser: "Mda , browser-ul tău este prea vechi pentru CodeCombat. Scuze!"
old_browser_suffix: "Poți să încerci oricum ,dar probabil nu o să meargă." old_browser_suffix: "Poți să încerci oricum ,dar probabil nu o să meargă."
campaign: "Campanie" campaign: "Campanie"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
spectate: "Spectator" spectate: "Spectator"
players: "jucători" players: "jucători"
hours_played: "ore jucate" hours_played: "ore jucate"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Contact CodeCombat" contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
multiplayer_caption: "Joaca cu prieteni!" multiplayer_caption: "Joaca cu prieteni!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
tutorial_play_first: "Joacă Tutorial-ul mai întâi." tutorial_play_first: "Joacă Tutorial-ul mai întâi."
simple_ai: "AI simplu" simple_ai: "AI simplu"
warmup: "Încălzire" warmup: "Încălzire"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
delay_5_sec: "5 секунд" delay_5_sec: "5 секунд"
manual: "Вручную" manual: "Вручную"
fork: "Форк" fork: "Форк"
play: "Играть" play: "Играть" # When used as an action verb, like "Play next level"
retry: "Повторить" retry: "Повторить"
watch: "Следить" watch: "Следить"
unwatch: "Не следить" unwatch: "Не следить"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
page_not_found: "Страница не найдена" page_not_found: "Страница не найдена"
nav: nav:
play: "Уровни" play: "Уровни" # The top nav bar entry where players choose which levels to play
community: "Сообщество" community: "Сообщество"
editor: "Редактор" editor: "Редактор"
blog: "Блог" blog: "Блог"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
slogan: "Научитесь программировать, играя в игру" slogan: "Научитесь программировать, играя в игру"
no_ie: "CodeCombat не работает в IE8 или более старых версиях. Нам очень жаль!" no_ie: "CodeCombat не работает в IE8 или более старых версиях. Нам очень жаль!"
no_mobile: "CodeCombat не приспособлен для работы на мобильных устройствах и может не работать!" no_mobile: "CodeCombat не приспособлен для работы на мобильных устройствах и может не работать!"
play: "Играть" play: "Играть" # The big play button that just starts playing a level
old_browser: "Ой, ваш браузер слишком стар для запуска CodeCombat. Извините!" old_browser: "Ой, ваш браузер слишком стар для запуска CodeCombat. Извините!"
old_browser_suffix: "Вы всё равно можете попробовать, но, скорее всего, это не будет работать." old_browser_suffix: "Вы всё равно можете попробовать, но, скорее всего, это не будет работать."
campaign: "Кампания" campaign: "Кампания"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
spectate: "Наблюдать" spectate: "Наблюдать"
players: "игроки" players: "игроки"
hours_played: "часов сыграно" hours_played: "часов сыграно"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Связаться с CodeCombat" contact_us: "Связаться с CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
tutorial_play_first: "Сначала пройдите обучение." tutorial_play_first: "Сначала пройдите обучение."
simple_ai: "Простой ИИ" simple_ai: "Простой ИИ"
warmup: "Разминка" warmup: "Разминка"
vs: "против"
friends_playing: "Друзья в игре" friends_playing: "Друзья в игре"
log_in_for_friends: "Войти, чтобы поиграть с друзьями!" log_in_for_friends: "Войти, чтобы поиграть с друзьями!"
social_connect_blurb: "Свяжите учетную запись и играйте против друзей!" social_connect_blurb: "Свяжите учетную запись и играйте против друзей!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
versions: "Версии" versions: "Версии"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
delay_5_sec: "5 sekúnd" delay_5_sec: "5 sekúnd"
manual: "Manuál" manual: "Manuál"
# fork: "Fork" # fork: "Fork"
play: "Hraj" play: "Hraj" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
page_not_found: "Stránka nenájdená" page_not_found: "Stránka nenájdená"
nav: nav:
play: "Hraj" play: "Hraj" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
slogan: "Nauč sa programovať pomocou hry" slogan: "Nauč sa programovať pomocou hry"
no_ie: "CodeCombat nefunguje v prehliadači Internet Explorer 9 a jeho starších verziách. Ospravedlňujeme sa." no_ie: "CodeCombat nefunguje v prehliadači Internet Explorer 9 a jeho starších verziách. Ospravedlňujeme sa."
no_mobile: "CodeCombat nebol navrhnutý pre mobilné zariadenia a nemusí na nich fungovať správne!" no_mobile: "CodeCombat nebol navrhnutý pre mobilné zariadenia a nemusí na nich fungovať správne!"
play: "Hraj" play: "Hraj" # The big play button that just starts playing a level
old_browser: "Ajaj, prehliadač je príliš starý. CodeCombat na ňom nepôjde. Je nám to ľúto!" old_browser: "Ajaj, prehliadač je príliš starý. CodeCombat na ňom nepôjde. Je nám to ľúto!"
old_browser_suffix: "Skúsiť sa to dá, ale asi to nepôjde." old_browser_suffix: "Skúsiť sa to dá, ale asi to nepôjde."
campaign: "Ťaženie" campaign: "Ťaženie"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
spectate: "Sleduj" spectate: "Sleduj"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontaktujte nás" contact_us: "Kontaktujte nás"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
delay_5_sec: "5 секунди" delay_5_sec: "5 секунди"
manual: "Упутство" manual: "Упутство"
# fork: "Fork" # fork: "Fork"
play: "Нивои" play: "Нивои" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
page_not_found: "Страница није нађена" page_not_found: "Страница није нађена"
nav: nav:
play: "Нивои" play: "Нивои" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Уређивач" editor: "Уређивач"
blog: "Блог" blog: "Блог"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
slogan: "Научи да пишеш код играјући игру" slogan: "Научи да пишеш код играјући игру"
no_ie: "CodeCombat не ради у IE8 и старијим верзијама. Жао нам је!" no_ie: "CodeCombat не ради у IE8 и старијим верзијама. Жао нам је!"
no_mobile: "CodeCombat није дизајниран за мобилне уређаје и може да се деси да не ради!" no_mobile: "CodeCombat није дизајниран за мобилне уређаје и може да се деси да не ради!"
play: "Играј" play: "Играј" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Контактирај CodeCombat" contact_us: "Контактирај CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
delay_5_sec: "5 sekunder" delay_5_sec: "5 sekunder"
manual: "Manuellt" manual: "Manuellt"
fork: "Förgrena" fork: "Förgrena"
play: "Spela" play: "Spela" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
page_not_found: "Sidan kan inte hittas" page_not_found: "Sidan kan inte hittas"
nav: nav:
play: "Spela" play: "Spela" # The top nav bar entry where players choose which levels to play
community: "Community" community: "Community"
editor: "Nivåredigerare" editor: "Nivåredigerare"
blog: "Blogg" blog: "Blogg"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
slogan: "Lär dig att koda genom att spela ett spel." slogan: "Lär dig att koda genom att spela ett spel."
no_ie: "CodeCombat fungerar tyvärr inte i IE8 eller äldre." no_ie: "CodeCombat fungerar tyvärr inte i IE8 eller äldre."
no_mobile: "CodeCombat är inte designat för mobila enhter och fungerar kanske inte!" no_mobile: "CodeCombat är inte designat för mobila enhter och fungerar kanske inte!"
play: "Spela" play: "Spela" # The big play button that just starts playing a level
old_browser: "Oj då, din webbläsare är för gammal för att köra CodeCombat. Förlåt!" old_browser: "Oj då, din webbläsare är för gammal för att köra CodeCombat. Förlåt!"
old_browser_suffix: "Du kan försöka ändå, men det kommer nog inte fungera." old_browser_suffix: "Du kan försöka ändå, men det kommer nog inte fungera."
campaign: "Kampanj" campaign: "Kampanj"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
spectate: "Titta på" spectate: "Titta på"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Kontakta CodeCombat" contact_us: "Kontakta CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
tutorial_play_first: "Spela tutorial först." tutorial_play_first: "Spela tutorial först."
simple_ai: "Enkelt AI" simple_ai: "Enkelt AI"
warmup: "Uppvärmning" warmup: "Uppvärmning"
vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
delay_5_sec: "5 วินาที" delay_5_sec: "5 วินาที"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
play: "เล่น" play: "เล่น" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
page_not_found: "ขออภัย ไม่พบหน้าเว็บที่คุณต้องการ" page_not_found: "ขออภัย ไม่พบหน้าเว็บที่คุณต้องการ"
nav: nav:
play: "เล่น" play: "เล่น" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Editor" editor: "Editor"
blog: "บล็อก" blog: "บล็อก"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
play: "เล่น" play: "เล่น" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
delay_5_sec: "5 saniye" delay_5_sec: "5 saniye"
manual: "El ile" manual: "El ile"
fork: "Çatalla" fork: "Çatalla"
play: "Oyna" play: "Oyna" # When used as an action verb, like "Play next level"
retry: "Yeniden Dene" retry: "Yeniden Dene"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
page_not_found: "Sayfa bulunamadı" page_not_found: "Sayfa bulunamadı"
nav: nav:
play: "Oyna" play: "Oyna" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Düzenleyici" editor: "Düzenleyici"
blog: "Blog" blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
slogan: "Oyun oynayarak kodlamayı öğrenin" slogan: "Oyun oynayarak kodlamayı öğrenin"
no_ie: "CodeCombat maalesef Internet Explorer 9 veya daha eski sürümlerde çalışmaz." no_ie: "CodeCombat maalesef Internet Explorer 9 veya daha eski sürümlerde çalışmaz."
no_mobile: "CodeCombat mobil cihazlar için tasarlanmamıştır bu sebeple mobil cihazlarda çalışmayabilir." no_mobile: "CodeCombat mobil cihazlar için tasarlanmamıştır bu sebeple mobil cihazlarda çalışmayabilir."
play: "Oyna" play: "Oyna" # The big play button that just starts playing a level
old_browser: "Olamaz, Tarayıcınız CodeCombat'ı çalıştırmak için çok eski. Üzgünüz!" old_browser: "Olamaz, Tarayıcınız CodeCombat'ı çalıştırmak için çok eski. Üzgünüz!"
old_browser_suffix: "Deneyebilirsiniz, ama muhtemelen oyun çalışmayacaktır." old_browser_suffix: "Deneyebilirsiniz, ama muhtemelen oyun çalışmayacaktır."
campaign: "Senaryo Modu" campaign: "Senaryo Modu"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
spectate: "İzleyici olarak katıl" spectate: "İzleyici olarak katıl"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "CodeCombat ile İletişim" contact_us: "CodeCombat ile İletişim"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
delay_5_sec: "5 секунд" delay_5_sec: "5 секунд"
manual: "Інструкція" manual: "Інструкція"
fork: "Форк" fork: "Форк"
play: "Грати" play: "Грати" # When used as an action verb, like "Play next level"
retry: "Повтор" retry: "Повтор"
watch: "Стежити" watch: "Стежити"
unwatch: "Нестежити" unwatch: "Нестежити"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
page_not_found: "Сторінку не знайдено" page_not_found: "Сторінку не знайдено"
nav: nav:
play: "Грати" play: "Грати" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Редактор" editor: "Редактор"
blog: "Блог" blog: "Блог"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
slogan: "Навчіться програмувати, граючи у гру" slogan: "Навчіться програмувати, граючи у гру"
no_ie: "На жаль, CodeCombat не працює в IE8 чи більш старих версіях!" no_ie: "На жаль, CodeCombat не працює в IE8 чи більш старих версіях!"
no_mobile: "CodeCombat не призначений для мобільних приладів і може не працювати!" no_mobile: "CodeCombat не призначений для мобільних приладів і може не працювати!"
play: "Грати" play: "Грати" # The big play button that just starts playing a level
old_browser: "Вибачте, але ваш браузер дуже старий для гри CodeCombat" old_browser: "Вибачте, але ваш браузер дуже старий для гри CodeCombat"
old_browser_suffix: "Ви все одно можете спробувати, хоча навряд чи вийде" old_browser_suffix: "Ви все одно можете спробувати, хоча навряд чи вийде"
campaign: "Кампанія" campaign: "Кампанія"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "українська мова", englishDesc
spectate: "Спостерігати" spectate: "Спостерігати"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Зв'язатися з CodeCombat" contact_us: "Зв'язатися з CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "українська мова", englishDesc
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "українська мова", englishDesc
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
play: "Các cấp độ" play: "Các cấp độ" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
page_not_found: "không tìm thấy trang" page_not_found: "không tìm thấy trang"
nav: nav:
play: "Các cấp độ" play: "Các cấp độ" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "Chỉnh sửa" editor: "Chỉnh sửa"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
slogan: "Học mã bằng chơi Games" slogan: "Học mã bằng chơi Games"
no_ie: "Codecombat không chạy trong Internet Explorer 9 hoặc cũ hơn. Xin lỗi!" no_ie: "Codecombat không chạy trong Internet Explorer 9 hoặc cũ hơn. Xin lỗi!"
no_mobile: "Codecombat không được thiết kế cho các thiết bị di động và có thể không hoạt động được!" no_mobile: "Codecombat không được thiết kế cho các thiết bị di động và có thể không hoạt động được!"
play: "Chơi" play: "Chơi" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "Liên hệ CodeCombat" contact_us: "Liên hệ CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
delay_5_sec: "5 秒" delay_5_sec: "5 秒"
manual: "手动" manual: "手动"
fork: "派生" fork: "派生"
play: "开始" play: "开始" # When used as an action verb, like "Play next level"
retry: "重试" retry: "重试"
watch: "关注" watch: "关注"
unwatch: "取消关注" unwatch: "取消关注"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
page_not_found: "找不到网页" page_not_found: "找不到网页"
nav: nav:
play: "开始游戏" play: "开始游戏" # The top nav bar entry where players choose which levels to play
community: "社区" community: "社区"
editor: "编辑器" editor: "编辑器"
blog: "博客" blog: "博客"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
slogan: "通过游戏学习编程" slogan: "通过游戏学习编程"
no_ie: "抱歉! Internet Explorer 9 等旧式预览器无法使用本网站。" no_ie: "抱歉! Internet Explorer 9 等旧式预览器无法使用本网站。"
no_mobile: "CodeCombat 不是针对手机设备设计的,所以可能无法达到最好的体验!" no_mobile: "CodeCombat 不是针对手机设备设计的,所以可能无法达到最好的体验!"
play: "开始游戏" play: "开始游戏" # The big play button that just starts playing a level
old_browser: "噢, 你的浏览器太老了, 不能运行CodeCombat. 抱歉!" old_browser: "噢, 你的浏览器太老了, 不能运行CodeCombat. 抱歉!"
old_browser_suffix: "你可以继续重试下去,但八成不起作用,更新浏览器吧亲~" old_browser_suffix: "你可以继续重试下去,但八成不起作用,更新浏览器吧亲~"
campaign: "战役模式" campaign: "战役模式"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
spectate: "旁观他人的游戏" spectate: "旁观他人的游戏"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "联系我们" contact_us: "联系我们"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
tutorial_play_first: "先玩一次教程." tutorial_play_first: "先玩一次教程."
simple_ai: "简单电脑" simple_ai: "简单电脑"
warmup: "热身" warmup: "热身"
vs: "对决"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
delay_5_sec: "5 秒" delay_5_sec: "5 秒"
manual: "手動發動" manual: "手動發動"
fork: "Fork" fork: "Fork"
play: "播放" play: "播放" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
page_not_found: "找不到網頁" page_not_found: "找不到網頁"
nav: nav:
play: "開始遊戲" play: "開始遊戲" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "編輯" editor: "編輯"
blog: "官方部落格" blog: "官方部落格"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
slogan: "通過玩遊戲學習編程" slogan: "通過玩遊戲學習編程"
no_ie: "抱歉Internet Explorer 9 等舊的瀏覽器打不開此網站" no_ie: "抱歉Internet Explorer 9 等舊的瀏覽器打不開此網站"
no_mobile: "CodeCombat 不是針對手機設備設計的,所以可能會出問題!" no_mobile: "CodeCombat 不是針對手機設備設計的,所以可能會出問題!"
play: "開始遊戲" play: "開始遊戲" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "聯繫我們" contact_us: "聯繫我們"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# delay_5_sec: "5 seconds" # delay_5_sec: "5 seconds"
# manual: "Manual" # manual: "Manual"
# fork: "Fork" # fork: "Fork"
# play: "Play" # play: "Play" # When used as an action verb, like "Play next level"
# retry: "Retry" # retry: "Retry"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# page_not_found: "Page not found" # page_not_found: "Page not found"
# nav: # nav:
# play: "Levels" # play: "Levels" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
# editor: "Editor" # editor: "Editor"
# blog: "Blog" # blog: "Blog"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# slogan: "Learn to Code by Playing a Game" # slogan: "Learn to Code by Playing a Game"
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!" # no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!" # no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
# play: "Play" # play: "Play" # The big play button that just starts playing a level
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!" # old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
# old_browser_suffix: "You can try anyway, but it probably won't work." # old_browser_suffix: "You can try anyway, but it probably won't work."
# campaign: "Campaign" # campaign: "Campaign"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# spectate: "Spectate" # spectate: "Spectate"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
# contact: # contact:
# contact_us: "Contact CodeCombat" # contact_us: "Contact CodeCombat"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# tutorial_play_first: "Play the Tutorial first." # tutorial_play_first: "Play the Tutorial first."
# simple_ai: "Simple AI" # simple_ai: "Simple AI"
# warmup: "Warmup" # warmup: "Warmup"
# vs: "VS"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -13,7 +13,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
delay_5_sec: "5 秒" delay_5_sec: "5 秒"
manual: "手動" manual: "手動"
fork: "派生" fork: "派生"
play: "開來" play: "開來" # When used as an action verb, like "Play next level"
retry: "轉試" retry: "轉試"
# watch: "Watch" # watch: "Watch"
# unwatch: "Unwatch" # unwatch: "Unwatch"
@ -43,7 +43,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
page_not_found: "頁面尋弗着" page_not_found: "頁面尋弗着"
nav: nav:
play: "遊戲開來" play: "遊戲開來" # The top nav bar entry where players choose which levels to play
# community: "Community" # community: "Community"
editor: "編寫器" editor: "編寫器"
blog: "部落格" blog: "部落格"
@ -97,7 +97,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
slogan: "打遊戲來學編程" slogan: "打遊戲來學編程"
no_ie: "對弗住!箇網站叻 Internet Explorer 9 箇粒老個瀏覽器嘸處用。" no_ie: "對弗住!箇網站叻 Internet Explorer 9 箇粒老個瀏覽器嘸處用。"
no_mobile: "CodeCombat 勿是照手機設備設計個,怪得嘸數达弗到頂讚個享受!" no_mobile: "CodeCombat 勿是照手機設備設計個,怪得嘸數达弗到頂讚個享受!"
play: "遊戲開打" play: "遊戲開打" # The big play button that just starts playing a level
old_browser: "啊耶, 爾個瀏覽器忒老哉, 嘸處運行 CodeCombat。對弗住險" old_browser: "啊耶, 爾個瀏覽器忒老哉, 嘸處運行 CodeCombat。對弗住險"
old_browser_suffix: "爾試叻好試多遍,不過嘸大用場個。" old_browser_suffix: "爾試叻好試多遍,不過嘸大用場個。"
campaign: "打仗模式" campaign: "打仗模式"
@ -131,6 +131,22 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
spectate: "望別人攪遊戲" spectate: "望別人攪遊戲"
# players: "players" # players: "players"
# hours_played: "hours played" # hours_played: "hours played"
# items: "Items"
# heroes: "Heroes"
# achievements: "Achievements"
# account: "Account"
# settings: "Settings"
# next: "Next"
# previous: "Previous"
# choose_inventory: "Equip Items"
# items:
# armor: "Armor"
# hands: "Hands"
# accessories: "Accessories"
# books: "Books"
# minions: "Minions"
# misc: "Misc"
contact: contact:
contact_us: "搭我裏聯繫" contact_us: "搭我裏聯繫"
@ -452,10 +468,16 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
# multiplayer_caption: "Play with friends!" # multiplayer_caption: "Play with friends!"
# inventory: # inventory:
# temp: "Temp" # choose_inventory: "Equip Items"
# choose_hero: # choose_hero:
# temp: "Temp" # choose_hero: "Choose Your Hero"
# programming_language: "Programming Language"
# programming_language_description: "Which programming language do you want to use?"
# status: "Status"
# weapons: "Weapons"
# health: "Health"
# speed: "Speed"
# save_load: # save_load:
# granularity_saved_games: "Saved" # granularity_saved_games: "Saved"
@ -878,7 +900,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
tutorial_play_first: "先教程攪遍。" tutorial_play_first: "先教程攪遍。"
simple_ai: "省力腦子" simple_ai: "省力腦子"
warmup: "熱身" warmup: "熱身"
vs: "對打"
# friends_playing: "Friends Playing" # friends_playing: "Friends Playing"
# log_in_for_friends: "Log in to play with your friends!" # log_in_for_friends: "Log in to play with your friends!"
# social_connect_blurb: "Connect and play against your friends!" # social_connect_blurb: "Connect and play against your friends!"
@ -967,6 +988,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
# user_remarks: "User Remarks" # user_remarks: "User Remarks"
# versions: "Versions" # versions: "Versions"
# items: "Items" # items: "Items"
# heroes: "Heroes"
# wizard: "Wizard" # wizard: "Wizard"
# achievement: "Achievement" # achievement: "Achievement"
# clas: "CLAs" # clas: "CLAs"

View file

@ -69,13 +69,13 @@ module.exports = class Level extends CocoModel
heroThangType = session?.get('heroConfig')?.thangType heroThangType = session?.get('heroConfig')?.thangType
levelThang.thangType = heroThangType if heroThangType levelThang.thangType = heroThangType if heroThangType
thangType = supermodel.getModelByOriginal(ThangType, levelThang.thangType) thangType = supermodel.getModelByOriginal(ThangType, levelThang.thangType, (m) -> m.get('components')?)
configs = {} configs = {}
for thangComponent in levelThang.components for thangComponent in levelThang.components
configs[thangComponent.original] = thangComponent configs[thangComponent.original] = thangComponent
for defaultThangComponent in thangType.get('components') or [] for defaultThangComponent in thangType?.get('components') or []
if levelThangComponent = configs[defaultThangComponent.original] if levelThangComponent = configs[defaultThangComponent.original]
# Take the ThangType default Components and merge level-specific Component config into it # Take the ThangType default Components and merge level-specific Component config into it
copy = $.extend true, {}, defaultThangComponent.config copy = $.extend true, {}, defaultThangComponent.config
@ -108,7 +108,6 @@ module.exports = class Level extends CocoModel
for original, placeholderComponent of placeholders when not placeholdersUsed[original] for original, placeholderComponent of placeholders when not placeholdersUsed[original]
levelThang.components.push placeholderComponent levelThang.components.push placeholderComponent
sortSystems: (levelSystems, systemModels) -> sortSystems: (levelSystems, systemModels) ->
[sorted, originalsSeen] = [[], {}] [sorted, originalsSeen] = [[], {}]
visit = (system) -> visit = (system) ->

View file

@ -84,9 +84,9 @@ module.exports = class SuperModel extends Backbone.Model
modelURL = modelURL() if _.isFunction(modelURL) modelURL = modelURL() if _.isFunction(modelURL)
return @models[modelURL] or null return @models[modelURL] or null
getModelByOriginal: (ModelClass, original) -> getModelByOriginal: (ModelClass, original, filter=null) ->
_.find @models, (m) -> _.find @models, (m) ->
m.get('original') is original and m.constructor.className is ModelClass.className m.get('original') is original and m.constructor.className is ModelClass.className and (not filter or filter(m))
getModelByOriginalAndMajorVersion: (ModelClass, original, majorVersion=0) -> getModelByOriginalAndMajorVersion: (ModelClass, original, majorVersion=0) ->
_.find @models, (m) -> _.find @models, (m) ->

View file

@ -7,6 +7,16 @@ buildQueue = []
module.exports = class ThangType extends CocoModel module.exports = class ThangType extends CocoModel
@className: 'ThangType' @className: 'ThangType'
@schema: require 'schemas/models/thang_type' @schema: require 'schemas/models/thang_type'
@heroes:
captain: '529ec584c423d4e83b000014'
knight: '529ffbf1cf1818f2be000001'
librarian: '52fbf74b7e01835453bd8d8e'
equestrian: '52e95b4222efc8e70900175d'
'potion-master': '52e9adf7427172ae56002172'
thoktar: '52a00542cf1818f2be000006'
'robot-walker': '5301696ad82649ec2c0c9b0d'
'michael-heasell': '53e126a4e06b897606d38bef'
'ian-elliott': '53e12be0d042f23505c3023b'
urlRoot: '/db/thang.type' urlRoot: '/db/thang.type'
building: {} building: {}

View file

@ -59,12 +59,7 @@ _.extend LevelSessionSchema.properties,
screenshot: screenshot:
type: 'string' type: 'string'
heroConfig: c.object {description: 'Which hero the player is using, equipped with what inventory.'}, heroConfig: c.HeroConfigSchema
inventory:
type: 'object'
description: 'The inventory of the hero: slots to item ThangTypes.'
additionalProperties: c.objectId(description: 'An item ThangType.')
thangType: c.objectId(links: [{rel: 'db', href: '/db/thang.type/{($)}/version'}], title: 'Thang Type', description: 'The ThangType of the hero.', format: 'thang-type')
state: c.object {}, state: c.object {},
complete: complete:

View file

@ -64,6 +64,7 @@ _.extend UserSchema.properties,
music: { type: 'boolean' } music: { type: 'boolean' }
autocastDelay: { type: 'integer' } autocastDelay: { type: 'integer' }
lastLevel: { type: 'string' } lastLevel: { type: 'string' }
heroConfig: c.HeroConfigSchema
emailSubscriptions: c.array {uniqueItems: true}, {'enum': emailSubscriptions} emailSubscriptions: c.array {uniqueItems: true}, {'enum': emailSubscriptions}
emails: c.object {title: 'Email Settings', default: generalNews: {enabled: true}, anyNotes: {enabled: true}, recruitNotes: {enabled: true} }, emails: c.object {title: 'Email Settings', default: generalNews: {enabled: true}, anyNotes: {enabled: true}, recruitNotes: {enabled: true} },

View file

@ -202,3 +202,10 @@ me.activity = me.object {description: 'Stats on an activity'},
count: {type: 'integer', minimum: 0} count: {type: 'integer', minimum: 0}
me.terrainString = me.shortString {enum: ['Grass', 'Dungeon', 'Indoor'], title: 'Terrain', description: 'Which terrain type this is.'} me.terrainString = me.shortString {enum: ['Grass', 'Dungeon', 'Indoor'], title: 'Terrain', description: 'Which terrain type this is.'}
me.HeroConfigSchema = me.object {description: 'Which hero the player is using, equipped with what inventory.'},
inventory:
type: 'object'
description: 'The inventory of the hero: slots to item ThangTypes.'
additionalProperties: me.objectId(description: 'An item ThangType.')
thangType: me.objectId(links: [{rel: 'db', href: '/db/thang.type/{($)}/version'}], title: 'Thang Type', description: 'The ThangType of the hero.', format: 'thang-type')

View file

@ -77,6 +77,16 @@ module.exports =
'level:next-game-pressed': c.object {} 'level:next-game-pressed': c.object {}
'level:loaded': c.object {required: ['level']},
level: {type: 'object'}
team: {type: ['string', 'null', 'undefined']}
'level:session-loaded': c.object {required: ['level', 'session']},
level: {type: 'object'}
session: {type: 'object'}
'level:loading-view-unveiling': c.object {}
'level:loading-view-unveiled': c.object {required: ['view']}, 'level:loading-view-unveiled': c.object {required: ['view']},
view: {type: 'object'} view: {type: 'object'}
@ -155,4 +165,7 @@ module.exports =
'level:edit-wizard-settings': c.object {} 'level:edit-wizard-settings': c.object {}
'level:inventory-changed': c.object {} 'level:hero-config-changed': c.object {}
'level:hero-selection-updated': c.object {required: ['hero']},
hero: {type: 'object'}

View file

@ -121,9 +121,6 @@ module.exports = # /app/lib/surface
'sprite:dragged': spriteMouseEventSchema 'sprite:dragged': spriteMouseEventSchema
'sprite:mouse-up': spriteMouseEventSchema 'sprite:mouse-up': spriteMouseEventSchema
'surface:world-set-up': c.object {},
world: {type: 'object'}
'surface:frame-changed': c.object {required: ['frame', 'world', 'progress']}, 'surface:frame-changed': c.object {required: ['frame', 'world', 'progress']},
frame: {type: 'number', minimum: 0} frame: {type: 'number', minimum: 0}
world: {type: 'object'} world: {type: 'object'}

View file

@ -244,9 +244,10 @@ $user-achievements-scale: 0.8
position: fixed position: fixed
right: 0px right: 0px
bottom: 0px bottom: 0px
z-index: 9001
cursor: pointer
.popup .popup
cursor: default
left: 600px left: 600px
.user-level .user-level

View file

@ -132,6 +132,9 @@ a
.close .close
font-size: 28px font-size: 28px
padding: 15px
margin-right: -15px
margin-top: -15px
@include opacity(0.60) @include opacity(0.60)
&:hover &:hover
@include opacity(1) @include opacity(1)
@ -237,6 +240,7 @@ table.table
.header-font .header-font
font-family: $headings-font-family font-family: $headings-font-family
letter-spacing: 2px
body[lang='ru'], body[lang|='zh'], body[lang='pl'], body[lang='tr'], body[lang='cs'], body[lang='el'], body[lang='ro'], body[lang='vi'], body[lang='th'], body[lang='ko'], body[lang='sk'], body[lang='sl'], body[lang='bg'], body[lang='he'], body[lang='lt'], body[lang='sr'], body[lang='uk'], body[lang='hi'], body[lang='ur'], body[lang='hu'] body[lang='ru'], body[lang|='zh'], body[lang='pl'], body[lang='tr'], body[lang='cs'], body[lang='el'], body[lang='ro'], body[lang='vi'], body[lang='th'], body[lang='ko'], body[lang='sk'], body[lang='sl'], body[lang='bg'], body[lang='he'], body[lang='lt'], body[lang='sr'], body[lang='uk'], body[lang='hi'], body[lang='ur'], body[lang='hu']
h1, h2, h3, h4, h5, h6 h1, h2, h3, h4, h5, h6

View file

@ -29,7 +29,7 @@
z-index: 10 z-index: 10
bottom: -35px bottom: -35px
.treema-add-child > .treema-children > .treema-add-child
display: none display: none
.treema-children .treema-row * .treema-children .treema-row *

View file

@ -1,3 +1,91 @@
@import "app/styles/mixins"
@import "app/styles/bootstrap/variables"
$maxHeroPortraitSize: 100px
$minHeroPortraitSize: 50px
$heroCanvasHeight: 330px
#choose-hero-view #choose-hero-view
h3
text-decoration: underline #hero-carousel
margin: 0 auto 20px auto
.carousel-indicator-container
height: $maxHeroPortraitSize
text-align: center
width: 100%
margin-bottom: 10px
margin-top: 10px
position: relative
z-index: 1
.carousel-indicators
position: static
height: $maxHeroPortraitSize
width: 100%
margin-left: 0
background-repeat: no-repeat
.hero-indicator
width: $maxHeroPortraitSize
height: $maxHeroPortraitSize
margin: 0px 3px
background-size: contain
border: 2px solid black
border-radius: 2px
position: relative
&.initialized
@include transition(0.5s ease)
&.active
border-color: gold
&.locked
@include opacity(0.6)
.hero-item
&.locked
@include opacity(0.6)
canvas, .hero-stats
width: 45%
height: $heroCanvasHeight
float: left
canvas
margin-left: 5%
.hero-stats
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6)
font-size: 24px
.carousel-control.left
border-top-left-radius: 10px
border-bottom-left-radius: 10px
.carousel-control.right
border-top-right-radius: 10px
border-bottom-right-radius: 10px
.carousel-control
height: 75%
top: 25%
width: 10%
.select-group
display: block
min-height: 20px
margin-top: 10px
margin-bottom: 10px
padding-left: 20px
vertical-align: middle
label
margin-right: 20px
margin-bottom: 0
select
font-size: 18px

View file

@ -1,12 +1,34 @@
@import "app/styles/mixins"
#game-menu-modal #game-menu-modal
.close .close
// We have to style this indendently because it's not in the header (we don't have a header).
position: absolute position: absolute
top: 10px top: -5px
right: 20px right: 0
padding: 15px
font-size: 28px
background-color: transparent
z-index: 1
@include opacity(0.60)
&:hover
@include opacity(1)
// Make room for an overlaid close button in the lower right (we don't have a footer).
.overlaid-close-button
position: absolute
right: 35px
bottom: 20px
#inventory-view #available-equipment
bottom: 60px
.modal-dialog .modal-dialog
margin-top: 0 margin-top: 0
width: 963px
.nav-tabs .nav-tabs
h2 h2
@ -58,3 +80,4 @@
&, &:hover, &:focus &, &:hover, &:focus
border-color: #ddd transparent #ddd #ddd border-color: #ddd transparent #ddd #ddd
*border-right-color: #fff *border-right-color: #fff

View file

@ -1,26 +1,127 @@
$selected-area-height: 150px
@import "../bootstrap/mixins" @import "../bootstrap/mixins"
$totalWidth: 706px - 2 * 20px
// We get 666px to play with from our parent modals.
$inventoryHeight: 530px
$equippedWidth: 450px
$itemSlotMargin: 5px
$itemSlotSize: ($equippedWidth - 6 * 2 * $itemSlotMargin) / 6
$itemSlotSizeWithMargin: $itemSlotSize + 2 * $itemSlotMargin
$heroContainerBottomMargin: 10px
$heroContainerWidth: 4 * $itemSlotSizeWithMargin
$heroContainerHeight: $inventoryHeight - 2 * $itemSlotSizeWithMargin - $heroContainerBottomMargin
$selectedAreaHeight: 150px
$stashMargin: 20px
$stashWidth: $totalWidth - $equippedWidth - $stashMargin
#inventory-view #inventory-view
position: relative position: relative
height: 600px height: $inventoryHeight
+user-select(none) +user-select(none)
h3 h3
margin: 0 margin: 0
.draggable-item
width: $itemSlotSize
height: $itemSlotSize
#equipped #equipped
width: 75% width: $equippedWidth
position: absolute position: absolute
left: 0 left: 0
top: 0 top: 0
bottom: $selected-area-height + 10 bottom: 0
//bottom: $selectedAreaHeight + 10
right: 0 right: 0
overflow: scroll overflow: scroll
.item-slot-row
//background-color: rgba(35, 112, 124, 0.5)
height: $itemSlotSizeWithMargin
clear: both
margin: 0px auto
&.row-4
width: 4 * $itemSlotSizeWithMargin
.item-slot-column
//background-color: rgba(112, 124, 35, 0.5)
width: $itemSlotSizeWithMargin
height: 4 * $itemSlotSizeWithMargin
float: left
margin-top: 30px
.item-slot
width: $itemSlotSize
height: $itemSlotSize
margin: $itemSlotMargin
background-color: white
float: left
position: relative
cursor: pointer
&.selected
.placeholder, .item-container .item-view img
border-color: #28f
@include box-shadow(0 0 10px #28f)
&.droppable
outline: 2px solid blue
&.droppable-hover
outline: 4px solid blue
.placeholder
width: 100%
height: 100%
background-size: cover
border: 2px solid #888
@include opacity(0.75)
&[data-slot="waist"], &[data-slot="pet"], &[data-slot="minion"], &[data-slot="misc-1"]
// My spooging of the other placeholders had them dimmed; these didn't.
.placeholder
@include opacity(0.35)
border-color: black
&.selected
&[data-slot="waist"], &[data-slot="pet"], &[data-slot="minion"], &[data-slot="misc-1"]
.placeholder
border-color: #28f
.item-container
position: absolute
left: 0
top: 0
.item-view
img
width: $itemSlotSize
height: $itemSlotSize
border: 2px solid black
background-color: white
.item-info
display: none
.item-slot.disabled .item-slot.disabled
opacity: 0.5 opacity: 0.5
.hero-container
//background-color: rgba(31, 0, 200, 0.25)
float: left
position: relative
.equipped-hero-canvas
width: $heroContainerWidth
height: $heroContainerHeight
hr.slot-row-separator
clear: both
margin-top: 0
margin-bottom: $heroContainerBottomMargin / 2 - 1
border-top: 1px solid #aaa
.panel .panel
text-align: center text-align: center
width: 31.3% width: 31.3%
@ -41,64 +142,78 @@ $selected-area-height: 150px
font-size: 12px font-size: 12px
#available-equipment #available-equipment
width: 25% width: $stashWidth
position: absolute position: absolute
right: 0 right: 0
top: 0 top: 0
bottom: $selected-area-height + 10 bottom: 0
overflow: scroll overflow: scroll
border: 2px solid #ccc
padding: 4px
background-color: white
h3 .list-group-item
margin-bottom: 5px padding: 8px 0
img
width: 50px
height: 50px
margin-right: 5px
.list-group-item.active &.active
background-color: #e0f0f5 background-color: #e0f0f5
&.equipped
.list-group-item.equipped
display: none display: none
.item-view .item-view
cursor: pointer cursor: pointer
#selected-items #selected-items
$selectedItemsContainerMargin: 20px
$selectedItemMargin: 10px
$selectedItemImageSize: 75px
$swapItemHeight: 40px
$swapItemWidth: 60px
position: absolute position: absolute
height: $selected-area-height top: $selectedItemsContainerMargin
left: 0 right: $selectedItemsContainerMargin
right: 0 bottom: $selectedItemsContainerMargin + $heroContainerBottomMargin
bottom: 0 left: $selectedItemsContainerMargin
text-align: center text-align: center
#selected-equipped-item, #selected-available-item #selected-equipped-item, #selected-available-item
text-align: left text-align: left
position: absolute
bottom: 0
top: 0
overflow: scroll overflow: scroll
padding: 10px margin: 0
height: 100% height: 48.4%
width: 49% height: -webkit-calc(50% - $selectedItemMargin / 2)
display: flex height: calc(50% - $selectedItemMargin / 2)
align-items: center width: 100%
padding: 10px 5px 10px 10px
img img
width: 100px margin-top: 21px
height: 100px width: $selectedItemImageSize
height: $selectedItemImageSize
.item-info .item-info
margin-left: 110px margin-left: $selectedItemImageSize + 10px
#selected-equipped-item #selected-equipped-item
left: 0 margin-bottom: $selectedItemMargin
padding-bottom: 20px
#selected-available-item #selected-available-item
right: 0 padding-top: 15px
$swap-item-height: 40px
#swap-button #swap-button
position: relative position: absolute
top: ($selected-area-height / 2) - ($swap-item-height / 2) top: 50%
height: $swap-item-height left: 50%
margin-top: -($swapItemHeight / 2)
margin-left: -($swapItemWidth / 2)
width: $swapItemWidth
height: $swapItemHeight
font-size: 24px font-size: 24px
line-height: 24px line-height: 24px
display: inline-block display: inline-block

View file

@ -38,3 +38,17 @@
background-image: none background-image: none
@include opacity(0.65) @include opacity(0.65)
@include box-shadow(none) @include box-shadow(none)
// keyframes mixin from https://gist.github.com/ericam/1607696
=keyframes($name)
@-webkit-keyframes #{$name}
@content
@-moz-keyframes #{$name}
@content
@-ms-keyframes #{$name}
@content
@-o-keyframes #{$name}
@content
@keyframes #{$name}
@content

View file

@ -25,6 +25,7 @@
left: 50% left: 50%
$WIDTH: 1000px $WIDTH: 1000px
width: $WIDTH width: $WIDTH
min-height: 60px
margin-left: (-$WIDTH / 2) margin-left: (-$WIDTH / 2)
z-index: 100 z-index: 100
background-color: rgba(220, 255, 230, 0.6) background-color: rgba(220, 255, 230, 0.6)
@ -46,15 +47,34 @@
top: 0px top: 0px
opacity: 0.6 opacity: 0.6
width: 96% width: 96%
height: 40px
margin: 10px auto 0 margin: 10px auto 0
.progress
height: 100%
.progress-bar .progress-bar
width: 1% width: 1%
height: 100%
transition-duration: 1.2s transition-duration: 1.2s
#tip-wrapper #tip-wrapper
position: relative position: relative
z-index: 2 z-index: 2
top: 10px
.level-loading-goals
margin: 30px auto 10px
width: 400px
.panel-heading
font-size: 24px
.list-group-item
font-size: 20px
.start-level-button
font-size: 40px
.left-wing, .right-wing .left-wing, .right-wing
width: 100% width: 100%

View file

@ -1,17 +1,5 @@
@import "../../../bootstrap/mixins" @import "app/styles/bootstrap/mixins"
@import "app/styles/mixins"
// keyframes mixin from https://gist.github.com/ericam/1607696
=keyframes($name)
@-webkit-keyframes #{$name}
@content
@-moz-keyframes #{$name}
@content
@-ms-keyframes #{$name}
@content
@-o-keyframes #{$name}
@content
@keyframes #{$name}
@content
+keyframes(castablePulse) +keyframes(castablePulse)
from from

View file

@ -0,0 +1,12 @@
#play-level-modal
.modal-dialog
margin: 30px auto 0 auto
padding: 0
width: 726px
.background-wrapper
height: 100%
.modal-body
width: 726px - 20px
height: 550px

View file

@ -1,5 +1,6 @@
@import "app/styles/bootstrap/mixins" @import "app/styles/bootstrap/mixins"
@import "app/styles/bootstrap/variables" @import "app/styles/bootstrap/variables"
@import "app/styles/mixins"
$forestMapWidth: 2500 $forestMapWidth: 2500
$forestMapHeight: 1536 $forestMapHeight: 1536
@ -12,7 +13,18 @@ $levelDotShadowWidth: 0.8 * $levelDotWidth
$levelDotShadowHeight: 0.8 * $levelDotHeight $levelDotShadowHeight: 0.8 * $levelDotHeight
$levelClickRadius: 40px $levelClickRadius: 40px
$gameControlSize: 80px $gameControlSize: 80px
$gameControlMargin: 40px $gameControlMargin: 30px
+keyframes(levelStartedPulse)
from
@include box-shadow(0px 0px 4px #333)
margin-bottom: -$levelDotHeight / 3 + $levelDotZ
50%
@include box-shadow(0px 0px 22px skyblue)
margin-bottom: -$levelDotHeight / 3 + ($levelDotHoverZ + $levelDotZ) / 2
to
@include box-shadow(0px 0px 4px #333)
margin-bottom: -$levelDotHeight / 3 + $levelDotZ
#world-map-view #world-map-view
width: 100% width: 100%
@ -20,7 +32,6 @@ $gameControlMargin: 40px
background-color: $forestMapSeaBackground background-color: $forestMapSeaBackground
.map .map
//background: white url("/images/pages/play/map_forest.jpg") no-repeat center center
position: relative position: relative
.map-background .map-background
@ -44,12 +55,26 @@ $gameControlMargin: 40px
&.disabled &.disabled
opacity: 0.7 opacity: 0.7
&.first &.next
width: 2 * $levelDotWidth width: 2 * $levelDotWidth
height: 2 * $levelDotHeight height: 2 * $levelDotHeight
margin-left: -0.5 * 2 * $levelDotWidth margin-left: -0.5 * 2 * $levelDotWidth
margin-bottom: -2 * $levelDotHeight / 3 + 2 * $levelDotZ margin-bottom: -2 * $levelDotHeight / 3 + 2 * $levelDotZ
&.started, &.next
border: 3px solid lightgreen
@include box-shadow(0px 0px 35px skyblue)
// Would be cool, but kills performance, since we have to re-render all the time.
//&:not(:hover)
// -webkit-animation-name: levelStartedPulse
// -webkit-animation-duration: 3s
// -webkit-animation-iteration-count: infinite
&.complete
border: 3px solid gold
@include box-shadow(0px 0px 35px skyblue)
.level-shadow .level-shadow
z-index: 1 z-index: 1
width: $levelDotShadowWidth width: $levelDotShadowWidth
@ -57,10 +82,10 @@ $gameControlMargin: 40px
margin-left: -0.5 * $levelDotShadowWidth margin-left: -0.5 * $levelDotShadowWidth
margin-bottom: -$levelDotShadowHeight / 3 margin-bottom: -$levelDotShadowHeight / 3
background-color: black background-color: black
box-shadow: 0px 0px 10px black @include box-shadow(0px 0px 10px black)
@include opacity(0.75) @include opacity(0.75)
&.first &.next
width: 2 * $levelDotShadowWidth width: 2 * $levelDotShadowWidth
height: 2 * $levelDotShadowHeight height: 2 * $levelDotShadowHeight
margin-left: -0.5 * 2 * $levelDotShadowWidth margin-left: -0.5 * 2 * $levelDotShadowWidth
@ -68,6 +93,10 @@ $gameControlMargin: 40px
.level:hover .level:hover
margin-bottom: -$levelDotHeight / 3 + $levelDotHoverZ margin-bottom: -$levelDotHeight / 3 + $levelDotHoverZ
@include box-shadow(0px 0px 35px skyblue)
&.next
margin-bottom: -2 * $levelDotHeight / 3 + 2 * $levelDotHoverZ
.level .level
a a
@ -77,7 +106,7 @@ $gameControlMargin: 40px
margin-top: -0.5 * $levelClickRadius margin-top: -0.5 * $levelClickRadius
border-radius: $levelClickRadius border-radius: $levelClickRadius
&.first a &.next a
padding: 2 * $levelClickRadius padding: 2 * $levelClickRadius
margin-left: 2 * -0.5 * $levelClickRadius margin-left: 2 * -0.5 * $levelClickRadius
margin-top: 2 * -0.5 * $levelClickRadius margin-top: 2 * -0.5 * $levelClickRadius
@ -122,6 +151,7 @@ $gameControlMargin: 40px
position: absolute position: absolute
right: 1% right: 1%
bottom: 1% bottom: 1%
z-index: 3
button.btn button.btn
&:not(:first-child) &:not(:first-child)
@ -131,15 +161,15 @@ $gameControlMargin: 40px
background: url(/images/pages/play/menu_icons.png) no-repeat background: url(/images/pages/play/menu_icons.png) no-repeat
background-size: cover background-size: cover
@include transition(0.5s ease) @include transition(0.5s ease)
box-shadow: 0 0 0 #bbf @include box-shadow(2px 2px 4px black)
border: 0 border: 0
border-radius: 12px border-radius: 12px
&:hover &:hover
box-shadow: 0 0 12px #bbf @include box-shadow(0 0 12px #bbf)
&:active &:active
box-shadow: 0 0 20px white @include box-shadow(0 0 20px white)
&.heroes &.heroes
background-position-x: -1 * $gameControlSize background-position-x: -1 * $gameControlSize
@ -149,3 +179,6 @@ $gameControlMargin: 40px
background-position-x: -3 * $gameControlSize background-position-x: -3 * $gameControlSize
&.settings &.settings
background-position-x: -4 * $gameControlSize background-position-x: -4 * $gameControlSize
.tooltip
font-size: 24px

View file

@ -192,7 +192,7 @@ block content
span= session.levelName span= session.levelName
if session.team if session.team
span.spl - #{session.team} span.spl - #{session.team}
if session.codeLanguage != 'javascript' if session.codeLanguage && session.codeLanguage != 'javascript'
span.spl - #{{coffeescript: 'CoffeeScript', python: 'Python', lua: 'Lua', io: 'Io', clojure: 'Clojure'}[session.codeLanguage]} span.spl - #{{coffeescript: 'CoffeeScript', python: 'Python', lua: 'Lua', io: 'Io', clojure: 'Clojure'}[session.codeLanguage]}
if !editing && !sessions.length if !editing && !sessions.length
h3(data-i18n="account_profile.player_code") Player Code h3(data-i18n="account_profile.player_code") Player Code

View file

@ -43,17 +43,17 @@ block content
ul.nav.nav-pills ul.nav.nav-pills
li.active li.active
a(href="#featured-candidates", data-toggle="tab") a(href="#featured-candidates", data-toggle="tab")
span(data-i18n="employers.featured_developers") Featured Developers span.spr(data-i18n="employers.featured_developers") Featured Developers
| (#{featuredCandidates.length}) | (#{featuredCandidates.length})
if otherCandidates.length if otherCandidates.length
li li
a(href="#other-candidates", data-toggle="tab") a(href="#other-candidates", data-toggle="tab")
span(data-i18n="employers.other_developers") Other Developers span.spr(data-i18n="employers.other_developers") Other Developers
| (#{otherCandidates.length}) | (#{otherCandidates.length})
if me.isAdmin() && inactiveCandidates.length if me.isAdmin() && inactiveCandidates.length
li li
a(href="#inactive-candidates", data-toggle="tab") a(href="#inactive-candidates", data-toggle="tab")
span(data-i18n="employers.inactive_developers") Inactive Developers span.spr(data-i18n="employers.inactive_developers") Inactive Developers
| (#{inactiveCandidates.length}) | (#{inactiveCandidates.length})
div.tab-content div.tab-content
for area, tabIndex in [{id: "featured-candidates", candidates: featuredCandidates}, {id: "other-candidates", candidates: otherCandidates}, {id: "inactive-candidates", candidates: inactiveCandidates}] for area, tabIndex in [{id: "featured-candidates", candidates: featuredCandidates}, {id: "other-candidates", candidates: otherCandidates}, {id: "inactive-candidates", candidates: inactiveCandidates}]
@ -74,7 +74,7 @@ block content
th ✓? th ✓?
tbody tbody
for candidate, index in area.candidates for candidate, index in area.candidates
- var profile = candidate.get('jobProfile'); - var profile = candidate.get('jobProfile', true);
- var authorized = candidate.id; // If we have the id, then we are authorized. - var authorized = candidate.id; // If we have the id, then we are authorized.
- var profileAge = (new Date() - new Date(profile.updated)) / 86400 / 1000; - var profileAge = (new Date() - new Date(profile.updated)) / 86400 / 1000;
- var expired = profileAge > 2 * 30.4; - var expired = profileAge > 2 * 30.4;

Some files were not shown because too many files have changed in this diff Show more