mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Merge branch 'master' into production
This commit is contained in:
commit
f9fb6eaf90
76 changed files with 895 additions and 348 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
account
contribute
courses
editor
play
views
editor/thang
play/level/modal
server
commons
levels/thangs
queues/scoring
users
test
|
@ -18,11 +18,12 @@ class SpriteExporter extends CocoClass
|
|||
@colorConfig = options.colorConfig or {}
|
||||
@resolutionFactor = options.resolutionFactor or 1
|
||||
@actionNames = options.actionNames or (action.name for action in @thangType.getDefaultActions())
|
||||
@spriteType = options.spriteType or @thangType.get('spriteType') or 'segmented'
|
||||
super()
|
||||
|
||||
build: (renderType) ->
|
||||
build: ->
|
||||
spriteSheetBuilder = new createjs.SpriteSheetBuilder()
|
||||
if (renderType or @thangType.get('spriteType') or 'segmented') is 'segmented'
|
||||
if @spriteType is 'segmented'
|
||||
@renderSegmentedThangType(spriteSheetBuilder)
|
||||
else
|
||||
@renderSingularThangType(spriteSheetBuilder)
|
||||
|
@ -64,7 +65,7 @@ class SpriteExporter extends CocoClass
|
|||
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
||||
else
|
||||
frames = _.sortBy(_.values(framesMap))
|
||||
next = @nextForAction(action)
|
||||
next = @thangType.nextForAction(action)
|
||||
spriteSheetBuilder.addAnimation(action.name, frames, next)
|
||||
|
||||
containerActions = []
|
||||
|
|
|
@ -148,10 +148,12 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
|
||||
addLank: (lank) ->
|
||||
lank.options.resolutionFactor = @resolutionFactor
|
||||
|
||||
lank.layer = @
|
||||
@listenTo(lank, 'action-needs-render', @onActionNeedsRender)
|
||||
@lanks.push lank
|
||||
lank.thangType.initPrerenderedSpriteSheets()
|
||||
prerenderedSpriteSheet = lank.thangType.getPrerenderedSpriteSheet(lank.options.colorConfig, @defaultSpriteType)
|
||||
prerenderedSpriteSheet?.markToLoad()
|
||||
@loadThangType(lank.thangType)
|
||||
@addDefaultActionsToRender(lank)
|
||||
@setSpriteToLank(lank)
|
||||
|
@ -176,6 +178,11 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
thangType.loadRasterImage()
|
||||
@listenToOnce(thangType, 'raster-image-loaded', @somethingLoaded)
|
||||
@numThingsLoading++
|
||||
else if prerenderedSpriteSheet = thangType.getPrerenderedSpriteSheetToLoad()
|
||||
startedLoading = prerenderedSpriteSheet.loadImage()
|
||||
return if not startedLoading
|
||||
@listenToOnce(prerenderedSpriteSheet, 'image-loaded', -> @somethingLoaded(thangType))
|
||||
@numThingsLoading++
|
||||
|
||||
somethingLoaded: (thangType) ->
|
||||
@numThingsLoading--
|
||||
|
@ -346,6 +353,9 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
#- Rendering containers for segmented thang types
|
||||
|
||||
renderSegmentedThangType: (thangType, colorConfig, actionNames, spriteSheetBuilder) ->
|
||||
prerenderedSpriteSheet = thangType.getPrerenderedSpriteSheet(colorConfig, 'segmented')
|
||||
if prerenderedSpriteSheet and not prerenderedSpriteSheet.loadedImage
|
||||
return
|
||||
containersToRender = thangType.getContainersForActions(actionNames)
|
||||
spriteBuilder = new SpriteBuilder(thangType, {colorConfig: colorConfig})
|
||||
for containerGlobalName in containersToRender
|
||||
|
@ -354,6 +364,11 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
container = new createjs.Sprite(@spriteSheet)
|
||||
container.gotoAndStop(containerKey)
|
||||
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
|
||||
container = spriteBuilder.buildContainerFromStore(containerGlobalName)
|
||||
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
|
||||
|
||||
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())
|
||||
animationActions = []
|
||||
for a in actionObjects
|
||||
|
@ -387,10 +413,20 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
for key, index in actionKeys
|
||||
action = actions[index]
|
||||
frames = (framesMap[f] for f in @spriteSheet.getAnimation(key).frames)
|
||||
next = @nextForAction(action)
|
||||
next = thangType.nextForAction(action)
|
||||
spriteSheetBuilder.addAnimation(key, frames, next)
|
||||
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})
|
||||
|
||||
if renderAll
|
||||
|
@ -412,7 +448,7 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
frames = (framesMap[parseInt(frame)] for frame in action.frames.split(','))
|
||||
else
|
||||
frames = _.sortBy(_.values(framesMap))
|
||||
next = @nextForAction(action)
|
||||
next = thangType.nextForAction(action)
|
||||
spriteSheetBuilder.addAnimation(name, frames, next)
|
||||
|
||||
containerActions = []
|
||||
|
@ -423,6 +459,14 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
|
||||
containerGroups = _.groupBy containerActions, (action) -> action.container
|
||||
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)
|
||||
scale = actions[0].scale or thangType.get('scale') or 1
|
||||
frame = spriteSheetBuilder.addFrame(container, null, scale * @resolutionFactor)
|
||||
|
@ -430,12 +474,6 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
name = @renderGroupingKey(thangType, action.name, colorConfig)
|
||||
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
|
||||
|
||||
renderRasterThangType: (thangType, spriteSheetBuilder) ->
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
accepted: "مقبول"
|
||||
rejected: "مرفوض"
|
||||
withdrawn: "متعادل"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "المقدم"
|
||||
submitted: "تم التقديم"
|
||||
commit_msg: "حول رسالة"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
|
||||
play_level:
|
||||
done: "انتهاء"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "مستوى" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Arabi
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
no_recent_games: "لا يوجد لعب لعبت خلال الأسبوعين الماضيين."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
accepted: "Прието"
|
||||
rejected: "Отказано"
|
||||
withdrawn: "Отменено"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Изпращач"
|
||||
submitted: "Изпратено"
|
||||
commit_msg: "Съпровождащо съобщение"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
|
||||
play_level:
|
||||
done: "Готово"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "На главната" # Not used any more, will be removed soon.
|
||||
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "Прескочи"
|
||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
tip_free_your_mind: "Трябва да им позволиш да си отидат Нео. Страхът, съмнението и липсата на вяра. Освободи съзнанието си. - Морфеус"
|
||||
tip_strong_opponents: "Дори най-силният противник си има слабости. Винаги. - Itachi Uchiha"
|
||||
tip_paper_and_pen: "Преди да почнеш с програмирането, винаги започни с планиране на хартия."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Инвентар"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
comparison_blurb: "Изостри уменията си в CodeCombat с абонамент!"
|
||||
feature1: "110+ основни нива в 4 свята"
|
||||
feature2: "10 силни <strong>нови герои</strong> с уникални умения!"
|
||||
feature3: "70+ бонус нива"
|
||||
feature3: "70+ бонус нива" # {change}
|
||||
feature4: "<strong>3500 скъпоценни камъни бонус</strong> всеки месец!"
|
||||
feature5: "Видео уроци"
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "български език", englishDescri
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
accepted: "Acceptat"
|
||||
rejected: "Rebutjat"
|
||||
withdrawn: "Retirat"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Remitent"
|
||||
submitted: "Presentat"
|
||||
commit_msg: "nissatge de Commir"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
|
||||
play_level:
|
||||
done: "Fet"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Inici" # Not used any more, will be removed soon.
|
||||
level: "Nivell" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Partides simulades"
|
||||
games_played: "Partides guanyades"
|
||||
ratio: "Ràtio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
fight: "Lluita!"
|
||||
watch_victory: "Mira la teva victòria"
|
||||
defeat_the: "Derrota a"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "El torneig acaba"
|
||||
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."
|
||||
payments: "Pagaments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
accepted: "Přijato"
|
||||
rejected: "Odmítnuto"
|
||||
withdrawn: "Uzavřeno"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Odesílatel"
|
||||
submitted: "Odesláno"
|
||||
commit_msg: "Popisek ukládání"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
|
||||
play_level:
|
||||
done: "Hotovo"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Domů" # Not used any more, will be removed soon.
|
||||
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
simulate_games: "Simulovat hry!"
|
||||
games_simulated_by: "Hry simulovány vámi:"
|
||||
games_simulated_for: "Hry simulovány pro vás:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Her simulováno"
|
||||
games_played: "Her hráno"
|
||||
ratio: "Poměr"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
fight: "Boj!"
|
||||
watch_victory: "Sledovat vaši výhru"
|
||||
defeat_the: "Poraženo"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "Turnaj končí"
|
||||
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ů."
|
||||
payments: "Platby"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Zaplaceno"
|
||||
# sale: "Sale"
|
||||
subscription: "Předplatné"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
accepted: "Accepteret"
|
||||
rejected: "Afvist"
|
||||
withdrawn: "Trukket tilbage"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Indsender"
|
||||
submitted: "Indsendt"
|
||||
commit_msg: "ændringsnotat"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
|
||||
play_level:
|
||||
done: "Færdig"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Hjem" # Not used any more, will be removed soon.
|
||||
level: "Bane" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "dansk", englishDescription: "Danish", trans
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Veröffentlicher"
|
||||
submitted: "Veröffentlicht"
|
||||
commit_msg: "Nachricht absenden"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Fertig"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Startseite" # Not used any more, will be removed soon.
|
||||
level: "Mission" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
simulate_games: "Simuliere Spiele!"
|
||||
games_simulated_by: "Spiele die durch 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_played: "gespielte Spiele"
|
||||
ratio: "Ratio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
fight: "Kämpft!"
|
||||
watch_victory: "Schau dir deinen Sieg an"
|
||||
defeat_the: "Besiege den"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "Turnier endet"
|
||||
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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
accepted: "Akzeptiert"
|
||||
rejected: "Nid akzeptiert"
|
||||
withdrawn: "Zruggzie"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Sender"
|
||||
submitted: "Gesendet"
|
||||
commit_msg: "Nachricht abschicke"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
|
||||
play_level:
|
||||
done: "Fertig"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
accepted: "akzeptiert"
|
||||
rejected: "abgelehnt"
|
||||
withdrawn: "zurückgezogen"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Übermittler"
|
||||
submitted: "Übermittelt"
|
||||
commit_msg: "Übertrage Nachricht"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Fertig"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Startseite" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
simulate_games: "Simuliere Spiele!"
|
||||
games_simulated_by: "Spiele die durch 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_played: "gespielte Spiele"
|
||||
ratio: "Ratio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
fight: "Kämpft!"
|
||||
watch_victory: "Schau dir deinen Sieg an"
|
||||
defeat_the: "Besiege den"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "Turnier endet"
|
||||
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."
|
||||
payments: "Zahlungen"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Gekauft"
|
||||
# sale: "Sale"
|
||||
subscription: "Abo"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
|
||||
play_level:
|
||||
done: "Έτοιμο"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Αρχική" # Not used any more, will be removed soon.
|
||||
level: "Επίπεδο" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Gre
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "English (UK)", englishDescription: "English
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "English (US)", englishDescription: "English
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@
|
|||
accepted: "Accepted"
|
||||
rejected: "Rejected"
|
||||
withdrawn: "Withdrawn"
|
||||
accept: "Accept"
|
||||
reject: "Reject"
|
||||
withdraw: "Withdraw"
|
||||
submitter: "Submitter"
|
||||
submitted: "Submitted"
|
||||
commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@
|
|||
|
||||
play_level:
|
||||
done: "Done"
|
||||
next_game: "Next game"
|
||||
show_menu: "Show game menu"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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_solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Inventory"
|
||||
|
@ -400,7 +406,7 @@
|
|||
comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
||||
feature1: "110+ basic levels across 4 worlds"
|
||||
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!"
|
||||
feature5: "Video tutorials"
|
||||
feature6: "Premium email support"
|
||||
|
@ -913,7 +919,7 @@
|
|||
see_the: "See the"
|
||||
more_info: "for more information."
|
||||
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"
|
||||
enroll: "Enroll"
|
||||
pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1121,7 @@
|
|||
simulate_games: "Simulate Games!"
|
||||
games_simulated_by: "Games simulated by you:"
|
||||
games_simulated_for: "Games simulated for you:"
|
||||
games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Games simulated"
|
||||
games_played: "Games played"
|
||||
ratio: "Ratio"
|
||||
|
@ -1151,6 +1158,7 @@
|
|||
fight: "Fight!"
|
||||
watch_victory: "Watch your victory"
|
||||
defeat_the: "Defeat the"
|
||||
watch_battle: "Watch the battle"
|
||||
tournament_started: ", started"
|
||||
tournament_ends: "Tournament ends"
|
||||
tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1216,7 @@
|
|||
no_recent_games: "No games played during the past two weeks."
|
||||
payments: "Payments"
|
||||
prepaid: "Prepaid"
|
||||
prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Purchased"
|
||||
sale: "Sale"
|
||||
subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Esperanto", englishDescription: "Esperanto"
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
accepted: "Aceptado"
|
||||
rejected: "Rechazado"
|
||||
withdrawn: "Retirado"
|
||||
accept: "Aceptar"
|
||||
reject: "Rechazar"
|
||||
withdraw: "Retirar"
|
||||
submitter: "Emisor"
|
||||
submitted: "Enviado"
|
||||
commit_msg: "Enviar mensaje"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
|
||||
play_level:
|
||||
done: "Listo"
|
||||
next_game: "Siguiente juego"
|
||||
show_menu: "Mostrar menú de juego"
|
||||
home: "Inicio" # Not used any more, will be removed soon.
|
||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
solve_then_write: "Primero, resuelve el problema. Y entonces, escribe el código. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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!"
|
||||
feature1: "Más de 110 niveles basicos a lo largo de 4 mundos"
|
||||
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!"
|
||||
feature5: "Video tutoriales"
|
||||
feature6: "Soporte Premium vía email"
|
||||
|
@ -601,7 +607,6 @@ 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_2: "No se necesita experiencia previa!"
|
||||
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 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_2: "Una suscripción mensual le da acceso a tutoriales en vídeo y niveles extra para practicar."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
see_the: "Vea la"
|
||||
more_info: "para más información."
|
||||
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"
|
||||
enroll: "Inscribirse"
|
||||
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!"
|
||||
games_simulated_by: "Juegos simulados por ti:"
|
||||
games_simulated_for: "Juegos simulados para ti:"
|
||||
games_in_queue: "Juegos actualmente en cola:"
|
||||
games_simulated: "Juegos simulados"
|
||||
games_played: "Juegos jugados"
|
||||
ratio: "Proporción"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
fight: "Pelea!"
|
||||
watch_victory: "Observa tu Victoria"
|
||||
defeat_the: "Derrota a"
|
||||
watch_battle: "Mirar la batalla"
|
||||
tournament_started: ", iniciado"
|
||||
tournament_ends: "Final de 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."
|
||||
payments: "Pagos"
|
||||
prepaid: "Prepagado"
|
||||
prepaid_codes: "Códigos Prepagados"
|
||||
purchased: "Comprado"
|
||||
sale: "Venta"
|
||||
subscription: "Suscripción"
|
||||
|
@ -1329,7 +1337,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
input_handling: "Manejo de Entradas"
|
||||
math_operations: "Operaciones Matemáticas"
|
||||
object_literals: "Objetos Literales"
|
||||
# parameters: "Parameters"
|
||||
parameters: "Parámetros"
|
||||
strings: "Cadenas"
|
||||
variables: "Variables"
|
||||
vectors: "Vectores"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
accepted: "Aceptado"
|
||||
rejected: "Rechazado"
|
||||
withdrawn: "Retirado"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Submitter"
|
||||
submitted: "Enviado"
|
||||
commit_msg: "Mensaje de Asignación o Commit"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
|
||||
play_level:
|
||||
done: "Hecho"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Inicio" # Not used any more, will be removed soon.
|
||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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!"
|
||||
feature1: "Más de 110 niveles básicos pasando por 4 mundos"
|
||||
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!"
|
||||
feature5: "Vídeo tutoriales"
|
||||
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_2: "¡No se necesita experiencia!"
|
||||
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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
simulate_games: "¡Simula juegos!"
|
||||
games_simulated_by: "Juegos simulados por ti:"
|
||||
games_simulated_for: "Juegos simulados para ti:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Juegos simulados"
|
||||
games_played: "Partidas jugadas"
|
||||
ratio: "Ratio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
fight: "¡Pelea!"
|
||||
watch_victory: "Ver tu victoria"
|
||||
defeat_the: "Vence a"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", iniciado"
|
||||
tournament_ends: "El torneo termina"
|
||||
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."
|
||||
payments: "Pagos"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Adquirido"
|
||||
sale: "Venta"
|
||||
subscription: "Suscripción"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Persian",
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
accepted: "Hyväksytty"
|
||||
rejected: "Hylätty"
|
||||
withdrawn: "Vedetty pois"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Lähettäjä"
|
||||
submitted: "Lähetetty"
|
||||
commit_msg: "Lähetä Viesti"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
|
||||
play_level:
|
||||
done: "Valmis"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Taso" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Luettelo"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
comparison_blurb: "Teroita kykyjäsi CodeCombat kuukausitilauksella!"
|
||||
feature1: "110+ perustasoa 4:ssä maailmassa"
|
||||
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!"
|
||||
feature5: "Video-oppaat"
|
||||
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_2: "Aiempi kokemus ei ole tarpeen!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "suomi", englishDescription: "Finnish", tran
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
no_recent_games: "Ei pelejä viimeisen kahden viikon aikana."
|
||||
payments: "Ostot"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Ostettu"
|
||||
sale: "Alennus"
|
||||
subscription: "Kuukausitilaus"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
accepted: "Accepté"
|
||||
rejected: "Rejeté"
|
||||
withdrawn: "Retiré"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Soumissionnaire"
|
||||
submitted: "Soumis"
|
||||
commit_msg: "Message de mise à jour"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
|
||||
play_level:
|
||||
done: "Fait"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Accueil" # Not used any more, will be removed soon.
|
||||
level: "Niveau" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Aucune expérience requise !"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# 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 !"
|
||||
games_simulated_by: "Parties que vous avez simulées :"
|
||||
games_simulated_for: "Parties simulées pour vous :"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Partie simulée"
|
||||
games_played: "Parties jouées"
|
||||
ratio: "Moyenne"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
fight: "Combattez !"
|
||||
watch_victory: "Regardez votre victoire"
|
||||
defeat_the: "Vaincre le"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", a démarré"
|
||||
tournament_ends: "Fin du tournoi"
|
||||
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."
|
||||
payments: "Paiements"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Acheté"
|
||||
# sale: "Sale"
|
||||
subscription: "Souscrit"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
commit_msg: "Mensaxe de Asignación ou Commit"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
|
||||
play_level:
|
||||
done: "Feito"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Inicio" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
simulate_games: "Simula xogos!"
|
||||
games_simulated_by: "Xogos simulados por ti:"
|
||||
games_simulated_for: "Xogos simulados para ti:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Xogos simulados"
|
||||
games_played: "Partidas xogadas"
|
||||
ratio: "Ratio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
fight: "Pelexa!"
|
||||
watch_victory: "Ver a túa vitoria"
|
||||
defeat_the: "Gaña a"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "O torneo remata"
|
||||
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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
accepted: "התקבל"
|
||||
rejected: "נדחה"
|
||||
withdrawn: "האוייב נסוג"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "מוסר"
|
||||
submitted: "נמסר"
|
||||
commit_msg: "שלח הודעה"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
|
||||
play_level:
|
||||
done: "סיים"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "בית" # Not used any more, will be removed soon.
|
||||
level: "שלב" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
simulate_games: "הדמה משחקים"
|
||||
games_simulated_by: "משחקים שהדמית:"
|
||||
games_simulated_for: "משחקים שהודמו בשבילך:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "משחקים שהודמו"
|
||||
games_played: "מס' משחקים ששיחקת"
|
||||
ratio: "יחס"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
fight: "הלחם!"
|
||||
watch_victory: "צפה בניצחון שלך"
|
||||
defeat_the: "הבס את ה"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "תחרות נגמרת בעוד:"
|
||||
tournament_ended: "תחרות נגמרה"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
no_recent_games: "לא שיחקת במשחקים בשבועיים האחרונים."
|
||||
payments: "תשלומים"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "קניות"
|
||||
# sale: "Sale"
|
||||
subscription: "מנויים"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "मानक हिन्दी", englishDe
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
accepted: "Elfogadva"
|
||||
rejected: "Elutasítva"
|
||||
withdrawn: "Visszavon"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Beküldő"
|
||||
submitted: "Beküldött"
|
||||
commit_msg: "Üzenet feladása"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
|
||||
play_level:
|
||||
done: "Kész"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Kezdőlap" # Not used any more, will be removed soon.
|
||||
level: "Pálya" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Előzetes tapasztalat nem szükséges!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "magyar", englishDescription: "Hungarian", t
|
|||
fight: "Harc!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "A torna vége"
|
||||
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."
|
||||
payments: "Befizetések"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Vásárolt"
|
||||
# sale: "Sale"
|
||||
subscription: "Előfizetés"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
accepted: "Accettate"
|
||||
rejected: "Rifiutate"
|
||||
withdrawn: "Ritirate"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Autore"
|
||||
submitted: "Data creazione"
|
||||
commit_msg: "Messaggio di commit"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
|
||||
play_level:
|
||||
done: "Fatto"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Pagina iniziale" # Not used any more, will be removed soon.
|
||||
level: "Livello" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
simulate_games: "Simula partite!"
|
||||
games_simulated_by: "Partite simulate da te:"
|
||||
games_simulated_for: "Partite simulate per te:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Partite simulate"
|
||||
games_played: "Partite giocate"
|
||||
ratio: "Rapporto"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
fight: "Combatti!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", ha cominciato"
|
||||
tournament_ends: "Torneo conclude"
|
||||
tournament_ended: "Torneo concluso"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
no_recent_games: "Nessuna partita nelle ultime due settimane."
|
||||
payments: "Pagamenti"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Acquistato"
|
||||
# sale: "Sale"
|
||||
subscription: "Abbonamento"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
accepted: "容認された"
|
||||
rejected: "拒否された"
|
||||
withdrawn: "取り下げられました"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "提出者"
|
||||
submitted: "提出されました"
|
||||
commit_msg: "コミットメッセージ"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
|
||||
play_level:
|
||||
done: "完了"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "ホーム" # Not used any more, will be removed soon.
|
||||
level: "ゲームレベル" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "スキップ"
|
||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
tip_free_your_mind: "全ての雑念を捨てろ、恐怖、疑いも不信も 心を解き放つんだ - モーフィアス"
|
||||
tip_strong_opponents: "どんな強者にも弱点というものはあるんだ… - うちは イタチ"
|
||||
tip_paper_and_pen: "コーディングを始める前に, 必ず紙とペンを用意して計画を立てましょう。"
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "インベントリー"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
comparison_blurb: "CodeCombatへ課金してスキルを磨きましょう!"
|
||||
feature1: "110以上の基本レベルが4つの世界に" # {change}
|
||||
feature2: "10人のパワフルな <strong>ニューヒーロー</strong> とユニークなスキル!" # {change}
|
||||
feature3: "70以上のボーナスレベル"
|
||||
feature3: "70以上のボーナスレベル" # {change}
|
||||
feature4: "<strong>3500のジェム</strong>が毎月ボーナス!"
|
||||
feature5: "ビデオチュートリアル"
|
||||
feature6: "プレミアムメールサポート"
|
||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
intro_1: "CodeCombat はプログラミングを教えるオンラインゲームです。生徒は本物のプログラム言語を書きます。"
|
||||
intro_2: "プログラミングの経験は必要ありません!"
|
||||
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."
|
||||
free_1: "CodeCombat は基本的に無料です!110以上のレベルが無料です。" # {change}
|
||||
free_2: "月々の課金をするとビデオのチュートリアルにアクセスでき、また追加のレベルが楽しめます。"
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
ratio: "比率 "
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
accepted: "적용됨"
|
||||
rejected: "거부됨"
|
||||
withdrawn: "취소됨"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "제출자"
|
||||
submitted: "제출됨"
|
||||
commit_msg: "커밋 메세지"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
|
||||
play_level:
|
||||
done: "완료"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "홈" # Not used any more, will be removed soon.
|
||||
level: "레벨" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
simulate_games: "시뮬레이션 실행!"
|
||||
games_simulated_by: "내가 시뮬레이션한 게임 수:"
|
||||
games_simulated_for: "다른 사람에 의해 시뮬레이션된 게임 수:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "시뮬레이션 실행된 게임"
|
||||
games_played: "플레이한 게임"
|
||||
ratio: "비율"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
fight: "전투 시작!"
|
||||
watch_victory: "당신의 승리를 확인하세요"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "lietuvių kalba", englishDescription: "Lith
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
accepted: "Прифатено"
|
||||
rejected: "Одбиено"
|
||||
withdrawn: "Повлечено"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Подносител"
|
||||
submitted: "Поднесено"
|
||||
commit_msg: "Порака за поднесокот"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Готово"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Дома" # Not used any more, will be removed soon.
|
||||
level: "Ниво" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "Прескокни"
|
||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
tip_free_your_mind: "Мораш да го оставиш сето тоа, Нео. Стравот, сомнежот, и невербата. Ослободи го твојот ум. - Morpheus"
|
||||
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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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:
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
commit_msg: "Mesej Commit"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "မြန်မာစကား", englishDes
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
accepted: "Akseptert"
|
||||
rejected: "Avvist"
|
||||
withdrawn: "Trukket tilbake"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Innsender"
|
||||
submitted: "Levert"
|
||||
commit_msg: "Commit-melding"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
|
||||
play_level:
|
||||
done: "Ferdig"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Hjem" # Not used any more, will be removed soon.
|
||||
level: "Brett" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
simulate_games: "Simuler Spill!"
|
||||
games_simulated_by: "Spill simulert av deg:"
|
||||
games_simulated_for: "Spill simulert for deg:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Spill simulert"
|
||||
games_played: "Spill spilt"
|
||||
ratio: "Forhold"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
fight: "Slåss!"
|
||||
watch_victory: "Se seieren"
|
||||
defeat_the: "Overvinn"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
tournament_ends: "Turneringen slutter"
|
||||
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."
|
||||
payments: "Betalinger"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Kjøpt"
|
||||
# sale: "Sale"
|
||||
subscription: "Abonnement"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
accepted: "Geaccepteerd"
|
||||
rejected: "Geweigerd"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Klaar"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
simulate_games: "Simuleer spellen!"
|
||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Spellen gesimuleerd"
|
||||
games_played: "Spellen gespeeld"
|
||||
ratio: "Verhouding"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
accepted: "Geaccepteerd"
|
||||
rejected: "Afgewezen"
|
||||
withdrawn: "Teruggetrokken"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Toevoeger"
|
||||
submitted: "Toegevoegd"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
|
||||
play_level:
|
||||
done: "Klaar"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Inventaris"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
||||
feature1: "meer dan 110+ basislevels over 4 werelden"
|
||||
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!"
|
||||
feature5: "Video cursussen"
|
||||
# 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_2: "Geen ervaring nodig!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
see_the: "Bekijk de"
|
||||
more_info: "voor meer informatie."
|
||||
choose_course: "Kies je cursus:"
|
||||
enter_code: "voer een ontgrendelcode in"
|
||||
enter_code: "voer een ontgrendelcode in" # {change}
|
||||
enter_code1: "Voer ontgrendelcode in"
|
||||
enroll: "Inschrijven"
|
||||
pick_from_classes: "Kies uit je hidige klas"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
simulate_games: "Simuleer spellen!"
|
||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Spellen gesimuleerd"
|
||||
games_played: "Spellen gespeeld"
|
||||
ratio: "Verhouding"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
fight: "Aanvallen!"
|
||||
watch_victory: "Aanschouw je overwinning!"
|
||||
defeat_the: "Versla de"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", begonnen"
|
||||
tournament_ends: "Toernooi eindigt"
|
||||
tournament_ended: "Toernooi geeindigd"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
no_recent_games: "De afgelopen 2 weken geen spellen gespeeld."
|
||||
payments: "Betalingen"
|
||||
prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Gekocht"
|
||||
sale: "Verkoop"
|
||||
subscription: "abonnement"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
accepted: "Przyjęto"
|
||||
rejected: "Odrzucono"
|
||||
withdrawn: "Wycofano"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Przesyłający"
|
||||
submitted: "Przesłano"
|
||||
commit_msg: "Wiadomość do commitu"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
|
||||
play_level:
|
||||
done: "Zrobione"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Strona główna" # Not used any more, will be removed soon.
|
||||
level: "Poziom" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Ekwipunek"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
comparison_blurb: "Popraw swoje umiejętności z subskrypcją CodeCombat!"
|
||||
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}
|
||||
feature3: "Ponad 70 bonusowych poziomów"
|
||||
feature3: "Ponad 70 bonusowych poziomów" # {change}
|
||||
feature4: "Dodatkowe <strong>3500 klejnotów</strong> co miesiąc!"
|
||||
feature5: "Poradniki wideo"
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
simulate_games: "Symuluj gry!"
|
||||
games_simulated_by: "Gry symulowane przez Ciebie:"
|
||||
games_simulated_for: "Gry symulowane dla Ciebie:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Gier zasymulowanych"
|
||||
games_played: "Gier rozegranych"
|
||||
ratio: "Proporcje"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
fight: "Walcz!"
|
||||
watch_victory: "Obejrzyj swoje zwycięstwo"
|
||||
defeat_the: "Pokonaj"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", rozpoczęto"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
payments: "Płatności"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Zakupiono"
|
||||
# sale: "Sale"
|
||||
subscription: "Subskrypcje"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
accepted: "Aceito"
|
||||
rejected: "Rejeitado"
|
||||
withdrawn: "Retirado"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Enviar"
|
||||
submitted: "Enviado"
|
||||
commit_msg: "Mensagem de Submissão"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Pronto"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Início" # Not used any more, will be removed soon.
|
||||
level: "Fase" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Não é necessário ter experiência!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
simulate_games: "Simular Partidas!"
|
||||
games_simulated_by: "Partidas simuladas por você:"
|
||||
games_simulated_for: "Partidas simuladas para você:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Partidas simuladas"
|
||||
games_played: "Partidas jogadas"
|
||||
ratio: "Taxa"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
fight: "Lutem!"
|
||||
watch_victory: "Assista sua vitória"
|
||||
defeat_the: "Derrote"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", iniciado"
|
||||
tournament_ends: "Fim do torneio"
|
||||
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."
|
||||
payments: "Pagamentos"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Comprado"
|
||||
sale: "Vender"
|
||||
subscription: "Assinatura"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
accepted: "Aceites"
|
||||
rejected: "Rejeitadas"
|
||||
withdrawn: "Canceladas"
|
||||
accept: "Aceitar"
|
||||
reject: "Rejeitar"
|
||||
withdraw: "Cancelar"
|
||||
submitter: "Submissor"
|
||||
submitted: "Submeteu"
|
||||
commit_msg: "Mensagem da Submissão"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
|
||||
play_level:
|
||||
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.
|
||||
level: "Nível" # Like "Level: Dungeons of Kithgard"
|
||||
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_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_solve_then_write: "Primeiro, resolve o problema. Depois, escreve o código. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Não é necessário ter experiência!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,11 +918,11 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
see_the: "Vê a"
|
||||
more_info: "para mais informações."
|
||||
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"
|
||||
enroll: "Inscrever"
|
||||
pick_from_classes: "Escolhe uma das tuas turmas atuais"
|
||||
enter: "Introduzir"
|
||||
enter: "Entrar"
|
||||
or: "Ou"
|
||||
topics: "Tópicos"
|
||||
hours_content: "Horas de conteúdo:"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
simulate_games: "Simular Jogos!"
|
||||
games_simulated_by: "Jogos simulados por ti:"
|
||||
games_simulated_for: "Jogos simulados para ti:"
|
||||
games_in_queue: "Jogos na fila de espera atualmente:"
|
||||
games_simulated: "Jogos simulados"
|
||||
games_played: "Jogos jogados"
|
||||
ratio: "Rácio"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
fight: "Lutar!"
|
||||
watch_victory: "Vê a tua vitória"
|
||||
defeat_the: "Derrota o"
|
||||
watch_battle: "Ver a batalha"
|
||||
tournament_started: ", começou"
|
||||
tournament_ends: "O Torneio acaba"
|
||||
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."
|
||||
payments: "Pagamentos"
|
||||
prepaid: "Pré-pago"
|
||||
prepaid_codes: "Códigos Pré-pagos"
|
||||
purchased: "Adquirido"
|
||||
sale: "Promoção"
|
||||
subscription: "Subscrição"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
accepted: "Acceptat"
|
||||
rejected: "Respins"
|
||||
withdrawn: "Retrage"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Expeditor"
|
||||
submitted: "Expediat"
|
||||
commit_msg: "Înregistrează Mesajul"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
|
||||
play_level:
|
||||
done: "Gata"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Acasă" # Not used any more, will be removed soon.
|
||||
level: "Nivel" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Nu este nevoie de experiența în domeniu!"
|
||||
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."
|
||||
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ă."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
simulate_games: "Simulează Jocuri!"
|
||||
games_simulated_by: "Jocuri simulate de tine:"
|
||||
games_simulated_for: "Jocuri simulate pentru tine:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Jocuri simulate"
|
||||
games_played: "Jocuri jucate"
|
||||
ratio: "Rație"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
fight: "Luptă!"
|
||||
watch_victory: "Vizualizează victoria"
|
||||
defeat_the: "Învinge"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", a început"
|
||||
tournament_ends: "Turneul se termină"
|
||||
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."
|
||||
payments: "Plăți"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Cumpărate"
|
||||
# sale: "Sale"
|
||||
subscription: "Abonament"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
accepted: "Принято"
|
||||
rejected: "Отклонено"
|
||||
withdrawn: "Отозвано"
|
||||
accept: "Принять"
|
||||
reject: "Отклонить"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Податель"
|
||||
submitted: "Представлено"
|
||||
commit_msg: "Сопроводительное сообщение"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
|
||||
play_level:
|
||||
done: "Готово"
|
||||
next_game: "Следующая игра"
|
||||
show_menu: "Показать меню игры"
|
||||
home: "На главную" # Not used any more, will be removed soon.
|
||||
level: "Уровень" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "Пропустить"
|
||||
|
@ -254,8 +259,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
victory_new_item: "Новый предмет"
|
||||
victory_viking_code_school: "Ого, это было тяжелый уровень! Если вы еще не разработчик программ, вам стоит им стать. Вы только что ускорири принятие в Школу Викингов, где вы сможете поднять свои навыки на новый уровень и стать профессиональным веб-разработчиком за 14 недель."
|
||||
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_cta: "Meet your mentor – learn about Bloc"
|
||||
victory_bloc: "Отличная работа! Ваши навыки улучшаются! Если вы размышляете, как стать разработчиком программного обеспечения, это может быть ваш счастливый день. Bloc представляет собой онлайн учебный лагерь,который дает вам опытного наставника, который поможет Вам стать профессиональным разработчиком! Победив Mayhem of Munchkins, вы имеете право на $ 500 уменьшение цены с кодом: CCRULES"
|
||||
victory_bloc_cta: "Встретьте своего наставника - узнайте больше про Bloc"
|
||||
guide_title: "Руководство"
|
||||
tome_minion_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_free_your_mind: "Отвлекись от всего, Нео. Страх, неверие, сомнения отбрось — очисти свой разум. - Morpheus"
|
||||
tip_strong_opponents: "Даже сильнейший противник имеет слабость. - Itachi Uchiha"
|
||||
tip_paper_and_pen: "Прежде чем приступить к решению, попробуй решить задачу с помощью бумаги и ручки."
|
||||
tip_paper_and_pen: "Прежде чем начать программировать, вы всегда можете попробовать с листом бумаги и ручкой."
|
||||
solve_then_write: "Сначала найдите решение, а потом пишите код. - Джон Джонсон"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Инвентарь"
|
||||
|
@ -407,7 +413,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
feature7: "Частные <strong>Кланы</strong>"
|
||||
free: "Бесплатно"
|
||||
month: "месяц"
|
||||
must_be_logged: "Вы должны быть залогинены. Вы можете создать аккаунт или зайти в созданный с помощью меню выше."
|
||||
must_be_logged: "Вы должны быть залогинены. Вы можете создать аккаунт или зайти в уже существующий с помощью меню выше."
|
||||
subscribe_title: "Подпишись"
|
||||
unsubscribe: "Отписаться"
|
||||
confirm_unsubscribe: "Подтвердить отмену подписки"
|
||||
|
@ -513,8 +519,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
attack_2: "от указанного"
|
||||
attack_3: "урона оружия."
|
||||
health_1: "Получает"
|
||||
health_2: "от указанного"
|
||||
health_3: "здоровья."
|
||||
health_2: "от указанной"
|
||||
health_3: "прочности брони."
|
||||
speed_1: "Передвигается со скоростью"
|
||||
speed_2: "метров в секунду."
|
||||
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_blurb: "На взлет"
|
||||
retrostyle_title: "Иллюстрирование"
|
||||
retrostyle_blurb: "RetroStyle Games"
|
||||
retrostyle_blurb: "Игры в стиле ретро"
|
||||
|
||||
teachers:
|
||||
title: "CodeCombat: Информация для учителей"
|
||||
intro_1: "CodeCombat - это онлайн игра, которая обучает программированию. Ученики пишут код на реальных языках программирования."
|
||||
intro_2: "Опыт не обязателен!"
|
||||
free_title: "Сколько это стоит?"
|
||||
cost_china: "Первые 5 уровней CodeCombat бесплатны в Китае. При оплате $9.99 в месяц вы получите доступ к последующим более чем 140 уровням на наших эксклюзивных серверах в Китае." # 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 бесплатный в течение первых пяти уровней, после чего он стоит $ 9,99 USD в месяц за доступ к другим нашим 190+ уровням на наших эксклюзивных серверах."
|
||||
free_1: "В наличии более 80 БЕСПЛАТНЫХ уровней, которые покрывают каждый концепт." # {change}
|
||||
free_2: "Месячная подписка предоставляет доступ к видео-урокам и дополнительным уровням."
|
||||
teacher_subs_title: "Учителя получают бесплатные подписки!"
|
||||
|
@ -621,8 +626,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
monitor_progress_title: "Как мне следить за прогрессом студентов?"
|
||||
monitor_progress_1: "Прогресс студентов может быть отследить, создав"
|
||||
monitor_progress_2: "для вашего класса."
|
||||
monitor_progress_3: "Чтобы добавить студентов, отправьте им ссылку-пришлашение в ваш Клан, которую можно найти на странице"
|
||||
monitor_progress_4: "."
|
||||
monitor_progress_3: "Чтобы добавить студентов, отправьте им ссылку-пришлашение в ваш Клан, которую можно найти на"
|
||||
monitor_progress_4: "странице."
|
||||
monitor_progress_5: "После того, как они присоединятся, вы увидите сводку по прогрессам студентов на странице вашего Клана."
|
||||
private_clans_1: "Частные Кланы обеспечивают повышенную конфиденциальность и детальную информацию по прогрессу каждого студента."
|
||||
private_clans_2: "Чтобы создать частный Клан, отметьте флажок 'Сделать клан частным', когда будете создавать"
|
||||
|
@ -866,9 +871,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
play_time: "Время в игре:"
|
||||
completed: "Завершено:"
|
||||
invite_students: "Пригласите студентов в класс."
|
||||
# invite_link_header: "Link to join course"
|
||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
||||
# invite_link_p_2: "Or have us email them directly:"
|
||||
invite_link_header: "Ссылка для приглашения в класс"
|
||||
invite_link_p_1: "Дайте эту ссылку студентам, которых вы бы хотели пригласить в класс."
|
||||
invite_link_p_2: "Или мы сами можем написать им письмо на почту:"
|
||||
# capacity_used: "Course slots used:"
|
||||
enter_emails: "Введите email студентов по одному на строке, которых вы хотите пригласить"
|
||||
send_invites: "Отправить приглашения"
|
||||
|
@ -905,16 +910,16 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
teachers_click: "Учителям сюда"
|
||||
students_click: "Студентам сюда"
|
||||
courses_on_coco: "Курсы на CodeCombat"
|
||||
designed_to: "Курсы разработаны чтобы научить основам информатики через игру и веселье. Уровни огранизованы по самым основным ключевым, чтобы все 5 часов курса было интересно заниматься."
|
||||
designed_to: "Курсы разработаны чтобы научить основам информатики через игру и веселье. Уровни огранизованы по основным ключевым концептам, чтобы все 5 часов курса было интересно заниматься."
|
||||
more_in_less: "Изучайте больше за меньшее время"
|
||||
no_experience: "Не требуется опыта программирования"
|
||||
easy_monitor: "Легко отслеживать прогресс студентов"
|
||||
purchase_for_class: "Купите курс для всего вашего класса. Студентов очень легко добавлять!"
|
||||
see_the: "Смотрите"
|
||||
more_info: "для доп. информации."
|
||||
more_info: "для дополнительной информации."
|
||||
choose_course: "Выберите ваш курс:"
|
||||
enter_code: "Введите код"
|
||||
enter_code1: "Введите код"
|
||||
enter_code: "Введите код разблокировки, чтобы присоединиться к существующему классу"
|
||||
enter_code1: "Введите код разблокировки"
|
||||
enroll: "Записаться"
|
||||
pick_from_classes: "Выбрать из вашего класса"
|
||||
enter: "Войти"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
simulate_games: "Симулировать игры!"
|
||||
games_simulated_by: "Игры, симулированные вами:"
|
||||
games_simulated_for: "Игры, симулированные за вас:"
|
||||
games_in_queue: "Игры в очереди в настоящее время:"
|
||||
games_simulated: "Игр симулировано"
|
||||
games_played: "Игр сыграно"
|
||||
ratio: "Соотношение"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
fight: "В бой!"
|
||||
watch_victory: "Наблюдать за победой"
|
||||
defeat_the: "Победить"
|
||||
watch_battle: "Смотреть битву"
|
||||
tournament_started: ", начат"
|
||||
tournament_ends: "Турнир заканчивается"
|
||||
tournament_ended: "Турнир закончился"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
no_recent_games: "Нет сыгранных игр за последние две недели."
|
||||
payments: "Платежи"
|
||||
prepaid: "Предоплата"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Куплено"
|
||||
sale: "Распродажа"
|
||||
subscription: "Подписка"
|
||||
|
@ -1258,7 +1266,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
bad_input: "Неверные входные данные."
|
||||
server_error: "Ошибка сервера."
|
||||
unknown: "Неизвестная ошибка."
|
||||
# error: "ERROR"
|
||||
error: "ОШИБКА"
|
||||
|
||||
resources:
|
||||
sessions: "Сессии"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
accepted: "Prijaté"
|
||||
rejected: "Zamietnuté"
|
||||
withdrawn: "Uzatvorené"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Odosielateľ"
|
||||
submitted: "Odoslané"
|
||||
commit_msg: "Popis ukladania"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
|
||||
play_level:
|
||||
done: "Hotovo"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Domov" # Not used any more, will be removed soon.
|
||||
level: "Úroveň" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Nie sú nutné žiadne predchádzajúce skúsenosti !"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
simulate_games: "Simuluj hry !"
|
||||
games_simulated_by: "Tebou simulované hry:"
|
||||
games_simulated_for: "Pre teba simulované hry:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Simulované hry"
|
||||
games_played: "Odohrané hry"
|
||||
ratio: "Pomer"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
fight: "Bojuj !"
|
||||
watch_victory: "Pozri si svoju výhru"
|
||||
defeat_the: "Poraz"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ", spustený"
|
||||
tournament_ends: "Turnaj končí"
|
||||
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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "slovenščina", englishDescription: "Sloven
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
|
||||
play_level:
|
||||
done: "Урађено"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Почетна" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Serbian
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
commit_msg: "Förbindelsemeddelande"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
|
||||
play_level:
|
||||
done: "Klar"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Hem" # Not used any more, will be removed soon.
|
||||
level: "Nivå" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "Ingen erfarenhet krävs!"
|
||||
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."
|
||||
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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
simulate_games: "Simulera matcher!"
|
||||
games_simulated_by: "Spel simulerade av dig:"
|
||||
games_simulated_for: "Spel simulerade åt dig:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Simulerade spel"
|
||||
games_played: "Spelade spel"
|
||||
ratio: "Förhållande"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
payments: "Betalningar"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
subscription: "Prenumeration"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
|
||||
play_level:
|
||||
done: "เสร็จสิ้น"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "หน้าแรก" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
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_strong_opponents: "ศัตรูที่แข็งแกร่งที่สุด ก็ยังมีจุดอ่อน - อุจิวะ อิทาจิ"
|
||||
# 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:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Thai", tra
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
accepted: "Kabul Edildi"
|
||||
rejected: "Reddedildi"
|
||||
withdrawn: "İptal Edildi"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Gönderen"
|
||||
submitted: "Gönderilme"
|
||||
commit_msg: "Gönderme İletisi"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
|
||||
play_level:
|
||||
done: "Bitti"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "Anasayfa" # Not used any more, will be removed soon.
|
||||
level: "Bölüm" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# 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!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "Simüle edilen oyunlar"
|
||||
games_played: "Oynanan oyunlar"
|
||||
ratio: "Oran"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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ı."
|
||||
payments: "Ödemeler"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Ödendi"
|
||||
sale: "İndirim"
|
||||
subscription: "Üyelik"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
accepted: "Прийнято"
|
||||
rejected: "Відхилено"
|
||||
withdrawn: "Відкликано"
|
||||
accept: "Прийняти"
|
||||
reject: "Відхилити"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Відправник"
|
||||
submitted: "Відправлено"
|
||||
commit_msg: "Доручити повідомлення"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
|
||||
play_level:
|
||||
done: "Готово"
|
||||
next_game: "Наступна гра"
|
||||
show_menu: "Показати меню гри"
|
||||
home: "На головну" # Not used any more, will be removed soon.
|
||||
level: "Рівень" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "Пропустити"
|
||||
|
@ -254,8 +259,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
victory_new_item: "Новий предмет"
|
||||
victory_viking_code_school: "Оце так! Це був важкий рівень, але Ви справились! Якщо Ви ще не розробник програмного забезпечення, Вам слід вже бути. Ви щойно пройшли швидку процедуру прийняття у Viking Code School, де Ви матимете змогу удосконалити Ваші навички до наступного рівня та стати професійним веб-розробником за 14 тижнів."
|
||||
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_cta: "Meet your mentor – learn about Bloc"
|
||||
victory_bloc: "Відмінна робота! Ваші навички покращуються! Якщо ви роздумуєте, як стати розробником програмного забезпечення, це може бути ваш щасливий день. Bloc являє собою онлайн навчальний табір, який дає вам досвідченого наставника, який допоможе Вам стати професійним розробником! Перемігши Mayhem of Munchkins, ви маєте право на $ 500 зменшення ціни з кодом: CCRULES"
|
||||
victory_bloc_cta: "Зустріньте свого наставника - дізнайтеся більше про Bloc"
|
||||
guide_title: "Посібник"
|
||||
tome_minion_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_strong_opponents: "Навіть наймогутніший суперник має свою слабкість. - Ітачі Учіха"
|
||||
tip_paper_and_pen: "Перш ніж почати програмувати, ви завжди можете спробувати з аркушем паперу і ручкою."
|
||||
solve_then_write: "Спочатку знайдіть рішення, а потім пишіть код. - Джон Джонсон"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Інвентар"
|
||||
|
@ -407,7 +413,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
feature7: "Приватні <strong>клани</strong>"
|
||||
free: "Безкоштовно"
|
||||
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: "Взяти абонемент"
|
||||
unsubscribe: "Скасувати абонемент"
|
||||
confirm_unsubscribe: "Підтвердити відміну підписки"
|
||||
|
@ -509,12 +515,12 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
blocks: "Блокує" # As in "this shield blocks this much damage"
|
||||
backstab: "Зі спини" # As in "this dagger does this much backstab damage"
|
||||
skills: "Вміння"
|
||||
# attack_1: "Deals"
|
||||
# attack_2: "of listed"
|
||||
# attack_3: "weapon damage."
|
||||
# health_1: "Gains"
|
||||
# health_2: "of listed"
|
||||
# health_3: "armor health."
|
||||
attack_1: "Завдає"
|
||||
attack_2: "від вказаного"
|
||||
attack_3: "урону зброї."
|
||||
health_1: "Отримує"
|
||||
health_2: "від вказаного"
|
||||
health_3: "міцності броні."
|
||||
speed_1: "Рухається "
|
||||
speed_2: " метрів на секунду."
|
||||
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:
|
||||
writable: "записний" # Hover over "attack" in Your Skills while playing a level to see most of this
|
||||
read_only: "тільки читання"
|
||||
# action: "Action"
|
||||
# spell: "Spell"
|
||||
action: "Дія"
|
||||
spell: "Закляття"
|
||||
action_name: "назва"
|
||||
action_cooldown: "Триває"
|
||||
action_specific_cooldown: "Замороження"
|
||||
|
@ -590,9 +596,9 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
cat_title: "Головний ремісник"
|
||||
cat_blurb: "Маг повітря"
|
||||
josh_title: "Дизайнер гри"
|
||||
# josh_blurb: "Floor Is Lava"
|
||||
josh_blurb: "Підлога - це лава"
|
||||
jose_title: "Музика"
|
||||
# jose_blurb: "Taking Off"
|
||||
jose_blurb: "Hа зліт"
|
||||
retrostyle_title: "Ілюстрація"
|
||||
retrostyle_blurb: "Ігри в стилі ретро"
|
||||
|
||||
|
@ -601,12 +607,11 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
intro_1: "CodeCombat - це онлайн гра, що вчить програмуванню. Студенти пишуть код на реальних мовах програмування."
|
||||
intro_2: "Досвід не потрібен!"
|
||||
free_title: "Скільки це коштує?"
|
||||
cost_china: "CodeCombat в Китаї безкоштовний протягом перших п'яти рівнів, після чого він коштує $ 9,99 USD в місяць за доступ до інших наших 180+ рівнів на наших ексклюзивних серверів в Китаї." # 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 безкоштовний протягом перших п'яти рівнів, після чого він коштує $ 9,99 USD в місяць за доступ до інших наших 190+ рівням на наших ексклюзивних серверах."
|
||||
free_1: "Є 110+ БЕЗКОШТОВНИХ рівнів, які охоплюють всі поняття."
|
||||
free_2: "Місячна підписка надає доступ до відео-уроків і додаткових рівнів практики."
|
||||
teacher_subs_title: "Вчителі отримують безкоштовні підписки!"
|
||||
# teacher_subs_0: "We offer free subscriptions to teachers for evaluation purposes."
|
||||
teacher_subs_0: "Ми пропонуємо безкоштовну передплату для тестування студентів."
|
||||
teacher_subs_1: "Будь ласка, заповніть "
|
||||
teacher_subs_2: "Анкету Вчителя"
|
||||
teacher_subs_3: "щоб налаштувати підписку."
|
||||
|
@ -618,22 +623,22 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
sub_includes_5: "10 нових героїв з унікальними навичками для оволодіння"
|
||||
sub_includes_6: "3500 бонусних дорогоцінних каменів кожен місяць"
|
||||
sub_includes_7: "Приватні Клани"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
monitor_progress_title: "Як мені стежити за прогресом студентів?"
|
||||
monitor_progress_1: "Прогрес студентів може бути відстежити, створивши"
|
||||
monitor_progress_2: "для вашого класу."
|
||||
monitor_progress_3: "Щоб додати студентів, надішліть їм посилання-запрошення в ваш Клан, яке можна знайти на"
|
||||
monitor_progress_4: "сторінці."
|
||||
monitor_progress_5: "Після того, як вони приєднаються, ви побачите зведення по прогрес студентів на сторінці вашого Клану."
|
||||
private_clans_1: "Приватні Клани забезпечують підвищену конфіденційність і детальну інформацію про прогрес кожного студента."
|
||||
private_clans_2: "Щоб створити приватний Клан, відзначте прапорець 'Зробити клан приватним', коли будете створювати"
|
||||
private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
who_for_title: "Для кого призначений CodeCombat?"
|
||||
who_for_1: "Ми рекомендуємо CodeCombat для учнів старше 9 років. Hіякий досвід програмування не потрібно."
|
||||
who_for_2: "Ми розробили CodeCombat так, щоб він підходив і хлопчикам і дівчаткам."
|
||||
material_title: "Як багато тут матеріалу?"
|
||||
material_premium_server: "Близько 50 годин ігрового процесу, розподіленого більш ніж на 190 рівнів для передплатників."
|
||||
material_1: "Приблизно 25 годин безкоштовного контенту і додаткові 15 годин контенту для передплатників."
|
||||
concepts_title: "Про які концепти ми розповідаємо?"
|
||||
how_much_title: "Скільки коштує місячна передплата?"
|
||||
how_much_1: ""
|
||||
how_much_2: "Місячна передплата"
|
||||
|
@ -663,8 +668,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
contact_1: "Будь ласка, зв'яжіться з"
|
||||
contact_2: ", якщо у вас залишилися питання."
|
||||
description_1: "Ми пропонуємо безкоштовні підписки вчителям в цілях ознайомлення. Ви можете знайти більше інформації на нашій сторінці"
|
||||
# description_2: "teachers"
|
||||
# description_3: "page."
|
||||
description_2: "вчителів"
|
||||
description_3: "."
|
||||
description_4: "Будь ласка, заповніть цю маленьку анкету і ми надішлемо вам інструкції з установки на email."
|
||||
email: "Email-адреса"
|
||||
school: "Найменування школи"
|
||||
|
@ -712,7 +717,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
me_tab: "Я"
|
||||
picture_tab: "Аватар"
|
||||
delete_account_tab: "Вилучити свій акаунт"
|
||||
wrong_email: "Неправильний email"
|
||||
wrong_email: "Невірний email"
|
||||
wrong_password: "Невірний пароль"
|
||||
upload_picture: "Відвантажити зображення"
|
||||
delete_this_account: "Вилучити цей акаунт назовсім"
|
||||
|
@ -723,7 +728,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
new_password: "Новий пароль"
|
||||
new_password_verify: "Підтвердження паролю"
|
||||
type_in_email: "Введіть свій email, щоб підтвердити вилучення" # {change}
|
||||
type_in_password: "Також введіть ваш пароль."
|
||||
type_in_password: "Так само введіть ваш пароль."
|
||||
email_subscriptions: "Email-підписки"
|
||||
email_subscriptions_none: "Жодних підписок."
|
||||
email_announcements: "Оголошення"
|
||||
|
@ -835,93 +840,93 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
last_played: "Остання гра"
|
||||
leagues_explanation: "Грайте в лізі проти інших членів клану на мультіплєєрній арені."
|
||||
|
||||
# courses:
|
||||
# course: "Course"
|
||||
# courses: "courses"
|
||||
# not_enrolled: "You are not enrolled in this course."
|
||||
# visit_pref: "Please visit the"
|
||||
# visit_suf: "page to enroll."
|
||||
# select_class: "Select one of your classes"
|
||||
# unnamed: "*unnamed*"
|
||||
# select: "Select"
|
||||
# unnamed_class: "Unnamed Class"
|
||||
# edit_settings: "edit class settings"
|
||||
# edit_settings1: "Edit Class Settings"
|
||||
# progress: "Class Progress"
|
||||
# add_students: "Add Students"
|
||||
# stats: "Statistics"
|
||||
# total_students: "Total students:"
|
||||
# average_time: "Average level play time:"
|
||||
# total_time: "Total play time:"
|
||||
# average_levels: "Average levels completed:"
|
||||
# total_levels: "Total levels completed:"
|
||||
# furthest_level: "Furthest level completed:"
|
||||
# concepts_covered: "Concepts Covered"
|
||||
# students: "Students"
|
||||
# students1: "students"
|
||||
# expand_details: "Expand details"
|
||||
# concepts: "Concepts"
|
||||
# levels: "levels"
|
||||
# played: "Played"
|
||||
# play_time: "Play time:"
|
||||
# completed: "Completed:"
|
||||
# invite_students: "Invite students to join this class."
|
||||
# invite_link_header: "Link to join course"
|
||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
||||
# invite_link_p_2: "Or have us email them directly:"
|
||||
courses:
|
||||
course: "Курс"
|
||||
courses: "курси"
|
||||
not_enrolled: "Ви не записані на цей курс."
|
||||
visit_pref: "Будь ласка, зайдіть на"
|
||||
visit_suf: "сторінку для запису."
|
||||
select_class: "Виберіть один з класів"
|
||||
unnamed: "*безіменний*"
|
||||
select: "Виберіть"
|
||||
unnamed_class: "Безіменний клас"
|
||||
edit_settings: "змінити налаштування класу"
|
||||
edit_settings1: "Змінити налаштування класу"
|
||||
progress: "Прогрес класу"
|
||||
add_students: "Додати студентів"
|
||||
stats: "Статистика"
|
||||
total_students: "Всього студентів:"
|
||||
average_time: "Середній час в грі:"
|
||||
total_time: " Всього часу в грі: "
|
||||
average_levels: "Середня кількість завершених рівнів:"
|
||||
total_levels: "Всього рівнів завершено:"
|
||||
furthest_level: "Найбільший завершений рівень:"
|
||||
concepts_covered: "Концептів покрито"
|
||||
students: "Студенти"
|
||||
students1: "студенти"
|
||||
expand_details: "Показати деталі"
|
||||
concepts: "Концепти"
|
||||
levels: "рівні"
|
||||
played: "Зіграно"
|
||||
play_time: "Час у грі:"
|
||||
completed: "Завершено:"
|
||||
invite_students: "Запросіть студентів в клас."
|
||||
invite_link_header: "Посилання для запрошення в клас"
|
||||
invite_link_p_1: "Дайте це посилання студентам, яких ви б хотіли запросити в клас."
|
||||
invite_link_p_2: "Або ми самі можемо написати їм листа на пошту:"
|
||||
# capacity_used: "Course slots used:"
|
||||
# enter_emails: "Enter student emails to invite, one per line"
|
||||
# send_invites: "Send Invites"
|
||||
# title: "Title"
|
||||
# description: "Description"
|
||||
# languages_available: "Select programming languages available to the class:"
|
||||
# all_lang: "All Languages"
|
||||
# show_progress: "Show student progress to everyone in the class"
|
||||
# creating_class: "Creating class..."
|
||||
# purchasing_course: "Purchasing course..."
|
||||
# buy_course: "Buy Course"
|
||||
# buy_course1: "Buy this course"
|
||||
# create_class: "Create Class"
|
||||
# select_all_courses: "Select 'All Courses' for a 50% discount!"
|
||||
# all_courses: "All Courses"
|
||||
# number_students: "Number of students"
|
||||
# enter_number_students: "Enter the number of students you need for this class."
|
||||
# name_class: "Name your class"
|
||||
# displayed_course_page: "This will be displayed on the course page for you and your students. It can be changed later."
|
||||
# buy: "Buy"
|
||||
# purchasing_for: "You are purchasing a license for"
|
||||
# creating_for: "You are creating a class for"
|
||||
# for: "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."
|
||||
# free_trial: "Free trial for teachers!"
|
||||
# get_access: "to get individual access to all courses for evalutaion purposes."
|
||||
# questions: "Questions?"
|
||||
# faq: "Courses FAQ"
|
||||
# question: "Q:" # Like in 'Question'
|
||||
# question1: "What's the difference between these courses and the single player game?"
|
||||
# answer: "A:" # Like in 'Answer'
|
||||
# answer1: "The single player game is designed for individuals, while the courses are designed for classes."
|
||||
# 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."
|
||||
# teachers_click: "Teachers Click Here"
|
||||
# students_click: "Students Click Here"
|
||||
# courses_on_coco: "Courses on 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."
|
||||
# more_in_less: "Learn more in less time"
|
||||
# no_experience: "No coding experience necesssary"
|
||||
# easy_monitor: "Easily monitor student progress"
|
||||
# purchase_for_class: "Purchase a course for your entire class. It's easy to sign up your students!"
|
||||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# choose_course: "Choose Your Course:"
|
||||
# enter_code: "Enter an unlock code"
|
||||
# enter_code1: "Enter unlock code"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
# enter: "Enter"
|
||||
# or: "Or"
|
||||
# topics: "Topics"
|
||||
# hours_content: "Hours of content:"
|
||||
# get_free: "Get FREE course"
|
||||
enter_emails: "Введіть email студентів по одному на рядку, яких ви хочете запросити"
|
||||
send_invites: "Відправити запрошення"
|
||||
title: "Тема"
|
||||
description: "Опис"
|
||||
languages_available: "Виберіть мови програмування, доступні класу:"
|
||||
all_lang: "Всі мови"
|
||||
show_progress: "Показувати прогрес студентів всьому класу"
|
||||
creating_class: "Створення класу ... "
|
||||
purchasing_course: "Покупка курсу ... "
|
||||
buy_course: "Купити курс"
|
||||
buy_course1: "Купити цей курс"
|
||||
create_class: "Створити клас"
|
||||
select_all_courses: "Вибрати 'Всі курси' для 50% знижки!"
|
||||
all_courses: "Всі курси"
|
||||
number_students: "Кількість студентів"
|
||||
enter_number_students: "Введіть кількість студентів, потрібних для вашого класу."
|
||||
name_class: "Назвіть ваш клас"
|
||||
displayed_course_page: "Це буде видно на сторінці курса для вас і ваших студентів. Потім ви зможете це змінити."
|
||||
buy: "Купити"
|
||||
purchasing_for: "Ви купуєте ліцензію для"
|
||||
creating_for: "Ви створюєте клас для"
|
||||
for: "для" # Like in 'for 30 students'
|
||||
receive_code: "Після ви отримаєте код, який потрібно буде відправити вашим студентам, щоб вони могли записатися на курс."
|
||||
free_trial: "Безкоштовний пробний період для вчителів!"
|
||||
get_access: "щоб отримати особистий доступ до всіх курсів."
|
||||
questions: "Питання?"
|
||||
faq: "FAQ по курсам"
|
||||
question: "П:" # Like in 'Question'
|
||||
question1: "Яка відмінність між цими курсами і звичайною одиночною грою?"
|
||||
answer: "В:" # Like in 'Answer'
|
||||
answer1: "Одиночна гра розроблена для одиночного проходження, а курси для класів."
|
||||
answer2: "У одиночній грі є предмети, самоцвіти, вибір героїв, прокачування рівнів і внутрішньо-ігрові покупки. У курсах є управління класом і ухил, щоб студенти зосереджувалися на своєму прогресі."
|
||||
teachers_click: "Вчителям сюди"
|
||||
students_click: "Студентам сюди"
|
||||
courses_on_coco: "Курси на CodeCombat"
|
||||
designed_to: "Курси розроблені щоб навчити основам інформатики через гру і веселощі. Рівні огранізувались по основним ключовим концептам, щоб всі 5 годин курсу було цікаво займатися."
|
||||
more_in_less: "Вивчайте більше за менший час"
|
||||
no_experience: "Досвід програмування не потрібний"
|
||||
easy_monitor: "Легко відслідковувати прогрес студентів"
|
||||
purchase_for_class: "Купіть курс для всього вашого класу. Студентів дуже легко додавати!"
|
||||
see_the: "Дивіться"
|
||||
more_info: "для додаткової інформації."
|
||||
choose_course: "Виберіть ваш курс:"
|
||||
enter_code: "Введіть код розблокування, щоб приєднатися до існуючого класу"
|
||||
enter_code1: "Введіть код розблокування"
|
||||
enroll: "Записатися"
|
||||
pick_from_classes: "Вибрати з вашого класу"
|
||||
enter: "Увійти"
|
||||
or: "Або"
|
||||
topics: "Теми"
|
||||
hours_content: "Багато годин матеріалу:"
|
||||
get_free: "Отримати безкоштовний курс"
|
||||
|
||||
classes:
|
||||
archmage_title: "Архімаг"
|
||||
|
@ -1111,10 +1116,11 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
my_matches: "Мої поєдинки"
|
||||
simulate: "Моделювати"
|
||||
simulation_explanation: "Моделюючи ігри, Ви можете швидше отримати оцінку своєї гри!"
|
||||
# simulation_explanation_leagues: "You will mainly help simulate games for allied players in your clans and courses."
|
||||
simulation_explanation_leagues: "Ви допоможете моделювати ігри для союзних гравців у вашому клані або курсі."
|
||||
simulate_games: "Моделювати ігри!"
|
||||
games_simulated_by: "Ігор модельовано Вами:"
|
||||
games_simulated_for: "Ігор модельовано для Вас:"
|
||||
games_in_queue: "Ігри в черзі в даний час:"
|
||||
games_simulated: "Ігор модельовано"
|
||||
games_played: "Ігор зіграно"
|
||||
ratio: "Співвідношення"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
fight: "У бій!"
|
||||
watch_victory: "Подивитись Вашу перемогу"
|
||||
defeat_the: "Перемогти"
|
||||
watch_battle: "Дивитися Битву"
|
||||
tournament_started: ", розпочинається."
|
||||
tournament_ends: "Турнір завершується"
|
||||
tournament_ended: "Турнір завершено"
|
||||
|
@ -1207,9 +1214,10 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
recently_played: "Нещодавні ігри"
|
||||
no_recent_games: "Упродовж останніх двох тижнів не зіграно жодної гри."
|
||||
payments: "Платежі"
|
||||
# prepaid: "Prepaid"
|
||||
prepaid: "Передплачені"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Придбано"
|
||||
# sale: "Sale"
|
||||
sale: "Розпродаж"
|
||||
subscription: "Підписка"
|
||||
invoices: "Рахунки"
|
||||
service_apple: "Apple"
|
||||
|
@ -1258,7 +1266,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
bad_input: "Помилкове уведення."
|
||||
server_error: "Помилка сервера."
|
||||
unknown: "Невідома помилка."
|
||||
# error: "ERROR"
|
||||
error: "ПОМИЛКА"
|
||||
|
||||
resources:
|
||||
sessions: "Сесії"
|
||||
|
@ -1325,14 +1333,14 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
for_loops: "Цикл For"
|
||||
functions: "Функції"
|
||||
# graphics: "Graphics"
|
||||
# if_statements: "If Statements"
|
||||
# input_handling: "Input Handling"
|
||||
# math_operations: "Math Operations"
|
||||
# object_literals: "Object Literals"
|
||||
# parameters: "Parameters"
|
||||
# strings: "Strings"
|
||||
# variables: "Variables"
|
||||
# vectors: "Vectors"
|
||||
if_statements: "Умовні оператори"
|
||||
input_handling: "Обробка введення"
|
||||
math_operations: "Математичні операції"
|
||||
object_literals: "Літерали об'єктів"
|
||||
parameters: "Параметри"
|
||||
strings: "Рядки"
|
||||
variables: "Змінні"
|
||||
vectors: "Вектори"
|
||||
while_loops: "Цикли"
|
||||
recursion: "Рекурсія"
|
||||
|
||||
|
@ -1560,19 +1568,19 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
filter_experience_recent_grad: "Випускник"
|
||||
filter_experience_student: "Студент коледжу"
|
||||
filter_results: "результати"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# 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."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# 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."
|
||||
# pass_screen: "They will pass your technical 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."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is 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."
|
||||
# cost: "How much do we charge?"
|
||||
# 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."
|
||||
start_hiring: "Почати найм."
|
||||
reasons: "Три причини, чому ви повинні шукати працівників через нас:"
|
||||
everyone_looking: "Всі тут шукають їх наступну можливість."
|
||||
everyone_looking_blurb: "Забудьте про 20% рейтинг відгуків через LinkedIn InMail. Кожен в нашому списку хоче знайти своє наступне місце роботи і відповість на ваше запрошення на інтерв'ю."
|
||||
weeding: "Розслабтеся; ми відібрали їх для вас."
|
||||
weeding_blurb: "Кожен гравець у списку був переглянутий на предмет технічних здібностей. Ми так само ведемо телефонні переговори за обраними кандидатам і робимо позначки в їх профілях, щоб заощадити ваш час."
|
||||
pass_screen: "Вони пройдуть ваш технічний відбір."
|
||||
pass_screen_blurb: "Перегляньте код кожного кандидата перед прийняттям рішення. Один роботодавець зауважив, що кількість наших розробників, що пройшли їх технічний відбір, в 5 разів перевищувало число набраних через Hacker News."
|
||||
make_hiring_easier: "Зробіть наймання співробітників простіше, будь ласка."
|
||||
what: "Що таке CodeCombat?"
|
||||
what_blurb: "CodeCombat - це багатокористувальницька браузерна гра про програмування. Гравці пишуть код, щоб контролювати свої війська у битвах проти інших розробників. Наші гравці мають досвід у всіх основних технічних областях."
|
||||
cost: "Як багато ми просимо натомість?"
|
||||
cost_blurb: "Ми просимо 15% оплати за перший рік роботи і пропонуємо 100% гарантію повернення грошей на протязі 90 днів. Ми не стягуємо плати за кандидатів, які вже були активно проінтерв'ювали у вашій компанії."
|
||||
candidate_name: "Ім'я"
|
||||
candidate_location: "Розташування"
|
||||
candidate_looking_for: "Шукає"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Urdu",
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# no_recent_games: "No games played during the past two weeks."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
accepted: "Đã được chấp nhận"
|
||||
rejected: "Không được chấp nhận"
|
||||
withdrawn: "Thu Hồi"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "Người gửi"
|
||||
submitted: "Đã gửi"
|
||||
commit_msg: "Tin nhắn sự thay đổi"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
|
||||
play_level:
|
||||
done: "Hoàn thành"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Bàn" # Like "Level: Dungeons of Kithgard"
|
||||
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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# 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!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
ratio: "Tỷ lệ"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
accepted: "已接受"
|
||||
rejected: "未接受"
|
||||
withdrawn: "撤回"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "提交者"
|
||||
submitted: "已提交"
|
||||
commit_msg: "提交信息"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
|
||||
play_level:
|
||||
done: "完成"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "主页" # Not used any more, will be removed soon.
|
||||
level: "关卡" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "跳过"
|
||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
tip_free_your_mind: "丢掉一切私心杂念,丢掉害怕、疑问和拒信,解放您的思想。 - Morpheus《黑客帝国》"
|
||||
tip_strong_opponents: "即使是最强大的对手也是有弱点的。- 宇智波鼬《火影忍者》"
|
||||
tip_paper_and_pen: "在您开始编码之前,您可以随时用一张纸和一支笔作计划。"
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "道具箱"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
comparison_blurb: "亲,订阅CodeCombat,大力的提升您的技能!"
|
||||
feature1: "110+ 基本关卡(4个世界)"
|
||||
feature2: "10 个强大 <strong>英雄</strong>以及各式非凡技能!"
|
||||
feature3: "70+ 奖励关卡"
|
||||
feature3: "70+ 奖励关卡" # {change}
|
||||
feature4: "每月享有3500额外宝石"
|
||||
feature5: "视频教学"
|
||||
feature6: "专业邮件支援"
|
||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
intro_1: "CodeCombat 是一个教编程的网上游戏。学生会用编程语言写代码。"
|
||||
intro_2: "无需经验!"
|
||||
free_title: "要多少钱?"
|
||||
cost_china: "CodeCombat的前5个关卡在中国是免费的,在这之后需花费每月9.99美元来访问我们架设在中国专属服务器上的190多个关卡。" # Deprecated
|
||||
cost_premium_server: "CodeCombat的前5个关卡是免费的,在这之后需花费每月9.99美元来访问我们架设专属服务器上的190多个关卡。"
|
||||
free_1: "有110多个覆盖了所有理论的免费关卡。"
|
||||
free_2: "包月订阅可以访问视频教程和额外的练习关卡。"
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
simulate_games: "模拟游戏!"
|
||||
games_simulated_by: "由您模拟过的游戏数:"
|
||||
games_simulated_for: "为您模拟过的游戏数:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "模拟次数"
|
||||
games_played: "被模拟次数"
|
||||
ratio: "比率"
|
||||
|
@ -1151,6 +1157,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
fight: "战斗!"
|
||||
watch_victory: "观看您的胜利"
|
||||
defeat_the: "击败了"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ",锦标赛已开始"
|
||||
tournament_ends: "锦标赛结束"
|
||||
tournament_ended: "锦标赛已结束"
|
||||
|
@ -1208,6 +1215,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
no_recent_games: "最近两个星期没有玩过游戏。"
|
||||
payments: "支付方式"
|
||||
prepaid: "预付费"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "已购买"
|
||||
sale: "促销"
|
||||
subscription: "订阅"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
accepted: "已接受"
|
||||
rejected: "未接受"
|
||||
withdrawn: "撤回"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
submitter: "提交者"
|
||||
submitted: "已提交"
|
||||
commit_msg: "送出訊息"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
|
||||
play_level:
|
||||
done: "完成"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "首頁" # Not used any more, will be removed soon.
|
||||
level: "關卡" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "跳過"
|
||||
|
@ -338,6 +343,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
tip_free_your_mind: "放下一切私心雜念,丟棄害怕、疑問和拒信,解放您的思維。 - 莫菲斯《駭客任務》"
|
||||
tip_strong_opponents: "即使是最强大的對手也有弱点的。 - 宇智波鼬《火影忍者》"
|
||||
tip_paper_and_pen: "在您開始編碼之前,您可以隨時用一張紙和一支筆作計劃。"
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "倉庫"
|
||||
|
@ -400,7 +406,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
comparison_blurb: "訂閱 CodeCombat 來磨練您的技巧!"
|
||||
feature1: "110 個以上的基本關卡散佈在4張地圖中"
|
||||
feature2: "10 個強壯的<strong>新英雄</strong>並每隻都有不同技巧!"
|
||||
feature3: "70 個以上的額外關卡"
|
||||
feature3: "70 個以上的額外關卡" # {change}
|
||||
feature4: "每個月<strong>3500顆額外寶石</strong>!"
|
||||
feature5: "視頻教學"
|
||||
feature6: "頂級信箱支援"
|
||||
|
@ -601,7 +607,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
intro_1: "CodeCombat 是一個教編程的網上游戲。學生會用編程語言寫代碼。"
|
||||
intro_2: "無需經驗!"
|
||||
free_title: "要多少錢?"
|
||||
cost_china: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。" # Deprecated
|
||||
cost_premium_server: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。"
|
||||
free_1: "有110多個覆蓋了所有理論的免費關卡。"
|
||||
free_2: "包月訂閱可以訪問視頻教程和額外的練習關卡。"
|
||||
|
@ -835,7 +840,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
last_played: "最後玩了"
|
||||
leagues_explanation: "在部落裡與其他成員組成聯盟一起參加下面的多人競技場。"
|
||||
|
||||
|
||||
courses:
|
||||
course: "課程"
|
||||
courses: "課程"
|
||||
|
@ -868,7 +872,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
completed: "遊戲時間:"
|
||||
invite_students: "邀請學生加入此課堂。"
|
||||
invite_link_header: "參與課堂的縺結"
|
||||
invite_link_p_1: "把這個參與課堂的連結發給你認可的學生。" # there has few problem of my translation
|
||||
invite_link_p_1: "把這個參與課堂的連結發給你認可的學生。"
|
||||
invite_link_p_2: "或讓我們代你直接發送電郵:"
|
||||
capacity_used: "Course slots used:"
|
||||
enter_emails: "輸入學生電郵地址來邀請,每行一個"
|
||||
|
@ -877,7 +881,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
description: "描述"
|
||||
languages_available: "選擇編程語言:"
|
||||
all_lang: "所有編程語言"
|
||||
show_progress: "向所有該課堂的人展示學生的進度"
|
||||
show_progress: "向所有該課堂的人展示學生的進度"
|
||||
creating_class: "課堂創建中···"
|
||||
purchasing_course: "購買課程中···"
|
||||
buy_course: "購買課程"
|
||||
|
@ -914,7 +918,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
see_the: "詳細資訊請看"
|
||||
more_info: "。"
|
||||
choose_course: "選擇您的課程:"
|
||||
enter_code: "輸入一個解銷碼"
|
||||
enter_code: "輸入一個解銷碼" # {change}
|
||||
enter_code1: "輸入解銷碼"
|
||||
enroll: "註冊"
|
||||
pick_from_classes: "從目前的課程選擇"
|
||||
|
@ -1116,6 +1120,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
simulate_games: "模擬遊戲!"
|
||||
games_simulated_by: "您模擬過的次數:"
|
||||
games_simulated_for: "替您模擬的次數:"
|
||||
# games_in_queue: "Games currently in the queue:"
|
||||
games_simulated: "遊戲已模擬"
|
||||
games_played: "玩過的遊戲"
|
||||
ratio: "通過率"
|
||||
|
@ -1152,6 +1157,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
fight: "戰鬥!"
|
||||
watch_victory: "觀看您的勝利"
|
||||
defeat_the: "擊敗"
|
||||
# watch_battle: "Watch the battle"
|
||||
tournament_started: ",錦標賽已開始"
|
||||
tournament_ends: "錦標賽結束"
|
||||
tournament_ended: "錦標賽已結束"
|
||||
|
@ -1209,6 +1215,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
no_recent_games: "在過去兩個星期沒有玩過遊戲。"
|
||||
payments: "付款"
|
||||
prepaid: "充值"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "已購買"
|
||||
sale: "促銷"
|
||||
subscription: "訂閱"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
|
||||
# play_level:
|
||||
# done: "Done"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
# home: "Home" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
# game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# simulate_games: "Simulate Games!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Wuu (Simplifi
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -159,6 +159,9 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# accepted: "Accepted"
|
||||
# rejected: "Rejected"
|
||||
# withdrawn: "Withdrawn"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
# submitter: "Submitter"
|
||||
# submitted: "Submitted"
|
||||
commit_msg: "提交訊息"
|
||||
|
@ -214,6 +217,8 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
|
||||
play_level:
|
||||
done: "妝下落"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
home: "主頁" # Not used any more, will be removed soon.
|
||||
# level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
# 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_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."
|
||||
# solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
# 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_2: "No experience required!"
|
||||
# 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."
|
||||
# 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."
|
||||
|
@ -913,7 +918,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# see_the: "See the"
|
||||
# more_info: "for more information."
|
||||
# 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"
|
||||
# enroll: "Enroll"
|
||||
# pick_from_classes: "Pick from your current classes"
|
||||
|
@ -1115,6 +1120,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
simulate_games: "演兵遊戲!"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# 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: "Wuu (Traditio
|
|||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# watch_battle: "Watch the battle"
|
||||
# tournament_started: ", started"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# 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."
|
||||
# payments: "Payments"
|
||||
# prepaid: "Prepaid"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
CocoModel = require './CocoModel'
|
||||
SpriteBuilder = require 'lib/sprites/SpriteBuilder'
|
||||
LevelComponent = require './LevelComponent'
|
||||
CocoCollection = require 'collections/CocoCollection'
|
||||
|
||||
utils = require 'core/utils'
|
||||
|
||||
|
@ -509,3 +510,65 @@ module.exports = class ThangType extends CocoModel
|
|||
animationContainers = @getContainersForAnimation(action.animation, action)
|
||||
containersToRender[container.gn] = true for container in animationContainers
|
||||
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".'}
|
||||
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
|
||||
spriteSheets: c.array {title: 'SpriteSheets'},
|
||||
prerenderedSpriteSheetData: c.array {title: 'Prerendered SpriteSheet Data'},
|
||||
c.object {title: 'SpriteSheet'},
|
||||
actionNames: { type: 'array' }
|
||||
animations:
|
||||
|
@ -184,7 +184,7 @@ _.extend ThangTypeSchema.properties,
|
|||
speed: { type: 'number' }
|
||||
}
|
||||
}
|
||||
colorConfig: c.colorConfig()
|
||||
colorConfig: c.object {additionalProperties: c.colorConfig()}
|
||||
colorLabel: { enum: ['red', 'green', 'blue'] }
|
||||
frames:
|
||||
type: 'array'
|
||||
|
|
|
@ -24,5 +24,4 @@ block content
|
|||
li.list-group-item
|
||||
a.btn.btn-lg.btn-primary(href="/account/subscription", data-i18n="account.subscription")
|
||||
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
|
||||
tr
|
||||
th(data-i18n="account.active_until")
|
||||
td= moment(activeUntil).format('l')
|
||||
td= moment(personalSub.activeUntil).format('l')
|
||||
if personalSub.nextPaymentDate
|
||||
tr
|
||||
th(data-i18n="account.next_payment")
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
label.checkbox(for=contributorClassName).well
|
||||
input(type='checkbox', name=contributorClassName, id=contributorClassName)
|
||||
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")
|
||||
p
|
||||
span(data-i18n="teachers_survey.contact_1")
|
||||
a.spl(href='mailto:team@codecombat.com') team@codecombat.com
|
||||
span.spr(data-i18n="teachers_survey.contact_1")
|
||||
a(href='mailto:team@codecombat.com') team@codecombat.com
|
||||
|
|
|
@ -12,16 +12,14 @@ block modal-body-content
|
|||
else
|
||||
.alert.alert-danger Could not apply this delta to the current version.
|
||||
|
||||
|
||||
block modal-footer
|
||||
.modal-footer
|
||||
button(data-dismiss="modal", data-i18n="common.cancel").btn Cancel
|
||||
if isPatchCreator
|
||||
if status != 'withdrawn'
|
||||
button.btn.btn-danger#withdraw-button Withdraw
|
||||
button.btn.btn-danger#withdraw-button(data-i18n="general.withdraw") Withdraw
|
||||
if isPatchRecipient
|
||||
if status != 'accepted'
|
||||
button.btn.btn-primary#accept-button Accept
|
||||
button.btn.btn-primary#accept-button(data-i18n="general.accept") Accept
|
||||
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
|
||||
.col-sm-9
|
||||
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
|
||||
label.col-sm-3.control-label Actions
|
||||
.col-sm-9
|
||||
|
@ -31,4 +43,6 @@ block modal-body-content
|
|||
|
||||
block modal-footer-content
|
||||
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%")
|
|
@ -101,8 +101,8 @@ block content
|
|||
if level.get('name') == 'Ace of Coders'
|
||||
.tournament-blurb
|
||||
h2
|
||||
span(data-i18n="ladder.tournament_ends") Tournament ends
|
||||
//span(data-i18n="ladder.tournament_ended") Tournament ended
|
||||
//span(data-i18n="ladder.tournament_ends") Tournament ends
|
||||
span(data-i18n="ladder.tournament_ended") Tournament ended
|
||||
| #{tournamentTimeLeft}
|
||||
span(data-i18n="ladder.tournament_started") , started
|
||||
| #{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
|
||||
| .
|
||||
//p
|
||||
// strong Tournament ended!
|
||||
p
|
||||
strong Tournament ended!
|
||||
// a(href="#winners") Behold the winners
|
||||
// | . Thanks for playing! You can
|
||||
// strong still play
|
||||
// | Ace of Coders as long as you like.
|
||||
//p
|
||||
// | Want to commiserate? Head over to
|
||||
// a(href="http://discourse.codecombat.com/") the forum
|
||||
// | and discuss your strategies, your triumphs, and your turmoils.
|
||||
| Thanks for playing! You can
|
||||
strong still play
|
||||
| Ace of Coders as long as you like.
|
||||
p
|
||||
| Want to commiserate? Head over to
|
||||
a(href="http://discourse.codecombat.com/") the forum
|
||||
| and discuss your strategies, your triumphs, and your turmoils.
|
||||
|
||||
div#columns.row
|
||||
div.column.col-md-2
|
||||
|
@ -813,7 +814,7 @@ block content
|
|||
th Ogre wins/losses/ties
|
||||
else
|
||||
th Ogre score
|
||||
th Spectate
|
||||
th(data-i18n="play.spectate") Spectate
|
||||
tbody
|
||||
each human, index in winners.humans
|
||||
- var ogre = winners.ogres[index]
|
||||
|
@ -855,7 +856,7 @@ block content
|
|||
td
|
||||
span= Math.round(100 * ogre.score)
|
||||
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
|
||||
td
|
||||
td
|
||||
|
|
|
@ -8,18 +8,17 @@ p
|
|||
button(data-i18n="ladder.simulate_games").btn.btn-warning.btn-lg.highlight#simulate-button Simulate Games!
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
table.table.table-bordered.table-condensed.table-hover
|
||||
thead
|
||||
tr
|
||||
|
|
|
@ -29,16 +29,16 @@ else
|
|||
.buttons-area
|
||||
|
||||
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
|
||||
span.icon-bar
|
||||
span.icon-bar
|
||||
span.icon-bar
|
||||
span.game-menu-text(data-i18n="play_level.game_menu") Game Menu
|
||||
|
||||
|
||||
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
|
||||
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_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_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_hardware_problem') Q: How many programmers does it take to change a light bulb? A: None, it's a hardware problem.
|
||||
|
|
|
@ -20,26 +20,31 @@ module.exports = class ExportThangTypeModal extends ModalView
|
|||
green: { hue: 0.33, saturation: 0.75, lightness: 0.5 }
|
||||
}
|
||||
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()
|
||||
getResolutionFactor: -> parseInt(@$('#resolution-input').val()) or SPRITE_RESOLUTION_FACTOR
|
||||
getFilename: -> 'spritesheet-'+_.string.slugify(moment().format())+'.png'
|
||||
getSpriteType: -> @$('input[name="sprite-type"]:checked').val()
|
||||
|
||||
onClickSaveButton: ->
|
||||
@$('.modal-footer button').addClass('hide')
|
||||
@$('.modal-footer .progress').removeClass('hide')
|
||||
@$('input, select').attr('disabled', true)
|
||||
options = {
|
||||
resolutionFactor: @getResolutionFactor()
|
||||
actionNames: @getActionNames()
|
||||
colorConfig: @getColorConfig()
|
||||
spriteType: @getSpriteType()
|
||||
}
|
||||
console.log 'options?', options
|
||||
@exporter = new SpriteExporter(@thangType, options)
|
||||
@exporter.build()
|
||||
@listenToOnce @exporter, 'build', @onExporterBuild
|
||||
|
||||
onExporterBuild: (e) ->
|
||||
@spriteSheet = e.spriteSheet
|
||||
$('body').empty().append(@spriteSheet._images[0])
|
||||
return
|
||||
src = @spriteSheet._images[0].toDataURL()
|
||||
src = src.replace('data:image/png;base64,', '').replace(/\ /g, '+')
|
||||
body =
|
||||
|
@ -64,14 +69,15 @@ module.exports = class ExportThangTypeModal extends ModalView
|
|||
] for f in @spriteSheet._frames)
|
||||
image: "db/thang.type/#{@thangType.get('original')}/"+@getFilename()
|
||||
resolutionFactor: @getResolutionFactor()
|
||||
spriteType: @getSpriteType()
|
||||
}
|
||||
if config = @getColorConfig()
|
||||
spriteSheetData.colorConfig = config
|
||||
if label = @getColorLabel()
|
||||
spriteSheetData.colorLabel = label
|
||||
spriteSheets = _.clone(@thangType.get('spriteSheets') or [])
|
||||
spriteSheets = _.clone(@thangType.get('prerenderedSpriteSheetData') or [])
|
||||
spriteSheets.push(spriteSheetData)
|
||||
@thangType.set('spriteSheets', spriteSheets)
|
||||
@thangType.set('prerenderedSpriteSheetData', spriteSheets)
|
||||
@thangType.save()
|
||||
@listenToOnce @thangType, 'sync', @hide
|
||||
|
||||
|
|
|
@ -210,7 +210,6 @@ module.exports = class ThangTypeEditView extends RootView
|
|||
@patchesView = @insertSubView(new PatchesView(@thangType), @$el.find('.patches-view'))
|
||||
@showReadOnly() if me.get('anonymous')
|
||||
@updatePortrait()
|
||||
@onClickExportSpriteSheetButton()
|
||||
|
||||
initComponents: =>
|
||||
options =
|
||||
|
|
|
@ -212,7 +212,7 @@ module.exports = class HeroVictoryModal extends ModalView
|
|||
|
||||
afterRender: ->
|
||||
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()
|
||||
@playSelectionSound hero, true for original, hero of @thangTypes # Preload them
|
||||
@updateSavingProgressStatus()
|
||||
|
|
|
@ -235,7 +235,7 @@ module.exports = class Handler
|
|||
|
||||
# Hack: levels loading thang types need the components returned as well.
|
||||
# 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}
|
||||
|
||||
makeFunc = (id) =>
|
||||
|
|
|
@ -35,7 +35,7 @@ ThangTypeHandler = class ThangTypeHandler extends Handler
|
|||
'unlockLevelName'
|
||||
'tasks'
|
||||
'terrains'
|
||||
'spriteSheets'
|
||||
'prerenderedSpriteSheetData'
|
||||
]
|
||||
|
||||
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.
|
||||
#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) ->
|
||||
levelID = _.sample ladderLevelIDs
|
||||
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) ->
|
||||
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)
|
||||
|
||||
getByIDs: (req, res) ->
|
||||
|
|
|
@ -11,7 +11,7 @@ describe 'LayerAdapter', ->
|
|||
layer = new LayerAdapter({webGL:true})
|
||||
layer.buildAutomatically = false
|
||||
layer.buildAsync = false
|
||||
|
||||
|
||||
it 'creates containers for animated actions if set to spriteType=segmented', ->
|
||||
ogreMunchkinThangType.set('spriteType', 'segmented')
|
||||
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
||||
|
@ -45,9 +45,10 @@ describe 'LayerAdapter', ->
|
|||
sheet = layer.renderNewSpriteSheet()
|
||||
key = layer.renderGroupingKey(treeThangType, 'idle')
|
||||
expect(key in sheet.getAnimations()).toBe(true)
|
||||
|
||||
|
||||
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')
|
||||
colorConfig = {team: {hue: 0, saturation: 1, lightness: 0.5}}
|
||||
sprite = new Lank(ogreMunchkinThangType, {colorConfig: colorConfig})
|
||||
|
@ -58,6 +59,7 @@ describe 'LayerAdapter', ->
|
|||
expect(animations.length).toBe(1)
|
||||
expect(animations[0]).toBe(key)
|
||||
expect(sheet.getNumFrames()).toBe(2) # one idle frame, and the emptiness frame
|
||||
ThangType.defaultActions = oldDefaults
|
||||
|
||||
it 'renders a raster image onto a sheet', (done) ->
|
||||
bootsThangType = new ThangType(require 'test/app/fixtures/leather-boots.thang.type')
|
||||
|
@ -75,14 +77,14 @@ describe 'LayerAdapter', ->
|
|||
# skip this test...
|
||||
done()
|
||||
)
|
||||
|
||||
|
||||
it 'loads ThangTypes for Lanks that are added to it and need to be loaded', ->
|
||||
thangType = new ThangType({_id: 1})
|
||||
sprite = new Lank(thangType)
|
||||
layer.addLank(sprite)
|
||||
expect(layer.numThingsLoading).toBe(1)
|
||||
expect(jasmine.Ajax.requests.count()).toBe(1)
|
||||
|
||||
|
||||
it 'loads raster images for ThangType', ->
|
||||
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
||||
thangType = new ThangType({_id: 1})
|
||||
|
@ -98,7 +100,7 @@ describe 'LayerAdapter', ->
|
|||
thangType.trigger('raster-image-loaded', thangType)
|
||||
expect(layer.numThingsLoading).toBe(0)
|
||||
expect(layer.renderNewSpriteSheet).toHaveBeenCalled()
|
||||
|
||||
|
||||
it 'renders a new SpriteSheet only once everything has loaded', ->
|
||||
bootsThangTypeData = require 'test/app/fixtures/leather-boots.thang.type'
|
||||
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) ->
|
||||
throw err if err
|
||||
User.findOne({email: email}).exec((err, user) ->
|
||||
throw err if err
|
||||
user.set('permissions', if password is '80yqxpb38j' then ['admin'] else [])
|
||||
user.set('name', name)
|
||||
user.save (err) ->
|
||||
|
|
Loading…
Add table
Reference in a new issue