Merge remote-tracking branch 'codecombat/master' into translation
This commit is contained in:
commit
a109786814
82 changed files with 987 additions and 375 deletions
app
lib
locale
ar.coffeebg.coffeeca.coffeecs.coffeeda.coffeede-AT.coffeede-CH.coffeede-DE.coffeeel.coffeeen-GB.coffeeen-US.coffeeen.coffeeeo.coffeees-419.coffeees-ES.coffeefa.coffeefi.coffeefr.coffeegl.coffeehe.coffeehi.coffeehu.coffeeid.coffeeit.coffeeja.coffeeko.coffeelt.coffeemk-MK.coffeems.coffeemy.coffeenb.coffeenl-BE.coffeenl-NL.coffeenn.coffeepl.coffeept-BR.coffeept-PT.coffeero.coffeeru.coffeesk.coffeesl.coffeesr.coffeesv.coffeeth.coffeetr.coffeeuk.coffeeur.coffeeuz.coffeevi.coffeezh-HANS.coffeezh-HANT.coffeezh-WUU-HANS.coffeezh-WUU-HANT.coffee
models
schemas/models
templates
views
core
editor
play
scripts/mongodb/queries
server
commons
levels/thangs
queues/scoring
users
test
|
@ -18,11 +18,12 @@ class SpriteExporter extends CocoClass
|
||||||
@colorConfig = options.colorConfig or {}
|
@colorConfig = options.colorConfig or {}
|
||||||
@resolutionFactor = options.resolutionFactor or 1
|
@resolutionFactor = options.resolutionFactor or 1
|
||||||
@actionNames = options.actionNames or (action.name for action in @thangType.getDefaultActions())
|
@actionNames = options.actionNames or (action.name for action in @thangType.getDefaultActions())
|
||||||
|
@spriteType = options.spriteType or @thangType.get('spriteType') or 'segmented'
|
||||||
super()
|
super()
|
||||||
|
|
||||||
build: (renderType) ->
|
build: ->
|
||||||
spriteSheetBuilder = new createjs.SpriteSheetBuilder()
|
spriteSheetBuilder = new createjs.SpriteSheetBuilder()
|
||||||
if (renderType or @thangType.get('spriteType') or 'segmented') is 'segmented'
|
if @spriteType is 'segmented'
|
||||||
@renderSegmentedThangType(spriteSheetBuilder)
|
@renderSegmentedThangType(spriteSheetBuilder)
|
||||||
else
|
else
|
||||||
@renderSingularThangType(spriteSheetBuilder)
|
@renderSingularThangType(spriteSheetBuilder)
|
||||||
|
@ -64,7 +65,7 @@ class SpriteExporter extends CocoClass
|
||||||
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
||||||
else
|
else
|
||||||
frames = _.sortBy(_.values(framesMap))
|
frames = _.sortBy(_.values(framesMap))
|
||||||
next = @nextForAction(action)
|
next = @thangType.nextForAction(action)
|
||||||
spriteSheetBuilder.addAnimation(action.name, frames, next)
|
spriteSheetBuilder.addAnimation(action.name, frames, next)
|
||||||
|
|
||||||
containerActions = []
|
containerActions = []
|
||||||
|
|
|
@ -148,10 +148,12 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
|
|
||||||
addLank: (lank) ->
|
addLank: (lank) ->
|
||||||
lank.options.resolutionFactor = @resolutionFactor
|
lank.options.resolutionFactor = @resolutionFactor
|
||||||
|
|
||||||
lank.layer = @
|
lank.layer = @
|
||||||
@listenTo(lank, 'action-needs-render', @onActionNeedsRender)
|
@listenTo(lank, 'action-needs-render', @onActionNeedsRender)
|
||||||
@lanks.push lank
|
@lanks.push lank
|
||||||
|
lank.thangType.initPrerenderedSpriteSheets()
|
||||||
|
prerenderedSpriteSheet = lank.thangType.getPrerenderedSpriteSheet(lank.options.colorConfig, @defaultSpriteType)
|
||||||
|
prerenderedSpriteSheet?.markToLoad()
|
||||||
@loadThangType(lank.thangType)
|
@loadThangType(lank.thangType)
|
||||||
@addDefaultActionsToRender(lank)
|
@addDefaultActionsToRender(lank)
|
||||||
@setSpriteToLank(lank)
|
@setSpriteToLank(lank)
|
||||||
|
@ -176,6 +178,11 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
thangType.loadRasterImage()
|
thangType.loadRasterImage()
|
||||||
@listenToOnce(thangType, 'raster-image-loaded', @somethingLoaded)
|
@listenToOnce(thangType, 'raster-image-loaded', @somethingLoaded)
|
||||||
@numThingsLoading++
|
@numThingsLoading++
|
||||||
|
else if prerenderedSpriteSheet = thangType.getPrerenderedSpriteSheetToLoad()
|
||||||
|
startedLoading = prerenderedSpriteSheet.loadImage()
|
||||||
|
return if not startedLoading
|
||||||
|
@listenToOnce(prerenderedSpriteSheet, 'image-loaded', -> @somethingLoaded(thangType))
|
||||||
|
@numThingsLoading++
|
||||||
|
|
||||||
somethingLoaded: (thangType) ->
|
somethingLoaded: (thangType) ->
|
||||||
@numThingsLoading--
|
@numThingsLoading--
|
||||||
|
@ -346,6 +353,9 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
#- Rendering containers for segmented thang types
|
#- Rendering containers for segmented thang types
|
||||||
|
|
||||||
renderSegmentedThangType: (thangType, colorConfig, actionNames, spriteSheetBuilder) ->
|
renderSegmentedThangType: (thangType, colorConfig, actionNames, spriteSheetBuilder) ->
|
||||||
|
prerenderedSpriteSheet = thangType.getPrerenderedSpriteSheet(colorConfig, 'segmented')
|
||||||
|
if prerenderedSpriteSheet and not prerenderedSpriteSheet.loadedImage
|
||||||
|
return
|
||||||
containersToRender = thangType.getContainersForActions(actionNames)
|
containersToRender = thangType.getContainersForActions(actionNames)
|
||||||
spriteBuilder = new SpriteBuilder(thangType, {colorConfig: colorConfig})
|
spriteBuilder = new SpriteBuilder(thangType, {colorConfig: colorConfig})
|
||||||
for containerGlobalName in containersToRender
|
for containerGlobalName in containersToRender
|
||||||
|
@ -354,6 +364,11 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
container = new createjs.Sprite(@spriteSheet)
|
container = new createjs.Sprite(@spriteSheet)
|
||||||
container.gotoAndStop(containerKey)
|
container.gotoAndStop(containerKey)
|
||||||
frame = spriteSheetBuilder.addFrame(container)
|
frame = spriteSheetBuilder.addFrame(container)
|
||||||
|
else if prerenderedSpriteSheet
|
||||||
|
container = new createjs.Sprite(prerenderedSpriteSheet.spriteSheet)
|
||||||
|
container.gotoAndStop(containerGlobalName)
|
||||||
|
scale = @resolutionFactor / (prerenderedSpriteSheet.get('resolutionFactor') or 1)
|
||||||
|
frame = spriteSheetBuilder.addFrame(container, null, scale)
|
||||||
else
|
else
|
||||||
container = spriteBuilder.buildContainerFromStore(containerGlobalName)
|
container = spriteBuilder.buildContainerFromStore(containerGlobalName)
|
||||||
frame = spriteSheetBuilder.addFrame(container, null, @resolutionFactor * (thangType.get('scale') or 1))
|
frame = spriteSheetBuilder.addFrame(container, null, @resolutionFactor * (thangType.get('scale') or 1))
|
||||||
|
@ -362,6 +377,17 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
#- Rendering sprite sheets for singular thang types
|
#- Rendering sprite sheets for singular thang types
|
||||||
|
|
||||||
renderSingularThangType: (thangType, colorConfig, actionNames, spriteSheetBuilder) ->
|
renderSingularThangType: (thangType, colorConfig, actionNames, spriteSheetBuilder) ->
|
||||||
|
prerenderedSpriteSheet = thangType.getPrerenderedSpriteSheet(colorConfig, 'singular')
|
||||||
|
prerenderedFramesMap = {}
|
||||||
|
if prerenderedSpriteSheet
|
||||||
|
if not prerenderedSpriteSheet.loadedImage
|
||||||
|
return
|
||||||
|
scale = @resolutionFactor / (prerenderedSpriteSheet.get('resolutionFactor') or 1)
|
||||||
|
for frame, i in prerenderedSpriteSheet.spriteSheet._frames
|
||||||
|
sprite = new createjs.Sprite(prerenderedSpriteSheet.spriteSheet)
|
||||||
|
sprite.gotoAndStop(i)
|
||||||
|
prerenderedFramesMap[i] = spriteSheetBuilder.addFrame(sprite, null, scale)
|
||||||
|
|
||||||
actionObjects = _.values(thangType.getActions())
|
actionObjects = _.values(thangType.getActions())
|
||||||
animationActions = []
|
animationActions = []
|
||||||
for a in actionObjects
|
for a in actionObjects
|
||||||
|
@ -387,10 +413,20 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
for key, index in actionKeys
|
for key, index in actionKeys
|
||||||
action = actions[index]
|
action = actions[index]
|
||||||
frames = (framesMap[f] for f in @spriteSheet.getAnimation(key).frames)
|
frames = (framesMap[f] for f in @spriteSheet.getAnimation(key).frames)
|
||||||
next = @nextForAction(action)
|
next = thangType.nextForAction(action)
|
||||||
spriteSheetBuilder.addAnimation(key, frames, next)
|
spriteSheetBuilder.addAnimation(key, frames, next)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
if prerenderedSpriteSheet
|
||||||
|
for action in actions
|
||||||
|
name = @renderGroupingKey(thangType, action.name, colorConfig)
|
||||||
|
prerenderedFrames = prerenderedSpriteSheet.get('animations')?[action.name]?.frames
|
||||||
|
continue if not prerenderedFrames
|
||||||
|
frames = (prerenderedFramesMap[frame] for frame in prerenderedFrames)
|
||||||
|
next = thangType.nextForAction(action)
|
||||||
|
spriteSheetBuilder.addAnimation(name, frames, next)
|
||||||
|
continue
|
||||||
|
|
||||||
mc = spriteBuilder.buildMovieClip(animationName, null, null, null, {'temp':0})
|
mc = spriteBuilder.buildMovieClip(animationName, null, null, null, {'temp':0})
|
||||||
|
|
||||||
if renderAll
|
if renderAll
|
||||||
|
@ -412,7 +448,7 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
||||||
else
|
else
|
||||||
frames = _.sortBy(_.values(framesMap))
|
frames = _.sortBy(_.values(framesMap))
|
||||||
next = @nextForAction(action)
|
next = thangType.nextForAction(action)
|
||||||
spriteSheetBuilder.addAnimation(name, frames, next)
|
spriteSheetBuilder.addAnimation(name, frames, next)
|
||||||
|
|
||||||
containerActions = []
|
containerActions = []
|
||||||
|
@ -423,6 +459,14 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
|
|
||||||
containerGroups = _.groupBy containerActions, (action) -> action.container
|
containerGroups = _.groupBy containerActions, (action) -> action.container
|
||||||
for containerName, actions of containerGroups
|
for containerName, actions of containerGroups
|
||||||
|
if prerenderedSpriteSheet
|
||||||
|
for action in actions
|
||||||
|
name = @renderGroupingKey(thangType, action.name, colorConfig)
|
||||||
|
prerenderedFrames = prerenderedSpriteSheet.get('animations')?[action.name]?.frames
|
||||||
|
continue if not prerenderedFrames
|
||||||
|
frame = prerenderedFramesMap[prerenderedFrames[0]]
|
||||||
|
spriteSheetBuilder.addAnimation(name, [frame], false)
|
||||||
|
continue
|
||||||
container = spriteBuilder.buildContainerFromStore(containerName)
|
container = spriteBuilder.buildContainerFromStore(containerName)
|
||||||
scale = actions[0].scale or thangType.get('scale') or 1
|
scale = actions[0].scale or thangType.get('scale') or 1
|
||||||
frame = spriteSheetBuilder.addFrame(container, null, scale * @resolutionFactor)
|
frame = spriteSheetBuilder.addFrame(container, null, scale * @resolutionFactor)
|
||||||
|
@ -430,12 +474,6 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
||||||
name = @renderGroupingKey(thangType, action.name, colorConfig)
|
name = @renderGroupingKey(thangType, action.name, colorConfig)
|
||||||
spriteSheetBuilder.addAnimation(name, [frame], false)
|
spriteSheetBuilder.addAnimation(name, [frame], false)
|
||||||
|
|
||||||
nextForAction: (action) ->
|
|
||||||
next = true
|
|
||||||
next = action.goesTo if action.goesTo
|
|
||||||
next = false if action.loops is false
|
|
||||||
return next
|
|
||||||
|
|
||||||
#- Rendering frames for raster thang types
|
#- Rendering frames for raster thang types
|
||||||
|
|
||||||
renderRasterThangType: (thangType, spriteSheetBuilder) ->
|
renderRasterThangType: (thangType, spriteSheetBuilder) ->
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
accepted: "مقبول"
|
accepted: "مقبول"
|
||||||
rejected: "مرفوض"
|
rejected: "مرفوض"
|
||||||
withdrawn: "متعادل"
|
withdrawn: "متعادل"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "المقدم"
|
submitter: "المقدم"
|
||||||
submitted: "تم التقديم"
|
submitted: "تم التقديم"
|
||||||
commit_msg: "حول رسالة"
|
commit_msg: "حول رسالة"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "انتهاء"
|
done: "انتهاء"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Home" # Not used any more, will be removed soon.
|
home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "مستوى" # Like "Level: Dungeons of Kithgard"
|
level: "مستوى" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "الغاء"
|
skip: "الغاء"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
||||||
no_recent_games: "لا يوجد لعب لعبت خلال الأسبوعين الماضيين."
|
no_recent_games: "لا يوجد لعب لعبت خلال الأسبوعين الماضيين."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
accepted: "Прието"
|
accepted: "Прието"
|
||||||
rejected: "Отказано"
|
rejected: "Отказано"
|
||||||
withdrawn: "Отменено"
|
withdrawn: "Отменено"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Изпращач"
|
submitter: "Изпращач"
|
||||||
submitted: "Изпратено"
|
submitted: "Изпратено"
|
||||||
commit_msg: "Съпровождащо съобщение"
|
commit_msg: "Съпровождащо съобщение"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "На главната" # Not used any more, will be removed soon.
|
home: "На главната" # Not used any more, will be removed soon.
|
||||||
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Прескочи"
|
skip: "Прескочи"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
tip_free_your_mind: "Трябва да им позволиш да си отидат Нео. Страхът, съмнението и липсата на вяра. Освободи съзнанието си. - Морфеус"
|
tip_free_your_mind: "Трябва да им позволиш да си отидат Нео. Страхът, съмнението и липсата на вяра. Освободи съзнанието си. - Морфеус"
|
||||||
tip_strong_opponents: "Дори най-силният противник си има слабости. Винаги. - Itachi Uchiha"
|
tip_strong_opponents: "Дори най-силният противник си има слабости. Винаги. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Преди да почнеш с програмирането, винаги започни с планиране на хартия."
|
tip_paper_and_pen: "Преди да почнеш с програмирането, винаги започни с планиране на хартия."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Инвентар"
|
inventory_tab: "Инвентар"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
comparison_blurb: "Изостри уменията си в CodeCombat с абонамент!"
|
comparison_blurb: "Изостри уменията си в CodeCombat с абонамент!"
|
||||||
feature1: "110+ основни нива в 4 свята"
|
feature1: "110+ основни нива в 4 свята"
|
||||||
feature2: "10 силни <strong>нови герои</strong> с уникални умения!"
|
feature2: "10 силни <strong>нови герои</strong> с уникални умения!"
|
||||||
feature3: "70+ бонус нива"
|
feature3: "70+ бонус нива" # {change}
|
||||||
feature4: "<strong>3500 скъпоценни камъни бонус</strong> всеки месец!"
|
feature4: "<strong>3500 скъпоценни камъни бонус</strong> всеки месец!"
|
||||||
feature5: "Видео уроци"
|
feature5: "Видео уроци"
|
||||||
feature6: "Премиум email поддръжка"
|
feature6: "Премиум email поддръжка"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
accepted: "Acceptat"
|
accepted: "Acceptat"
|
||||||
rejected: "Rebutjat"
|
rejected: "Rebutjat"
|
||||||
withdrawn: "Retirat"
|
withdrawn: "Retirat"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Remitent"
|
submitter: "Remitent"
|
||||||
submitted: "Presentat"
|
submitted: "Presentat"
|
||||||
commit_msg: "nissatge de Commir"
|
commit_msg: "nissatge de Commir"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fet"
|
done: "Fet"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Inici" # Not used any more, will be removed soon.
|
home: "Inici" # Not used any more, will be removed soon.
|
||||||
level: "Nivell" # Like "Level: Dungeons of Kithgard"
|
level: "Nivell" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Ometre"
|
skip: "Ometre"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventari"
|
inventory_tab: "Inventari"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Partides simulades"
|
games_simulated: "Partides simulades"
|
||||||
games_played: "Partides guanyades"
|
games_played: "Partides guanyades"
|
||||||
ratio: "Ràtio"
|
ratio: "Ràtio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
fight: "Lluita!"
|
fight: "Lluita!"
|
||||||
watch_victory: "Mira la teva victòria"
|
watch_victory: "Mira la teva victòria"
|
||||||
defeat_the: "Derrota a"
|
defeat_the: "Derrota a"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "El torneig acaba"
|
tournament_ends: "El torneig acaba"
|
||||||
tournament_ended: "El torneig ha acabat"
|
tournament_ended: "El torneig ha acabat"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
||||||
no_recent_games: "No s'ha jugat en les ultimes setmanes."
|
no_recent_games: "No s'ha jugat en les ultimes setmanes."
|
||||||
payments: "Pagaments"
|
payments: "Pagaments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
accepted: "Přijato"
|
accepted: "Přijato"
|
||||||
rejected: "Odmítnuto"
|
rejected: "Odmítnuto"
|
||||||
withdrawn: "Uzavřeno"
|
withdrawn: "Uzavřeno"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Odesílatel"
|
submitter: "Odesílatel"
|
||||||
submitted: "Odesláno"
|
submitted: "Odesláno"
|
||||||
commit_msg: "Popisek ukládání"
|
commit_msg: "Popisek ukládání"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hotovo"
|
done: "Hotovo"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Domů" # Not used any more, will be removed soon.
|
home: "Domů" # Not used any more, will be removed soon.
|
||||||
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Přeskočit"
|
skip: "Přeskočit"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventář"
|
inventory_tab: "Inventář"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
simulate_games: "Simulovat hry!"
|
simulate_games: "Simulovat hry!"
|
||||||
games_simulated_by: "Hry simulovány vámi:"
|
games_simulated_by: "Hry simulovány vámi:"
|
||||||
games_simulated_for: "Hry simulovány pro vás:"
|
games_simulated_for: "Hry simulovány pro vás:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Her simulováno"
|
games_simulated: "Her simulováno"
|
||||||
games_played: "Her hráno"
|
games_played: "Her hráno"
|
||||||
ratio: "Poměr"
|
ratio: "Poměr"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
fight: "Boj!"
|
fight: "Boj!"
|
||||||
watch_victory: "Sledovat vaši výhru"
|
watch_victory: "Sledovat vaši výhru"
|
||||||
defeat_the: "Poraženo"
|
defeat_the: "Poraženo"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "Turnaj končí"
|
tournament_ends: "Turnaj končí"
|
||||||
tournament_ended: "Turnaj ukončen"
|
tournament_ended: "Turnaj ukončen"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
||||||
no_recent_games: "Žádné hry během posledních dvou týdnů."
|
no_recent_games: "Žádné hry během posledních dvou týdnů."
|
||||||
payments: "Platby"
|
payments: "Platby"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Zaplaceno"
|
purchased: "Zaplaceno"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Předplatné"
|
subscription: "Předplatné"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
accepted: "Accepteret"
|
accepted: "Accepteret"
|
||||||
rejected: "Afvist"
|
rejected: "Afvist"
|
||||||
withdrawn: "Trukket tilbage"
|
withdrawn: "Trukket tilbage"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Indsender"
|
submitter: "Indsender"
|
||||||
submitted: "Indsendt"
|
submitted: "Indsendt"
|
||||||
commit_msg: "ændringsnotat"
|
commit_msg: "ændringsnotat"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Færdig"
|
done: "Færdig"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Hjem" # Not used any more, will be removed soon.
|
home: "Hjem" # Not used any more, will be removed soon.
|
||||||
level: "Bane" # Like "Level: Dungeons of Kithgard"
|
level: "Bane" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Spring over"
|
skip: "Spring over"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Før du starter med at programmere, kan du altid sætte dig ned med et stykke papir og blyant."
|
tip_paper_and_pen: "Før du starter med at programmere, kan du altid sætte dig ned med et stykke papir og blyant."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Dine ting"
|
inventory_tab: "Dine ting"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Veröffentlicher"
|
submitter: "Veröffentlicher"
|
||||||
submitted: "Veröffentlicht"
|
submitted: "Veröffentlicht"
|
||||||
commit_msg: "Nachricht absenden"
|
commit_msg: "Nachricht absenden"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Startseite" # Not used any more, will be removed soon.
|
home: "Startseite" # Not used any more, will be removed soon.
|
||||||
level: "Mission" # Like "Level: Dungeons of Kithgard"
|
level: "Mission" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Überspringen"
|
skip: "Überspringen"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventar"
|
inventory_tab: "Inventar"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
simulate_games: "Simuliere Spiele!"
|
simulate_games: "Simuliere Spiele!"
|
||||||
games_simulated_by: "Spiele die durch dich simuliert worden:"
|
games_simulated_by: "Spiele die durch dich simuliert worden:"
|
||||||
games_simulated_for: "Spiele die für dich simuliert worden:"
|
games_simulated_for: "Spiele die für dich simuliert worden:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "simulierte Spiele"
|
games_simulated: "simulierte Spiele"
|
||||||
games_played: "gespielte Spiele"
|
games_played: "gespielte Spiele"
|
||||||
ratio: "Ratio"
|
ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
fight: "Kämpft!"
|
fight: "Kämpft!"
|
||||||
watch_victory: "Schau dir deinen Sieg an"
|
watch_victory: "Schau dir deinen Sieg an"
|
||||||
defeat_the: "Besiege den"
|
defeat_the: "Besiege den"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "Turnier endet"
|
tournament_ends: "Turnier endet"
|
||||||
tournament_ended: "Turnier beendet"
|
tournament_ended: "Turnier beendet"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
||||||
no_recent_games: "Keine Spiele in den letzten zwei Wochen gespielt."
|
no_recent_games: "Keine Spiele in den letzten zwei Wochen gespielt."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
accepted: "Akzeptiert"
|
accepted: "Akzeptiert"
|
||||||
rejected: "Nid akzeptiert"
|
rejected: "Nid akzeptiert"
|
||||||
withdrawn: "Zruggzie"
|
withdrawn: "Zruggzie"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Sender"
|
submitter: "Sender"
|
||||||
submitted: "Gesendet"
|
submitted: "Gesendet"
|
||||||
commit_msg: "Nachricht abschicke"
|
commit_msg: "Nachricht abschicke"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Home" # Not used any more, will be removed soon.
|
home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Überspringe"
|
skip: "Überspringe"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventar"
|
inventory_tab: "Inventar"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
accepted: "akzeptiert"
|
accepted: "akzeptiert"
|
||||||
rejected: "abgelehnt"
|
rejected: "abgelehnt"
|
||||||
withdrawn: "zurückgezogen"
|
withdrawn: "zurückgezogen"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Übermittler"
|
submitter: "Übermittler"
|
||||||
submitted: "Übermittelt"
|
submitted: "Übermittelt"
|
||||||
commit_msg: "Übertrage Nachricht"
|
commit_msg: "Übertrage Nachricht"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fertig"
|
done: "Fertig"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Startseite" # Not used any more, will be removed soon.
|
home: "Startseite" # Not used any more, will be removed soon.
|
||||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Überspringen"
|
skip: "Überspringen"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventar"
|
inventory_tab: "Inventar"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
simulate_games: "Simuliere Spiele!"
|
simulate_games: "Simuliere Spiele!"
|
||||||
games_simulated_by: "Spiele die durch dich simuliert worden:"
|
games_simulated_by: "Spiele die durch dich simuliert worden:"
|
||||||
games_simulated_for: "Spiele die für dich simuliert worden:"
|
games_simulated_for: "Spiele die für dich simuliert worden:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "simulierte Spiele"
|
games_simulated: "simulierte Spiele"
|
||||||
games_played: "gespielte Spiele"
|
games_played: "gespielte Spiele"
|
||||||
ratio: "Ratio"
|
ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
fight: "Kämpft!"
|
fight: "Kämpft!"
|
||||||
watch_victory: "Schau dir deinen Sieg an"
|
watch_victory: "Schau dir deinen Sieg an"
|
||||||
defeat_the: "Besiege den"
|
defeat_the: "Besiege den"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "Turnier endet"
|
tournament_ends: "Turnier endet"
|
||||||
tournament_ended: "Turnier beendet"
|
tournament_ended: "Turnier beendet"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
||||||
no_recent_games: "Keine Spiele in den letzten zwei Wochen gespielt."
|
no_recent_games: "Keine Spiele in den letzten zwei Wochen gespielt."
|
||||||
payments: "Zahlungen"
|
payments: "Zahlungen"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Gekauft"
|
purchased: "Gekauft"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Abo"
|
subscription: "Abo"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Έτοιμο"
|
done: "Έτοιμο"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Αρχική" # Not used any more, will be removed soon.
|
home: "Αρχική" # Not used any more, will be removed soon.
|
||||||
level: "Επίπεδο" # Like "Level: Dungeons of Kithgard"
|
level: "Επίπεδο" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Παράλειψη"
|
skip: "Παράλειψη"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@
|
||||||
accepted: "Accepted"
|
accepted: "Accepted"
|
||||||
rejected: "Rejected"
|
rejected: "Rejected"
|
||||||
withdrawn: "Withdrawn"
|
withdrawn: "Withdrawn"
|
||||||
|
accept: "Accept"
|
||||||
|
reject: "Reject"
|
||||||
|
withdraw: "Withdraw"
|
||||||
submitter: "Submitter"
|
submitter: "Submitter"
|
||||||
submitted: "Submitted"
|
submitted: "Submitted"
|
||||||
commit_msg: "Commit Message"
|
commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Done"
|
done: "Done"
|
||||||
|
next_game: "Next game"
|
||||||
|
show_menu: "Show game menu"
|
||||||
home: "Home" # Not used any more, will be removed soon.
|
home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Skip"
|
skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@
|
||||||
tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
tip_solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventory"
|
inventory_tab: "Inventory"
|
||||||
|
@ -400,7 +406,7 @@
|
||||||
comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
||||||
feature1: "110+ basic levels across 4 worlds"
|
feature1: "110+ basic levels across 4 worlds"
|
||||||
feature2: "10 powerful <strong>new heroes</strong> with unique skills!"
|
feature2: "10 powerful <strong>new heroes</strong> with unique skills!"
|
||||||
feature3: "80+ bonus levels" # {change}
|
feature3: "80+ bonus levels"
|
||||||
feature4: "<strong>3500 bonus gems</strong> every month!"
|
feature4: "<strong>3500 bonus gems</strong> every month!"
|
||||||
feature5: "Video tutorials"
|
feature5: "Video tutorials"
|
||||||
feature6: "Premium email support"
|
feature6: "Premium email support"
|
||||||
|
@ -913,7 +919,7 @@
|
||||||
see_the: "See the"
|
see_the: "See the"
|
||||||
more_info: "for more information."
|
more_info: "for more information."
|
||||||
choose_course: "Choose Your Course:"
|
choose_course: "Choose Your Course:"
|
||||||
enter_code: "Enter an unlock code to join an existing class" # {change}
|
enter_code: "Enter an unlock code to join an existing class"
|
||||||
enter_code1: "Enter unlock code"
|
enter_code1: "Enter unlock code"
|
||||||
enroll: "Enroll"
|
enroll: "Enroll"
|
||||||
pick_from_classes: "Pick from your current classes"
|
pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1121,7 @@
|
||||||
simulate_games: "Simulate Games!"
|
simulate_games: "Simulate Games!"
|
||||||
games_simulated_by: "Games simulated by you:"
|
games_simulated_by: "Games simulated by you:"
|
||||||
games_simulated_for: "Games simulated for you:"
|
games_simulated_for: "Games simulated for you:"
|
||||||
|
games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Games simulated"
|
games_simulated: "Games simulated"
|
||||||
games_played: "Games played"
|
games_played: "Games played"
|
||||||
ratio: "Ratio"
|
ratio: "Ratio"
|
||||||
|
@ -1151,6 +1158,7 @@
|
||||||
fight: "Fight!"
|
fight: "Fight!"
|
||||||
watch_victory: "Watch your victory"
|
watch_victory: "Watch your victory"
|
||||||
defeat_the: "Defeat the"
|
defeat_the: "Defeat the"
|
||||||
|
watch_battle: "Watch the battle"
|
||||||
tournament_started: ", started"
|
tournament_started: ", started"
|
||||||
tournament_ends: "Tournament ends"
|
tournament_ends: "Tournament ends"
|
||||||
tournament_ended: "Tournament ended"
|
tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1216,7 @@
|
||||||
no_recent_games: "No games played during the past two weeks."
|
no_recent_games: "No games played during the past two weeks."
|
||||||
payments: "Payments"
|
payments: "Payments"
|
||||||
prepaid: "Prepaid"
|
prepaid: "Prepaid"
|
||||||
|
prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Purchased"
|
purchased: "Purchased"
|
||||||
sale: "Sale"
|
sale: "Sale"
|
||||||
subscription: "Subscription"
|
subscription: "Subscription"
|
||||||
|
@ -1346,9 +1355,6 @@
|
||||||
merge_conflict_with: "MERGE CONFLICT WITH"
|
merge_conflict_with: "MERGE CONFLICT WITH"
|
||||||
no_changes: "No Changes"
|
no_changes: "No Changes"
|
||||||
|
|
||||||
temp:
|
|
||||||
ace_of_coders_tournament: "New: play in the Ace of Coders tournament now!"
|
|
||||||
|
|
||||||
multiplayer:
|
multiplayer:
|
||||||
multiplayer_title: "Multiplayer Settings" # We'll be changing this around significantly soon. Until then, it's not important to translate.
|
multiplayer_title: "Multiplayer Settings" # We'll be changing this around significantly soon. Until then, it's not important to translate.
|
||||||
multiplayer_toggle: "Enable multiplayer"
|
multiplayer_toggle: "Enable multiplayer"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
accepted: "Aceptado"
|
accepted: "Aceptado"
|
||||||
rejected: "Rechazado"
|
rejected: "Rechazado"
|
||||||
withdrawn: "Retirado"
|
withdrawn: "Retirado"
|
||||||
|
accept: "Aceptar"
|
||||||
|
reject: "Rechazar"
|
||||||
|
withdraw: "Retirar"
|
||||||
submitter: "Emisor"
|
submitter: "Emisor"
|
||||||
submitted: "Enviado"
|
submitted: "Enviado"
|
||||||
commit_msg: "Enviar mensaje"
|
commit_msg: "Enviar mensaje"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Listo"
|
done: "Listo"
|
||||||
|
next_game: "Siguiente juego"
|
||||||
|
show_menu: "Mostrar menú de juego"
|
||||||
home: "Inicio" # Not used any more, will be removed soon.
|
home: "Inicio" # Not used any more, will be removed soon.
|
||||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Omitir"
|
skip: "Omitir"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
tip_free_your_mind: "Tienes que dejar ir todo, Neo. Miedo, duda, e incredulidad. Libera tu mente. - Morpheus"
|
tip_free_your_mind: "Tienes que dejar ir todo, Neo. Miedo, duda, e incredulidad. Libera tu mente. - Morpheus"
|
||||||
tip_strong_opponents: "Hasta los oponentes mas fuertes siempre tienen una debilidad. - Itachi Uchiha"
|
tip_strong_opponents: "Hasta los oponentes mas fuertes siempre tienen una debilidad. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Antes de comenzar a codificar, siempre puedes planear con una hoja de papel y un lapicero."
|
tip_paper_and_pen: "Antes de comenzar a codificar, siempre puedes planear con una hoja de papel y un lapicero."
|
||||||
|
solve_then_write: "Primero, resuelve el problema. Y entonces, escribe el código. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventario"
|
inventory_tab: "Inventario"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
comparison_blurb: "Agudiza tus habilidades con la suscripción a CodeCombat!"
|
comparison_blurb: "Agudiza tus habilidades con la suscripción a CodeCombat!"
|
||||||
feature1: "Más de 110 niveles basicos a lo largo de 4 mundos"
|
feature1: "Más de 110 niveles basicos a lo largo de 4 mundos"
|
||||||
feature2: "10 poderosos <strong>nuevos heroés</strong> con habilidades unicas!"
|
feature2: "10 poderosos <strong>nuevos heroés</strong> con habilidades unicas!"
|
||||||
feature3: "Más de 70 niveles extras"
|
feature3: "Más de 70 niveles extras" # {change}
|
||||||
feature4: "<strong>3500 gemas de bono</strong> cada mes!"
|
feature4: "<strong>3500 gemas de bono</strong> cada mes!"
|
||||||
feature5: "Video tutoriales"
|
feature5: "Video tutoriales"
|
||||||
feature6: "Soporte Premium vía email"
|
feature6: "Soporte Premium vía email"
|
||||||
|
@ -601,8 +607,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
intro_1: "CodeCombat es un juego online que enseña a programar.Los estudiantes escriben código en idiomas de programación real."
|
intro_1: "CodeCombat es un juego online que enseña a programar.Los estudiantes escriben código en idiomas de programación real."
|
||||||
intro_2: "No se necesita experiencia previa!"
|
intro_2: "No se necesita experiencia previa!"
|
||||||
free_title: "¿Cuánto cuesta?"
|
free_title: "¿Cuánto cuesta?"
|
||||||
cost_china: "CodeCombat es gratis en China por los primeros cinco niveles, despues cuesta $9.99(dólares) por mes para tener acceso a 180+ niveles que son exclusivos en nuestros servidores en China." # Deprecated
|
cost_premium_server: "CodeCombat es gratis para lso primeros 5 niveles, después de ellos cuesta $9.99 USD mensuales para accesar a nuestros otros más de 190 niveles en nuestraos exclusivos servidores específicos para cada país."
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
|
||||||
free_1: "Hay más de 110 niveles gratis que cubren cada concepto."
|
free_1: "Hay más de 110 niveles gratis que cubren cada concepto."
|
||||||
free_2: "Una suscripción mensual le da acceso a tutoriales en vídeo y niveles extra para practicar."
|
free_2: "Una suscripción mensual le da acceso a tutoriales en vídeo y niveles extra para practicar."
|
||||||
teacher_subs_title: "¡Los amestros obtienen subscripciones gratuitas!"
|
teacher_subs_title: "¡Los amestros obtienen subscripciones gratuitas!"
|
||||||
|
@ -866,10 +871,10 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
play_time: "Tiempo de Juego:"
|
play_time: "Tiempo de Juego:"
|
||||||
completed: "Completados:"
|
completed: "Completados:"
|
||||||
invite_students: "Invite a sus estudiantes a unirse a este grupo."
|
invite_students: "Invite a sus estudiantes a unirse a este grupo."
|
||||||
# invite_link_header: "Link to join course"
|
invite_link_header: "Enlace para unirse al curso"
|
||||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
invite_link_p_1: "Proporciones este enalce a los estudiantes que desee que se unan al curso."
|
||||||
# invite_link_p_2: "Or have us email them directly:"
|
#invite_link_p_2: "O have us email them directamente:"
|
||||||
# capacity_used: "Course slots used:"
|
capacity_used: "Espacios de curso usados:"
|
||||||
enter_emails: "Introducir los emails de los estudiantes a invitar, uno por línea"
|
enter_emails: "Introducir los emails de los estudiantes a invitar, uno por línea"
|
||||||
send_invites: "¿Mandar Invitaciones?"
|
send_invites: "¿Mandar Invitaciones?"
|
||||||
title: "Título"
|
title: "Título"
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
see_the: "Vea la"
|
see_the: "Vea la"
|
||||||
more_info: "para más información."
|
more_info: "para más información."
|
||||||
choose_course: "Elige tu Curso:"
|
choose_course: "Elige tu Curso:"
|
||||||
enter_code: "Introducir un código de desbloqueo"
|
enter_code: "Introducir un código de desbloqueo" # {change}
|
||||||
enter_code1: "Introducir código de desbloqueo"
|
enter_code1: "Introducir código de desbloqueo"
|
||||||
enroll: "Inscribirse"
|
enroll: "Inscribirse"
|
||||||
pick_from_classes: "Elije de tus clases actuales"
|
pick_from_classes: "Elije de tus clases actuales"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
simulate_games: "¡Simular Juegos!"
|
simulate_games: "¡Simular Juegos!"
|
||||||
games_simulated_by: "Juegos simulados por ti:"
|
games_simulated_by: "Juegos simulados por ti:"
|
||||||
games_simulated_for: "Juegos simulados para ti:"
|
games_simulated_for: "Juegos simulados para ti:"
|
||||||
|
games_in_queue: "Juegos actualmente en cola:"
|
||||||
games_simulated: "Juegos simulados"
|
games_simulated: "Juegos simulados"
|
||||||
games_played: "Juegos jugados"
|
games_played: "Juegos jugados"
|
||||||
ratio: "Proporción"
|
ratio: "Proporción"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
fight: "Pelea!"
|
fight: "Pelea!"
|
||||||
watch_victory: "Observa tu Victoria"
|
watch_victory: "Observa tu Victoria"
|
||||||
defeat_the: "Derrota a"
|
defeat_the: "Derrota a"
|
||||||
|
watch_battle: "Mirar la batalla"
|
||||||
tournament_started: ", iniciado"
|
tournament_started: ", iniciado"
|
||||||
tournament_ends: "Final de Torneo"
|
tournament_ends: "Final de Torneo"
|
||||||
tournament_ended: "Finalizó el Torneo"
|
tournament_ended: "Finalizó el Torneo"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
no_recent_games: "No juegos jugados duramente las últimas dos semanas."
|
no_recent_games: "No juegos jugados duramente las últimas dos semanas."
|
||||||
payments: "Pagos"
|
payments: "Pagos"
|
||||||
prepaid: "Prepagado"
|
prepaid: "Prepagado"
|
||||||
|
prepaid_codes: "Códigos Prepagados"
|
||||||
purchased: "Comprado"
|
purchased: "Comprado"
|
||||||
sale: "Venta"
|
sale: "Venta"
|
||||||
subscription: "Suscripción"
|
subscription: "Suscripción"
|
||||||
|
@ -1329,7 +1337,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
||||||
input_handling: "Manejo de Entradas"
|
input_handling: "Manejo de Entradas"
|
||||||
math_operations: "Operaciones Matemáticas"
|
math_operations: "Operaciones Matemáticas"
|
||||||
object_literals: "Objetos Literales"
|
object_literals: "Objetos Literales"
|
||||||
# parameters: "Parameters"
|
parameters: "Parámetros"
|
||||||
strings: "Cadenas"
|
strings: "Cadenas"
|
||||||
variables: "Variables"
|
variables: "Variables"
|
||||||
vectors: "Vectores"
|
vectors: "Vectores"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
accepted: "Aceptado"
|
accepted: "Aceptado"
|
||||||
rejected: "Rechazado"
|
rejected: "Rechazado"
|
||||||
withdrawn: "Retirado"
|
withdrawn: "Retirado"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Submitter"
|
submitter: "Submitter"
|
||||||
submitted: "Enviado"
|
submitted: "Enviado"
|
||||||
commit_msg: "Mensaje de Asignación o Commit"
|
commit_msg: "Mensaje de Asignación o Commit"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hecho"
|
done: "Hecho"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Inicio" # Not used any more, will be removed soon.
|
home: "Inicio" # Not used any more, will be removed soon.
|
||||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Saltar"
|
skip: "Saltar"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
tip_free_your_mind: "Tienes que dejarlo ir, Neo. Miedo, dudas e incredulidad. Libera tu mente. - Morpheus"
|
tip_free_your_mind: "Tienes que dejarlo ir, Neo. Miedo, dudas e incredulidad. Libera tu mente. - Morpheus"
|
||||||
tip_strong_opponents: "Incluso el más fuerte de los opositores oculta debilidad. - Itachi Uchiha"
|
tip_strong_opponents: "Incluso el más fuerte de los opositores oculta debilidad. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Antes de empezar a programar, siempre puedes planificar con papel y lápiz."
|
tip_paper_and_pen: "Antes de empezar a programar, siempre puedes planificar con papel y lápiz."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventario"
|
inventory_tab: "Inventario"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
comparison_blurb: "¡Mejora tus habilidades con una suscripción a CodeCombat!"
|
comparison_blurb: "¡Mejora tus habilidades con una suscripción a CodeCombat!"
|
||||||
feature1: "Más de 110 niveles básicos pasando por 4 mundos"
|
feature1: "Más de 110 niveles básicos pasando por 4 mundos"
|
||||||
feature2: "¡10 <strong>héroes nuevos</strong> con poderes únicos!"
|
feature2: "¡10 <strong>héroes nuevos</strong> con poderes únicos!"
|
||||||
feature3: "Más de 70 niveles extra"
|
feature3: "Más de 70 niveles extra" # {change}
|
||||||
feature4: "¡<strong>3500 gemas extra</strong> cada mes!"
|
feature4: "¡<strong>3500 gemas extra</strong> cada mes!"
|
||||||
feature5: "Vídeo tutoriales"
|
feature5: "Vídeo tutoriales"
|
||||||
feature6: "Soporte electrónico Premium"
|
feature6: "Soporte electrónico Premium"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
intro_2: "¡No se necesita experiencia!"
|
intro_2: "¡No se necesita experiencia!"
|
||||||
free_title: "¿Cuanto cuesta?"
|
free_title: "¿Cuanto cuesta?"
|
||||||
cost_china: "CodeCombat en China es gratuito durante los primeros 5 niveles, después tiene un coste de $9.99 USD por mes con acceso a nuestros más de 180+ niveles en nuestros servidores exclusivos de China." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
simulate_games: "¡Simula juegos!"
|
simulate_games: "¡Simula juegos!"
|
||||||
games_simulated_by: "Juegos simulados por ti:"
|
games_simulated_by: "Juegos simulados por ti:"
|
||||||
games_simulated_for: "Juegos simulados para ti:"
|
games_simulated_for: "Juegos simulados para ti:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Juegos simulados"
|
games_simulated: "Juegos simulados"
|
||||||
games_played: "Partidas jugadas"
|
games_played: "Partidas jugadas"
|
||||||
ratio: "Ratio"
|
ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
fight: "¡Pelea!"
|
fight: "¡Pelea!"
|
||||||
watch_victory: "Ver tu victoria"
|
watch_victory: "Ver tu victoria"
|
||||||
defeat_the: "Vence a"
|
defeat_the: "Vence a"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", iniciado"
|
tournament_started: ", iniciado"
|
||||||
tournament_ends: "El torneo termina"
|
tournament_ends: "El torneo termina"
|
||||||
tournament_ended: "El torneo ha terminado"
|
tournament_ended: "El torneo ha terminado"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
||||||
no_recent_games: "No he jugado juegos en las ultimas dos semanas."
|
no_recent_games: "No he jugado juegos en las ultimas dos semanas."
|
||||||
payments: "Pagos"
|
payments: "Pagos"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Adquirido"
|
purchased: "Adquirido"
|
||||||
sale: "Venta"
|
sale: "Venta"
|
||||||
subscription: "Suscripción"
|
subscription: "Suscripción"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
accepted: "Hyväksytty"
|
accepted: "Hyväksytty"
|
||||||
rejected: "Hylätty"
|
rejected: "Hylätty"
|
||||||
withdrawn: "Vedetty pois"
|
withdrawn: "Vedetty pois"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Lähettäjä"
|
submitter: "Lähettäjä"
|
||||||
submitted: "Lähetetty"
|
submitted: "Lähetetty"
|
||||||
commit_msg: "Lähetä Viesti"
|
commit_msg: "Lähetä Viesti"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Valmis"
|
done: "Valmis"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Taso" # Like "Level: Dungeons of Kithgard"
|
level: "Taso" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Ohita"
|
skip: "Ohita"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Luettelo"
|
inventory_tab: "Luettelo"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
comparison_blurb: "Teroita kykyjäsi CodeCombat kuukausitilauksella!"
|
comparison_blurb: "Teroita kykyjäsi CodeCombat kuukausitilauksella!"
|
||||||
feature1: "110+ perustasoa 4:ssä maailmassa"
|
feature1: "110+ perustasoa 4:ssä maailmassa"
|
||||||
feature2: "10 mahtavaa <strong>uutta sankaria</strong> erilaisine kykyineen!"
|
feature2: "10 mahtavaa <strong>uutta sankaria</strong> erilaisine kykyineen!"
|
||||||
feature3: "70+ lisätasoa"
|
feature3: "70+ lisätasoa" # {change}
|
||||||
feature4: "<strong>3500 jalokiveä</strong> joka kuukausi!"
|
feature4: "<strong>3500 jalokiveä</strong> joka kuukausi!"
|
||||||
feature5: "Video-oppaat"
|
feature5: "Video-oppaat"
|
||||||
feature6: "Premium sähköpostituki"
|
feature6: "Premium sähköpostituki"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
intro_1: "CodeCombat on selainpeli, joka opettaa ohjelmointia. Opiskelijat kirjoittavat ohjelmakoodia oikeilla ohjelmointikielillä."
|
intro_1: "CodeCombat on selainpeli, joka opettaa ohjelmointia. Opiskelijat kirjoittavat ohjelmakoodia oikeilla ohjelmointikielillä."
|
||||||
intro_2: "Aiempi kokemus ei ole tarpeen!"
|
intro_2: "Aiempi kokemus ei ole tarpeen!"
|
||||||
free_title: "Mitä kaikki maksaa?"
|
free_title: "Mitä kaikki maksaa?"
|
||||||
cost_china: "CodeCombat Kiinan alueella on maksuton viiden ensimmäisen tason osalta, jonka jälkeen hinta on $9.99 USD kuukaudessa pääsystä muihin 180+ tasoon Kiinan palvelimilla." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "Käytössäsi on 110+ ILMAISTA tasoa, jotka kattavat koko ohjelmoinnin perustan."
|
free_1: "Käytössäsi on 110+ ILMAISTA tasoa, jotka kattavat koko ohjelmoinnin perustan."
|
||||||
free_2: "Maksullinen kuukausitilaus avaa pääsyn video-oppaisiin ja lisätasoihin."
|
free_2: "Maksullinen kuukausitilaus avaa pääsyn video-oppaisiin ja lisätasoihin."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
||||||
no_recent_games: "Ei pelejä viimeisen kahden viikon aikana."
|
no_recent_games: "Ei pelejä viimeisen kahden viikon aikana."
|
||||||
payments: "Ostot"
|
payments: "Ostot"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Ostettu"
|
purchased: "Ostettu"
|
||||||
sale: "Alennus"
|
sale: "Alennus"
|
||||||
subscription: "Kuukausitilaus"
|
subscription: "Kuukausitilaus"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
accepted: "Accepté"
|
accepted: "Accepté"
|
||||||
rejected: "Rejeté"
|
rejected: "Rejeté"
|
||||||
withdrawn: "Retiré"
|
withdrawn: "Retiré"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Soumissionnaire"
|
submitter: "Soumissionnaire"
|
||||||
submitted: "Soumis"
|
submitted: "Soumis"
|
||||||
commit_msg: "Message de mise à jour"
|
commit_msg: "Message de mise à jour"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fait"
|
done: "Fait"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Accueil" # Not used any more, will be removed soon.
|
home: "Accueil" # Not used any more, will be removed soon.
|
||||||
level: "Niveau" # Like "Level: Dungeons of Kithgard"
|
level: "Niveau" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Passer"
|
skip: "Passer"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
tip_free_your_mind: "Vous devez laisser aller , Neo . La peur , le doute et l'incrédulité . Libère ton esprit. - Morpheus"
|
tip_free_your_mind: "Vous devez laisser aller , Neo . La peur , le doute et l'incrédulité . Libère ton esprit. - Morpheus"
|
||||||
tip_strong_opponents: "Même les ennemis les plus puissant ont une faiblesse. - Itachi Uchiha"
|
tip_strong_opponents: "Même les ennemis les plus puissant ont une faiblesse. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventaire"
|
inventory_tab: "Inventaire"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
intro_1: "CodeCombat est un jeu en ligne qui enseigne la programmation. Les élèves écrivent du code dans de vrais langages de programmation."
|
intro_1: "CodeCombat est un jeu en ligne qui enseigne la programmation. Les élèves écrivent du code dans de vrais langages de programmation."
|
||||||
intro_2: "Aucune expérience requise !"
|
intro_2: "Aucune expérience requise !"
|
||||||
free_title: "Combien cela coûte-t-il ?"
|
free_title: "Combien cela coûte-t-il ?"
|
||||||
cost_china: "CodeCombat en Chine est gratuit pour les cinq premiers niveaux,après le jeu coûte 9.99$ US par mois pour avoir un accès aux autres 140+ niveaux sur les serveurs exlcusifs chinois" # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "La version de base de CodeCombat est gratuite ! Il y a 70+ niveaux gratuits qui couvrent chaque concepts." # {change}
|
free_1: "La version de base de CodeCombat est gratuite ! Il y a 70+ niveaux gratuits qui couvrent chaque concepts." # {change}
|
||||||
free_2: "Un abonnement mensuel fournit l'accès à des vidéos de tutoriels ainsi qu'à des niveaux d'entraînement supplémentaires."
|
free_2: "Un abonnement mensuel fournit l'accès à des vidéos de tutoriels ainsi qu'à des niveaux d'entraînement supplémentaires."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
simulate_games: "Simuler une partie !"
|
simulate_games: "Simuler une partie !"
|
||||||
games_simulated_by: "Parties que vous avez simulées :"
|
games_simulated_by: "Parties que vous avez simulées :"
|
||||||
games_simulated_for: "Parties simulées pour vous :"
|
games_simulated_for: "Parties simulées pour vous :"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Partie simulée"
|
games_simulated: "Partie simulée"
|
||||||
games_played: "Parties jouées"
|
games_played: "Parties jouées"
|
||||||
ratio: "Moyenne"
|
ratio: "Moyenne"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
fight: "Combattez !"
|
fight: "Combattez !"
|
||||||
watch_victory: "Regardez votre victoire"
|
watch_victory: "Regardez votre victoire"
|
||||||
defeat_the: "Vaincre le"
|
defeat_the: "Vaincre le"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", a démarré"
|
tournament_started: ", a démarré"
|
||||||
tournament_ends: "Fin du tournoi"
|
tournament_ends: "Fin du tournoi"
|
||||||
tournament_ended: "Tournoi terminé"
|
tournament_ended: "Tournoi terminé"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
||||||
no_recent_games: "Aucune partie jouée au cours des deux dernières semaines."
|
no_recent_games: "Aucune partie jouée au cours des deux dernières semaines."
|
||||||
payments: "Paiements"
|
payments: "Paiements"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Acheté"
|
purchased: "Acheté"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Souscrit"
|
subscription: "Souscrit"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
commit_msg: "Mensaxe de Asignación ou Commit"
|
commit_msg: "Mensaxe de Asignación ou Commit"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Feito"
|
done: "Feito"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Inicio" # Not used any more, will be removed soon.
|
home: "Inicio" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Saltar"
|
skip: "Saltar"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventario"
|
inventory_tab: "Inventario"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
simulate_games: "Simula xogos!"
|
simulate_games: "Simula xogos!"
|
||||||
games_simulated_by: "Xogos simulados por ti:"
|
games_simulated_by: "Xogos simulados por ti:"
|
||||||
games_simulated_for: "Xogos simulados para ti:"
|
games_simulated_for: "Xogos simulados para ti:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Xogos simulados"
|
games_simulated: "Xogos simulados"
|
||||||
games_played: "Partidas xogadas"
|
games_played: "Partidas xogadas"
|
||||||
ratio: "Ratio"
|
ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
fight: "Pelexa!"
|
fight: "Pelexa!"
|
||||||
watch_victory: "Ver a túa vitoria"
|
watch_victory: "Ver a túa vitoria"
|
||||||
defeat_the: "Gaña a"
|
defeat_the: "Gaña a"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "O torneo remata"
|
tournament_ends: "O torneo remata"
|
||||||
tournament_ended: "O torneo rematou"
|
tournament_ended: "O torneo rematou"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
||||||
no_recent_games: "Non xogaches xogos nas últimas dúas semánas."
|
no_recent_games: "Non xogaches xogos nas últimas dúas semánas."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
accepted: "התקבל"
|
accepted: "התקבל"
|
||||||
rejected: "נדחה"
|
rejected: "נדחה"
|
||||||
withdrawn: "האוייב נסוג"
|
withdrawn: "האוייב נסוג"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "מוסר"
|
submitter: "מוסר"
|
||||||
submitted: "נמסר"
|
submitted: "נמסר"
|
||||||
commit_msg: "שלח הודעה"
|
commit_msg: "שלח הודעה"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "סיים"
|
done: "סיים"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "בית" # Not used any more, will be removed soon.
|
home: "בית" # Not used any more, will be removed soon.
|
||||||
level: "שלב" # Like "Level: Dungeons of Kithgard"
|
level: "שלב" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "דלג"
|
skip: "דלג"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "תיק"
|
inventory_tab: "תיק"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
simulate_games: "הדמה משחקים"
|
simulate_games: "הדמה משחקים"
|
||||||
games_simulated_by: "משחקים שהדמית:"
|
games_simulated_by: "משחקים שהדמית:"
|
||||||
games_simulated_for: "משחקים שהודמו בשבילך:"
|
games_simulated_for: "משחקים שהודמו בשבילך:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "משחקים שהודמו"
|
games_simulated: "משחקים שהודמו"
|
||||||
games_played: "מס' משחקים ששיחקת"
|
games_played: "מס' משחקים ששיחקת"
|
||||||
ratio: "יחס"
|
ratio: "יחס"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
fight: "הלחם!"
|
fight: "הלחם!"
|
||||||
watch_victory: "צפה בניצחון שלך"
|
watch_victory: "צפה בניצחון שלך"
|
||||||
defeat_the: "הבס את ה"
|
defeat_the: "הבס את ה"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "תחרות נגמרת בעוד:"
|
tournament_ends: "תחרות נגמרת בעוד:"
|
||||||
tournament_ended: "תחרות נגמרה"
|
tournament_ended: "תחרות נגמרה"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
||||||
no_recent_games: "לא שיחקת במשחקים בשבועיים האחרונים."
|
no_recent_games: "לא שיחקת במשחקים בשבועיים האחרונים."
|
||||||
payments: "תשלומים"
|
payments: "תשלומים"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "קניות"
|
purchased: "קניות"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "מנויים"
|
subscription: "מנויים"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
accepted: "Elfogadva"
|
accepted: "Elfogadva"
|
||||||
rejected: "Elutasítva"
|
rejected: "Elutasítva"
|
||||||
withdrawn: "Visszavon"
|
withdrawn: "Visszavon"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Beküldő"
|
submitter: "Beküldő"
|
||||||
submitted: "Beküldött"
|
submitted: "Beküldött"
|
||||||
commit_msg: "Üzenet feladása"
|
commit_msg: "Üzenet feladása"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Kész"
|
done: "Kész"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Kezdőlap" # Not used any more, will be removed soon.
|
home: "Kezdőlap" # Not used any more, will be removed soon.
|
||||||
level: "Pálya" # Like "Level: Dungeons of Kithgard"
|
level: "Pálya" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Ugrás"
|
skip: "Ugrás"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Raktár"
|
inventory_tab: "Raktár"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
intro_1: "CodeCombat egy online játék, amelyik programozni tanít. A tanulók valódi programnyelven kódolnak."
|
intro_1: "CodeCombat egy online játék, amelyik programozni tanít. A tanulók valódi programnyelven kódolnak."
|
||||||
intro_2: "Előzetes tapasztalat nem szükséges!"
|
intro_2: "Előzetes tapasztalat nem szükséges!"
|
||||||
free_title: "Mennyibe kerül?"
|
free_title: "Mennyibe kerül?"
|
||||||
cost_china: "CodeCombat Kínában ingyenes az első 5 pályára, aztán $9.99 /hó, hogy elérhető legyen 120+ pálya az exkluzív kínai szervereken." # Deprecated {change}
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "CodeCombat Basic INGYENES! 70-nél is több pálya, amely minden tudást megad." # {change}
|
free_1: "CodeCombat Basic INGYENES! 70-nél is több pálya, amely minden tudást megad." # {change}
|
||||||
free_2: "A havidíjas előfizetés hozzáférést biztosít az oktató videókhoz és az extra gyakoroló pályákhoz."
|
free_2: "A havidíjas előfizetés hozzáférést biztosít az oktató videókhoz és az extra gyakoroló pályákhoz."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
fight: "Harc!"
|
fight: "Harc!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "A torna vége"
|
tournament_ends: "A torna vége"
|
||||||
tournament_ended: "A torna végetért"
|
tournament_ended: "A torna végetért"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
||||||
no_recent_games: "Nem játszottál az utóbbi két hétben."
|
no_recent_games: "Nem játszottál az utóbbi két hétben."
|
||||||
payments: "Befizetések"
|
payments: "Befizetések"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Vásárolt"
|
purchased: "Vásárolt"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Előfizetés"
|
subscription: "Előfizetés"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
accepted: "Accettate"
|
accepted: "Accettate"
|
||||||
rejected: "Rifiutate"
|
rejected: "Rifiutate"
|
||||||
withdrawn: "Ritirate"
|
withdrawn: "Ritirate"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Autore"
|
submitter: "Autore"
|
||||||
submitted: "Data creazione"
|
submitted: "Data creazione"
|
||||||
commit_msg: "Messaggio di commit"
|
commit_msg: "Messaggio di commit"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Fatto"
|
done: "Fatto"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Pagina iniziale" # Not used any more, will be removed soon.
|
home: "Pagina iniziale" # Not used any more, will be removed soon.
|
||||||
level: "Livello" # Like "Level: Dungeons of Kithgard"
|
level: "Livello" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Salta"
|
skip: "Salta"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
tip_free_your_mind: "Devi liberarti di tutto questo, Neo. Paura, dubbio, sfiducia. Libera la tua mente. - Morpheus"
|
tip_free_your_mind: "Devi liberarti di tutto questo, Neo. Paura, dubbio, sfiducia. Libera la tua mente. - Morpheus"
|
||||||
tip_strong_opponents: "Anche il più tenace degli avversari ha sempre una debolezza. - Itachi Uchiha"
|
tip_strong_opponents: "Anche il più tenace degli avversari ha sempre una debolezza. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventario"
|
inventory_tab: "Inventario"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
simulate_games: "Simula partite!"
|
simulate_games: "Simula partite!"
|
||||||
games_simulated_by: "Partite simulate da te:"
|
games_simulated_by: "Partite simulate da te:"
|
||||||
games_simulated_for: "Partite simulate per te:"
|
games_simulated_for: "Partite simulate per te:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Partite simulate"
|
games_simulated: "Partite simulate"
|
||||||
games_played: "Partite giocate"
|
games_played: "Partite giocate"
|
||||||
ratio: "Rapporto"
|
ratio: "Rapporto"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
fight: "Combatti!"
|
fight: "Combatti!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", ha cominciato"
|
tournament_started: ", ha cominciato"
|
||||||
tournament_ends: "Torneo conclude"
|
tournament_ends: "Torneo conclude"
|
||||||
tournament_ended: "Torneo concluso"
|
tournament_ended: "Torneo concluso"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
||||||
no_recent_games: "Nessuna partita nelle ultime due settimane."
|
no_recent_games: "Nessuna partita nelle ultime due settimane."
|
||||||
payments: "Pagamenti"
|
payments: "Pagamenti"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Acquistato"
|
purchased: "Acquistato"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Abbonamento"
|
subscription: "Abbonamento"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
accepted: "容認された"
|
accepted: "容認された"
|
||||||
rejected: "拒否された"
|
rejected: "拒否された"
|
||||||
withdrawn: "取り下げられました"
|
withdrawn: "取り下げられました"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "提出者"
|
submitter: "提出者"
|
||||||
submitted: "提出されました"
|
submitted: "提出されました"
|
||||||
commit_msg: "コミットメッセージ"
|
commit_msg: "コミットメッセージ"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完了"
|
done: "完了"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "ホーム" # Not used any more, will be removed soon.
|
home: "ホーム" # Not used any more, will be removed soon.
|
||||||
level: "ゲームレベル" # Like "Level: Dungeons of Kithgard"
|
level: "ゲームレベル" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "スキップ"
|
skip: "スキップ"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
tip_free_your_mind: "全ての雑念を捨てろ、恐怖、疑いも不信も 心を解き放つんだ - モーフィアス"
|
tip_free_your_mind: "全ての雑念を捨てろ、恐怖、疑いも不信も 心を解き放つんだ - モーフィアス"
|
||||||
tip_strong_opponents: "どんな強者にも弱点というものはあるんだ… - うちは イタチ"
|
tip_strong_opponents: "どんな強者にも弱点というものはあるんだ… - うちは イタチ"
|
||||||
tip_paper_and_pen: "コーディングを始める前に, 必ず紙とペンを用意して計画を立てましょう。"
|
tip_paper_and_pen: "コーディングを始める前に, 必ず紙とペンを用意して計画を立てましょう。"
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "インベントリー"
|
inventory_tab: "インベントリー"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
comparison_blurb: "CodeCombatへ課金してスキルを磨きましょう!"
|
comparison_blurb: "CodeCombatへ課金してスキルを磨きましょう!"
|
||||||
feature1: "110以上の基本レベルが4つの世界に" # {change}
|
feature1: "110以上の基本レベルが4つの世界に" # {change}
|
||||||
feature2: "10人のパワフルな <strong>ニューヒーロー</strong> とユニークなスキル!" # {change}
|
feature2: "10人のパワフルな <strong>ニューヒーロー</strong> とユニークなスキル!" # {change}
|
||||||
feature3: "70以上のボーナスレベル"
|
feature3: "70以上のボーナスレベル" # {change}
|
||||||
feature4: "<strong>3500のジェム</strong>が毎月ボーナス!"
|
feature4: "<strong>3500のジェム</strong>が毎月ボーナス!"
|
||||||
feature5: "ビデオチュートリアル"
|
feature5: "ビデオチュートリアル"
|
||||||
feature6: "プレミアムメールサポート"
|
feature6: "プレミアムメールサポート"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
intro_1: "CodeCombat はプログラミングを教えるオンラインゲームです。生徒は本物のプログラム言語を書きます。"
|
intro_1: "CodeCombat はプログラミングを教えるオンラインゲームです。生徒は本物のプログラム言語を書きます。"
|
||||||
intro_2: "プログラミングの経験は必要ありません!"
|
intro_2: "プログラミングの経験は必要ありません!"
|
||||||
free_title: "価格について"
|
free_title: "価格について"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "CodeCombat は基本的に無料です!110以上のレベルが無料です。" # {change}
|
free_1: "CodeCombat は基本的に無料です!110以上のレベルが無料です。" # {change}
|
||||||
free_2: "月々の課金をするとビデオのチュートリアルにアクセスでき、また追加のレベルが楽しめます。"
|
free_2: "月々の課金をするとビデオのチュートリアルにアクセスでき、また追加のレベルが楽しめます。"
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
ratio: "比率 "
|
ratio: "比率 "
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
accepted: "적용됨"
|
accepted: "적용됨"
|
||||||
rejected: "거부됨"
|
rejected: "거부됨"
|
||||||
withdrawn: "취소됨"
|
withdrawn: "취소됨"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "제출자"
|
submitter: "제출자"
|
||||||
submitted: "제출됨"
|
submitted: "제출됨"
|
||||||
commit_msg: "커밋 메세지"
|
commit_msg: "커밋 메세지"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "완료"
|
done: "완료"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "홈" # Not used any more, will be removed soon.
|
home: "홈" # Not used any more, will be removed soon.
|
||||||
level: "레벨" # Like "Level: Dungeons of Kithgard"
|
level: "레벨" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "넘어가기"
|
skip: "넘어가기"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "인벤토리"
|
inventory_tab: "인벤토리"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
simulate_games: "시뮬레이션 실행!"
|
simulate_games: "시뮬레이션 실행!"
|
||||||
games_simulated_by: "내가 시뮬레이션한 게임 수:"
|
games_simulated_by: "내가 시뮬레이션한 게임 수:"
|
||||||
games_simulated_for: "다른 사람에 의해 시뮬레이션된 게임 수:"
|
games_simulated_for: "다른 사람에 의해 시뮬레이션된 게임 수:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "시뮬레이션 실행된 게임"
|
games_simulated: "시뮬레이션 실행된 게임"
|
||||||
games_played: "플레이한 게임"
|
games_played: "플레이한 게임"
|
||||||
ratio: "비율"
|
ratio: "비율"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
fight: "전투 시작!"
|
fight: "전투 시작!"
|
||||||
watch_victory: "당신의 승리를 확인하세요"
|
watch_victory: "당신의 승리를 확인하세요"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
accepted: "Прифатено"
|
accepted: "Прифатено"
|
||||||
rejected: "Одбиено"
|
rejected: "Одбиено"
|
||||||
withdrawn: "Повлечено"
|
withdrawn: "Повлечено"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Подносител"
|
submitter: "Подносител"
|
||||||
submitted: "Поднесено"
|
submitted: "Поднесено"
|
||||||
commit_msg: "Порака за поднесокот"
|
commit_msg: "Порака за поднесокот"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Дома" # Not used any more, will be removed soon.
|
home: "Дома" # Not used any more, will be removed soon.
|
||||||
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Прескокни"
|
skip: "Прескокни"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
tip_free_your_mind: "Мораш да го оставиш сето тоа, Нео. Стравот, сомнежот, и невербата. Ослободи го твојот ум. - Morpheus"
|
tip_free_your_mind: "Мораш да го оставиш сето тоа, Нео. Стравот, сомнежот, и невербата. Ослободи го твојот ум. - Morpheus"
|
||||||
tip_strong_opponents: "Дури и најсилниот противник има некоја слаба точка. - Itachi Uchiha"
|
tip_strong_opponents: "Дури и најсилниот противник има некоја слаба точка. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
commit_msg: "Mesej Commit"
|
commit_msg: "Mesej Commit"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
accepted: "Akseptert"
|
accepted: "Akseptert"
|
||||||
rejected: "Avvist"
|
rejected: "Avvist"
|
||||||
withdrawn: "Trukket tilbake"
|
withdrawn: "Trukket tilbake"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Innsender"
|
submitter: "Innsender"
|
||||||
submitted: "Levert"
|
submitted: "Levert"
|
||||||
commit_msg: "Commit-melding"
|
commit_msg: "Commit-melding"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Ferdig"
|
done: "Ferdig"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Hjem" # Not used any more, will be removed soon.
|
home: "Hjem" # Not used any more, will be removed soon.
|
||||||
level: "Brett" # Like "Level: Dungeons of Kithgard"
|
level: "Brett" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Hopp over"
|
skip: "Hopp over"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Utstyr"
|
inventory_tab: "Utstyr"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
simulate_games: "Simuler Spill!"
|
simulate_games: "Simuler Spill!"
|
||||||
games_simulated_by: "Spill simulert av deg:"
|
games_simulated_by: "Spill simulert av deg:"
|
||||||
games_simulated_for: "Spill simulert for deg:"
|
games_simulated_for: "Spill simulert for deg:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Spill simulert"
|
games_simulated: "Spill simulert"
|
||||||
games_played: "Spill spilt"
|
games_played: "Spill spilt"
|
||||||
ratio: "Forhold"
|
ratio: "Forhold"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
fight: "Slåss!"
|
fight: "Slåss!"
|
||||||
watch_victory: "Se seieren"
|
watch_victory: "Se seieren"
|
||||||
defeat_the: "Overvinn"
|
defeat_the: "Overvinn"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
tournament_ends: "Turneringen slutter"
|
tournament_ends: "Turneringen slutter"
|
||||||
tournament_ended: "Turneringen sluttet "
|
tournament_ended: "Turneringen sluttet "
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
||||||
no_recent_games: "Ingen spill spilt de siste to ukene."
|
no_recent_games: "Ingen spill spilt de siste to ukene."
|
||||||
payments: "Betalinger"
|
payments: "Betalinger"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Kjøpt"
|
purchased: "Kjøpt"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Abonnement"
|
subscription: "Abonnement"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
accepted: "Geaccepteerd"
|
accepted: "Geaccepteerd"
|
||||||
rejected: "Geweigerd"
|
rejected: "Geweigerd"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
commit_msg: "Commit Bericht"
|
commit_msg: "Commit Bericht"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klaar"
|
done: "Klaar"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Home" # Not used any more, will be removed soon.
|
home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Sla over"
|
skip: "Sla over"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventaris"
|
inventory_tab: "Inventaris"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
simulate_games: "Simuleer spellen!"
|
simulate_games: "Simuleer spellen!"
|
||||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Spellen gesimuleerd"
|
games_simulated: "Spellen gesimuleerd"
|
||||||
games_played: "Spellen gespeeld"
|
games_played: "Spellen gespeeld"
|
||||||
ratio: "Verhouding"
|
ratio: "Verhouding"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
accepted: "Geaccepteerd"
|
accepted: "Geaccepteerd"
|
||||||
rejected: "Afgewezen"
|
rejected: "Afgewezen"
|
||||||
withdrawn: "Teruggetrokken"
|
withdrawn: "Teruggetrokken"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Toevoeger"
|
submitter: "Toevoeger"
|
||||||
submitted: "Toegevoegd"
|
submitted: "Toegevoegd"
|
||||||
commit_msg: "Commit Bericht"
|
commit_msg: "Commit Bericht"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klaar"
|
done: "Klaar"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Home" # Not used any more, will be removed soon.
|
home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Overslaan"
|
skip: "Overslaan"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
tip_strong_opponents: "Zelf de sterkste vijand heeft een zwakheid. - Itachi Uchiha"
|
tip_strong_opponents: "Zelf de sterkste vijand heeft een zwakheid. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Voor je begint te programmeren, kan je altijd met pen en papier een plan maken."
|
tip_paper_and_pen: "Voor je begint te programmeren, kan je altijd met pen en papier een plan maken."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventaris"
|
inventory_tab: "Inventaris"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
# comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
# comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
||||||
feature1: "meer dan 110+ basislevels over 4 werelden"
|
feature1: "meer dan 110+ basislevels over 4 werelden"
|
||||||
feature2: "10 sterke <strong>nieuw helden</strong> met unieke vaardigheden!"
|
feature2: "10 sterke <strong>nieuw helden</strong> met unieke vaardigheden!"
|
||||||
feature3: "70+ bonuslevels"
|
feature3: "70+ bonuslevels" # {change}
|
||||||
# feature4: "<strong>3500 bonus gems</strong> every month!"
|
# feature4: "<strong>3500 bonus gems</strong> every month!"
|
||||||
feature5: "Video cursussen"
|
feature5: "Video cursussen"
|
||||||
# feature6: "Premium email support"
|
# feature6: "Premium email support"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
intro_1: "CodeCombat is een online spel dat onderwijst in programmeren. Leerlingen schrijven code in echte programmeertalen."
|
intro_1: "CodeCombat is een online spel dat onderwijst in programmeren. Leerlingen schrijven code in echte programmeertalen."
|
||||||
intro_2: "Geen ervaring nodig!"
|
intro_2: "Geen ervaring nodig!"
|
||||||
free_title: "Hoeveel kost het?"
|
free_title: "Hoeveel kost het?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "Er zijn meer dan 110 GRATIS levels, welke alle concepten omvatten."
|
free_1: "Er zijn meer dan 110 GRATIS levels, welke alle concepten omvatten."
|
||||||
free_2: "Een maandelijkse inschrijving bied toegang tot video tutorials en extra oefenlevels."
|
free_2: "Een maandelijkse inschrijving bied toegang tot video tutorials en extra oefenlevels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
see_the: "Bekijk de"
|
see_the: "Bekijk de"
|
||||||
more_info: "voor meer informatie."
|
more_info: "voor meer informatie."
|
||||||
choose_course: "Kies je cursus:"
|
choose_course: "Kies je cursus:"
|
||||||
enter_code: "voer een ontgrendelcode in"
|
enter_code: "voer een ontgrendelcode in" # {change}
|
||||||
enter_code1: "Voer ontgrendelcode in"
|
enter_code1: "Voer ontgrendelcode in"
|
||||||
enroll: "Inschrijven"
|
enroll: "Inschrijven"
|
||||||
pick_from_classes: "Kies uit je hidige klas"
|
pick_from_classes: "Kies uit je hidige klas"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
simulate_games: "Simuleer spellen!"
|
simulate_games: "Simuleer spellen!"
|
||||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Spellen gesimuleerd"
|
games_simulated: "Spellen gesimuleerd"
|
||||||
games_played: "Spellen gespeeld"
|
games_played: "Spellen gespeeld"
|
||||||
ratio: "Verhouding"
|
ratio: "Verhouding"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
fight: "Aanvallen!"
|
fight: "Aanvallen!"
|
||||||
watch_victory: "Aanschouw je overwinning!"
|
watch_victory: "Aanschouw je overwinning!"
|
||||||
defeat_the: "Versla de"
|
defeat_the: "Versla de"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", begonnen"
|
tournament_started: ", begonnen"
|
||||||
tournament_ends: "Toernooi eindigt"
|
tournament_ends: "Toernooi eindigt"
|
||||||
tournament_ended: "Toernooi geeindigd"
|
tournament_ended: "Toernooi geeindigd"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
||||||
no_recent_games: "De afgelopen 2 weken geen spellen gespeeld."
|
no_recent_games: "De afgelopen 2 weken geen spellen gespeeld."
|
||||||
payments: "Betalingen"
|
payments: "Betalingen"
|
||||||
prepaid: "Prepaid"
|
prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Gekocht"
|
purchased: "Gekocht"
|
||||||
sale: "Verkoop"
|
sale: "Verkoop"
|
||||||
subscription: "abonnement"
|
subscription: "abonnement"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
accepted: "Przyjęto"
|
accepted: "Przyjęto"
|
||||||
rejected: "Odrzucono"
|
rejected: "Odrzucono"
|
||||||
withdrawn: "Wycofano"
|
withdrawn: "Wycofano"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Przesyłający"
|
submitter: "Przesyłający"
|
||||||
submitted: "Przesłano"
|
submitted: "Przesłano"
|
||||||
commit_msg: "Wiadomość do commitu"
|
commit_msg: "Wiadomość do commitu"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Zrobione"
|
done: "Zrobione"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Strona główna" # Not used any more, will be removed soon.
|
home: "Strona główna" # Not used any more, will be removed soon.
|
||||||
level: "Poziom" # Like "Level: Dungeons of Kithgard"
|
level: "Poziom" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Pomiń"
|
skip: "Pomiń"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Ekwipunek"
|
inventory_tab: "Ekwipunek"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
comparison_blurb: "Popraw swoje umiejętności z subskrypcją CodeCombat!"
|
comparison_blurb: "Popraw swoje umiejętności z subskrypcją CodeCombat!"
|
||||||
feature1: "Ponad 100 poziomów w 4 różnych śwoatach" # {change}
|
feature1: "Ponad 100 poziomów w 4 różnych śwoatach" # {change}
|
||||||
feature2: "10 potężnych, <strong>nowych bohaterów</strong> z unikalnymi umiejętnościami!" # {change}
|
feature2: "10 potężnych, <strong>nowych bohaterów</strong> z unikalnymi umiejętnościami!" # {change}
|
||||||
feature3: "Ponad 70 bonusowych poziomów"
|
feature3: "Ponad 70 bonusowych poziomów" # {change}
|
||||||
feature4: "Dodatkowe <strong>3500 klejnotów</strong> co miesiąc!"
|
feature4: "Dodatkowe <strong>3500 klejnotów</strong> co miesiąc!"
|
||||||
feature5: "Poradniki wideo"
|
feature5: "Poradniki wideo"
|
||||||
feature6: "Priorytetowe wsparcie przez e-mail"
|
feature6: "Priorytetowe wsparcie przez e-mail"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
simulate_games: "Symuluj gry!"
|
simulate_games: "Symuluj gry!"
|
||||||
games_simulated_by: "Gry symulowane przez Ciebie:"
|
games_simulated_by: "Gry symulowane przez Ciebie:"
|
||||||
games_simulated_for: "Gry symulowane dla Ciebie:"
|
games_simulated_for: "Gry symulowane dla Ciebie:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Gier zasymulowanych"
|
games_simulated: "Gier zasymulowanych"
|
||||||
games_played: "Gier rozegranych"
|
games_played: "Gier rozegranych"
|
||||||
ratio: "Proporcje"
|
ratio: "Proporcje"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
fight: "Walcz!"
|
fight: "Walcz!"
|
||||||
watch_victory: "Obejrzyj swoje zwycięstwo"
|
watch_victory: "Obejrzyj swoje zwycięstwo"
|
||||||
defeat_the: "Pokonaj"
|
defeat_the: "Pokonaj"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", rozpoczęto"
|
tournament_started: ", rozpoczęto"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
payments: "Płatności"
|
payments: "Płatności"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Zakupiono"
|
purchased: "Zakupiono"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Subskrypcje"
|
subscription: "Subskrypcje"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
accepted: "Aceito"
|
accepted: "Aceito"
|
||||||
rejected: "Rejeitado"
|
rejected: "Rejeitado"
|
||||||
withdrawn: "Retirado"
|
withdrawn: "Retirado"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Enviar"
|
submitter: "Enviar"
|
||||||
submitted: "Enviado"
|
submitted: "Enviado"
|
||||||
commit_msg: "Mensagem de Submissão"
|
commit_msg: "Mensagem de Submissão"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Pronto"
|
done: "Pronto"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Início" # Not used any more, will be removed soon.
|
home: "Início" # Not used any more, will be removed soon.
|
||||||
level: "Fase" # Like "Level: Dungeons of Kithgard"
|
level: "Fase" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Pular"
|
skip: "Pular"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
tip_free_your_mind: "Você tem que deixar isso tudo passar, Neo. O medo, a dúvida e a descrença. Liberte sua mente - Morpheus"
|
tip_free_your_mind: "Você tem que deixar isso tudo passar, Neo. O medo, a dúvida e a descrença. Liberte sua mente - Morpheus"
|
||||||
tip_strong_opponents: "Mesmo o mais forte dos adversários tem sua fraqueza. - Itachi Uchiha"
|
tip_strong_opponents: "Mesmo o mais forte dos adversários tem sua fraqueza. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Antes de começar a programar, você sempre deve planejar com papel e caneta."
|
tip_paper_and_pen: "Antes de começar a programar, você sempre deve planejar com papel e caneta."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventário"
|
inventory_tab: "Inventário"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
intro_1: "CodeCombat é um jogo online que ensina programação. Estudantes criam código em linguagens de programação usadas na vida real."
|
intro_1: "CodeCombat é um jogo online que ensina programação. Estudantes criam código em linguagens de programação usadas na vida real."
|
||||||
intro_2: "Não é necessário ter experiência!"
|
intro_2: "Não é necessário ter experiência!"
|
||||||
free_title: "Quanto custa?"
|
free_title: "Quanto custa?"
|
||||||
cost_china: "CodeCombat na China é gratuito para os primeiros cinco níveis, depois disso o valor mesal para ter acesso a mais de 140 níveis nos nossos servidores exclusivos na China é de $9.99 dólares americanos." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "CodeCombat Basic é gratuito! Há mais de 80 níveis gratuitos que cobrem todos os conceitos." # {change}
|
free_1: "CodeCombat Basic é gratuito! Há mais de 80 níveis gratuitos que cobrem todos os conceitos." # {change}
|
||||||
free_2: "Uma assinatura mensal dá acesso aos vídeos tutoriais e mais níveis para praticar."
|
free_2: "Uma assinatura mensal dá acesso aos vídeos tutoriais e mais níveis para praticar."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
simulate_games: "Simular Partidas!"
|
simulate_games: "Simular Partidas!"
|
||||||
games_simulated_by: "Partidas simuladas por você:"
|
games_simulated_by: "Partidas simuladas por você:"
|
||||||
games_simulated_for: "Partidas simuladas para você:"
|
games_simulated_for: "Partidas simuladas para você:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Partidas simuladas"
|
games_simulated: "Partidas simuladas"
|
||||||
games_played: "Partidas jogadas"
|
games_played: "Partidas jogadas"
|
||||||
ratio: "Taxa"
|
ratio: "Taxa"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
fight: "Lutem!"
|
fight: "Lutem!"
|
||||||
watch_victory: "Assista sua vitória"
|
watch_victory: "Assista sua vitória"
|
||||||
defeat_the: "Derrote"
|
defeat_the: "Derrote"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", iniciado"
|
tournament_started: ", iniciado"
|
||||||
tournament_ends: "Fim do torneio"
|
tournament_ends: "Fim do torneio"
|
||||||
tournament_ended: "Torneio encerrado"
|
tournament_ended: "Torneio encerrado"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
||||||
no_recent_games: "Não foram feitos jogos durante duas semanas."
|
no_recent_games: "Não foram feitos jogos durante duas semanas."
|
||||||
payments: "Pagamentos"
|
payments: "Pagamentos"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Comprado"
|
purchased: "Comprado"
|
||||||
sale: "Vender"
|
sale: "Vender"
|
||||||
subscription: "Assinatura"
|
subscription: "Assinatura"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
accepted: "Aceites"
|
accepted: "Aceites"
|
||||||
rejected: "Rejeitadas"
|
rejected: "Rejeitadas"
|
||||||
withdrawn: "Canceladas"
|
withdrawn: "Canceladas"
|
||||||
|
accept: "Aceitar"
|
||||||
|
reject: "Rejeitar"
|
||||||
|
withdraw: "Cancelar"
|
||||||
submitter: "Submissor"
|
submitter: "Submissor"
|
||||||
submitted: "Submeteu"
|
submitted: "Submeteu"
|
||||||
commit_msg: "Mensagem da Submissão"
|
commit_msg: "Mensagem da Submissão"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Concluir"
|
done: "Concluir"
|
||||||
|
next_game: "Próximo jogo"
|
||||||
|
show_menu: "Mostrar o menu do jogo"
|
||||||
home: "Início" # Not used any more, will be removed soon.
|
home: "Início" # Not used any more, will be removed soon.
|
||||||
level: "Nível" # Like "Level: Dungeons of Kithgard"
|
level: "Nível" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Saltar"
|
skip: "Saltar"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
tip_free_your_mind: "Tens de libertar tudo, Neo. Medo, dúvida e descrença. Liberta a tua mente. - Morpheus"
|
tip_free_your_mind: "Tens de libertar tudo, Neo. Medo, dúvida e descrença. Liberta a tua mente. - Morpheus"
|
||||||
tip_strong_opponents: "Até o mais forte dos adversários tem uma fraqueza. - Itachi Uchiha"
|
tip_strong_opponents: "Até o mais forte dos adversários tem uma fraqueza. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Antes de começares a programar, podes sempre planear com uma folha de papel e uma caneta."
|
tip_paper_and_pen: "Antes de começares a programar, podes sempre planear com uma folha de papel e uma caneta."
|
||||||
|
tip_solve_then_write: "Primeiro, resolve o problema. Depois, escreve o código. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventário"
|
inventory_tab: "Inventário"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
intro_1: "O CodeCombat é um jogo 'online' que ensina programação. Os estudantes escrevem código em linguagens de programação reais."
|
intro_1: "O CodeCombat é um jogo 'online' que ensina programação. Os estudantes escrevem código em linguagens de programação reais."
|
||||||
intro_2: "Não é necessário ter experiência!"
|
intro_2: "Não é necessário ter experiência!"
|
||||||
free_title: "Quanto custa?"
|
free_title: "Quanto custa?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "Há 110+ níveis GRATUITOS que abordam cada conceito."
|
free_1: "Há 110+ níveis GRATUITOS que abordam cada conceito."
|
||||||
free_2: "Uma subscrição mensal garante acesso a tutoriais em vídeo e a níveis extra para praticar."
|
free_2: "Uma subscrição mensal garante acesso a tutoriais em vídeo e a níveis extra para praticar."
|
||||||
|
@ -913,11 +918,11 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
see_the: "Vê a"
|
see_the: "Vê a"
|
||||||
more_info: "para mais informações."
|
more_info: "para mais informações."
|
||||||
choose_course: "Escolhe o Teu Curso:"
|
choose_course: "Escolhe o Teu Curso:"
|
||||||
enter_code: "Introduz um código de desbloqueio"
|
enter_code: "Introduz um código de desbloqueio para te juntares a uma turma existente"
|
||||||
enter_code1: "Introduzir código de desbloqueio"
|
enter_code1: "Introduzir código de desbloqueio"
|
||||||
enroll: "Inscrever"
|
enroll: "Inscrever"
|
||||||
pick_from_classes: "Escolhe uma das tuas turmas atuais"
|
pick_from_classes: "Escolhe uma das tuas turmas atuais"
|
||||||
enter: "Introduzir"
|
enter: "Entrar"
|
||||||
or: "Ou"
|
or: "Ou"
|
||||||
topics: "Tópicos"
|
topics: "Tópicos"
|
||||||
hours_content: "Horas de conteúdo:"
|
hours_content: "Horas de conteúdo:"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
simulate_games: "Simular Jogos!"
|
simulate_games: "Simular Jogos!"
|
||||||
games_simulated_by: "Jogos simulados por ti:"
|
games_simulated_by: "Jogos simulados por ti:"
|
||||||
games_simulated_for: "Jogos simulados para ti:"
|
games_simulated_for: "Jogos simulados para ti:"
|
||||||
|
games_in_queue: "Jogos na fila de espera atualmente:"
|
||||||
games_simulated: "Jogos simulados"
|
games_simulated: "Jogos simulados"
|
||||||
games_played: "Jogos jogados"
|
games_played: "Jogos jogados"
|
||||||
ratio: "Rácio"
|
ratio: "Rácio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
fight: "Lutar!"
|
fight: "Lutar!"
|
||||||
watch_victory: "Vê a tua vitória"
|
watch_victory: "Vê a tua vitória"
|
||||||
defeat_the: "Derrota o"
|
defeat_the: "Derrota o"
|
||||||
|
watch_battle: "Ver a batalha"
|
||||||
tournament_started: ", começou"
|
tournament_started: ", começou"
|
||||||
tournament_ends: "O Torneio acaba"
|
tournament_ends: "O Torneio acaba"
|
||||||
tournament_ended: "O Torneio acabou"
|
tournament_ended: "O Torneio acabou"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
||||||
no_recent_games: "Sem jogos jogados nas passadas duas semanas."
|
no_recent_games: "Sem jogos jogados nas passadas duas semanas."
|
||||||
payments: "Pagamentos"
|
payments: "Pagamentos"
|
||||||
prepaid: "Pré-pago"
|
prepaid: "Pré-pago"
|
||||||
|
prepaid_codes: "Códigos Pré-pagos"
|
||||||
purchased: "Adquirido"
|
purchased: "Adquirido"
|
||||||
sale: "Promoção"
|
sale: "Promoção"
|
||||||
subscription: "Subscrição"
|
subscription: "Subscrição"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
accepted: "Acceptat"
|
accepted: "Acceptat"
|
||||||
rejected: "Respins"
|
rejected: "Respins"
|
||||||
withdrawn: "Retrage"
|
withdrawn: "Retrage"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Expeditor"
|
submitter: "Expeditor"
|
||||||
submitted: "Expediat"
|
submitted: "Expediat"
|
||||||
commit_msg: "Înregistrează Mesajul"
|
commit_msg: "Înregistrează Mesajul"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Gata"
|
done: "Gata"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Acasă" # Not used any more, will be removed soon.
|
home: "Acasă" # Not used any more, will be removed soon.
|
||||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Sari peste"
|
skip: "Sari peste"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
tip_free_your_mind: "Trebuie sa lași totul, Neo. Frica, Îndoiala și necredința. Eliberează-ți mintea. ~Morpheus"
|
tip_free_your_mind: "Trebuie sa lași totul, Neo. Frica, Îndoiala și necredința. Eliberează-ți mintea. ~Morpheus"
|
||||||
tip_strong_opponents: "Și cei mai puternici dintre oponenți întodeauna au o slăbiciune. ~Itachi Uchiha"
|
tip_strong_opponents: "Și cei mai puternici dintre oponenți întodeauna au o slăbiciune. ~Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventar"
|
inventory_tab: "Inventar"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
intro_1: "CodeCombat este un joc online care te învață programare. Studenți scriu cod în limbaje de programare reale."
|
intro_1: "CodeCombat este un joc online care te învață programare. Studenți scriu cod în limbaje de programare reale."
|
||||||
intro_2: "Nu este nevoie de experiența în domeniu!"
|
intro_2: "Nu este nevoie de experiența în domeniu!"
|
||||||
free_title: "Cât de mult costă?"
|
free_title: "Cât de mult costă?"
|
||||||
cost_china: "CodeCombat în China este gratis pentru primele 5 nivele, după care costă $9.99 USD pe lună pentru a accesa celelalte 140+ nivele pe serverele noaste exlusive din China." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "Sunt 80+ de nivele GRATIS ce parcurg fiecare concept în programare." # {change}
|
free_1: "Sunt 80+ de nivele GRATIS ce parcurg fiecare concept în programare." # {change}
|
||||||
free_2: "Un abonament lunar oferă acces la tutoriale video si nivele extra pentru practică."
|
free_2: "Un abonament lunar oferă acces la tutoriale video si nivele extra pentru practică."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
simulate_games: "Simulează Jocuri!"
|
simulate_games: "Simulează Jocuri!"
|
||||||
games_simulated_by: "Jocuri simulate de tine:"
|
games_simulated_by: "Jocuri simulate de tine:"
|
||||||
games_simulated_for: "Jocuri simulate pentru tine:"
|
games_simulated_for: "Jocuri simulate pentru tine:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Jocuri simulate"
|
games_simulated: "Jocuri simulate"
|
||||||
games_played: "Jocuri jucate"
|
games_played: "Jocuri jucate"
|
||||||
ratio: "Rație"
|
ratio: "Rație"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
fight: "Luptă!"
|
fight: "Luptă!"
|
||||||
watch_victory: "Vizualizează victoria"
|
watch_victory: "Vizualizează victoria"
|
||||||
defeat_the: "Învinge"
|
defeat_the: "Învinge"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", a început"
|
tournament_started: ", a început"
|
||||||
tournament_ends: "Turneul se termină"
|
tournament_ends: "Turneul se termină"
|
||||||
tournament_ended: "Turneul s-a terminat"
|
tournament_ended: "Turneul s-a terminat"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
||||||
no_recent_games: "Nici-un joc jucat de 2 săptămâni."
|
no_recent_games: "Nici-un joc jucat de 2 săptămâni."
|
||||||
payments: "Plăți"
|
payments: "Plăți"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Cumpărate"
|
purchased: "Cumpărate"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Abonament"
|
subscription: "Abonament"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
accepted: "Принято"
|
accepted: "Принято"
|
||||||
rejected: "Отклонено"
|
rejected: "Отклонено"
|
||||||
withdrawn: "Отозвано"
|
withdrawn: "Отозвано"
|
||||||
|
accept: "Принять"
|
||||||
|
reject: "Отклонить"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Податель"
|
submitter: "Податель"
|
||||||
submitted: "Представлено"
|
submitted: "Представлено"
|
||||||
commit_msg: "Сопроводительное сообщение"
|
commit_msg: "Сопроводительное сообщение"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
|
next_game: "Следующая игра"
|
||||||
|
show_menu: "Показать меню игры"
|
||||||
home: "На главную" # Not used any more, will be removed soon.
|
home: "На главную" # Not used any more, will be removed soon.
|
||||||
level: "Уровень" # Like "Level: Dungeons of Kithgard"
|
level: "Уровень" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Пропустить"
|
skip: "Пропустить"
|
||||||
|
@ -254,8 +259,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
victory_new_item: "Новый предмет"
|
victory_new_item: "Новый предмет"
|
||||||
victory_viking_code_school: "Ого, это было тяжелый уровень! Если вы еще не разработчик программ, вам стоит им стать. Вы только что ускорири принятие в Школу Викингов, где вы сможете поднять свои навыки на новый уровень и стать профессиональным веб-разработчиком за 14 недель."
|
victory_viking_code_school: "Ого, это было тяжелый уровень! Если вы еще не разработчик программ, вам стоит им стать. Вы только что ускорири принятие в Школу Викингов, где вы сможете поднять свои навыки на новый уровень и стать профессиональным веб-разработчиком за 14 недель."
|
||||||
victory_become_a_viking: "Станьте Викингом"
|
victory_become_a_viking: "Станьте Викингом"
|
||||||
# victory_bloc: "Great work! Your skills are improving, and someone's taking notice. If you've considered becoming a software developer, this may be your lucky day. Bloc is an online bootcamp that pairs you 1-on-1 with an expert mentor who will help train you into a professional developer! By beating A Mayhem of Munchkins, you're now eligible for a $500 price reduction with the code: CCRULES"
|
victory_bloc: "Отличная работа! Ваши навыки улучшаются! Если вы размышляете, как стать разработчиком программного обеспечения, это может быть ваш счастливый день. Bloc представляет собой онлайн учебный лагерь,который дает вам опытного наставника, который поможет Вам стать профессиональным разработчиком! Победив Mayhem of Munchkins, вы имеете право на $ 500 уменьшение цены с кодом: CCRULES"
|
||||||
# victory_bloc_cta: "Meet your mentor – learn about Bloc"
|
victory_bloc_cta: "Встретьте своего наставника - узнайте больше про Bloc"
|
||||||
guide_title: "Руководство"
|
guide_title: "Руководство"
|
||||||
tome_minion_spells: "Заклинания ваших миньонов" # Only in old-style levels.
|
tome_minion_spells: "Заклинания ваших миньонов" # Only in old-style levels.
|
||||||
tome_read_only_spells: "Заклинания только для чтения" # Only in old-style levels.
|
tome_read_only_spells: "Заклинания только для чтения" # Only in old-style levels.
|
||||||
|
@ -337,7 +342,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
tip_recurse: "Итерация свойственна человеку, рекурсия божественна. - L. Peter Deutsch"
|
tip_recurse: "Итерация свойственна человеку, рекурсия божественна. - L. Peter Deutsch"
|
||||||
tip_free_your_mind: "Отвлекись от всего, Нео. Страх, неверие, сомнения отбрось — очисти свой разум. - Morpheus"
|
tip_free_your_mind: "Отвлекись от всего, Нео. Страх, неверие, сомнения отбрось — очисти свой разум. - Morpheus"
|
||||||
tip_strong_opponents: "Даже сильнейший противник имеет слабость. - Itachi Uchiha"
|
tip_strong_opponents: "Даже сильнейший противник имеет слабость. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Прежде чем приступить к решению, попробуй решить задачу с помощью бумаги и ручки."
|
tip_paper_and_pen: "Прежде чем начать программировать, вы всегда можете попробовать с листом бумаги и ручкой."
|
||||||
|
solve_then_write: "Сначала найдите решение, а потом пишите код. - Джон Джонсон"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Инвентарь"
|
inventory_tab: "Инвентарь"
|
||||||
|
@ -407,7 +413,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
feature7: "Частные <strong>Кланы</strong>"
|
feature7: "Частные <strong>Кланы</strong>"
|
||||||
free: "Бесплатно"
|
free: "Бесплатно"
|
||||||
month: "месяц"
|
month: "месяц"
|
||||||
must_be_logged: "Вы должны быть залогинены. Вы можете создать аккаунт или зайти в созданный с помощью меню выше."
|
must_be_logged: "Вы должны быть залогинены. Вы можете создать аккаунт или зайти в уже существующий с помощью меню выше."
|
||||||
subscribe_title: "Подпишись"
|
subscribe_title: "Подпишись"
|
||||||
unsubscribe: "Отписаться"
|
unsubscribe: "Отписаться"
|
||||||
confirm_unsubscribe: "Подтвердить отмену подписки"
|
confirm_unsubscribe: "Подтвердить отмену подписки"
|
||||||
|
@ -513,8 +519,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
attack_2: "от указанного"
|
attack_2: "от указанного"
|
||||||
attack_3: "урона оружия."
|
attack_3: "урона оружия."
|
||||||
health_1: "Получает"
|
health_1: "Получает"
|
||||||
health_2: "от указанного"
|
health_2: "от указанной"
|
||||||
health_3: "здоровья."
|
health_3: "прочности брони."
|
||||||
speed_1: "Передвигается со скоростью"
|
speed_1: "Передвигается со скоростью"
|
||||||
speed_2: "метров в секунду."
|
speed_2: "метров в секунду."
|
||||||
available_for_purchase: "Доступно для покупки" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
available_for_purchase: "Доступно для покупки" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
||||||
|
@ -594,15 +600,14 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
jose_title: "Музыка"
|
jose_title: "Музыка"
|
||||||
jose_blurb: "На взлет"
|
jose_blurb: "На взлет"
|
||||||
retrostyle_title: "Иллюстрирование"
|
retrostyle_title: "Иллюстрирование"
|
||||||
retrostyle_blurb: "RetroStyle Games"
|
retrostyle_blurb: "Игры в стиле ретро"
|
||||||
|
|
||||||
teachers:
|
teachers:
|
||||||
title: "CodeCombat: Информация для учителей"
|
title: "CodeCombat: Информация для учителей"
|
||||||
intro_1: "CodeCombat - это онлайн игра, которая обучает программированию. Ученики пишут код на реальных языках программирования."
|
intro_1: "CodeCombat - это онлайн игра, которая обучает программированию. Ученики пишут код на реальных языках программирования."
|
||||||
intro_2: "Опыт не обязателен!"
|
intro_2: "Опыт не обязателен!"
|
||||||
free_title: "Сколько это стоит?"
|
free_title: "Сколько это стоит?"
|
||||||
cost_china: "Первые 5 уровней CodeCombat бесплатны в Китае. При оплате $9.99 в месяц вы получите доступ к последующим более чем 140 уровням на наших эксклюзивных серверах в Китае." # Deprecated
|
cost_premium_server: "CodeCombat бесплатный в течение первых пяти уровней, после чего он стоит $ 9,99 USD в месяц за доступ к другим нашим 190+ уровням на наших эксклюзивных серверах."
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
|
||||||
free_1: "В наличии более 80 БЕСПЛАТНЫХ уровней, которые покрывают каждый концепт." # {change}
|
free_1: "В наличии более 80 БЕСПЛАТНЫХ уровней, которые покрывают каждый концепт." # {change}
|
||||||
free_2: "Месячная подписка предоставляет доступ к видео-урокам и дополнительным уровням."
|
free_2: "Месячная подписка предоставляет доступ к видео-урокам и дополнительным уровням."
|
||||||
teacher_subs_title: "Учителя получают бесплатные подписки!"
|
teacher_subs_title: "Учителя получают бесплатные подписки!"
|
||||||
|
@ -621,8 +626,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
monitor_progress_title: "Как мне следить за прогрессом студентов?"
|
monitor_progress_title: "Как мне следить за прогрессом студентов?"
|
||||||
monitor_progress_1: "Прогресс студентов может быть отследить, создав"
|
monitor_progress_1: "Прогресс студентов может быть отследить, создав"
|
||||||
monitor_progress_2: "для вашего класса."
|
monitor_progress_2: "для вашего класса."
|
||||||
monitor_progress_3: "Чтобы добавить студентов, отправьте им ссылку-пришлашение в ваш Клан, которую можно найти на странице"
|
monitor_progress_3: "Чтобы добавить студентов, отправьте им ссылку-пришлашение в ваш Клан, которую можно найти на"
|
||||||
monitor_progress_4: "."
|
monitor_progress_4: "странице."
|
||||||
monitor_progress_5: "После того, как они присоединятся, вы увидите сводку по прогрессам студентов на странице вашего Клана."
|
monitor_progress_5: "После того, как они присоединятся, вы увидите сводку по прогрессам студентов на странице вашего Клана."
|
||||||
private_clans_1: "Частные Кланы обеспечивают повышенную конфиденциальность и детальную информацию по прогрессу каждого студента."
|
private_clans_1: "Частные Кланы обеспечивают повышенную конфиденциальность и детальную информацию по прогрессу каждого студента."
|
||||||
private_clans_2: "Чтобы создать частный Клан, отметьте флажок 'Сделать клан частным', когда будете создавать"
|
private_clans_2: "Чтобы создать частный Клан, отметьте флажок 'Сделать клан частным', когда будете создавать"
|
||||||
|
@ -866,9 +871,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
play_time: "Время в игре:"
|
play_time: "Время в игре:"
|
||||||
completed: "Завершено:"
|
completed: "Завершено:"
|
||||||
invite_students: "Пригласите студентов в класс."
|
invite_students: "Пригласите студентов в класс."
|
||||||
# invite_link_header: "Link to join course"
|
invite_link_header: "Ссылка для приглашения в класс"
|
||||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
invite_link_p_1: "Дайте эту ссылку студентам, которых вы бы хотели пригласить в класс."
|
||||||
# invite_link_p_2: "Or have us email them directly:"
|
invite_link_p_2: "Или мы сами можем написать им письмо на почту:"
|
||||||
# capacity_used: "Course slots used:"
|
# capacity_used: "Course slots used:"
|
||||||
enter_emails: "Введите email студентов по одному на строке, которых вы хотите пригласить"
|
enter_emails: "Введите email студентов по одному на строке, которых вы хотите пригласить"
|
||||||
send_invites: "Отправить приглашения"
|
send_invites: "Отправить приглашения"
|
||||||
|
@ -905,16 +910,16 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
teachers_click: "Учителям сюда"
|
teachers_click: "Учителям сюда"
|
||||||
students_click: "Студентам сюда"
|
students_click: "Студентам сюда"
|
||||||
courses_on_coco: "Курсы на CodeCombat"
|
courses_on_coco: "Курсы на CodeCombat"
|
||||||
designed_to: "Курсы разработаны чтобы научить основам информатики через игру и веселье. Уровни огранизованы по самым основным ключевым, чтобы все 5 часов курса было интересно заниматься."
|
designed_to: "Курсы разработаны чтобы научить основам информатики через игру и веселье. Уровни огранизованы по основным ключевым концептам, чтобы все 5 часов курса было интересно заниматься."
|
||||||
more_in_less: "Изучайте больше за меньшее время"
|
more_in_less: "Изучайте больше за меньшее время"
|
||||||
no_experience: "Не требуется опыта программирования"
|
no_experience: "Не требуется опыта программирования"
|
||||||
easy_monitor: "Легко отслеживать прогресс студентов"
|
easy_monitor: "Легко отслеживать прогресс студентов"
|
||||||
purchase_for_class: "Купите курс для всего вашего класса. Студентов очень легко добавлять!"
|
purchase_for_class: "Купите курс для всего вашего класса. Студентов очень легко добавлять!"
|
||||||
see_the: "Смотрите"
|
see_the: "Смотрите"
|
||||||
more_info: "для доп. информации."
|
more_info: "для дополнительной информации."
|
||||||
choose_course: "Выберите ваш курс:"
|
choose_course: "Выберите ваш курс:"
|
||||||
enter_code: "Введите код"
|
enter_code: "Введите код разблокировки, чтобы присоединиться к существующему классу"
|
||||||
enter_code1: "Введите код"
|
enter_code1: "Введите код разблокировки"
|
||||||
enroll: "Записаться"
|
enroll: "Записаться"
|
||||||
pick_from_classes: "Выбрать из вашего класса"
|
pick_from_classes: "Выбрать из вашего класса"
|
||||||
enter: "Войти"
|
enter: "Войти"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
simulate_games: "Симулировать игры!"
|
simulate_games: "Симулировать игры!"
|
||||||
games_simulated_by: "Игры, симулированные вами:"
|
games_simulated_by: "Игры, симулированные вами:"
|
||||||
games_simulated_for: "Игры, симулированные за вас:"
|
games_simulated_for: "Игры, симулированные за вас:"
|
||||||
|
games_in_queue: "Игры в очереди в настоящее время:"
|
||||||
games_simulated: "Игр симулировано"
|
games_simulated: "Игр симулировано"
|
||||||
games_played: "Игр сыграно"
|
games_played: "Игр сыграно"
|
||||||
ratio: "Соотношение"
|
ratio: "Соотношение"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
fight: "В бой!"
|
fight: "В бой!"
|
||||||
watch_victory: "Наблюдать за победой"
|
watch_victory: "Наблюдать за победой"
|
||||||
defeat_the: "Победить"
|
defeat_the: "Победить"
|
||||||
|
watch_battle: "Смотреть битву"
|
||||||
tournament_started: ", начат"
|
tournament_started: ", начат"
|
||||||
tournament_ends: "Турнир заканчивается"
|
tournament_ends: "Турнир заканчивается"
|
||||||
tournament_ended: "Турнир закончился"
|
tournament_ended: "Турнир закончился"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
no_recent_games: "Нет сыгранных игр за последние две недели."
|
no_recent_games: "Нет сыгранных игр за последние две недели."
|
||||||
payments: "Платежи"
|
payments: "Платежи"
|
||||||
prepaid: "Предоплата"
|
prepaid: "Предоплата"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Куплено"
|
purchased: "Куплено"
|
||||||
sale: "Распродажа"
|
sale: "Распродажа"
|
||||||
subscription: "Подписка"
|
subscription: "Подписка"
|
||||||
|
@ -1258,7 +1266,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
||||||
bad_input: "Неверные входные данные."
|
bad_input: "Неверные входные данные."
|
||||||
server_error: "Ошибка сервера."
|
server_error: "Ошибка сервера."
|
||||||
unknown: "Неизвестная ошибка."
|
unknown: "Неизвестная ошибка."
|
||||||
# error: "ERROR"
|
error: "ОШИБКА"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
sessions: "Сессии"
|
sessions: "Сессии"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
accepted: "Prijaté"
|
accepted: "Prijaté"
|
||||||
rejected: "Zamietnuté"
|
rejected: "Zamietnuté"
|
||||||
withdrawn: "Uzatvorené"
|
withdrawn: "Uzatvorené"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Odosielateľ"
|
submitter: "Odosielateľ"
|
||||||
submitted: "Odoslané"
|
submitted: "Odoslané"
|
||||||
commit_msg: "Popis ukladania"
|
commit_msg: "Popis ukladania"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hotovo"
|
done: "Hotovo"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Domov" # Not used any more, will be removed soon.
|
home: "Domov" # Not used any more, will be removed soon.
|
||||||
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Preskočiť"
|
skip: "Preskočiť"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Inventár"
|
inventory_tab: "Inventár"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
intro_1: "CodeCombat je online hra, ktorá učí programovať. Študenti píšu kód v skutočných programovacích jazykoch."
|
intro_1: "CodeCombat je online hra, ktorá učí programovať. Študenti píšu kód v skutočných programovacích jazykoch."
|
||||||
intro_2: "Nie sú nutné žiadne predchádzajúce skúsenosti !"
|
intro_2: "Nie sú nutné žiadne predchádzajúce skúsenosti !"
|
||||||
free_title: "Koľko to stojí ?"
|
free_title: "Koľko to stojí ?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "CodeCombat Basic is ZDARMA ! K dispozícii je 70+ úrovní pokrývajúcich každý koncept." # {change}
|
free_1: "CodeCombat Basic is ZDARMA ! K dispozícii je 70+ úrovní pokrývajúcich každý koncept." # {change}
|
||||||
free_2: "Mesačné predplatné poskytuje prístup k videonávodom a k úrovniam na precvičenie navyše."
|
free_2: "Mesačné predplatné poskytuje prístup k videonávodom a k úrovniam na precvičenie navyše."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
simulate_games: "Simuluj hry !"
|
simulate_games: "Simuluj hry !"
|
||||||
games_simulated_by: "Tebou simulované hry:"
|
games_simulated_by: "Tebou simulované hry:"
|
||||||
games_simulated_for: "Pre teba simulované hry:"
|
games_simulated_for: "Pre teba simulované hry:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Simulované hry"
|
games_simulated: "Simulované hry"
|
||||||
games_played: "Odohrané hry"
|
games_played: "Odohrané hry"
|
||||||
ratio: "Pomer"
|
ratio: "Pomer"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
fight: "Bojuj !"
|
fight: "Bojuj !"
|
||||||
watch_victory: "Pozri si svoju výhru"
|
watch_victory: "Pozri si svoju výhru"
|
||||||
defeat_the: "Poraz"
|
defeat_the: "Poraz"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ", spustený"
|
tournament_started: ", spustený"
|
||||||
tournament_ends: "Turnaj končí"
|
tournament_ends: "Turnaj končí"
|
||||||
tournament_ended: "Turnaj skončil"
|
tournament_ended: "Turnaj skončil"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Урађено"
|
done: "Урађено"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Почетна" # Not used any more, will be removed soon.
|
home: "Почетна" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
commit_msg: "Förbindelsemeddelande"
|
commit_msg: "Förbindelsemeddelande"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Klar"
|
done: "Klar"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Hem" # Not used any more, will be removed soon.
|
home: "Hem" # Not used any more, will be removed soon.
|
||||||
level: "Nivå" # Like "Level: Dungeons of Kithgard"
|
level: "Nivå" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Hoppa över"
|
skip: "Hoppa över"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Utrustning"
|
inventory_tab: "Utrustning"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
intro_1: "CodeCombat är ett onlinespel som lär ut programmering. Eleverna skriver kod i riktiga programspråk."
|
intro_1: "CodeCombat är ett onlinespel som lär ut programmering. Eleverna skriver kod i riktiga programspråk."
|
||||||
intro_2: "Ingen erfarenhet krävs!"
|
intro_2: "Ingen erfarenhet krävs!"
|
||||||
free_title: "Hur mycket kostar det?"
|
free_title: "Hur mycket kostar det?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
free_1: "CodeCombat Basic är GRATIS! Det finns över 80 gratis nivåer som täcker alla koncept." # {change}
|
free_1: "CodeCombat Basic är GRATIS! Det finns över 80 gratis nivåer som täcker alla koncept." # {change}
|
||||||
free_2: "En månadsprenumeration ger tillgång till videogenomgångar och fler övningsnivåer."
|
free_2: "En månadsprenumeration ger tillgång till videogenomgångar och fler övningsnivåer."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
simulate_games: "Simulera matcher!"
|
simulate_games: "Simulera matcher!"
|
||||||
games_simulated_by: "Spel simulerade av dig:"
|
games_simulated_by: "Spel simulerade av dig:"
|
||||||
games_simulated_for: "Spel simulerade åt dig:"
|
games_simulated_for: "Spel simulerade åt dig:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Simulerade spel"
|
games_simulated: "Simulerade spel"
|
||||||
games_played: "Spelade spel"
|
games_played: "Spelade spel"
|
||||||
ratio: "Förhållande"
|
ratio: "Förhållande"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
||||||
no_recent_games: "Inga spel spelade de senaste två veckorna."
|
no_recent_games: "Inga spel spelade de senaste två veckorna."
|
||||||
payments: "Betalningar"
|
payments: "Betalningar"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
subscription: "Prenumeration"
|
subscription: "Prenumeration"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "เสร็จสิ้น"
|
done: "เสร็จสิ้น"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "หน้าแรก" # Not used any more, will be removed soon.
|
home: "หน้าแรก" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "ข้าม"
|
skip: "ข้าม"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
tip_strong_opponents: "ศัตรูที่แข็งแกร่งที่สุด ก็ยังมีจุดอ่อน - อุจิวะ อิทาจิ"
|
tip_strong_opponents: "ศัตรูที่แข็งแกร่งที่สุด ก็ยังมีจุดอ่อน - อุจิวะ อิทาจิ"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
accepted: "Kabul Edildi"
|
accepted: "Kabul Edildi"
|
||||||
rejected: "Reddedildi"
|
rejected: "Reddedildi"
|
||||||
withdrawn: "İptal Edildi"
|
withdrawn: "İptal Edildi"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Gönderen"
|
submitter: "Gönderen"
|
||||||
submitted: "Gönderilme"
|
submitted: "Gönderilme"
|
||||||
commit_msg: "Gönderme İletisi"
|
commit_msg: "Gönderme İletisi"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Bitti"
|
done: "Bitti"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "Anasayfa" # Not used any more, will be removed soon.
|
home: "Anasayfa" # Not used any more, will be removed soon.
|
||||||
level: "Bölüm" # Like "Level: Dungeons of Kithgard"
|
level: "Bölüm" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Atla"
|
skip: "Atla"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
tip_free_your_mind: "Her şeyi bırakmalısın, Neo. Korku, şüphe, ve güvensizlik. Zihnini özgürleştir. - Morpheus"
|
tip_free_your_mind: "Her şeyi bırakmalısın, Neo. Korku, şüphe, ve güvensizlik. Zihnini özgürleştir. - Morpheus"
|
||||||
tip_strong_opponents: "En güçlü rakiplerin bile zayıf noktası vardır. - Itachi Uchiha"
|
tip_strong_opponents: "En güçlü rakiplerin bile zayıf noktası vardır. - Itachi Uchiha"
|
||||||
tip_paper_and_pen: "Kodlamaya başlamadan önce çalışmaya her zaman kağıt ve kalemle başlamalısın."
|
tip_paper_and_pen: "Kodlamaya başlamadan önce çalışmaya her zaman kağıt ve kalemle başlamalısın."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Envanter"
|
inventory_tab: "Envanter"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
simulate_games: "Oyunları Simüle Et!"
|
simulate_games: "Oyunları Simüle Et!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "Simüle edilen oyunlar"
|
games_simulated: "Simüle edilen oyunlar"
|
||||||
games_played: "Oynanan oyunlar"
|
games_played: "Oynanan oyunlar"
|
||||||
ratio: "Oran"
|
ratio: "Oran"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
||||||
no_recent_games: "Son iki hafta içerisinde hiç oyun oynanmadı."
|
no_recent_games: "Son iki hafta içerisinde hiç oyun oynanmadı."
|
||||||
payments: "Ödemeler"
|
payments: "Ödemeler"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Ödendi"
|
purchased: "Ödendi"
|
||||||
sale: "İndirim"
|
sale: "İndirim"
|
||||||
subscription: "Üyelik"
|
subscription: "Üyelik"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
accepted: "Прийнято"
|
accepted: "Прийнято"
|
||||||
rejected: "Відхилено"
|
rejected: "Відхилено"
|
||||||
withdrawn: "Відкликано"
|
withdrawn: "Відкликано"
|
||||||
|
accept: "Прийняти"
|
||||||
|
reject: "Відхилити"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Відправник"
|
submitter: "Відправник"
|
||||||
submitted: "Відправлено"
|
submitted: "Відправлено"
|
||||||
commit_msg: "Доручити повідомлення"
|
commit_msg: "Доручити повідомлення"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Готово"
|
done: "Готово"
|
||||||
|
next_game: "Наступна гра"
|
||||||
|
show_menu: "Показати меню гри"
|
||||||
home: "На головну" # Not used any more, will be removed soon.
|
home: "На головну" # Not used any more, will be removed soon.
|
||||||
level: "Рівень" # Like "Level: Dungeons of Kithgard"
|
level: "Рівень" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Пропустити"
|
skip: "Пропустити"
|
||||||
|
@ -254,8 +259,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
victory_new_item: "Новий предмет"
|
victory_new_item: "Новий предмет"
|
||||||
victory_viking_code_school: "Оце так! Це був важкий рівень, але Ви справились! Якщо Ви ще не розробник програмного забезпечення, Вам слід вже бути. Ви щойно пройшли швидку процедуру прийняття у Viking Code School, де Ви матимете змогу удосконалити Ваші навички до наступного рівня та стати професійним веб-розробником за 14 тижнів."
|
victory_viking_code_school: "Оце так! Це був важкий рівень, але Ви справились! Якщо Ви ще не розробник програмного забезпечення, Вам слід вже бути. Ви щойно пройшли швидку процедуру прийняття у Viking Code School, де Ви матимете змогу удосконалити Ваші навички до наступного рівня та стати професійним веб-розробником за 14 тижнів."
|
||||||
victory_become_a_viking: "Стати вікінгом"
|
victory_become_a_viking: "Стати вікінгом"
|
||||||
# victory_bloc: "Great work! Your skills are improving, and someone's taking notice. If you've considered becoming a software developer, this may be your lucky day. Bloc is an online bootcamp that pairs you 1-on-1 with an expert mentor who will help train you into a professional developer! By beating A Mayhem of Munchkins, you're now eligible for a $500 price reduction with the code: CCRULES"
|
victory_bloc: "Відмінна робота! Ваші навички покращуються! Якщо ви роздумуєте, як стати розробником програмного забезпечення, це може бути ваш щасливий день. Bloc являє собою онлайн навчальний табір, який дає вам досвідченого наставника, який допоможе Вам стати професійним розробником! Перемігши Mayhem of Munchkins, ви маєте право на $ 500 зменшення ціни з кодом: CCRULES"
|
||||||
# victory_bloc_cta: "Meet your mentor – learn about Bloc"
|
victory_bloc_cta: "Зустріньте свого наставника - дізнайтеся більше про Bloc"
|
||||||
guide_title: "Посібник"
|
guide_title: "Посібник"
|
||||||
tome_minion_spells: "Заклинання Ваших міньонів" # Only in old-style levels.
|
tome_minion_spells: "Заклинання Ваших міньонів" # Only in old-style levels.
|
||||||
tome_read_only_spells: "Заклинання тільки для читання" # Only in old-style levels.
|
tome_read_only_spells: "Заклинання тільки для читання" # Only in old-style levels.
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
tip_free_your_mind: "Нео, ти повинен усе подолати. Страх... сумніви і невіра. Звільни від них свій розум. - Морфіус"
|
tip_free_your_mind: "Нео, ти повинен усе подолати. Страх... сумніви і невіра. Звільни від них свій розум. - Морфіус"
|
||||||
tip_strong_opponents: "Навіть наймогутніший суперник має свою слабкість. - Ітачі Учіха"
|
tip_strong_opponents: "Навіть наймогутніший суперник має свою слабкість. - Ітачі Учіха"
|
||||||
tip_paper_and_pen: "Перш ніж почати програмувати, ви завжди можете спробувати з аркушем паперу і ручкою."
|
tip_paper_and_pen: "Перш ніж почати програмувати, ви завжди можете спробувати з аркушем паперу і ручкою."
|
||||||
|
solve_then_write: "Спочатку знайдіть рішення, а потім пишіть код. - Джон Джонсон"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Інвентар"
|
inventory_tab: "Інвентар"
|
||||||
|
@ -407,7 +413,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
feature7: "Приватні <strong>клани</strong>"
|
feature7: "Приватні <strong>клани</strong>"
|
||||||
free: "Безкоштовно"
|
free: "Безкоштовно"
|
||||||
month: "місяць"
|
month: "місяць"
|
||||||
# must_be_logged: "You must be logged in first. Please create an account or log in from the menu above."
|
must_be_logged: "Ви повинні бути залогінені. Ви можете створити акаунт або увійти в уже існуючий за допомогою меню вище."
|
||||||
subscribe_title: "Взяти абонемент"
|
subscribe_title: "Взяти абонемент"
|
||||||
unsubscribe: "Скасувати абонемент"
|
unsubscribe: "Скасувати абонемент"
|
||||||
confirm_unsubscribe: "Підтвердити відміну підписки"
|
confirm_unsubscribe: "Підтвердити відміну підписки"
|
||||||
|
@ -509,12 +515,12 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
blocks: "Блокує" # As in "this shield blocks this much damage"
|
blocks: "Блокує" # As in "this shield blocks this much damage"
|
||||||
backstab: "Зі спини" # As in "this dagger does this much backstab damage"
|
backstab: "Зі спини" # As in "this dagger does this much backstab damage"
|
||||||
skills: "Вміння"
|
skills: "Вміння"
|
||||||
# attack_1: "Deals"
|
attack_1: "Завдає"
|
||||||
# attack_2: "of listed"
|
attack_2: "від вказаного"
|
||||||
# attack_3: "weapon damage."
|
attack_3: "урону зброї."
|
||||||
# health_1: "Gains"
|
health_1: "Отримує"
|
||||||
# health_2: "of listed"
|
health_2: "від вказаного"
|
||||||
# health_3: "armor health."
|
health_3: "міцності броні."
|
||||||
speed_1: "Рухається "
|
speed_1: "Рухається "
|
||||||
speed_2: " метрів на секунду."
|
speed_2: " метрів на секунду."
|
||||||
available_for_purchase: "Можна придбати" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
available_for_purchase: "Можна придбати" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
||||||
|
@ -524,8 +530,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
skill_docs:
|
skill_docs:
|
||||||
writable: "записний" # Hover over "attack" in Your Skills while playing a level to see most of this
|
writable: "записний" # Hover over "attack" in Your Skills while playing a level to see most of this
|
||||||
read_only: "тільки читання"
|
read_only: "тільки читання"
|
||||||
# action: "Action"
|
action: "Дія"
|
||||||
# spell: "Spell"
|
spell: "Закляття"
|
||||||
action_name: "назва"
|
action_name: "назва"
|
||||||
action_cooldown: "Триває"
|
action_cooldown: "Триває"
|
||||||
action_specific_cooldown: "Замороження"
|
action_specific_cooldown: "Замороження"
|
||||||
|
@ -590,9 +596,9 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
cat_title: "Головний ремісник"
|
cat_title: "Головний ремісник"
|
||||||
cat_blurb: "Маг повітря"
|
cat_blurb: "Маг повітря"
|
||||||
josh_title: "Дизайнер гри"
|
josh_title: "Дизайнер гри"
|
||||||
# josh_blurb: "Floor Is Lava"
|
josh_blurb: "Підлога - це лава"
|
||||||
jose_title: "Музика"
|
jose_title: "Музика"
|
||||||
# jose_blurb: "Taking Off"
|
jose_blurb: "Hа зліт"
|
||||||
retrostyle_title: "Ілюстрація"
|
retrostyle_title: "Ілюстрація"
|
||||||
retrostyle_blurb: "Ігри в стилі ретро"
|
retrostyle_blurb: "Ігри в стилі ретро"
|
||||||
|
|
||||||
|
@ -601,12 +607,11 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
intro_1: "CodeCombat - це онлайн гра, що вчить програмуванню. Студенти пишуть код на реальних мовах програмування."
|
intro_1: "CodeCombat - це онлайн гра, що вчить програмуванню. Студенти пишуть код на реальних мовах програмування."
|
||||||
intro_2: "Досвід не потрібен!"
|
intro_2: "Досвід не потрібен!"
|
||||||
free_title: "Скільки це коштує?"
|
free_title: "Скільки це коштує?"
|
||||||
cost_china: "CodeCombat в Китаї безкоштовний протягом перших п'яти рівнів, після чого він коштує $ 9,99 USD в місяць за доступ до інших наших 180+ рівнів на наших ексклюзивних серверів в Китаї." # Deprecated
|
cost_premium_server: "CodeCombat безкоштовний протягом перших п'яти рівнів, після чого він коштує $ 9,99 USD в місяць за доступ до інших наших 190+ рівням на наших ексклюзивних серверах."
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
|
||||||
free_1: "Є 110+ БЕЗКОШТОВНИХ рівнів, які охоплюють всі поняття."
|
free_1: "Є 110+ БЕЗКОШТОВНИХ рівнів, які охоплюють всі поняття."
|
||||||
free_2: "Місячна підписка надає доступ до відео-уроків і додаткових рівнів практики."
|
free_2: "Місячна підписка надає доступ до відео-уроків і додаткових рівнів практики."
|
||||||
teacher_subs_title: "Вчителі отримують безкоштовні підписки!"
|
teacher_subs_title: "Вчителі отримують безкоштовні підписки!"
|
||||||
# teacher_subs_0: "We offer free subscriptions to teachers for evaluation purposes."
|
teacher_subs_0: "Ми пропонуємо безкоштовну передплату для тестування студентів."
|
||||||
teacher_subs_1: "Будь ласка, заповніть "
|
teacher_subs_1: "Будь ласка, заповніть "
|
||||||
teacher_subs_2: "Анкету Вчителя"
|
teacher_subs_2: "Анкету Вчителя"
|
||||||
teacher_subs_3: "щоб налаштувати підписку."
|
teacher_subs_3: "щоб налаштувати підписку."
|
||||||
|
@ -618,22 +623,22 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
sub_includes_5: "10 нових героїв з унікальними навичками для оволодіння"
|
sub_includes_5: "10 нових героїв з унікальними навичками для оволодіння"
|
||||||
sub_includes_6: "3500 бонусних дорогоцінних каменів кожен місяць"
|
sub_includes_6: "3500 бонусних дорогоцінних каменів кожен місяць"
|
||||||
sub_includes_7: "Приватні Клани"
|
sub_includes_7: "Приватні Клани"
|
||||||
# monitor_progress_title: "How do I monitor student progress?"
|
monitor_progress_title: "Як мені стежити за прогресом студентів?"
|
||||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
monitor_progress_1: "Прогрес студентів може бути відстежити, створивши"
|
||||||
# monitor_progress_2: "for your class."
|
monitor_progress_2: "для вашого класу."
|
||||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
monitor_progress_3: "Щоб додати студентів, надішліть їм посилання-запрошення в ваш Клан, яке можна знайти на"
|
||||||
# monitor_progress_4: "page."
|
monitor_progress_4: "сторінці."
|
||||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
monitor_progress_5: "Після того, як вони приєднаються, ви побачите зведення по прогрес студентів на сторінці вашого Клану."
|
||||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
private_clans_1: "Приватні Клани забезпечують підвищену конфіденційність і детальну інформацію про прогрес кожного студента."
|
||||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
private_clans_2: "Щоб створити приватний Клан, відзначте прапорець 'Зробити клан приватним', коли будете створювати"
|
||||||
private_clans_3: "."
|
private_clans_3: "."
|
||||||
# who_for_title: "Who is CodeCombat for?"
|
who_for_title: "Для кого призначений CodeCombat?"
|
||||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
who_for_1: "Ми рекомендуємо CodeCombat для учнів старше 9 років. Hіякий досвід програмування не потрібно."
|
||||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
who_for_2: "Ми розробили CodeCombat так, щоб він підходив і хлопчикам і дівчаткам."
|
||||||
# material_title: "How much material is there?"
|
material_title: "Як багато тут матеріалу?"
|
||||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
material_premium_server: "Близько 50 годин ігрового процесу, розподіленого більш ніж на 190 рівнів для передплатників."
|
||||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
material_1: "Приблизно 25 годин безкоштовного контенту і додаткові 15 годин контенту для передплатників."
|
||||||
# concepts_title: "What concepts are covered?"
|
concepts_title: "Про які концепти ми розповідаємо?"
|
||||||
how_much_title: "Скільки коштує місячна передплата?"
|
how_much_title: "Скільки коштує місячна передплата?"
|
||||||
how_much_1: ""
|
how_much_1: ""
|
||||||
how_much_2: "Місячна передплата"
|
how_much_2: "Місячна передплата"
|
||||||
|
@ -663,8 +668,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
contact_1: "Будь ласка, зв'яжіться з"
|
contact_1: "Будь ласка, зв'яжіться з"
|
||||||
contact_2: ", якщо у вас залишилися питання."
|
contact_2: ", якщо у вас залишилися питання."
|
||||||
description_1: "Ми пропонуємо безкоштовні підписки вчителям в цілях ознайомлення. Ви можете знайти більше інформації на нашій сторінці"
|
description_1: "Ми пропонуємо безкоштовні підписки вчителям в цілях ознайомлення. Ви можете знайти більше інформації на нашій сторінці"
|
||||||
# description_2: "teachers"
|
description_2: "вчителів"
|
||||||
# description_3: "page."
|
description_3: "."
|
||||||
description_4: "Будь ласка, заповніть цю маленьку анкету і ми надішлемо вам інструкції з установки на email."
|
description_4: "Будь ласка, заповніть цю маленьку анкету і ми надішлемо вам інструкції з установки на email."
|
||||||
email: "Email-адреса"
|
email: "Email-адреса"
|
||||||
school: "Найменування школи"
|
school: "Найменування школи"
|
||||||
|
@ -712,7 +717,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
me_tab: "Я"
|
me_tab: "Я"
|
||||||
picture_tab: "Аватар"
|
picture_tab: "Аватар"
|
||||||
delete_account_tab: "Вилучити свій акаунт"
|
delete_account_tab: "Вилучити свій акаунт"
|
||||||
wrong_email: "Неправильний email"
|
wrong_email: "Невірний email"
|
||||||
wrong_password: "Невірний пароль"
|
wrong_password: "Невірний пароль"
|
||||||
upload_picture: "Відвантажити зображення"
|
upload_picture: "Відвантажити зображення"
|
||||||
delete_this_account: "Вилучити цей акаунт назовсім"
|
delete_this_account: "Вилучити цей акаунт назовсім"
|
||||||
|
@ -723,7 +728,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
new_password: "Новий пароль"
|
new_password: "Новий пароль"
|
||||||
new_password_verify: "Підтвердження паролю"
|
new_password_verify: "Підтвердження паролю"
|
||||||
type_in_email: "Введіть свій email, щоб підтвердити вилучення" # {change}
|
type_in_email: "Введіть свій email, щоб підтвердити вилучення" # {change}
|
||||||
type_in_password: "Також введіть ваш пароль."
|
type_in_password: "Так само введіть ваш пароль."
|
||||||
email_subscriptions: "Email-підписки"
|
email_subscriptions: "Email-підписки"
|
||||||
email_subscriptions_none: "Жодних підписок."
|
email_subscriptions_none: "Жодних підписок."
|
||||||
email_announcements: "Оголошення"
|
email_announcements: "Оголошення"
|
||||||
|
@ -835,93 +840,93 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
last_played: "Остання гра"
|
last_played: "Остання гра"
|
||||||
leagues_explanation: "Грайте в лізі проти інших членів клану на мультіплєєрній арені."
|
leagues_explanation: "Грайте в лізі проти інших членів клану на мультіплєєрній арені."
|
||||||
|
|
||||||
# courses:
|
courses:
|
||||||
# course: "Course"
|
course: "Курс"
|
||||||
# courses: "courses"
|
courses: "курси"
|
||||||
# not_enrolled: "You are not enrolled in this course."
|
not_enrolled: "Ви не записані на цей курс."
|
||||||
# visit_pref: "Please visit the"
|
visit_pref: "Будь ласка, зайдіть на"
|
||||||
# visit_suf: "page to enroll."
|
visit_suf: "сторінку для запису."
|
||||||
# select_class: "Select one of your classes"
|
select_class: "Виберіть один з класів"
|
||||||
# unnamed: "*unnamed*"
|
unnamed: "*безіменний*"
|
||||||
# select: "Select"
|
select: "Виберіть"
|
||||||
# unnamed_class: "Unnamed Class"
|
unnamed_class: "Безіменний клас"
|
||||||
# edit_settings: "edit class settings"
|
edit_settings: "змінити налаштування класу"
|
||||||
# edit_settings1: "Edit Class Settings"
|
edit_settings1: "Змінити налаштування класу"
|
||||||
# progress: "Class Progress"
|
progress: "Прогрес класу"
|
||||||
# add_students: "Add Students"
|
add_students: "Додати студентів"
|
||||||
# stats: "Statistics"
|
stats: "Статистика"
|
||||||
# total_students: "Total students:"
|
total_students: "Всього студентів:"
|
||||||
# average_time: "Average level play time:"
|
average_time: "Середній час в грі:"
|
||||||
# total_time: "Total play time:"
|
total_time: " Всього часу в грі: "
|
||||||
# average_levels: "Average levels completed:"
|
average_levels: "Середня кількість завершених рівнів:"
|
||||||
# total_levels: "Total levels completed:"
|
total_levels: "Всього рівнів завершено:"
|
||||||
# furthest_level: "Furthest level completed:"
|
furthest_level: "Найбільший завершений рівень:"
|
||||||
# concepts_covered: "Concepts Covered"
|
concepts_covered: "Концептів покрито"
|
||||||
# students: "Students"
|
students: "Студенти"
|
||||||
# students1: "students"
|
students1: "студенти"
|
||||||
# expand_details: "Expand details"
|
expand_details: "Показати деталі"
|
||||||
# concepts: "Concepts"
|
concepts: "Концепти"
|
||||||
# levels: "levels"
|
levels: "рівні"
|
||||||
# played: "Played"
|
played: "Зіграно"
|
||||||
# play_time: "Play time:"
|
play_time: "Час у грі:"
|
||||||
# completed: "Completed:"
|
completed: "Завершено:"
|
||||||
# invite_students: "Invite students to join this class."
|
invite_students: "Запросіть студентів в клас."
|
||||||
# invite_link_header: "Link to join course"
|
invite_link_header: "Посилання для запрошення в клас"
|
||||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
invite_link_p_1: "Дайте це посилання студентам, яких ви б хотіли запросити в клас."
|
||||||
# invite_link_p_2: "Or have us email them directly:"
|
invite_link_p_2: "Або ми самі можемо написати їм листа на пошту:"
|
||||||
# capacity_used: "Course slots used:"
|
# capacity_used: "Course slots used:"
|
||||||
# enter_emails: "Enter student emails to invite, one per line"
|
enter_emails: "Введіть email студентів по одному на рядку, яких ви хочете запросити"
|
||||||
# send_invites: "Send Invites"
|
send_invites: "Відправити запрошення"
|
||||||
# title: "Title"
|
title: "Тема"
|
||||||
# description: "Description"
|
description: "Опис"
|
||||||
# languages_available: "Select programming languages available to the class:"
|
languages_available: "Виберіть мови програмування, доступні класу:"
|
||||||
# all_lang: "All Languages"
|
all_lang: "Всі мови"
|
||||||
# show_progress: "Show student progress to everyone in the class"
|
show_progress: "Показувати прогрес студентів всьому класу"
|
||||||
# creating_class: "Creating class..."
|
creating_class: "Створення класу ... "
|
||||||
# purchasing_course: "Purchasing course..."
|
purchasing_course: "Покупка курсу ... "
|
||||||
# buy_course: "Buy Course"
|
buy_course: "Купити курс"
|
||||||
# buy_course1: "Buy this course"
|
buy_course1: "Купити цей курс"
|
||||||
# create_class: "Create Class"
|
create_class: "Створити клас"
|
||||||
# select_all_courses: "Select 'All Courses' for a 50% discount!"
|
select_all_courses: "Вибрати 'Всі курси' для 50% знижки!"
|
||||||
# all_courses: "All Courses"
|
all_courses: "Всі курси"
|
||||||
# number_students: "Number of students"
|
number_students: "Кількість студентів"
|
||||||
# enter_number_students: "Enter the number of students you need for this class."
|
enter_number_students: "Введіть кількість студентів, потрібних для вашого класу."
|
||||||
# name_class: "Name your class"
|
name_class: "Назвіть ваш клас"
|
||||||
# displayed_course_page: "This will be displayed on the course page for you and your students. It can be changed later."
|
displayed_course_page: "Це буде видно на сторінці курса для вас і ваших студентів. Потім ви зможете це змінити."
|
||||||
# buy: "Buy"
|
buy: "Купити"
|
||||||
# purchasing_for: "You are purchasing a license for"
|
purchasing_for: "Ви купуєте ліцензію для"
|
||||||
# creating_for: "You are creating a class for"
|
creating_for: "Ви створюєте клас для"
|
||||||
# for: "for" # Like in 'for 30 students'
|
for: "для" # Like in 'for 30 students'
|
||||||
# receive_code: "Afterwards you will receive an unlock code to distribute to your students, which they can use to enroll in your class."
|
receive_code: "Після ви отримаєте код, який потрібно буде відправити вашим студентам, щоб вони могли записатися на курс."
|
||||||
# free_trial: "Free trial for teachers!"
|
free_trial: "Безкоштовний пробний період для вчителів!"
|
||||||
# get_access: "to get individual access to all courses for evalutaion purposes."
|
get_access: "щоб отримати особистий доступ до всіх курсів."
|
||||||
# questions: "Questions?"
|
questions: "Питання?"
|
||||||
# faq: "Courses FAQ"
|
faq: "FAQ по курсам"
|
||||||
# question: "Q:" # Like in 'Question'
|
question: "П:" # Like in 'Question'
|
||||||
# question1: "What's the difference between these courses and the single player game?"
|
question1: "Яка відмінність між цими курсами і звичайною одиночною грою?"
|
||||||
# answer: "A:" # Like in 'Answer'
|
answer: "В:" # Like in 'Answer'
|
||||||
# answer1: "The single player game is designed for individuals, while the courses are designed for classes."
|
answer1: "Одиночна гра розроблена для одиночного проходження, а курси для класів."
|
||||||
# answer2: "The single player game has items, gems, hero selection, leveling up, and in-app purchases. Courses have classroom management features and streamlined student-focused level pacing."
|
answer2: "У одиночній грі є предмети, самоцвіти, вибір героїв, прокачування рівнів і внутрішньо-ігрові покупки. У курсах є управління класом і ухил, щоб студенти зосереджувалися на своєму прогресі."
|
||||||
# teachers_click: "Teachers Click Here"
|
teachers_click: "Вчителям сюди"
|
||||||
# students_click: "Students Click Here"
|
students_click: "Студентам сюди"
|
||||||
# courses_on_coco: "Courses on CodeCombat"
|
courses_on_coco: "Курси на CodeCombat"
|
||||||
# designed_to: "Courses are designed to introduce computer science concepts using CodeCombat's fun and engaging environment. CodeCombat levels are organized around key topics to encourage progressive learning, over the course of 5 hours."
|
designed_to: "Курси розроблені щоб навчити основам інформатики через гру і веселощі. Рівні огранізувались по основним ключовим концептам, щоб всі 5 годин курсу було цікаво займатися."
|
||||||
# more_in_less: "Learn more in less time"
|
more_in_less: "Вивчайте більше за менший час"
|
||||||
# no_experience: "No coding experience necesssary"
|
no_experience: "Досвід програмування не потрібний"
|
||||||
# easy_monitor: "Easily monitor student progress"
|
easy_monitor: "Легко відслідковувати прогрес студентів"
|
||||||
# purchase_for_class: "Purchase a course for your entire class. It's easy to sign up your students!"
|
purchase_for_class: "Купіть курс для всього вашого класу. Студентів дуже легко додавати!"
|
||||||
# see_the: "See the"
|
see_the: "Дивіться"
|
||||||
# more_info: "for more information."
|
more_info: "для додаткової інформації."
|
||||||
# choose_course: "Choose Your Course:"
|
choose_course: "Виберіть ваш курс:"
|
||||||
# enter_code: "Enter an unlock code"
|
enter_code: "Введіть код розблокування, щоб приєднатися до існуючого класу"
|
||||||
# enter_code1: "Enter unlock code"
|
enter_code1: "Введіть код розблокування"
|
||||||
# enroll: "Enroll"
|
enroll: "Записатися"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
pick_from_classes: "Вибрати з вашого класу"
|
||||||
# enter: "Enter"
|
enter: "Увійти"
|
||||||
# or: "Or"
|
or: "Або"
|
||||||
# topics: "Topics"
|
topics: "Теми"
|
||||||
# hours_content: "Hours of content:"
|
hours_content: "Багато годин матеріалу:"
|
||||||
# get_free: "Get FREE course"
|
get_free: "Отримати безкоштовний курс"
|
||||||
|
|
||||||
classes:
|
classes:
|
||||||
archmage_title: "Архімаг"
|
archmage_title: "Архімаг"
|
||||||
|
@ -1111,10 +1116,11 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
my_matches: "Мої поєдинки"
|
my_matches: "Мої поєдинки"
|
||||||
simulate: "Моделювати"
|
simulate: "Моделювати"
|
||||||
simulation_explanation: "Моделюючи ігри, Ви можете швидше отримати оцінку своєї гри!"
|
simulation_explanation: "Моделюючи ігри, Ви можете швидше отримати оцінку своєї гри!"
|
||||||
# simulation_explanation_leagues: "You will mainly help simulate games for allied players in your clans and courses."
|
simulation_explanation_leagues: "Ви допоможете моделювати ігри для союзних гравців у вашому клані або курсі."
|
||||||
simulate_games: "Моделювати ігри!"
|
simulate_games: "Моделювати ігри!"
|
||||||
games_simulated_by: "Ігор модельовано Вами:"
|
games_simulated_by: "Ігор модельовано Вами:"
|
||||||
games_simulated_for: "Ігор модельовано для Вас:"
|
games_simulated_for: "Ігор модельовано для Вас:"
|
||||||
|
games_in_queue: "Ігри в черзі в даний час:"
|
||||||
games_simulated: "Ігор модельовано"
|
games_simulated: "Ігор модельовано"
|
||||||
games_played: "Ігор зіграно"
|
games_played: "Ігор зіграно"
|
||||||
ratio: "Співвідношення"
|
ratio: "Співвідношення"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
fight: "У бій!"
|
fight: "У бій!"
|
||||||
watch_victory: "Подивитись Вашу перемогу"
|
watch_victory: "Подивитись Вашу перемогу"
|
||||||
defeat_the: "Перемогти"
|
defeat_the: "Перемогти"
|
||||||
|
watch_battle: "Дивитися Битву"
|
||||||
tournament_started: ", розпочинається."
|
tournament_started: ", розпочинається."
|
||||||
tournament_ends: "Турнір завершується"
|
tournament_ends: "Турнір завершується"
|
||||||
tournament_ended: "Турнір завершено"
|
tournament_ended: "Турнір завершено"
|
||||||
|
@ -1207,9 +1214,10 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
recently_played: "Нещодавні ігри"
|
recently_played: "Нещодавні ігри"
|
||||||
no_recent_games: "Упродовж останніх двох тижнів не зіграно жодної гри."
|
no_recent_games: "Упродовж останніх двох тижнів не зіграно жодної гри."
|
||||||
payments: "Платежі"
|
payments: "Платежі"
|
||||||
# prepaid: "Prepaid"
|
prepaid: "Передплачені"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "Придбано"
|
purchased: "Придбано"
|
||||||
# sale: "Sale"
|
sale: "Розпродаж"
|
||||||
subscription: "Підписка"
|
subscription: "Підписка"
|
||||||
invoices: "Рахунки"
|
invoices: "Рахунки"
|
||||||
service_apple: "Apple"
|
service_apple: "Apple"
|
||||||
|
@ -1258,7 +1266,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
bad_input: "Помилкове уведення."
|
bad_input: "Помилкове уведення."
|
||||||
server_error: "Помилка сервера."
|
server_error: "Помилка сервера."
|
||||||
unknown: "Невідома помилка."
|
unknown: "Невідома помилка."
|
||||||
# error: "ERROR"
|
error: "ПОМИЛКА"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
sessions: "Сесії"
|
sessions: "Сесії"
|
||||||
|
@ -1325,14 +1333,14 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
for_loops: "Цикл For"
|
for_loops: "Цикл For"
|
||||||
functions: "Функції"
|
functions: "Функції"
|
||||||
# graphics: "Graphics"
|
# graphics: "Graphics"
|
||||||
# if_statements: "If Statements"
|
if_statements: "Умовні оператори"
|
||||||
# input_handling: "Input Handling"
|
input_handling: "Обробка введення"
|
||||||
# math_operations: "Math Operations"
|
math_operations: "Математичні операції"
|
||||||
# object_literals: "Object Literals"
|
object_literals: "Літерали об'єктів"
|
||||||
# parameters: "Parameters"
|
parameters: "Параметри"
|
||||||
# strings: "Strings"
|
strings: "Рядки"
|
||||||
# variables: "Variables"
|
variables: "Змінні"
|
||||||
# vectors: "Vectors"
|
vectors: "Вектори"
|
||||||
while_loops: "Цикли"
|
while_loops: "Цикли"
|
||||||
recursion: "Рекурсія"
|
recursion: "Рекурсія"
|
||||||
|
|
||||||
|
@ -1560,19 +1568,19 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
filter_experience_recent_grad: "Випускник"
|
filter_experience_recent_grad: "Випускник"
|
||||||
filter_experience_student: "Студент коледжу"
|
filter_experience_student: "Студент коледжу"
|
||||||
filter_results: "результати"
|
filter_results: "результати"
|
||||||
# start_hiring: "Start hiring."
|
start_hiring: "Почати найм."
|
||||||
# reasons: "Three reasons you should hire through us:"
|
reasons: "Три причини, чому ви повинні шукати працівників через нас:"
|
||||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
everyone_looking: "Всі тут шукають їх наступну можливість."
|
||||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
everyone_looking_blurb: "Забудьте про 20% рейтинг відгуків через LinkedIn InMail. Кожен в нашому списку хоче знайти своє наступне місце роботи і відповість на ваше запрошення на інтерв'ю."
|
||||||
# weeding: "Sit back; we've done the weeding for you."
|
weeding: "Розслабтеся; ми відібрали їх для вас."
|
||||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
weeding_blurb: "Кожен гравець у списку був переглянутий на предмет технічних здібностей. Ми так само ведемо телефонні переговори за обраними кандидатам і робимо позначки в їх профілях, щоб заощадити ваш час."
|
||||||
# pass_screen: "They will pass your technical screen."
|
pass_screen: "Вони пройдуть ваш технічний відбір."
|
||||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
pass_screen_blurb: "Перегляньте код кожного кандидата перед прийняттям рішення. Один роботодавець зауважив, що кількість наших розробників, що пройшли їх технічний відбір, в 5 разів перевищувало число набраних через Hacker News."
|
||||||
# make_hiring_easier: "Make my hiring easier, please."
|
make_hiring_easier: "Зробіть наймання співробітників простіше, будь ласка."
|
||||||
# what: "What is CodeCombat?"
|
what: "Що таке CodeCombat?"
|
||||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
what_blurb: "CodeCombat - це багатокористувальницька браузерна гра про програмування. Гравці пишуть код, щоб контролювати свої війська у битвах проти інших розробників. Наші гравці мають досвід у всіх основних технічних областях."
|
||||||
# cost: "How much do we charge?"
|
cost: "Як багато ми просимо натомість?"
|
||||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
cost_blurb: "Ми просимо 15% оплати за перший рік роботи і пропонуємо 100% гарантію повернення грошей на протязі 90 днів. Ми не стягуємо плати за кандидатів, які вже були активно проінтерв'ювали у вашій компанії."
|
||||||
candidate_name: "Ім'я"
|
candidate_name: "Ім'я"
|
||||||
candidate_location: "Розташування"
|
candidate_location: "Розташування"
|
||||||
candidate_looking_for: "Шукає"
|
candidate_looking_for: "Шукає"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
accepted: "Đã được chấp nhận"
|
accepted: "Đã được chấp nhận"
|
||||||
rejected: "Không được chấp nhận"
|
rejected: "Không được chấp nhận"
|
||||||
withdrawn: "Thu Hồi"
|
withdrawn: "Thu Hồi"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "Người gửi"
|
submitter: "Người gửi"
|
||||||
submitted: "Đã gửi"
|
submitted: "Đã gửi"
|
||||||
commit_msg: "Tin nhắn sự thay đổi"
|
commit_msg: "Tin nhắn sự thay đổi"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "Hoàn thành"
|
done: "Hoàn thành"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
level: "Bàn" # Like "Level: Dungeons of Kithgard"
|
level: "Bàn" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "Bỏ qua"
|
skip: "Bỏ qua"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "Hành Trang"
|
inventory_tab: "Hành Trang"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
ratio: "Tỷ lệ"
|
ratio: "Tỷ lệ"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
accepted: "已接受"
|
accepted: "已接受"
|
||||||
rejected: "未接受"
|
rejected: "未接受"
|
||||||
withdrawn: "撤回"
|
withdrawn: "撤回"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "提交者"
|
submitter: "提交者"
|
||||||
submitted: "已提交"
|
submitted: "已提交"
|
||||||
commit_msg: "提交信息"
|
commit_msg: "提交信息"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完成"
|
done: "完成"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "主页" # Not used any more, will be removed soon.
|
home: "主页" # Not used any more, will be removed soon.
|
||||||
level: "关卡" # Like "Level: Dungeons of Kithgard"
|
level: "关卡" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "跳过"
|
skip: "跳过"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
tip_free_your_mind: "丢掉一切私心杂念,丢掉害怕、疑问和拒信,解放您的思想。 - Morpheus《黑客帝国》"
|
tip_free_your_mind: "丢掉一切私心杂念,丢掉害怕、疑问和拒信,解放您的思想。 - Morpheus《黑客帝国》"
|
||||||
tip_strong_opponents: "即使是最强大的对手也是有弱点的。- 宇智波鼬《火影忍者》"
|
tip_strong_opponents: "即使是最强大的对手也是有弱点的。- 宇智波鼬《火影忍者》"
|
||||||
tip_paper_and_pen: "在您开始编码之前,您可以随时用一张纸和一支笔作计划。"
|
tip_paper_and_pen: "在您开始编码之前,您可以随时用一张纸和一支笔作计划。"
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "道具箱"
|
inventory_tab: "道具箱"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
comparison_blurb: "亲,订阅CodeCombat,大力的提升您的技能!"
|
comparison_blurb: "亲,订阅CodeCombat,大力的提升您的技能!"
|
||||||
feature1: "110+ 基本关卡(4个世界)"
|
feature1: "110+ 基本关卡(4个世界)"
|
||||||
feature2: "10 个强大 <strong>英雄</strong>以及各式非凡技能!"
|
feature2: "10 个强大 <strong>英雄</strong>以及各式非凡技能!"
|
||||||
feature3: "70+ 奖励关卡"
|
feature3: "70+ 奖励关卡" # {change}
|
||||||
feature4: "每月享有3500额外宝石"
|
feature4: "每月享有3500额外宝石"
|
||||||
feature5: "视频教学"
|
feature5: "视频教学"
|
||||||
feature6: "专业邮件支援"
|
feature6: "专业邮件支援"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
intro_1: "CodeCombat 是一个教编程的网上游戏。学生会用编程语言写代码。"
|
intro_1: "CodeCombat 是一个教编程的网上游戏。学生会用编程语言写代码。"
|
||||||
intro_2: "无需经验!"
|
intro_2: "无需经验!"
|
||||||
free_title: "要多少钱?"
|
free_title: "要多少钱?"
|
||||||
cost_china: "CodeCombat的前5个关卡在中国是免费的,在这之后需花费每月9.99美元来访问我们架设在中国专属服务器上的190多个关卡。" # Deprecated
|
|
||||||
cost_premium_server: "CodeCombat的前5个关卡是免费的,在这之后需花费每月9.99美元来访问我们架设专属服务器上的190多个关卡。"
|
cost_premium_server: "CodeCombat的前5个关卡是免费的,在这之后需花费每月9.99美元来访问我们架设专属服务器上的190多个关卡。"
|
||||||
free_1: "有110多个覆盖了所有理论的免费关卡。"
|
free_1: "有110多个覆盖了所有理论的免费关卡。"
|
||||||
free_2: "包月订阅可以访问视频教程和额外的练习关卡。"
|
free_2: "包月订阅可以访问视频教程和额外的练习关卡。"
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
simulate_games: "模拟游戏!"
|
simulate_games: "模拟游戏!"
|
||||||
games_simulated_by: "由您模拟过的游戏数:"
|
games_simulated_by: "由您模拟过的游戏数:"
|
||||||
games_simulated_for: "为您模拟过的游戏数:"
|
games_simulated_for: "为您模拟过的游戏数:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "模拟次数"
|
games_simulated: "模拟次数"
|
||||||
games_played: "被模拟次数"
|
games_played: "被模拟次数"
|
||||||
ratio: "比率"
|
ratio: "比率"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
fight: "战斗!"
|
fight: "战斗!"
|
||||||
watch_victory: "观看您的胜利"
|
watch_victory: "观看您的胜利"
|
||||||
defeat_the: "击败了"
|
defeat_the: "击败了"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ",锦标赛已开始"
|
tournament_started: ",锦标赛已开始"
|
||||||
tournament_ends: "锦标赛结束"
|
tournament_ends: "锦标赛结束"
|
||||||
tournament_ended: "锦标赛已结束"
|
tournament_ended: "锦标赛已结束"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
||||||
no_recent_games: "最近两个星期没有玩过游戏。"
|
no_recent_games: "最近两个星期没有玩过游戏。"
|
||||||
payments: "支付方式"
|
payments: "支付方式"
|
||||||
prepaid: "预付费"
|
prepaid: "预付费"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "已购买"
|
purchased: "已购买"
|
||||||
sale: "促销"
|
sale: "促销"
|
||||||
subscription: "订阅"
|
subscription: "订阅"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
accepted: "已接受"
|
accepted: "已接受"
|
||||||
rejected: "未接受"
|
rejected: "未接受"
|
||||||
withdrawn: "撤回"
|
withdrawn: "撤回"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
submitter: "提交者"
|
submitter: "提交者"
|
||||||
submitted: "已提交"
|
submitted: "已提交"
|
||||||
commit_msg: "送出訊息"
|
commit_msg: "送出訊息"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "完成"
|
done: "完成"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "首頁" # Not used any more, will be removed soon.
|
home: "首頁" # Not used any more, will be removed soon.
|
||||||
level: "關卡" # Like "Level: Dungeons of Kithgard"
|
level: "關卡" # Like "Level: Dungeons of Kithgard"
|
||||||
skip: "跳過"
|
skip: "跳過"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
tip_free_your_mind: "放下一切私心雜念,丟棄害怕、疑問和拒信,解放您的思維。 - 莫菲斯《駭客任務》"
|
tip_free_your_mind: "放下一切私心雜念,丟棄害怕、疑問和拒信,解放您的思維。 - 莫菲斯《駭客任務》"
|
||||||
tip_strong_opponents: "即使是最强大的對手也有弱点的。 - 宇智波鼬《火影忍者》"
|
tip_strong_opponents: "即使是最强大的對手也有弱点的。 - 宇智波鼬《火影忍者》"
|
||||||
tip_paper_and_pen: "在您開始編碼之前,您可以隨時用一張紙和一支筆作計劃。"
|
tip_paper_and_pen: "在您開始編碼之前,您可以隨時用一張紙和一支筆作計劃。"
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
inventory_tab: "倉庫"
|
inventory_tab: "倉庫"
|
||||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
comparison_blurb: "訂閱 CodeCombat 來磨練您的技巧!"
|
comparison_blurb: "訂閱 CodeCombat 來磨練您的技巧!"
|
||||||
feature1: "110 個以上的基本關卡散佈在4張地圖中"
|
feature1: "110 個以上的基本關卡散佈在4張地圖中"
|
||||||
feature2: "10 個強壯的<strong>新英雄</strong>並每隻都有不同技巧!"
|
feature2: "10 個強壯的<strong>新英雄</strong>並每隻都有不同技巧!"
|
||||||
feature3: "70 個以上的額外關卡"
|
feature3: "70 個以上的額外關卡" # {change}
|
||||||
feature4: "每個月<strong>3500顆額外寶石</strong>!"
|
feature4: "每個月<strong>3500顆額外寶石</strong>!"
|
||||||
feature5: "視頻教學"
|
feature5: "視頻教學"
|
||||||
feature6: "頂級信箱支援"
|
feature6: "頂級信箱支援"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
intro_1: "CodeCombat 是一個教編程的網上游戲。學生會用編程語言寫代碼。"
|
intro_1: "CodeCombat 是一個教編程的網上游戲。學生會用編程語言寫代碼。"
|
||||||
intro_2: "無需經驗!"
|
intro_2: "無需經驗!"
|
||||||
free_title: "要多少錢?"
|
free_title: "要多少錢?"
|
||||||
cost_china: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。" # Deprecated
|
|
||||||
cost_premium_server: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。"
|
cost_premium_server: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。"
|
||||||
free_1: "有110多個覆蓋了所有理論的免費關卡。"
|
free_1: "有110多個覆蓋了所有理論的免費關卡。"
|
||||||
free_2: "包月訂閱可以訪問視頻教程和額外的練習關卡。"
|
free_2: "包月訂閱可以訪問視頻教程和額外的練習關卡。"
|
||||||
|
@ -835,7 +840,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
last_played: "最後玩了"
|
last_played: "最後玩了"
|
||||||
leagues_explanation: "在部落裡與其他成員組成聯盟一起參加下面的多人競技場。"
|
leagues_explanation: "在部落裡與其他成員組成聯盟一起參加下面的多人競技場。"
|
||||||
|
|
||||||
|
|
||||||
courses:
|
courses:
|
||||||
course: "課程"
|
course: "課程"
|
||||||
courses: "課程"
|
courses: "課程"
|
||||||
|
@ -868,7 +872,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
completed: "遊戲時間:"
|
completed: "遊戲時間:"
|
||||||
invite_students: "邀請學生加入此課堂。"
|
invite_students: "邀請學生加入此課堂。"
|
||||||
invite_link_header: "參與課堂的縺結"
|
invite_link_header: "參與課堂的縺結"
|
||||||
invite_link_p_1: "把這個參與課堂的連結發給你認可的學生。" # there has few problem of my translation
|
invite_link_p_1: "把這個參與課堂的連結發給你認可的學生。"
|
||||||
invite_link_p_2: "或讓我們代你直接發送電郵:"
|
invite_link_p_2: "或讓我們代你直接發送電郵:"
|
||||||
capacity_used: "Course slots used:"
|
capacity_used: "Course slots used:"
|
||||||
enter_emails: "輸入學生電郵地址來邀請,每行一個"
|
enter_emails: "輸入學生電郵地址來邀請,每行一個"
|
||||||
|
@ -877,7 +881,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
description: "描述"
|
description: "描述"
|
||||||
languages_available: "選擇編程語言:"
|
languages_available: "選擇編程語言:"
|
||||||
all_lang: "所有編程語言"
|
all_lang: "所有編程語言"
|
||||||
show_progress: "向所有該課堂的人展示學生的進度"
|
show_progress: "向所有該課堂的人展示學生的進度"
|
||||||
creating_class: "課堂創建中···"
|
creating_class: "課堂創建中···"
|
||||||
purchasing_course: "購買課程中···"
|
purchasing_course: "購買課程中···"
|
||||||
buy_course: "購買課程"
|
buy_course: "購買課程"
|
||||||
|
@ -914,7 +918,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
see_the: "詳細資訊請看"
|
see_the: "詳細資訊請看"
|
||||||
more_info: "。"
|
more_info: "。"
|
||||||
choose_course: "選擇您的課程:"
|
choose_course: "選擇您的課程:"
|
||||||
enter_code: "輸入一個解銷碼"
|
enter_code: "輸入一個解銷碼" # {change}
|
||||||
enter_code1: "輸入解銷碼"
|
enter_code1: "輸入解銷碼"
|
||||||
enroll: "註冊"
|
enroll: "註冊"
|
||||||
pick_from_classes: "從目前的課程選擇"
|
pick_from_classes: "從目前的課程選擇"
|
||||||
|
@ -1116,6 +1120,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
simulate_games: "模擬遊戲!"
|
simulate_games: "模擬遊戲!"
|
||||||
games_simulated_by: "您模擬過的次數:"
|
games_simulated_by: "您模擬過的次數:"
|
||||||
games_simulated_for: "替您模擬的次數:"
|
games_simulated_for: "替您模擬的次數:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
games_simulated: "遊戲已模擬"
|
games_simulated: "遊戲已模擬"
|
||||||
games_played: "玩過的遊戲"
|
games_played: "玩過的遊戲"
|
||||||
ratio: "通過率"
|
ratio: "通過率"
|
||||||
|
@ -1152,6 +1157,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
fight: "戰鬥!"
|
fight: "戰鬥!"
|
||||||
watch_victory: "觀看您的勝利"
|
watch_victory: "觀看您的勝利"
|
||||||
defeat_the: "擊敗"
|
defeat_the: "擊敗"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
tournament_started: ",錦標賽已開始"
|
tournament_started: ",錦標賽已開始"
|
||||||
tournament_ends: "錦標賽結束"
|
tournament_ends: "錦標賽結束"
|
||||||
tournament_ended: "錦標賽已結束"
|
tournament_ended: "錦標賽已結束"
|
||||||
|
@ -1209,6 +1215,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
||||||
no_recent_games: "在過去兩個星期沒有玩過遊戲。"
|
no_recent_games: "在過去兩個星期沒有玩過遊戲。"
|
||||||
payments: "付款"
|
payments: "付款"
|
||||||
prepaid: "充值"
|
prepaid: "充值"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
purchased: "已購買"
|
purchased: "已購買"
|
||||||
sale: "促銷"
|
sale: "促銷"
|
||||||
subscription: "訂閱"
|
subscription: "訂閱"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
# commit_msg: "Commit Message"
|
# commit_msg: "Commit Message"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
|
|
||||||
# play_level:
|
# play_level:
|
||||||
# done: "Done"
|
# done: "Done"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
# home: "Home" # Not used any more, will be removed soon.
|
# home: "Home" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
# game_menu:
|
# game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# simulate_games: "Simulate Games!"
|
# simulate_games: "Simulate Games!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# accepted: "Accepted"
|
# accepted: "Accepted"
|
||||||
# rejected: "Rejected"
|
# rejected: "Rejected"
|
||||||
# withdrawn: "Withdrawn"
|
# withdrawn: "Withdrawn"
|
||||||
|
# accept: "Accept"
|
||||||
|
# reject: "Reject"
|
||||||
|
# withdraw: "Withdraw"
|
||||||
# submitter: "Submitter"
|
# submitter: "Submitter"
|
||||||
# submitted: "Submitted"
|
# submitted: "Submitted"
|
||||||
commit_msg: "提交訊息"
|
commit_msg: "提交訊息"
|
||||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
|
|
||||||
play_level:
|
play_level:
|
||||||
done: "妝下落"
|
done: "妝下落"
|
||||||
|
# next_game: "Next game"
|
||||||
|
# show_menu: "Show game menu"
|
||||||
home: "主頁" # Not used any more, will be removed soon.
|
home: "主頁" # Not used any more, will be removed soon.
|
||||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||||
# skip: "Skip"
|
# skip: "Skip"
|
||||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
# tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||||
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
# tip_strong_opponents: "Even the strongest of opponents always has a weakness. - Itachi Uchiha"
|
||||||
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
# tip_paper_and_pen: "Before you start coding, you can always plan with a sheet of paper and a pen."
|
||||||
|
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||||
|
|
||||||
game_menu:
|
game_menu:
|
||||||
# inventory_tab: "Inventory"
|
# inventory_tab: "Inventory"
|
||||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||||
# intro_2: "No experience required!"
|
# intro_2: "No experience required!"
|
||||||
# free_title: "How much does it cost?"
|
# free_title: "How much does it cost?"
|
||||||
# cost_china: "CodeCombat in China is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive China servers." # Deprecated
|
|
||||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# see_the: "See the"
|
# see_the: "See the"
|
||||||
# more_info: "for more information."
|
# more_info: "for more information."
|
||||||
# choose_course: "Choose Your Course:"
|
# choose_course: "Choose Your Course:"
|
||||||
# enter_code: "Enter an unlock code"
|
# enter_code: "Enter an unlock code to join an existing class"
|
||||||
# enter_code1: "Enter unlock code"
|
# enter_code1: "Enter unlock code"
|
||||||
# enroll: "Enroll"
|
# enroll: "Enroll"
|
||||||
# pick_from_classes: "Pick from your current classes"
|
# pick_from_classes: "Pick from your current classes"
|
||||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
simulate_games: "演兵遊戲!"
|
simulate_games: "演兵遊戲!"
|
||||||
# games_simulated_by: "Games simulated by you:"
|
# games_simulated_by: "Games simulated by you:"
|
||||||
# games_simulated_for: "Games simulated for you:"
|
# games_simulated_for: "Games simulated for you:"
|
||||||
|
# games_in_queue: "Games currently in the queue:"
|
||||||
# games_simulated: "Games simulated"
|
# games_simulated: "Games simulated"
|
||||||
# games_played: "Games played"
|
# games_played: "Games played"
|
||||||
# ratio: "Ratio"
|
# ratio: "Ratio"
|
||||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# fight: "Fight!"
|
# fight: "Fight!"
|
||||||
# watch_victory: "Watch your victory"
|
# watch_victory: "Watch your victory"
|
||||||
# defeat_the: "Defeat the"
|
# defeat_the: "Defeat the"
|
||||||
|
# watch_battle: "Watch the battle"
|
||||||
# tournament_started: ", started"
|
# tournament_started: ", started"
|
||||||
# tournament_ends: "Tournament ends"
|
# tournament_ends: "Tournament ends"
|
||||||
# tournament_ended: "Tournament ended"
|
# tournament_ended: "Tournament ended"
|
||||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
||||||
# no_recent_games: "No games played during the past two weeks."
|
# no_recent_games: "No games played during the past two weeks."
|
||||||
# payments: "Payments"
|
# payments: "Payments"
|
||||||
# prepaid: "Prepaid"
|
# prepaid: "Prepaid"
|
||||||
|
# prepaid_codes: "Prepaid Codes"
|
||||||
# purchased: "Purchased"
|
# purchased: "Purchased"
|
||||||
# sale: "Sale"
|
# sale: "Sale"
|
||||||
# subscription: "Subscription"
|
# subscription: "Subscription"
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
CocoModel = require './CocoModel'
|
CocoModel = require './CocoModel'
|
||||||
SpriteBuilder = require 'lib/sprites/SpriteBuilder'
|
SpriteBuilder = require 'lib/sprites/SpriteBuilder'
|
||||||
LevelComponent = require './LevelComponent'
|
LevelComponent = require './LevelComponent'
|
||||||
|
CocoCollection = require 'collections/CocoCollection'
|
||||||
|
|
||||||
utils = require 'core/utils'
|
utils = require 'core/utils'
|
||||||
|
|
||||||
|
@ -509,3 +510,65 @@ module.exports = class ThangType extends CocoModel
|
||||||
animationContainers = @getContainersForAnimation(action.animation, action)
|
animationContainers = @getContainersForAnimation(action.animation, action)
|
||||||
containersToRender[container.gn] = true for container in animationContainers
|
containersToRender[container.gn] = true for container in animationContainers
|
||||||
return _.keys(containersToRender)
|
return _.keys(containersToRender)
|
||||||
|
|
||||||
|
nextForAction: (action) ->
|
||||||
|
next = true
|
||||||
|
next = action.goesTo if action.goesTo
|
||||||
|
next = false if action.loops is false
|
||||||
|
return next
|
||||||
|
|
||||||
|
initPrerenderedSpriteSheets: ->
|
||||||
|
return if @prerenderedSpriteSheets or not data = @get('prerenderedSpriteSheetData')
|
||||||
|
# creates a collection of prerendered sprite sheets
|
||||||
|
@prerenderedSpriteSheets = new PrerenderedSpriteSheets(data)
|
||||||
|
|
||||||
|
getPrerenderedSpriteSheet: (colorConfig, defaultSpriteType) ->
|
||||||
|
return unless @prerenderedSpriteSheets
|
||||||
|
spriteType = @get('spriteType') or defaultSpriteType
|
||||||
|
@prerenderedSpriteSheets.find (pss) ->
|
||||||
|
return false if pss.get('spriteType') isnt spriteType
|
||||||
|
otherColorConfig = pss.get('colorConfig')
|
||||||
|
return true if _.isEmpty(colorConfig) and _.isEmpty(otherColorConfig)
|
||||||
|
getHue = (config) -> _.result(_.result(config, 'team'), 'hue')
|
||||||
|
return getHue(colorConfig) is getHue(otherColorConfig)
|
||||||
|
|
||||||
|
getPrerenderedSpriteSheetToLoad: ->
|
||||||
|
return unless @prerenderedSpriteSheets
|
||||||
|
@prerenderedSpriteSheets.find (pss) -> pss.needToLoad and not pss.loadedImage
|
||||||
|
|
||||||
|
|
||||||
|
class PrerenderedSpriteSheet extends CocoModel
|
||||||
|
@className: 'PrerenderedSpriteSheet'
|
||||||
|
|
||||||
|
loadImage: ->
|
||||||
|
return false if @loadingImage or @loadedImage
|
||||||
|
return false unless imageURL = @get('image')
|
||||||
|
@image = $("<img src='/file/#{imageURL}' />")
|
||||||
|
@loadingImage = true
|
||||||
|
@image.one('load', =>
|
||||||
|
@loadingImage = false
|
||||||
|
@loadedImage = true
|
||||||
|
@buildSpriteSheet()
|
||||||
|
@trigger('image-loaded', @))
|
||||||
|
@image.one('error', =>
|
||||||
|
@loadingImage = false
|
||||||
|
@trigger('image-load-error', @)
|
||||||
|
)
|
||||||
|
return true
|
||||||
|
|
||||||
|
buildSpriteSheet: ->
|
||||||
|
@spriteSheet = new createjs.SpriteSheet({
|
||||||
|
images: [@image[0]],
|
||||||
|
frames: @get('frames')
|
||||||
|
animations: @get('animations')
|
||||||
|
})
|
||||||
|
|
||||||
|
markToLoad: -> @needToLoad = true
|
||||||
|
|
||||||
|
needToLoad: false
|
||||||
|
loadedImage: false
|
||||||
|
loadingImage: false
|
||||||
|
|
||||||
|
|
||||||
|
class PrerenderedSpriteSheets extends CocoCollection
|
||||||
|
model: PrerenderedSpriteSheet
|
||||||
|
|
|
@ -169,7 +169,7 @@ _.extend ThangTypeSchema.properties,
|
||||||
extendedName: {type: 'string', title: 'Extended Hero Name', description: 'The long form of the hero\'s name. Ex.: "Captain Anya Weston".'}
|
extendedName: {type: 'string', title: 'Extended Hero Name', description: 'The long form of the hero\'s name. Ex.: "Captain Anya Weston".'}
|
||||||
unlockLevelName: {type: 'string', title: 'Unlock Level Name', description: 'The name of the level in which the hero is unlocked.'}
|
unlockLevelName: {type: 'string', title: 'Unlock Level Name', description: 'The name of the level in which the hero is unlocked.'}
|
||||||
tasks: c.array {title: 'Tasks', description: 'Tasks to be completed for this ThangType.'}, c.task
|
tasks: c.array {title: 'Tasks', description: 'Tasks to be completed for this ThangType.'}, c.task
|
||||||
spriteSheets: c.array {title: 'SpriteSheets'},
|
prerenderedSpriteSheetData: c.array {title: 'Prerendered SpriteSheet Data'},
|
||||||
c.object {title: 'SpriteSheet'},
|
c.object {title: 'SpriteSheet'},
|
||||||
actionNames: { type: 'array' }
|
actionNames: { type: 'array' }
|
||||||
animations:
|
animations:
|
||||||
|
@ -184,7 +184,7 @@ _.extend ThangTypeSchema.properties,
|
||||||
speed: { type: 'number' }
|
speed: { type: 'number' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
colorConfig: c.colorConfig()
|
colorConfig: c.object {additionalProperties: c.colorConfig()}
|
||||||
colorLabel: { enum: ['red', 'green', 'blue'] }
|
colorLabel: { enum: ['red', 'green', 'blue'] }
|
||||||
frames:
|
frames:
|
||||||
type: 'array'
|
type: 'array'
|
||||||
|
|
|
@ -24,5 +24,4 @@ block content
|
||||||
li.list-group-item
|
li.list-group-item
|
||||||
a.btn.btn-lg.btn-primary(href="/account/subscription", data-i18n="account.subscription")
|
a.btn.btn-lg.btn-primary(href="/account/subscription", data-i18n="account.subscription")
|
||||||
li.list-group-item
|
li.list-group-item
|
||||||
a.btn.btn-lg.btn-primary(href="/account/prepaid") Prepaid Codes
|
a.btn.btn-lg.btn-primary(href="/account/prepaid", data-i18n="account.prepaid_codes") Prepaid Codes
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ block content
|
||||||
if personalSub.activeUntil
|
if personalSub.activeUntil
|
||||||
tr
|
tr
|
||||||
th(data-i18n="account.active_until")
|
th(data-i18n="account.active_until")
|
||||||
td= moment(activeUntil).format('l')
|
td= moment(personalSub.activeUntil).format('l')
|
||||||
if personalSub.nextPaymentDate
|
if personalSub.nextPaymentDate
|
||||||
tr
|
tr
|
||||||
th(data-i18n="account.next_payment")
|
th(data-i18n="account.next_payment")
|
||||||
|
|
|
@ -38,7 +38,7 @@ block header
|
||||||
li
|
li
|
||||||
a(href="/account/subscription", data-i18n="account.subscription")
|
a(href="/account/subscription", data-i18n="account.subscription")
|
||||||
li
|
li
|
||||||
a(href="/account/prepaid") Prepaid Codes
|
a(href="/account/prepaid", data-i18n="account.prepaid_codes") Prepaid Codes
|
||||||
li
|
li
|
||||||
a#logout-button(data-i18n="login.log_out")
|
a#logout-button(data-i18n="login.log_out")
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
label.checkbox(for=contributorClassName).well
|
label.checkbox(for=contributorClassName).well
|
||||||
input(type='checkbox', name=contributorClassName, id=contributorClassName)
|
input(type='checkbox', name=contributorClassName, id=contributorClassName)
|
||||||
span(data-i18n="contribute.#{contributorClassName}_subscribe_desc")
|
span(data-i18n="contribute.#{contributorClassName}_subscribe_desc")
|
||||||
.saved-notification ✓ Saved
|
.saved-notification
|
||||||
|
span.spr ✓
|
||||||
|
span(data-i18n="save_load.granularity_saved_games") Saved
|
||||||
|
|
|
@ -90,5 +90,5 @@ mixin trial-and-questions
|
||||||
|
|
||||||
h3(data-i18n="courses.questions")
|
h3(data-i18n="courses.questions")
|
||||||
p
|
p
|
||||||
span(data-i18n="teachers_survey.contact_1")
|
span.spr(data-i18n="teachers_survey.contact_1")
|
||||||
a.spl(href='mailto:team@codecombat.com') team@codecombat.com
|
a(href='mailto:team@codecombat.com') team@codecombat.com
|
||||||
|
|
|
@ -12,16 +12,14 @@ block modal-body-content
|
||||||
else
|
else
|
||||||
.alert.alert-danger Could not apply this delta to the current version.
|
.alert.alert-danger Could not apply this delta to the current version.
|
||||||
|
|
||||||
|
|
||||||
block modal-footer
|
block modal-footer
|
||||||
.modal-footer
|
.modal-footer
|
||||||
button(data-dismiss="modal", data-i18n="common.cancel").btn Cancel
|
button(data-dismiss="modal", data-i18n="common.cancel").btn Cancel
|
||||||
if isPatchCreator
|
if isPatchCreator
|
||||||
if status != 'withdrawn'
|
if status != 'withdrawn'
|
||||||
button.btn.btn-danger#withdraw-button Withdraw
|
button.btn.btn-danger#withdraw-button(data-i18n="general.withdraw") Withdraw
|
||||||
if isPatchRecipient
|
if isPatchRecipient
|
||||||
if status != 'accepted'
|
if status != 'accepted'
|
||||||
button.btn.btn-primary#accept-button Accept
|
button.btn.btn-primary#accept-button(data-i18n="general.accept") Accept
|
||||||
if status != 'rejected'
|
if status != 'rejected'
|
||||||
button.btn.btn-danger#reject-button Reject
|
button.btn.btn-danger#reject-button(data-i18n="general.reject") Reject
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,18 @@ block modal-body-content
|
||||||
label.col-sm-3.control-label Resolution Factor
|
label.col-sm-3.control-label Resolution Factor
|
||||||
.col-sm-9
|
.col-sm-9
|
||||||
input#resolution-input.form-control(value=3)
|
input#resolution-input.form-control(value=3)
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
label.col-sm-3.control-label Sprite Type
|
||||||
|
.col-sm-9
|
||||||
|
- var spriteType = view.thangType.get('spriteType') || 'segmented'
|
||||||
|
label.radio-inline
|
||||||
|
input(type="radio" name="sprite-type" value="segmented" checked=spriteType==='segmented')
|
||||||
|
| Segmented
|
||||||
|
label.radio-inline
|
||||||
|
input(type="radio" name="sprite-type" value="singular" checked=spriteType!=='segmented')
|
||||||
|
| Singular
|
||||||
|
|
||||||
.form-group
|
.form-group
|
||||||
label.col-sm-3.control-label Actions
|
label.col-sm-3.control-label Actions
|
||||||
.col-sm-9
|
.col-sm-9
|
||||||
|
@ -31,4 +43,6 @@ block modal-body-content
|
||||||
|
|
||||||
block modal-footer-content
|
block modal-footer-content
|
||||||
button.btn.btn-default(data-dismiss="modal") Cancel
|
button.btn.btn-default(data-dismiss="modal") Cancel
|
||||||
button#save-btn.btn.btn-primary Save
|
button#save-btn.btn.btn-primary Save
|
||||||
|
.progress.progress-striped.active.hide
|
||||||
|
.progress-bar(style="width: 100%")
|
|
@ -16,8 +16,9 @@ block outer_content
|
||||||
//a(href="https://itunes.apple.com/us/app/codecombat/id936523909?mt=8")
|
//a(href="https://itunes.apple.com/us/app/codecombat/id936523909?mt=8")
|
||||||
// img(src="/images/pages/home/app_store_badge.svg")#apple-store-button
|
// img(src="/images/pages/home/app_store_badge.svg")#apple-store-button
|
||||||
|
|
||||||
#news
|
// Example of how to throw down a temporary news link
|
||||||
a(href="/play/ladder/ace-of-coders", data-i18n="temp.ace_of_coders_tournament") New: play in the Ace of Coders tournament now!
|
//#news
|
||||||
|
// a(href="/play/ladder/ace-of-coders", data-i18n="temp.ace_of_coders_tournament") New: play in the Ace of Coders tournament now!
|
||||||
|
|
||||||
#slogan(data-i18n="home.slogan")
|
#slogan(data-i18n="home.slogan")
|
||||||
|
|
||||||
|
|
|
@ -101,8 +101,8 @@ block content
|
||||||
if level.get('name') == 'Ace of Coders'
|
if level.get('name') == 'Ace of Coders'
|
||||||
.tournament-blurb
|
.tournament-blurb
|
||||||
h2
|
h2
|
||||||
span(data-i18n="ladder.tournament_ends") Tournament ends
|
//span(data-i18n="ladder.tournament_ends") Tournament ends
|
||||||
//span(data-i18n="ladder.tournament_ended") Tournament ended
|
span(data-i18n="ladder.tournament_ended") Tournament ended
|
||||||
| #{tournamentTimeLeft}
|
| #{tournamentTimeLeft}
|
||||||
span(data-i18n="ladder.tournament_started") , started
|
span(data-i18n="ladder.tournament_started") , started
|
||||||
| #{tournamentTimeElapsed}
|
| #{tournamentTimeElapsed}
|
||||||
|
@ -111,16 +111,17 @@ block content
|
||||||
|
|
|
|
||||||
a(href="http://blog.codecombat.com/ace-of-coders-multiplayer-programming-tournament", data-i18n="ladder.tournament_blurb_blog") on our blog
|
a(href="http://blog.codecombat.com/ace-of-coders-multiplayer-programming-tournament", data-i18n="ladder.tournament_blurb_blog") on our blog
|
||||||
| .
|
| .
|
||||||
//p
|
p
|
||||||
// strong Tournament ended!
|
strong Tournament ended!
|
||||||
// a(href="#winners") Behold the winners
|
// a(href="#winners") Behold the winners
|
||||||
// | . Thanks for playing! You can
|
// | . Thanks for playing! You can
|
||||||
// strong still play
|
| Thanks for playing! You can
|
||||||
// | Ace of Coders as long as you like.
|
strong still play
|
||||||
//p
|
| Ace of Coders as long as you like.
|
||||||
// | Want to commiserate? Head over to
|
p
|
||||||
// a(href="http://discourse.codecombat.com/") the forum
|
| Want to commiserate? Head over to
|
||||||
// | and discuss your strategies, your triumphs, and your turmoils.
|
a(href="http://discourse.codecombat.com/") the forum
|
||||||
|
| and discuss your strategies, your triumphs, and your turmoils.
|
||||||
|
|
||||||
div#columns.row
|
div#columns.row
|
||||||
div.column.col-md-2
|
div.column.col-md-2
|
||||||
|
@ -813,7 +814,7 @@ block content
|
||||||
th Ogre wins/losses/ties
|
th Ogre wins/losses/ties
|
||||||
else
|
else
|
||||||
th Ogre score
|
th Ogre score
|
||||||
th Spectate
|
th(data-i18n="play.spectate") Spectate
|
||||||
tbody
|
tbody
|
||||||
each human, index in winners.humans
|
each human, index in winners.humans
|
||||||
- var ogre = winners.ogres[index]
|
- var ogre = winners.ogres[index]
|
||||||
|
@ -855,7 +856,7 @@ block content
|
||||||
td
|
td
|
||||||
span= Math.round(100 * ogre.score)
|
span= Math.round(100 * ogre.score)
|
||||||
td
|
td
|
||||||
a(href="/play/spectate/" + level.get('slug') + "?session-one=" + human.sessionID + "&session-two=" + ogre.sessionID) Watch the battle
|
a(href="/play/spectate/" + level.get('slug') + "?session-one=" + human.sessionID + "&session-two=" + ogre.sessionID, data-i18n="ladder.watch_battle") Watch the battle
|
||||||
else
|
else
|
||||||
td
|
td
|
||||||
td
|
td
|
||||||
|
|
|
@ -8,18 +8,17 @@ p
|
||||||
button(data-i18n="ladder.simulate_games").btn.btn-warning.btn-lg.highlight#simulate-button Simulate Games!
|
button(data-i18n="ladder.simulate_games").btn.btn-warning.btn-lg.highlight#simulate-button Simulate Games!
|
||||||
|
|
||||||
p.simulation-count
|
p.simulation-count
|
||||||
span(data-i18n="ladder.games_simulated_by") Games simulated by you:
|
span.spr(data-i18n="ladder.games_simulated_by") Games simulated by you:
|
||||||
|
|
|
||||||
span#simulated-by-you= me.get('simulatedBy') || 0
|
span#simulated-by-you= me.get('simulatedBy') || 0
|
||||||
|
|
||||||
p.simulation-count
|
p.simulation-count
|
||||||
span(data-i18n="ladder.games_simulated_for") Games simulated for you:
|
span.spr(data-i18n="ladder.games_simulated_for") Games simulated for you:
|
||||||
|
|
|
||||||
span#simulated-for-you= me.get('simulatedFor') || 0
|
span#simulated-for-you= me.get('simulatedFor') || 0
|
||||||
|
|
||||||
p.simulation-count
|
p.simulation-count
|
||||||
span(data-i18n="ladder.games_in_queue") Games currently in the queue:
|
span.spr(data-i18n="ladder.games_in_queue") Games currently in the queue:
|
||||||
|
|
|
||||||
span#games-in-queue= numberOfGamesInQueue || 0
|
span#games-in-queue= numberOfGamesInQueue || 0
|
||||||
|
|
||||||
table.table.table-bordered.table-condensed.table-hover
|
table.table.table-bordered.table-condensed.table-hover
|
||||||
thead
|
thead
|
||||||
tr
|
tr
|
||||||
|
|
|
@ -29,16 +29,16 @@ else
|
||||||
.buttons-area
|
.buttons-area
|
||||||
|
|
||||||
if !observing
|
if !observing
|
||||||
button.btn.btn-inverse#game-menu-button(title="Show game menu")
|
button.btn.btn-inverse#game-menu-button(data-i18n="[title]play_level.show_menu", title="Show game menu")
|
||||||
.hamburger
|
.hamburger
|
||||||
span.icon-bar
|
span.icon-bar
|
||||||
span.icon-bar
|
span.icon-bar
|
||||||
span.icon-bar
|
span.icon-bar
|
||||||
span.game-menu-text(data-i18n="play_level.game_menu") Game Menu
|
span.game-menu-text(data-i18n="play_level.game_menu") Game Menu
|
||||||
|
|
||||||
if spectateGame
|
if spectateGame
|
||||||
button.btn.btn-xs.btn-inverse.banner#next-game-button(title="Next Game", data-i18n="play_level.next-game") Next game!
|
button.btn.btn-xs.btn-inverse.banner#next-game-button(data-i18n="play_level.next_game") Next game
|
||||||
|
|
||||||
if !observing
|
if !observing
|
||||||
button.btn.btn-xs.btn-primary.banner#level-done-button(data-i18n="play_level.done") Done
|
button.btn.btn-xs.btn-primary.banner#level-done-button(data-i18n="play_level.done") Done
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
strong.tip(data-i18n='play_level.tip_impossible') It always seems impossible until it's done. - Nelson Mandela
|
strong.tip(data-i18n='play_level.tip_impossible') It always seems impossible until it's done. - Nelson Mandela
|
||||||
strong.tip(data-i18n='play_level.tip_move_forward') Whatever you do, keep moving forward. - Martin Luther King Jr.
|
strong.tip(data-i18n='play_level.tip_move_forward') Whatever you do, keep moving forward. - Martin Luther King Jr.
|
||||||
strong.tip(data-i18n='play_level.tip_google') Have a problem you can't solve? Google it!
|
strong.tip(data-i18n='play_level.tip_google') Have a problem you can't solve? Google it!
|
||||||
|
strong.tip(data-i18n='play_level.tip_solve_then_write') First, solve the problem. Then, write the code. — John Johnson
|
||||||
|
|
||||||
strong.tip.rare(data-i18n='play_level.tip_baby_coders') In the future, even babies will be Archmages.
|
strong.tip.rare(data-i18n='play_level.tip_baby_coders') In the future, even babies will be Archmages.
|
||||||
strong.tip.rare(data-i18n='play_level.tip_hardware_problem') Q: How many programmers does it take to change a light bulb? A: None, it's a hardware problem.
|
strong.tip.rare(data-i18n='play_level.tip_hardware_problem') Q: How many programmers does it take to change a light bulb? A: None, it's a hardware problem.
|
||||||
|
|
|
@ -18,11 +18,11 @@ module.exports = class ModalView extends CocoView
|
||||||
'esc': 'hide'
|
'esc': 'hide'
|
||||||
|
|
||||||
constructor: (options) ->
|
constructor: (options) ->
|
||||||
options ?= {}
|
@className = @className.replace ' fade', '' if options?.instant or @instant
|
||||||
@className = @className.replace ' fade', '' if options.instant or @instant
|
@closeButton = options.closeButton if options?.closeButton?
|
||||||
@closeButton = options.closeButton if options.closeButton?
|
@modalWidthPercent = options.modalWidthPercent if options?.modalWidthPercent
|
||||||
@modalWidthPercent = options.modalWidthPercent if options.modalWidthPercent
|
|
||||||
super arguments...
|
super arguments...
|
||||||
|
@options ?= {}
|
||||||
|
|
||||||
getRenderData: (context={}) ->
|
getRenderData: (context={}) ->
|
||||||
context = super(context)
|
context = super(context)
|
||||||
|
|
|
@ -133,6 +133,7 @@ module.exports = class CampaignEditorView extends RootView
|
||||||
@campaign.set('levels', campaignLevels)
|
@campaign.set('levels', campaignLevels)
|
||||||
|
|
||||||
for level in _.values campaignLevels
|
for level in _.values campaignLevels
|
||||||
|
continue if /test/.test @campaign.get('slug') # Don't overwrite level stuff for testing Campaigns
|
||||||
model = @levels.findWhere {original: level.original}
|
model = @levels.findWhere {original: level.original}
|
||||||
model.set key, level[key] for key in Campaign.denormalizedLevelProperties
|
model.set key, level[key] for key in Campaign.denormalizedLevelProperties
|
||||||
@toSave.add model if model.hasLocalChanges()
|
@toSave.add model if model.hasLocalChanges()
|
||||||
|
@ -201,18 +202,19 @@ module.exports = class CampaignEditorView extends RootView
|
||||||
@insertSubView @campaignView
|
@insertSubView @campaignView
|
||||||
|
|
||||||
onTreemaChanged: (e, nodes) =>
|
onTreemaChanged: (e, nodes) =>
|
||||||
for node in nodes
|
unless /test/.test @campaign.get('slug') # Don't overwrite level stuff for testing Campaigns
|
||||||
path = node.getPath()
|
for node in nodes
|
||||||
if _.string.startsWith path, '/levels/'
|
path = node.getPath()
|
||||||
parts = path.split('/')
|
if _.string.startsWith path, '/levels/'
|
||||||
original = parts[2]
|
parts = path.split('/')
|
||||||
level = @supermodel.getModelByOriginal Level, original
|
original = parts[2]
|
||||||
campaignLevel = @treema.get "/levels/#{original}"
|
level = @supermodel.getModelByOriginal Level, original
|
||||||
|
campaignLevel = @treema.get "/levels/#{original}"
|
||||||
|
|
||||||
@updateRewardsForLevel level, campaignLevel.rewards
|
@updateRewardsForLevel level, campaignLevel.rewards
|
||||||
|
|
||||||
level.set key, campaignLevel[key] for key in Campaign.denormalizedLevelProperties
|
level.set key, campaignLevel[key] for key in Campaign.denormalizedLevelProperties
|
||||||
@toSave.add level if level.hasLocalChanges()
|
@toSave.add level if level.hasLocalChanges()
|
||||||
|
|
||||||
@toSave.add @campaign
|
@toSave.add @campaign
|
||||||
@campaign.set key, value for key, value of @treema.data
|
@campaign.set key, value for key, value of @treema.data
|
||||||
|
@ -329,6 +331,7 @@ class LevelNode extends TreemaObjectNode
|
||||||
populateData: ->
|
populateData: ->
|
||||||
return if @data.name?
|
return if @data.name?
|
||||||
data = _.pick LevelsNode.levels[@keyForParent].attributes, Campaign.denormalizedLevelProperties
|
data = _.pick LevelsNode.levels[@keyForParent].attributes, Campaign.denormalizedLevelProperties
|
||||||
|
console.log 'got the data', data
|
||||||
_.extend @data, data
|
_.extend @data, data
|
||||||
|
|
||||||
class CampaignsNode extends TreemaObjectNode
|
class CampaignsNode extends TreemaObjectNode
|
||||||
|
|
|
@ -20,26 +20,31 @@ module.exports = class ExportThangTypeModal extends ModalView
|
||||||
green: { hue: 0.33, saturation: 0.75, lightness: 0.5 }
|
green: { hue: 0.33, saturation: 0.75, lightness: 0.5 }
|
||||||
}
|
}
|
||||||
getColorLabel: -> @$('#color-config-select').val()
|
getColorLabel: -> @$('#color-config-select').val()
|
||||||
getColorConfig: -> @colorMap[@getColorLabel()]
|
getColorConfig: ->
|
||||||
|
color = @colorMap[@getColorLabel()]
|
||||||
|
return { team: color } if color
|
||||||
|
return null
|
||||||
getActionNames: -> _.map @$('input[name="action"]:checked'), (el) -> $(el).val()
|
getActionNames: -> _.map @$('input[name="action"]:checked'), (el) -> $(el).val()
|
||||||
getResolutionFactor: -> parseInt(@$('#resolution-input').val()) or SPRITE_RESOLUTION_FACTOR
|
getResolutionFactor: -> parseInt(@$('#resolution-input').val()) or SPRITE_RESOLUTION_FACTOR
|
||||||
getFilename: -> 'spritesheet-'+_.string.slugify(moment().format())+'.png'
|
getFilename: -> 'spritesheet-'+_.string.slugify(moment().format())+'.png'
|
||||||
|
getSpriteType: -> @$('input[name="sprite-type"]:checked').val()
|
||||||
|
|
||||||
onClickSaveButton: ->
|
onClickSaveButton: ->
|
||||||
|
@$('.modal-footer button').addClass('hide')
|
||||||
|
@$('.modal-footer .progress').removeClass('hide')
|
||||||
|
@$('input, select').attr('disabled', true)
|
||||||
options = {
|
options = {
|
||||||
resolutionFactor: @getResolutionFactor()
|
resolutionFactor: @getResolutionFactor()
|
||||||
actionNames: @getActionNames()
|
actionNames: @getActionNames()
|
||||||
colorConfig: @getColorConfig()
|
colorConfig: @getColorConfig()
|
||||||
|
spriteType: @getSpriteType()
|
||||||
}
|
}
|
||||||
console.log 'options?', options
|
|
||||||
@exporter = new SpriteExporter(@thangType, options)
|
@exporter = new SpriteExporter(@thangType, options)
|
||||||
@exporter.build()
|
@exporter.build()
|
||||||
@listenToOnce @exporter, 'build', @onExporterBuild
|
@listenToOnce @exporter, 'build', @onExporterBuild
|
||||||
|
|
||||||
onExporterBuild: (e) ->
|
onExporterBuild: (e) ->
|
||||||
@spriteSheet = e.spriteSheet
|
@spriteSheet = e.spriteSheet
|
||||||
$('body').empty().append(@spriteSheet._images[0])
|
|
||||||
return
|
|
||||||
src = @spriteSheet._images[0].toDataURL()
|
src = @spriteSheet._images[0].toDataURL()
|
||||||
src = src.replace('data:image/png;base64,', '').replace(/\ /g, '+')
|
src = src.replace('data:image/png;base64,', '').replace(/\ /g, '+')
|
||||||
body =
|
body =
|
||||||
|
@ -64,14 +69,15 @@ module.exports = class ExportThangTypeModal extends ModalView
|
||||||
] for f in @spriteSheet._frames)
|
] for f in @spriteSheet._frames)
|
||||||
image: "db/thang.type/#{@thangType.get('original')}/"+@getFilename()
|
image: "db/thang.type/#{@thangType.get('original')}/"+@getFilename()
|
||||||
resolutionFactor: @getResolutionFactor()
|
resolutionFactor: @getResolutionFactor()
|
||||||
|
spriteType: @getSpriteType()
|
||||||
}
|
}
|
||||||
if config = @getColorConfig()
|
if config = @getColorConfig()
|
||||||
spriteSheetData.colorConfig = config
|
spriteSheetData.colorConfig = config
|
||||||
if label = @getColorLabel()
|
if label = @getColorLabel()
|
||||||
spriteSheetData.colorLabel = label
|
spriteSheetData.colorLabel = label
|
||||||
spriteSheets = _.clone(@thangType.get('spriteSheets') or [])
|
spriteSheets = _.clone(@thangType.get('prerenderedSpriteSheetData') or [])
|
||||||
spriteSheets.push(spriteSheetData)
|
spriteSheets.push(spriteSheetData)
|
||||||
@thangType.set('spriteSheets', spriteSheets)
|
@thangType.set('prerenderedSpriteSheetData', spriteSheets)
|
||||||
@thangType.save()
|
@thangType.save()
|
||||||
@listenToOnce @thangType, 'sync', @hide
|
@listenToOnce @thangType, 'sync', @hide
|
||||||
|
|
||||||
|
|
|
@ -210,7 +210,6 @@ module.exports = class ThangTypeEditView extends RootView
|
||||||
@patchesView = @insertSubView(new PatchesView(@thangType), @$el.find('.patches-view'))
|
@patchesView = @insertSubView(new PatchesView(@thangType), @$el.find('.patches-view'))
|
||||||
@showReadOnly() if me.get('anonymous')
|
@showReadOnly() if me.get('anonymous')
|
||||||
@updatePortrait()
|
@updatePortrait()
|
||||||
@onClickExportSpriteSheetButton()
|
|
||||||
|
|
||||||
initComponents: =>
|
initComponents: =>
|
||||||
options =
|
options =
|
||||||
|
|
|
@ -184,7 +184,6 @@ module.exports = class CampaignView extends RootView
|
||||||
context.levelDifficultyMap = @levelDifficultyMap
|
context.levelDifficultyMap = @levelDifficultyMap
|
||||||
context.levelPlayCountMap = @levelPlayCountMap
|
context.levelPlayCountMap = @levelPlayCountMap
|
||||||
context.isIPadApp = application.isIPadApp
|
context.isIPadApp = application.isIPadApp
|
||||||
context.mapType = _.string.slugify @terrain
|
|
||||||
context.requiresSubscription = @requiresSubscription
|
context.requiresSubscription = @requiresSubscription
|
||||||
context.editorMode = @editorMode
|
context.editorMode = @editorMode
|
||||||
context.adjacentCampaigns = _.filter _.values(_.cloneDeep(@campaign?.get('adjacentCampaigns') or {})), (ac) =>
|
context.adjacentCampaigns = _.filter _.values(_.cloneDeep(@campaign?.get('adjacentCampaigns') or {})), (ac) =>
|
||||||
|
@ -378,7 +377,7 @@ module.exports = class CampaignView extends RootView
|
||||||
@particleMan.removeEmitters()
|
@particleMan.removeEmitters()
|
||||||
@particleMan.attach @$el.find('.map')
|
@particleMan.attach @$el.find('.map')
|
||||||
for level in @campaign.renderedLevels ? {}
|
for level in @campaign.renderedLevels ? {}
|
||||||
particleKey = ['level', @terrain]
|
particleKey = ['level', @terrain.replace('-branching-test', '')]
|
||||||
particleKey.push level.type if level.type and not (level.type in ['hero', 'course'])
|
particleKey.push level.type if level.type and not (level.type in ['hero', 'course'])
|
||||||
particleKey.push 'replayable' if level.replayable
|
particleKey.push 'replayable' if level.replayable
|
||||||
particleKey.push 'premium' if level.requiresSubscription
|
particleKey.push 'premium' if level.requiresSubscription
|
||||||
|
|
|
@ -212,7 +212,7 @@ module.exports = class HeroVictoryModal extends ModalView
|
||||||
|
|
||||||
afterRender: ->
|
afterRender: ->
|
||||||
super()
|
super()
|
||||||
@$el.toggleClass 'show-achievements', @level.get('type', true) is 'hero'
|
@$el.toggleClass 'with-achievements', @level.get('type', true) is 'hero'
|
||||||
return unless @supermodel.finished()
|
return unless @supermodel.finished()
|
||||||
@playSelectionSound hero, true for original, hero of @thangTypes # Preload them
|
@playSelectionSound hero, true for original, hero of @thangTypes # Preload them
|
||||||
@updateSavingProgressStatus()
|
@updateSavingProgressStatus()
|
||||||
|
|
65
scripts/mongodb/queries/coursesV1Beta.js
Normal file
65
scripts/mongodb/queries/coursesV1Beta.js
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
// Grab course instance data for Courses v1 Beta
|
||||||
|
|
||||||
|
// Usage:
|
||||||
|
// mongo <address>:<port>/<database> <script file> -u <username> -p <password>
|
||||||
|
|
||||||
|
// TODO: order by average levels completed
|
||||||
|
|
||||||
|
function objectIdWithTimestamp(timestamp)
|
||||||
|
{
|
||||||
|
// Convert string date to Date object (otherwise assume timestamp is a date)
|
||||||
|
if (typeof(timestamp) == 'string') timestamp = new Date(timestamp);
|
||||||
|
// Convert date object to hex seconds since Unix epoch
|
||||||
|
var hexSeconds = Math.floor(timestamp/1000).toString(16);
|
||||||
|
// Create an ObjectId with that hex timestamp
|
||||||
|
var constructedObjectId = ObjectId(hexSeconds + "0000000000000000");
|
||||||
|
return constructedObjectId
|
||||||
|
}
|
||||||
|
|
||||||
|
var betaStartDate = new ISODate('2015-10-08');
|
||||||
|
var minMembers = 9;
|
||||||
|
|
||||||
|
var classes = [];
|
||||||
|
var ownerIDs = [];
|
||||||
|
var cursor = db['course.instances'].find({$and: [
|
||||||
|
{_id: {$gte: objectIdWithTimestamp(betaStartDate)}},
|
||||||
|
{$where: 'this.members.length > ' + minMembers}
|
||||||
|
]}).sort({_id: 1});
|
||||||
|
while (cursor.hasNext()) {
|
||||||
|
var doc = cursor.next();
|
||||||
|
var ownerID = doc.ownerID;
|
||||||
|
ownerIDs.push(ownerID);
|
||||||
|
if (!classes[ownerID.valueOf()]) classes[ownerID.valueOf()] = [];
|
||||||
|
classes.push({
|
||||||
|
courseID: doc.courseID,
|
||||||
|
courseInstanceID: doc._id,
|
||||||
|
url: 'codecombat.com/courses/' + doc.courseID.valueOf() + '/' + doc._id.valueOf(),
|
||||||
|
ownerID: doc.ownerID,
|
||||||
|
createDate: ownerID.getTimestamp(),
|
||||||
|
memberCount: doc.members.length,
|
||||||
|
name: doc.name
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var userMap = {};
|
||||||
|
cursor = db.users.find({_id: {$in: ownerIDs}});
|
||||||
|
while (cursor.hasNext()) {
|
||||||
|
var doc = cursor.next();
|
||||||
|
if (!userMap[doc._id.valueOf()]) userMap[doc._id.valueOf()] = {};
|
||||||
|
userMap[doc._id.valueOf()].emailLower = doc.emailLower;
|
||||||
|
userMap[doc._id.valueOf()].name = doc.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var i = 0; i < classes.length; i++) {
|
||||||
|
classes[i].email = userMap[classes[i].ownerID.valueOf()].emailLower;
|
||||||
|
}
|
||||||
|
|
||||||
|
classes.sort(function(a, b) {
|
||||||
|
return b.memberCount - a.memberCount;
|
||||||
|
});
|
||||||
|
|
||||||
|
for (var i = 0; i < classes.length; i++) {
|
||||||
|
print(classes[i].url + '\t' + classes[i].memberCount + '\t' + classes[i].email + '\t' + classes[i].name);
|
||||||
|
}
|
||||||
|
|
||||||
|
print(classes.length + ' course instances with over ' + minMembers + ' members');
|
|
@ -235,7 +235,7 @@ module.exports = class Handler
|
||||||
|
|
||||||
# Hack: levels loading thang types need the components returned as well.
|
# Hack: levels loading thang types need the components returned as well.
|
||||||
# Need a way to specify a projection for a query.
|
# Need a way to specify a projection for a query.
|
||||||
project = {name: 1, original: 1, kind: 1, components: 1}
|
project = {name: 1, original: 1, kind: 1, components: 1, prerenderedSpriteSheetData: 1}
|
||||||
sort = if nonVersioned then {} else {'version.major': -1, 'version.minor': -1}
|
sort = if nonVersioned then {} else {'version.major': -1, 'version.minor': -1}
|
||||||
|
|
||||||
makeFunc = (id) =>
|
makeFunc = (id) =>
|
||||||
|
|
|
@ -35,7 +35,7 @@ ThangTypeHandler = class ThangTypeHandler extends Handler
|
||||||
'unlockLevelName'
|
'unlockLevelName'
|
||||||
'tasks'
|
'tasks'
|
||||||
'terrains'
|
'terrains'
|
||||||
'spriteSheets'
|
'prerenderedSpriteSheetData'
|
||||||
]
|
]
|
||||||
|
|
||||||
hasAccess: (req) ->
|
hasAccess: (req) ->
|
||||||
|
|
|
@ -66,7 +66,7 @@ getRandomSessions = (user, callback) ->
|
||||||
|
|
||||||
# Sampling by level: we pick a level, then find a human and ogre session for that level, one at random, one biased towards recent submissions.
|
# Sampling by level: we pick a level, then find a human and ogre session for that level, one at random, one biased towards recent submissions.
|
||||||
#ladderLevelIDs = ['greed', 'criss-cross', 'brawlwood', 'dungeon-arena', 'gold-rush', 'sky-span'] # Let's not give any extra simulations to old ladders.
|
#ladderLevelIDs = ['greed', 'criss-cross', 'brawlwood', 'dungeon-arena', 'gold-rush', 'sky-span'] # Let's not give any extra simulations to old ladders.
|
||||||
ladderLevelIDs = ['dueling-grounds', 'cavern-survival', 'multiplayer-treasure-grove', 'harrowland', 'zero-sum', 'ace-of-coders', 'ace-of-coders', 'ace-of-coders', 'ace-of-coders']
|
ladderLevelIDs = ['dueling-grounds', 'cavern-survival', 'multiplayer-treasure-grove', 'harrowland', 'zero-sum', 'ace-of-coders']
|
||||||
sampleByLevel = (callback) ->
|
sampleByLevel = (callback) ->
|
||||||
levelID = _.sample ladderLevelIDs
|
levelID = _.sample ladderLevelIDs
|
||||||
favorRecentHumans = Math.random() < 0.5 # We pick one session favoring recent submissions, then find another one uniformly to play against
|
favorRecentHumans = Math.random() < 0.5 # We pick one session favoring recent submissions, then find another one uniformly to play against
|
||||||
|
|
|
@ -173,7 +173,7 @@ UserHandler = class UserHandler extends Handler
|
||||||
|
|
||||||
getById: (req, res, id) ->
|
getById: (req, res, id) ->
|
||||||
if Handler.isID(id) and req.user?._id.equals(id)
|
if Handler.isID(id) and req.user?._id.equals(id)
|
||||||
return @sendSuccess(res, @formatEntity(req, req.user, 256))
|
return @sendSuccess(res, @formatEntity(req, req.user))
|
||||||
super(req, res, id)
|
super(req, res, id)
|
||||||
|
|
||||||
getByIDs: (req, res) ->
|
getByIDs: (req, res) ->
|
||||||
|
|
|
@ -11,7 +11,7 @@ describe 'LayerAdapter', ->
|
||||||
layer = new LayerAdapter({webGL:true})
|
layer = new LayerAdapter({webGL:true})
|
||||||
layer.buildAutomatically = false
|
layer.buildAutomatically = false
|
||||||
layer.buildAsync = false
|
layer.buildAsync = false
|
||||||
|
|
||||||
it 'creates containers for animated actions if set to spriteType=segmented', ->
|
it 'creates containers for animated actions if set to spriteType=segmented', ->
|
||||||
ogreMunchkinThangType.set('spriteType', 'segmented')
|
ogreMunchkinThangType.set('spriteType', 'segmented')
|
||||||
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
||||||
|
@ -45,9 +45,10 @@ describe 'LayerAdapter', ->
|
||||||
sheet = layer.renderNewSpriteSheet()
|
sheet = layer.renderNewSpriteSheet()
|
||||||
key = layer.renderGroupingKey(treeThangType, 'idle')
|
key = layer.renderGroupingKey(treeThangType, 'idle')
|
||||||
expect(key in sheet.getAnimations()).toBe(true)
|
expect(key in sheet.getAnimations()).toBe(true)
|
||||||
|
|
||||||
it 'only renders frames used by actions when spriteType=singular', ->
|
it 'only renders frames used by actions when spriteType=singular', ->
|
||||||
layer.defaultActions = ['idle'] # uses the move side animation
|
oldDefaults = ThangType.defaultActions
|
||||||
|
ThangType.defaultActions = ['idle'] # uses the move side animation
|
||||||
ogreMunchkinThangType.set('spriteType', 'singular')
|
ogreMunchkinThangType.set('spriteType', 'singular')
|
||||||
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
||||||
sprite = new Lank(ogreMunchkinThangType, {colorConfig: colorConfig})
|
sprite = new Lank(ogreMunchkinThangType, {colorConfig: colorConfig})
|
||||||
|
@ -58,6 +59,7 @@ describe 'LayerAdapter', ->
|
||||||
expect(animations.length).toBe(1)
|
expect(animations.length).toBe(1)
|
||||||
expect(animations[0]).toBe(key)
|
expect(animations[0]).toBe(key)
|
||||||
expect(sheet.getNumFrames()).toBe(2) # one idle frame, and the emptiness frame
|
expect(sheet.getNumFrames()).toBe(2) # one idle frame, and the emptiness frame
|
||||||
|
ThangType.defaultActions = oldDefaults
|
||||||
|
|
||||||
it 'renders a raster image onto a sheet', (done) ->
|
it 'renders a raster image onto a sheet', (done) ->
|
||||||
bootsThangType = new ThangType(require 'test/app/fixtures/leather-boots.thang.type')
|
bootsThangType = new ThangType(require 'test/app/fixtures/leather-boots.thang.type')
|
||||||
|
@ -75,14 +77,14 @@ describe 'LayerAdapter', ->
|
||||||
# skip this test...
|
# skip this test...
|
||||||
done()
|
done()
|
||||||
)
|
)
|
||||||
|
|
||||||
it 'loads ThangTypes for Lanks that are added to it and need to be loaded', ->
|
it 'loads ThangTypes for Lanks that are added to it and need to be loaded', ->
|
||||||
thangType = new ThangType({_id: 1})
|
thangType = new ThangType({_id: 1})
|
||||||
sprite = new Lank(thangType)
|
sprite = new Lank(thangType)
|
||||||
layer.addLank(sprite)
|
layer.addLank(sprite)
|
||||||
expect(layer.numThingsLoading).toBe(1)
|
expect(layer.numThingsLoading).toBe(1)
|
||||||
expect(jasmine.Ajax.requests.count()).toBe(1)
|
expect(jasmine.Ajax.requests.count()).toBe(1)
|
||||||
|
|
||||||
it 'loads raster images for ThangType', ->
|
it 'loads raster images for ThangType', ->
|
||||||
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
||||||
thangType = new ThangType({_id: 1})
|
thangType = new ThangType({_id: 1})
|
||||||
|
@ -98,7 +100,7 @@ describe 'LayerAdapter', ->
|
||||||
thangType.trigger('raster-image-loaded', thangType)
|
thangType.trigger('raster-image-loaded', thangType)
|
||||||
expect(layer.numThingsLoading).toBe(0)
|
expect(layer.numThingsLoading).toBe(0)
|
||||||
expect(layer.renderNewSpriteSheet).toHaveBeenCalled()
|
expect(layer.renderNewSpriteSheet).toHaveBeenCalled()
|
||||||
|
|
||||||
it 'renders a new SpriteSheet only once everything has loaded', ->
|
it 'renders a new SpriteSheet only once everything has loaded', ->
|
||||||
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
||||||
thangType1 = new ThangType({_id: 1})
|
thangType1 = new ThangType({_id: 1})
|
||||||
|
|
|
@ -103,6 +103,7 @@ unittest.getUser = (name, email, password, done, force) ->
|
||||||
req = request.post(getURL('/db/user'), (err, response, body) ->
|
req = request.post(getURL('/db/user'), (err, response, body) ->
|
||||||
throw err if err
|
throw err if err
|
||||||
User.findOne({email: email}).exec((err, user) ->
|
User.findOne({email: email}).exec((err, user) ->
|
||||||
|
throw err if err
|
||||||
user.set('permissions', if password is '80yqxpb38j' then ['admin'] else [])
|
user.set('permissions', if password is '80yqxpb38j' then ['admin'] else [])
|
||||||
user.set('name', name)
|
user.set('name', name)
|
||||||
user.save (err) ->
|
user.save (err) ->
|
||||||
|
|
Reference in a new issue