mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-31 07:12:49 -04:00
Merge branch 'master' of https://github.com/codecombat/codecombat
This commit is contained in:
commit
e94d5ef0ad
146 changed files with 4001 additions and 979 deletions
app
collections
lib
locale
ar.coffeebg.coffeeca.coffeecs.coffeeda.coffeede-AT.coffeede-CH.coffeede-DE.coffeede.coffeeel.coffeeen-AU.coffeeen-GB.coffeeen-US.coffeeen.coffeees-419.coffeees-ES.coffeees.coffeefa.coffeefi.coffeefr.coffeehe.coffeehi.coffeehu.coffeeid.coffeeit.coffeeja.coffeeko.coffeelocale.coffeelt.coffeems.coffeenb.coffeenl-BE.coffeenl-NL.coffeenl.coffeenn.coffeeno.coffeepl.coffeept-BR.coffeept-PT.coffeept.coffeero.coffeeru.coffeesk.coffeesl.coffeesr.coffeesv.coffeeth.coffeetr.coffeeuk.coffeeur.coffeevi.coffeezh-HANS.coffeezh-HANT.coffeezh.coffee
models
schemas
styles
templates
views/account
11
app/collections/SimulatorsLeaderboardCollection.coffee
Normal file
11
app/collections/SimulatorsLeaderboardCollection.coffee
Normal file
|
@ -0,0 +1,11 @@
|
|||
CocoCollection = require 'models/CocoCollection'
|
||||
User = require 'models/User'
|
||||
|
||||
module.exports = class SimulatorsLeaderboardCollection extends CocoCollection
|
||||
url: ''
|
||||
model: User
|
||||
|
||||
constructor: (options) ->
|
||||
super()
|
||||
options ?= {}
|
||||
@url = "/db/user/me/simulatorLeaderboard?#{$.param(options)}"
|
|
@ -47,14 +47,14 @@ module.exports = GPlusHandler = class GPlusHandler extends CocoClass
|
|||
'client_id' : clientID
|
||||
'scope' : scope
|
||||
gapi.auth.authorize params, @onGPlusLogin
|
||||
|
||||
|
||||
onGPlusLogin: (e) =>
|
||||
@loggedIn = true
|
||||
storage.save(GPLUS_TOKEN_KEY, e)
|
||||
@accessToken = e
|
||||
@trigger 'logged-in'
|
||||
return if (not me) or me.get 'gplusID' # so only get more data
|
||||
|
||||
return if (not me) or me.get 'gplusID' # so only get more data
|
||||
|
||||
# email and profile data loaded separately
|
||||
@responsesComplete = 0
|
||||
gapi.client.request(path:plusURL, callback:@onPersonEntityReceived)
|
||||
|
@ -104,12 +104,13 @@ module.exports = GPlusHandler = class GPlusHandler extends CocoClass
|
|||
success: (model) ->
|
||||
window.location.reload() if wasAnonymous and not model.get('anonymous')
|
||||
})
|
||||
|
||||
|
||||
loadFriends: (friendsCallback) ->
|
||||
return friendsCallback() unless @loggedIn
|
||||
expires_in = if @accessToken then parseInt(@accessToken.expires_at) - new Date().getTime()/1000 else -1
|
||||
expiresIn = if @accessToken then parseInt(@accessToken.expires_at) - new Date().getTime()/1000 else -1
|
||||
onReauthorized = => gapi.client.request({path:'/plus/v1/people/me/people/visible', callback: friendsCallback})
|
||||
if expires_in < 0
|
||||
if expiresIn < 0
|
||||
# TODO: this tries to open a popup window, which might not ever finish or work, so the callback may never be called.
|
||||
@reauthorize()
|
||||
@listenToOnce(@, 'logged-in', onReauthorized)
|
||||
else
|
||||
|
|
|
@ -104,7 +104,7 @@ module.exports = class LevelLoader extends CocoClass
|
|||
|
||||
onSupermodelLoadedOne: (e) ->
|
||||
@buildSpriteSheetsForThangType e.model if not @headless and e.model instanceof ThangType
|
||||
@update()
|
||||
@update() unless @destroyed
|
||||
|
||||
# Things to do when either the Session or Supermodel load
|
||||
|
||||
|
@ -160,7 +160,7 @@ module.exports = class LevelLoader extends CocoClass
|
|||
buildSpriteSheetsForThangType: (thangType) ->
|
||||
@grabThangTypeTeams() unless @thangTypeTeams
|
||||
for team in @thangTypeTeams[thangType.get('original')] ? [null]
|
||||
spriteOptions = {resolutionFactor: 4, async: true}
|
||||
spriteOptions = {resolutionFactor: 4, async: false}
|
||||
if thangType.get('kind') is 'Floor'
|
||||
spriteOptions.resolutionFactor = 2
|
||||
if team and color = @teamConfigs[team]?.color
|
||||
|
@ -174,10 +174,14 @@ module.exports = class LevelLoader extends CocoClass
|
|||
return unless building
|
||||
#console.log 'Building:', thangType.get('name'), options
|
||||
@spriteSheetsToBuild += 1
|
||||
thangType.once 'build-complete', =>
|
||||
onBuildComplete = =>
|
||||
return if @destroyed
|
||||
@spriteSheetsBuilt += 1
|
||||
@notifyProgress()
|
||||
if options.async
|
||||
thangType.once 'build-complete', onBuildComplete
|
||||
else
|
||||
onBuildComplete()
|
||||
|
||||
# World init
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{me} = require 'lib/auth'
|
||||
|
||||
debugAnalytics = false
|
||||
|
||||
module.exports = class Tracker
|
||||
constructor: ->
|
||||
if window.tracker
|
||||
|
@ -10,7 +12,7 @@ module.exports = class Tracker
|
|||
@updateOlark()
|
||||
|
||||
identify: (traits) ->
|
||||
#console.log "Would identify", traits
|
||||
console.log "Would identify", traits if debugAnalytics
|
||||
return unless me and @isProduction and analytics?
|
||||
# https://segment.io/docs/methods/identify
|
||||
traits ?= {}
|
||||
|
@ -39,13 +41,13 @@ module.exports = class Tracker
|
|||
trackPageView: ->
|
||||
return unless @isProduction and analytics?
|
||||
url = Backbone.history.getFragment()
|
||||
#console.log "Going to track visit for", "/#{url}"
|
||||
console.log "Going to track visit for", "/#{url}" if debugAnalytics
|
||||
analytics.pageview "/#{url}"
|
||||
|
||||
trackEvent: (event, properties, includeProviders=null) =>
|
||||
#console.log "Would track analytics event:", event, properties
|
||||
console.log "Would track analytics event:", event, properties if debugAnalytics
|
||||
return unless me and @isProduction and analytics?
|
||||
#console.log "Going to track analytics event:", event, properties
|
||||
console.log "Going to track analytics event:", event, properties if debugAnalytics
|
||||
properties = properties or {}
|
||||
context = {}
|
||||
if includeProviders
|
||||
|
@ -54,3 +56,9 @@ module.exports = class Tracker
|
|||
context.providers[provider] = true
|
||||
event.label = properties.label if properties.label
|
||||
analytics?.track event, properties, context
|
||||
|
||||
trackTiming: (duration, category, variable, label, samplePercentage=5) ->
|
||||
# https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingTiming
|
||||
return console.warn "Duration #{duration} invalid for trackTiming call." unless duration >= 0 and duration < 60 * 60 * 1000
|
||||
console.log "Would track timing event:", arguments if debugAnalytics
|
||||
window._gaq?.push ['_trackTiming', category, variable, duration, label, samplePercentage]
|
||||
|
|
|
@ -54,7 +54,7 @@ expandFlattenedDelta = (delta, left, schema) ->
|
|||
if _.isPlainObject(o) and o._t isnt 'a'
|
||||
delta.action = 'modified-object'
|
||||
|
||||
if _.isArray(o) and o.length is 3 and o[1] is 0 and o[2] is 3
|
||||
if _.isArray(o) and o.length is 3 and o[2] is 3
|
||||
delta.action = 'moved-index'
|
||||
delta.destinationIndex = o[1]
|
||||
delta.originalIndex = delta.dataPath[delta.dataPath.length-1]
|
||||
|
|
|
@ -114,9 +114,11 @@ module.exports = class SpriteParser
|
|||
@animationRenamings[shortKey] = name
|
||||
else
|
||||
shortKey = name
|
||||
if @thangType.animations[shortKey]?
|
||||
shortKey = @animationName + ":" + name
|
||||
@thangType.animations[shortKey] = animation
|
||||
@animationLongKeys[longKey] = shortKey
|
||||
@animationRenamings[name] = name
|
||||
@animationRenamings[name] = shortKey
|
||||
return shortKey
|
||||
|
||||
walk: (node, parent, fn) ->
|
||||
|
@ -188,9 +190,8 @@ module.exports = class SpriteParser
|
|||
lastRect = bounds
|
||||
else if arg.type is 'Literal' and arg.value is null
|
||||
bounds = [0, 0, 1, 1] # Let's try this.
|
||||
frameBounds.push bounds
|
||||
frameBounds.push _.clone bounds
|
||||
else
|
||||
console.log "Didn't have multiframe bounds for this movie clip!"
|
||||
frameBounds = [nominalBounds]
|
||||
|
||||
# Subtract half of width/height parsed from lib.properties
|
||||
|
|
|
@ -5,7 +5,7 @@ module.exports.load = (key) ->
|
|||
value = JSON.parse(s)
|
||||
return value
|
||||
catch SyntaxError
|
||||
console.warning('error loading from storage', key)
|
||||
console.warn('error loading from storage', key)
|
||||
return null
|
||||
|
||||
module.exports.save = (key, value) ->
|
||||
|
|
|
@ -455,7 +455,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
|
|||
allProps = allProps.concat (@thang.moreProgrammableProperties ? [])
|
||||
|
||||
for property in allProps
|
||||
if m = property.match /.*Range$/
|
||||
if m = property.match /.*(Range|Distance|Radius)$/
|
||||
if @thang[m[0]]? and @thang[m[0]] < 9001
|
||||
@ranges.push
|
||||
name: m[0]
|
||||
|
|
|
@ -54,7 +54,7 @@ module.exports = class Mark extends CocoClass
|
|||
if @name is 'bounds' then @buildBounds()
|
||||
else if @name is 'shadow' then @buildShadow()
|
||||
else if @name is 'debug' then @buildDebug()
|
||||
else if @name.match(/.+Range$/) then @buildRadius(@name)
|
||||
else if @name.match(/.+(Range|Distance|Radius)$/) then @buildRadius(@name)
|
||||
else if @thangType then @buildSprite()
|
||||
else console.error "Don't know how to build mark for", @name
|
||||
@mark?.mouseEnabled = false
|
||||
|
@ -93,6 +93,7 @@ module.exports = class Mark extends CocoClass
|
|||
@lastHeight = @sprite.thang.height
|
||||
|
||||
buildShadow: ->
|
||||
alpha = @sprite.thang?.alpha ? 1
|
||||
width = (@sprite.thang?.width ? 0) + 0.5
|
||||
height = (@sprite.thang?.height ? 0) + 0.5
|
||||
longest = Math.max width, height
|
||||
|
@ -103,7 +104,7 @@ module.exports = class Mark extends CocoClass
|
|||
height *= Camera.PPM * @camera.y2x # TODO: doesn't work with rotation
|
||||
@mark = new createjs.Shape()
|
||||
@mark.mouseEnabled = false
|
||||
@mark.graphics.beginFill "black"
|
||||
@mark.graphics.beginFill "rgba(0, 0, 0, #{alpha})"
|
||||
if @sprite.thang.shape in ['ellipsoid', 'disc']
|
||||
@mark.graphics.drawEllipse 0, 0, width, height
|
||||
else
|
||||
|
@ -115,14 +116,14 @@ module.exports = class Mark extends CocoClass
|
|||
#@mark.cache 0, 0, diameter, diameter # not actually faster than simple ellipse draw
|
||||
|
||||
buildRadius: (range) ->
|
||||
alpha = 0.35
|
||||
alpha = 0.15
|
||||
colors =
|
||||
voiceRange: "rgba(0, 145, 0, #{alpha})"
|
||||
visualRange: "rgba(0, 0, 145, #{alpha})"
|
||||
attackRange: "rgba(145, 0, 0, #{alpha})"
|
||||
|
||||
# Fallback colors which work on both dungeon and grass tiles
|
||||
extracolors = [
|
||||
extraColors = [
|
||||
"rgba(145, 0, 145, #{alpha})"
|
||||
"rgba(0, 145, 145, #{alpha})"
|
||||
"rgba(145, 105, 0, #{alpha})"
|
||||
|
@ -137,10 +138,8 @@ module.exports = class Mark extends CocoClass
|
|||
|
||||
@mark = new createjs.Shape()
|
||||
|
||||
if colors[range]?
|
||||
@mark.graphics.beginFill colors[range]
|
||||
else
|
||||
@mark.graphics.beginFill extracolors[i]
|
||||
fillColor = colors[range] ? extraColors[i]
|
||||
@mark.graphics.beginFill fillColor
|
||||
|
||||
# Draw the outer circle
|
||||
@mark.graphics.drawCircle 0, 0, @sprite.thang[range] * Camera.PPM
|
||||
|
@ -149,13 +148,16 @@ module.exports = class Mark extends CocoClass
|
|||
if i+1 < @sprite.ranges.length
|
||||
@mark.graphics.arc 0, 0, @sprite.ranges[i+1]['radius'], Math.PI*2, 0, true
|
||||
|
||||
# Add perspective
|
||||
@mark.scaleY *= @camera.y2x
|
||||
|
||||
@mark.graphics.endStroke()
|
||||
@mark.graphics.endFill()
|
||||
|
||||
return
|
||||
strokeColor = fillColor.replace '' + alpha, '0.75'
|
||||
@mark.graphics.setStrokeStyle 2
|
||||
@mark.graphics.beginStroke strokeColor
|
||||
@mark.graphics.arc 0, 0, @sprite.thang[range] * Camera.PPM, Math.PI*2, 0, true
|
||||
@mark.graphics.endStroke()
|
||||
|
||||
# Add perspective
|
||||
@mark.scaleY *= @camera.y2x
|
||||
|
||||
buildDebug: ->
|
||||
@mark = new createjs.Shape()
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# send: "Send"
|
||||
cancel: "الغي"
|
||||
save: "احفض"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "ثانية"
|
||||
delay_3_sec: "3 ثواني"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# send: "Send"
|
||||
cancel: "Отказ"
|
||||
save: "Запис"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 секунда"
|
||||
delay_3_sec: "3 секунди"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
creating: "Създаване на профил..."
|
||||
sign_up: "Регистриране"
|
||||
log_in: "Вход с парола"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Научи се да програмираш на JavaScript, докато играеш игра "
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Преглед"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# send: "Send"
|
||||
cancel: "Cancel·lant"
|
||||
save: "Guardar"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 segon"
|
||||
delay_3_sec: "3 segons"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
versions:
|
||||
save_version_title: "Guarda una nova versió"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Per guardar els canvis primer has d'acceptar"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
creating: "Creant Compte..."
|
||||
sign_up: "Registrar-se"
|
||||
log_in: "Iniciar sessió amb la teva contrasenya"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprén a programar JavaScript tot Jugant"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# send: "Send"
|
||||
cancel: "Zrušit"
|
||||
save: "Uložit"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 vteřina"
|
||||
delay_3_sec: "3 vteřiny"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
versions:
|
||||
save_version_title: "Uložit novou Verzi"
|
||||
new_major_version: "Nová hlavní Verze"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Před uložením musíte souhlasit s"
|
||||
cla_url: "licencí"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
creating: "Vytvářím účet..."
|
||||
sign_up: "Přihlášení"
|
||||
log_in: "zadejte vaše heslo"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Naučte se programování JavaScriptu při hraní více-hráčové programovací hry."
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
wizard_tab: "Kouzelník"
|
||||
password_tab: "Heslo"
|
||||
emails_tab: "Emaily"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Barva Kouzelníkova oblečení"
|
||||
new_password: "Nové heslo"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrátorský pohled"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Volby?"
|
||||
level_tab_thangs: "Thangy"
|
||||
level_tab_scripts: "Skripty"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Náhled"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Kdo je CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# send: "Send"
|
||||
cancel: "Annuller"
|
||||
save: "Gem"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekund"
|
||||
delay_3_sec: "3 sekunder"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
versions:
|
||||
save_version_title: "Gem ny version"
|
||||
new_major_version: "Ny hoved Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "For at gemme dine ændringer, må du acceptere brugerbetingelserne"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
creating: "Opretter Konto..."
|
||||
sign_up: "Registrer"
|
||||
log_in: "Log ind med password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lær at Kode Javascript ved at Spille et Spil"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
wizard_tab: "Troldmand"
|
||||
password_tab: "Password"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Farve på Troldmandstøj"
|
||||
new_password: "Nyt Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
level_search_title: "Søg Baner Her"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Forhåndsvisning"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
easy: "Nem"
|
||||
# medium: "Medium"
|
||||
hard: "Svær"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Hvem er CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
671
app/locale/de-AT.coffee
Normal file
671
app/locale/de-AT.coffee
Normal file
|
@ -0,0 +1,671 @@
|
|||
module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription: "German (Austria)", translation:
|
||||
common:
|
||||
loading: "Lade..."
|
||||
# saving: "Saving..."
|
||||
# sending: "Sending..."
|
||||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
# delay_5_sec: "5 seconds"
|
||||
# manual: "Manual"
|
||||
# fork: "Fork"
|
||||
# play: "Play"
|
||||
# retry: "Retry"
|
||||
|
||||
# units:
|
||||
# second: "second"
|
||||
# seconds: "seconds"
|
||||
# minute: "minute"
|
||||
# minutes: "minutes"
|
||||
# hour: "hour"
|
||||
# hours: "hours"
|
||||
|
||||
# modal:
|
||||
# close: "Close"
|
||||
# okay: "Okay"
|
||||
|
||||
# not_found:
|
||||
# page_not_found: "Page not found"
|
||||
|
||||
# nav:
|
||||
# play: "Levels"
|
||||
# editor: "Editor"
|
||||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
# legal: "Legal"
|
||||
# about: "About"
|
||||
# contact: "Contact"
|
||||
# twitter_follow: "Follow"
|
||||
# employers: "Employers"
|
||||
|
||||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
# cla_agree: "I AGREE"
|
||||
|
||||
# login:
|
||||
# sign_up: "Create Account"
|
||||
# log_in: "Log In"
|
||||
# logging_in: "Logging In"
|
||||
# log_out: "Log Out"
|
||||
# recover: "recover account"
|
||||
|
||||
# recover:
|
||||
# recover_account_title: "Recover Account"
|
||||
# send_password: "Send Recovery Password"
|
||||
|
||||
# signup:
|
||||
# create_account_title: "Create Account to Save Progress"
|
||||
# description: "It's free. Just need a couple things and you'll be good to go:"
|
||||
# email_announcements: "Receive announcements by email"
|
||||
# coppa: "13+ or non-USA "
|
||||
# coppa_why: "(Why?)"
|
||||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
|
||||
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
|
||||
# play: "Play"
|
||||
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
|
||||
# old_browser_suffix: "You can try anyway, but it probably won't work."
|
||||
# campaign: "Campaign"
|
||||
# for_beginners: "For Beginners"
|
||||
# multiplayer: "Multiplayer"
|
||||
# for_developers: "For Developers"
|
||||
|
||||
# play:
|
||||
# choose_your_level: "Choose Your Level"
|
||||
# adventurer_prefix: "You can jump to any level below, or discuss the levels on "
|
||||
# adventurer_forum: "the Adventurer forum"
|
||||
# adventurer_suffix: "."
|
||||
# campaign_beginner: "Beginner Campaign"
|
||||
# campaign_beginner_description: "... in which you learn the wizardry of programming."
|
||||
# campaign_dev: "Random Harder Levels"
|
||||
# campaign_dev_description: "... in which you learn the interface while doing something a little harder."
|
||||
# campaign_multiplayer: "Multiplayer Arenas"
|
||||
# campaign_multiplayer_description: "... in which you code head-to-head against other players."
|
||||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As"
|
||||
# spectate: "Spectate"
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
# welcome: "Good to hear from you! Use this form to send us email. "
|
||||
# contribute_prefix: "If you're interested in contributing, check out our "
|
||||
# contribute_page: "contribute page"
|
||||
# contribute_suffix: "!"
|
||||
# forum_prefix: "For anything public, please try "
|
||||
# forum_page: "our forum"
|
||||
# forum_suffix: " instead."
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate"
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 18% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns."
|
||||
|
||||
diplomat_suggestion:
|
||||
# title: "Help translate CodeCombat!"
|
||||
# sub_heading: "We need your language skills."
|
||||
pitch_body: "Wir entwickeln CodeCombat in Englisch, aber wir haben Spieler in der ganzen Welt. Viele von ihnen wollen in Deutsch (Österreich) spielen, sprechen aber kein Englisch. Wenn Du also beide Sprachen beherrscht, melde Dich an um ein Diplomat zu werden und hilf die Website und die Levels zu Deutsch (Österreich) zu übersetzen."
|
||||
missing_translations: "Solange wir nicht alles ins Deutsche (Österreich) übesetzt haben, siehst Du die englische Übersetzung, wo Deutsch (Österreich) leider noch nicht zur Verfügung steht."
|
||||
# learn_more: "Learn more about being a Diplomat"
|
||||
# subscribe_as_diplomat: "Subscribe as a Diplomat"
|
||||
|
||||
# wizard_settings:
|
||||
# title: "Wizard Settings"
|
||||
# customize_avatar: "Customize Your Avatar"
|
||||
# active: "Active"
|
||||
# color: "Color"
|
||||
# group: "Group"
|
||||
# clothes: "Clothes"
|
||||
# trim: "Trim"
|
||||
# cloud: "Cloud"
|
||||
# team: "Team"
|
||||
# spell: "Spell"
|
||||
# boots: "Boots"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
# not_logged_in: "Log in or create an account to change your settings."
|
||||
# autosave: "Changes Save Automatically"
|
||||
# me_tab: "Me"
|
||||
# picture_tab: "Picture"
|
||||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
# contribute_prefix: "We're looking for people to join our party! Check out the "
|
||||
# contribute_page: "contribute page"
|
||||
# contribute_suffix: " to find out more."
|
||||
# email_toggle: "Toggle All"
|
||||
# error_saving: "Error Saving"
|
||||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# job_profile: "Job Profile"
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
|
||||
# account_profile:
|
||||
# edit_settings: "Edit Settings"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# approved: "Approved"
|
||||
# not_approved: "Not Approved"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# work_experience: "Work Experience"
|
||||
# education: "Education"
|
||||
# our_notes: "Our Notes"
|
||||
# projects: "Projects"
|
||||
|
||||
# employers:
|
||||
# want_to_hire_our_players: "Want to hire expert CodeCombat players?"
|
||||
# contact_george: "Contact George to see our candidates"
|
||||
# candidates_count_prefix: "We currently have "
|
||||
# candidates_count_many: "many"
|
||||
# candidates_count_suffix: "highly skilled and vetted developers looking for work."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
|
||||
# play_level:
|
||||
# level_load_error: "Level could not be loaded: "
|
||||
# done: "Done"
|
||||
# grid: "Grid"
|
||||
# customize_wizard: "Customize Wizard"
|
||||
# home: "Home"
|
||||
# guide: "Guide"
|
||||
# multiplayer: "Multiplayer"
|
||||
# restart: "Restart"
|
||||
# goals: "Goals"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# reload_title: "Reload All Code?"
|
||||
# reload_really: "Are you sure you want to reload this level back to the beginning?"
|
||||
# reload_confirm: "Reload All"
|
||||
# victory_title_prefix: ""
|
||||
# victory_title_suffix: " Complete"
|
||||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
# victory_hour_of_code_done: "Are You Done?"
|
||||
# victory_hour_of_code_done_yes: "Yes, I'm finished with my Hour of Code™!"
|
||||
# multiplayer_title: "Multiplayer Settings"
|
||||
# multiplayer_link_description: "Give this link to anyone to have them join you."
|
||||
# multiplayer_hint_label: "Hint:"
|
||||
# multiplayer_hint: " Click the link to select all, then press ⌘-C or Ctrl-C to copy the link."
|
||||
# multiplayer_coming_soon: "More multiplayer features to come!"
|
||||
# guide_title: "Guide"
|
||||
# tome_minion_spells: "Your Minions' Spells"
|
||||
# tome_read_only_spells: "Read-Only Spells"
|
||||
# tome_other_units: "Other Units"
|
||||
# tome_cast_button_castable: "Cast Spell"
|
||||
# tome_cast_button_casting: "Casting"
|
||||
# tome_cast_button_cast: "Spell Cast"
|
||||
# tome_autocast_delay: "Autocast Delay"
|
||||
# tome_select_spell: "Select a Spell"
|
||||
# tome_select_a_thang: "Select Someone for "
|
||||
# tome_available_spells: "Available Spells"
|
||||
# hud_continue: "Continue (shift+space)"
|
||||
# spell_saved: "Spell Saved"
|
||||
# skip_tutorial: "Skip (esc)"
|
||||
# editor_config: "Editor Config"
|
||||
# editor_config_title: "Editor Configuration"
|
||||
# editor_config_language_label: "Programming Language"
|
||||
# editor_config_language_description: "Define the programming language you want to code in."
|
||||
# editor_config_keybindings_label: "Key Bindings"
|
||||
# editor_config_keybindings_default: "Default (Ace)"
|
||||
# editor_config_keybindings_description: "Adds additional shortcuts known from the common editors."
|
||||
# editor_config_invisibles_label: "Show Invisibles"
|
||||
# editor_config_invisibles_description: "Displays invisibles such as spaces or tabs."
|
||||
# editor_config_indentguides_label: "Show Indent Guides"
|
||||
# editor_config_indentguides_description: "Displays vertical lines to see indentation better."
|
||||
# editor_config_behaviors_label: "Smart Behaviors"
|
||||
# editor_config_behaviors_description: "Autocompletes brackets, braces, and quotes."
|
||||
# loading_ready: "Ready!"
|
||||
# tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
|
||||
# tip_toggle_play: "Toggle play/paused with Ctrl+P."
|
||||
# tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward."
|
||||
# tip_guide_exists: "Click the guide at the top of the page for useful info."
|
||||
# tip_open_source: "CodeCombat is 100% open source!"
|
||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||
# tip_js_beginning: "JavaScript is just the beginning."
|
||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||
# think_solution: "Think of the solution, not the problem."
|
||||
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||
# tip_morale_improves: "Loading will continue until morale improves."
|
||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||
# tip_reticulating: "Reticulating spines."
|
||||
# tip_harry: "Yer a Wizard, "
|
||||
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||
# tip_talk_is_cheap: "Talk is cheap. Show me the code. - Linus Torvalds"
|
||||
# tip_first_language: "The most disastrous thing that you can ever learn is your first programming language. - Alan Kay"
|
||||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
# u_title: "User List"
|
||||
# lg_title: "Latest Games"
|
||||
# clas: "CLAs"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
# main_description: "Build your own levels, campaigns, units and educational content. We provide all the tools you need!"
|
||||
# article_title: "Article Editor"
|
||||
# article_description: "Write articles that give players overviews of programming concepts which can be used across a variety of levels and campaigns."
|
||||
# thang_title: "Thang Editor"
|
||||
# thang_description: "Build units, defining their default logic, graphics and audio. Currently only supports importing Flash exported vector graphics."
|
||||
# level_title: "Level Editor"
|
||||
# level_description: "Includes the tools for scripting, uploading audio, and constructing custom logic to create all sorts of levels. Everything we use ourselves!"
|
||||
# security_notice: "Many major features in these editors are not currently enabled by default. As we improve the security of these systems, they will be made generally available. If you'd like to use these features sooner, "
|
||||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# back: "Back"
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# fork_title: "Fork New Version"
|
||||
# fork_creating: "Creating Fork..."
|
||||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
# level_tab_settings: "Settings"
|
||||
# level_tab_components: "Components"
|
||||
# level_tab_systems: "Systems"
|
||||
# level_tab_thangs_title: "Current Thangs"
|
||||
# level_tab_thangs_all: "All"
|
||||
# level_tab_thangs_conditions: "Starting Conditions"
|
||||
# level_tab_thangs_add: "Add Thangs"
|
||||
# delete: "Delete"
|
||||
# duplicate: "Duplicate"
|
||||
# level_settings_title: "Settings"
|
||||
# level_component_tab_title: "Current Components"
|
||||
# level_component_btn_new: "Create New Component"
|
||||
# level_systems_tab_title: "Current Systems"
|
||||
# level_systems_btn_new: "Create New System"
|
||||
# level_systems_btn_add: "Add System"
|
||||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
# edit_article_title: "Edit Article"
|
||||
|
||||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# version_history: "Version History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# subject: "Subject"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
# why_codecombat: "Why CodeCombat?"
|
||||
# who_description_prefix: "together started CodeCombat in 2013. We also created "
|
||||
# who_description_suffix: "in 2008, growing it to the #1 web and iOS application for learning to write Chinese and Japanese characters."
|
||||
# who_description_ending: "Now it's time to teach people to write code."
|
||||
# why_paragraph_1: "When making Skritter, George didn't know how to program and was constantly frustrated by his inability to implement his ideas. Afterwards, he tried learning, but the lessons were too slow. His housemate, wanting to reskill and stop teaching, tried Codecademy, but \"got bored.\" Each week another friend started Codecademy, then dropped off. We realized it was the same problem we'd solved with Skritter: people learning a skill via slow, intensive lessons when what they need is fast, extensive practice. We know how to fix that."
|
||||
# why_paragraph_2: "Need to learn to code? You don't need lessons. You need to write a lot of code and have a great time doing it."
|
||||
# why_paragraph_3_prefix: "That's what programming is about. It's gotta be fun. Not fun like"
|
||||
# why_paragraph_3_italic: "yay a badge"
|
||||
# why_paragraph_3_center: "but fun like"
|
||||
# why_paragraph_3_italic_caps: "NO MOM I HAVE TO FINISH THE LEVEL!"
|
||||
# why_paragraph_3_suffix: "That's why CodeCombat is a multiplayer game, not a gamified lesson course. We won't stop until you can't stop--but this time, that's a good thing."
|
||||
# why_paragraph_4: "If you're going to get addicted to some game, get addicted to this one and become one of the wizards of the tech age."
|
||||
# why_ending: "And hey, it's free. "
|
||||
# why_ending_url: "Start wizarding now!"
|
||||
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
||||
# scott_description: "Programmer extraordinaire, software architect, kitchen wizard, and master of finances. Scott is the reasonable one."
|
||||
# nick_description: "Programming wizard, eccentric motivation mage, and upside-down experimenter. Nick can do anything and chooses to build CodeCombat."
|
||||
# jeremy_description: "Customer support mage, usability tester, and community organizer; you've probably already spoken with Jeremy."
|
||||
# michael_description: "Programmer, sys-admin, and undergrad technical wunderkind, Michael is the person keeping our servers online."
|
||||
# glen_description: "Programmer and passionate game developer, with the motivation to make this world a better place, by developing things that matter. The word impossible can't be found in his dictionary. Learning new skills is his joy!"
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
# opensource_intro: "CodeCombat is free to play and completely open source."
|
||||
# opensource_description_prefix: "Check out "
|
||||
# github_url: "our GitHub"
|
||||
# opensource_description_center: "and help out if you like! CodeCombat is built on dozens of open source projects, and we love them. See "
|
||||
# archmage_wiki_url: "our Archmage wiki"
|
||||
# opensource_description_suffix: "for a list of the software that makes this game possible."
|
||||
# practices_title: "Respectful Best Practices"
|
||||
# practices_description: "These are our promises to you, the player, in slightly less legalese."
|
||||
# privacy_title: "Privacy"
|
||||
# privacy_description: "We will not sell any of your personal information. We intend to make money through recruitment eventually, but rest assured we will not distribute your personal information to interested companies without your explicit consent."
|
||||
# security_title: "Security"
|
||||
# security_description: "We strive to keep your personal information safe. As an open source project, our site is freely open to anyone to review and improve our security systems."
|
||||
# email_title: "Email"
|
||||
# email_description_prefix: "We will not inundate you with spam. Through"
|
||||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "Currently, CodeCombat is 100% free! One of our main goals is to keep it that way, so that as many people can play as possible, regardless of place in life. If the sky darkens, we might have to charge subscriptions or for some content, but we'd rather not. With any luck, we'll be able to sustain the company with:"
|
||||
# recruitment_title: "Recruitment"
|
||||
# recruitment_description_prefix: "Here on CodeCombat, you're going to become a powerful wizard–not just in the game, but also in real life."
|
||||
# url_hire_programmers: "No one can hire programmers fast enough"
|
||||
# recruitment_description_suffix: "so once you've sharpened your skills and if you agree, we will demo your best coding accomplishments to the thousands of employers who are drooling for the chance to hire you. They pay us a little, they pay you"
|
||||
# recruitment_description_italic: "a lot"
|
||||
# recruitment_description_ending: "the site remains free and everybody's happy. That's the plan."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
# cla_url: "CLA"
|
||||
# contributor_description_suffix: "to which you should agree before contributing."
|
||||
# code_title: "Code - MIT"
|
||||
# code_description_prefix: "All code owned by CodeCombat or hosted on codecombat.com, both in the GitHub repository or in the codecombat.com database, is licensed under the"
|
||||
# mit_license_url: "MIT license"
|
||||
# code_description_suffix: "This includes all code in Systems and Components that are made available by CodeCombat for the purpose of creating levels."
|
||||
# art_title: "Art/Music - Creative Commons "
|
||||
# art_description_prefix: "All common content is available under the"
|
||||
# cc_license_url: "Creative Commons Attribution 4.0 International License"
|
||||
# art_description_suffix: "Common content is anything made generally available by CodeCombat for the purpose of creating Levels. This includes:"
|
||||
# art_music: "Music"
|
||||
# art_sound: "Sound"
|
||||
# art_artwork: "Artwork"
|
||||
# art_sprites: "Sprites"
|
||||
# art_other: "Any and all other non-code creative works that are made available when creating Levels."
|
||||
# art_access: "Currently there is no universal, easy system for fetching these assets. In general, fetch them from the URLs as used by the site, contact us for assistance, or help us in extending the site to make these assets more easily accessible."
|
||||
# art_paragraph_1: "For attribution, please name and link to codecombat.com near where the source is used or where appropriate for the medium. For example:"
|
||||
# use_list_1: "If used in a movie or another game, include codecombat.com in the credits."
|
||||
# use_list_2: "If used on a website, include a link near the usage, for example underneath an image, or in a general attributions page where you might also mention other Creative Commons works and open source software being used on the site. Something that's already clearly referencing CodeCombat, such as a blog post mentioning CodeCombat, does not need some separate attribution."
|
||||
# art_paragraph_2: "If the content being used is created not by CodeCombat but instead by a user of codecombat.com, attribute them instead, and follow attribution directions provided in that resource's description if there are any."
|
||||
# rights_title: "Rights Reserved"
|
||||
# rights_desc: "All rights are reserved for Levels themselves. This includes"
|
||||
# rights_scripts: "Scripts"
|
||||
# rights_unit: "Unit configuration"
|
||||
# rights_description: "Description"
|
||||
# rights_writings: "Writings"
|
||||
# rights_media: "Media (sounds, music) and any other creative content made specifically for that Level and not made generally available when creating Levels."
|
||||
# rights_clarification: "To clarify, anything that is made available in the Level Editor for the purpose of making levels is under CC, whereas the content created with the Level Editor or uploaded in the course of creation of Levels is not."
|
||||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
|
||||
# contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
# introduction_desc_pref: "We want to be where programmers of all stripes come to learn and play together, introduce others to the wonderful world of coding, and reflect the best parts of the community. We can't and don't want to do that alone; what makes projects like GitHub, Stack Overflow and Linux great are the people who use them and build on them. To that end, "
|
||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
# introduction_desc_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours."
|
||||
# introduction_desc_ending: "We hope you'll join our party!"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
# archmage_attribute_2: "Some experience in programming and personal initiative. We'll help you get oriented, but we can't spend much time training you."
|
||||
# how_to_join: "How To Join"
|
||||
# join_desc_1: "Anyone can help out! Just check out our "
|
||||
# join_desc_2: "to get started, and check the box below to mark yourself as a brave Archmage and get the latest news by email. Want to chat about what to do or how to get more deeply involved? "
|
||||
# join_desc_3: ", or find us in our "
|
||||
# join_desc_4: "and we'll go from there!"
|
||||
# join_url_email: "Email us"
|
||||
# join_url_hipchat: "public HipChat room"
|
||||
# more_about_archmage: "Learn More About Becoming an Archmage"
|
||||
# archmage_subscribe_desc: "Get emails on new coding opportunities and announcements."
|
||||
# artisan_summary_pref: "Want to design levels and expand CodeCombat's arsenal? People are playing through our content at a pace faster than we can build! Right now, our level editor is barebone, so be wary. Making levels will be a little challenging and buggy. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_summary_suf: ", then this class is for you."
|
||||
# artisan_introduction_pref: "We must construct additional levels! People be clamoring for more content, and we can only build so many ourselves. Right now your workstation is level one; our level editor is barely usable even by its creators, so be wary. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_introduction_suf: ", then this class might be for you."
|
||||
# artisan_attribute_1: "Any experience in building content like this would be nice, such as using Blizzard's level editors. But not required!"
|
||||
# artisan_attribute_2: "A hankering to do a whole lot of testing and iteration. To make good levels, you need to take it to others and watch them play it, and be prepared to find a lot of things to fix."
|
||||
# artisan_attribute_3: "For the time being, endurance en par with an Adventurer. Our Level Editor is super preliminary and frustrating to use. You have been warned!"
|
||||
# artisan_join_desc: "Use the Level Editor in these steps, give or take:"
|
||||
# artisan_join_step1: "Read the documentation."
|
||||
# artisan_join_step2: "Create a new level and explore existing levels."
|
||||
# artisan_join_step3: "Find us in our public HipChat room for help."
|
||||
# artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
# more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
# artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
# adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
# adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
# adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
# adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
# adventurer_join_pref: "Either get together with (or recruit!) an Artisan and work with them, or check the box below to receive emails when there are new levels to test. We'll also be posting about levels to review on our networks like"
|
||||
# adventurer_forum_url: "our forum"
|
||||
# adventurer_join_suf: "so if you prefer to be notified those ways, sign up there!"
|
||||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
# scribe_attribute_1: "Skill in words is pretty much all you need. Not only grammar and spelling, but able to convey complicated ideas to others."
|
||||
# contact_us_url: "Contact us"
|
||||
# scribe_join_description: "tell us a little about yourself, your experience with programming and what sort of things you'd like to write about. We'll go from there!"
|
||||
# more_about_scribe: "Learn More About Becoming a Scribe"
|
||||
# scribe_subscribe_desc: "Get emails about article writing announcements."
|
||||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
# ambassador_attribute_1: "Communication skills. Be able to identify the problems players are having and help them solve them. Also, keep the rest of us informed about what players are saying, what they like and don't like and want more of!"
|
||||
# ambassador_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll go from there!"
|
||||
# ambassador_join_note_strong: "Note"
|
||||
# ambassador_join_note_desc: "One of our top priorities is to build multiplayer where players having difficulty solving levels can summon higher level wizards to help them. This will be a great way for ambassadors to do their thing. We'll keep you posted!"
|
||||
# more_about_ambassador: "Learn More About Becoming an Ambassador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
# counselor_summary: "None of the above roles fit what you are interested in? Do not worry, we are on the lookout for anybody who wants a hand in the development of CodeCombat! If you are interested in teaching, game development, open source management, or anything else that you think will be relevant to us, then this class is for you."
|
||||
# counselor_introduction_1: "Do you have life experience? A different perspective on things that can help us decide how to shape CodeCombat? Of all these roles, this will probably take the least time, but individually you may make the most difference. We're on the lookout for wisened sages, particularly in areas like: teaching, game development, open source project management, technical recruiting, entrepreneurship, or design."
|
||||
# counselor_introduction_2: "Or really anything that is relevant to the development of CodeCombat. If you have knowledge and want to share it to help grow this project, then this class might be for you."
|
||||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
# creative_artisans: "Our Creative Artisans:"
|
||||
# brave_adventurers: "Our Brave Adventurers:"
|
||||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
|
||||
# classes:
|
||||
# archmage_title: "Archmage"
|
||||
# archmage_title_description: "(Coder)"
|
||||
# artisan_title: "Artisan"
|
||||
# artisan_title_description: "(Level Builder)"
|
||||
# adventurer_title: "Adventurer"
|
||||
# adventurer_title_description: "(Level Playtester)"
|
||||
# scribe_title: "Scribe"
|
||||
# scribe_title_description: "(Article Editor)"
|
||||
# diplomat_title: "Diplomat"
|
||||
# diplomat_title_description: "(Translator)"
|
||||
# ambassador_title: "Ambassador"
|
||||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
||||
# multiplayer_launch:
|
||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||
# new_way: "The new way to compete with code."
|
||||
# to_battle: "To Battle, Developers!"
|
||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||
# ladder_explanation: "Choose your heroes, enchant your human or ogre armies, and climb your way over defeated fellow Wizards to reach the top of the ladders–then challenge your friends in our glorious, asynchronous multiplayer coding arenas. If you're feeling creative, you can even"
|
||||
# fork_our_arenas: "fork our arenas"
|
||||
# create_worlds: "and create your own worlds."
|
||||
# javascript_rusty: "JavaScript a bit rusty? Don't worry; there's a"
|
||||
# tutorial: "tutorial"
|
||||
# new_to_programming: ". New to programming? Hit our beginner campaign to skill up."
|
||||
# so_ready: "I Am So Ready for This"
|
||||
|
||||
# loading_error:
|
||||
# could_not_load: "Error loading from server"
|
||||
# connection_failure: "Connection failed."
|
||||
# unauthorized: "You need to be signed in. Do you have cookies disabled?"
|
||||
# forbidden: "You do not have the permissions."
|
||||
# not_found: "Not found."
|
||||
# not_allowed: "Method not allowed."
|
||||
# timeout: "Server timeout."
|
||||
# conflict: "Resource conflict."
|
||||
# bad_input: "Bad input."
|
||||
# server_error: "Server error."
|
||||
# unknown: "Unknown error."
|
||||
|
||||
# resources:
|
||||
# your_sessions: "Your Sessions"
|
||||
# level: "Level"
|
||||
# social_network_apis: "Social Network APIs"
|
||||
# facebook_status: "Facebook Status"
|
||||
# facebook_friends: "Facebook Friends"
|
||||
# facebook_friend_sessions: "Facebook Friend Sessions"
|
||||
# gplus_friends: "G+ Friends"
|
||||
# gplus_friend_sessions: "G+ Friend Sessions"
|
||||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
671
app/locale/de-CH.coffee
Normal file
671
app/locale/de-CH.coffee
Normal file
|
@ -0,0 +1,671 @@
|
|||
module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "German (Switzerland)", translation:
|
||||
common:
|
||||
loading: "Lade..."
|
||||
saving: "Spiichere..."
|
||||
sending: "Sende..."
|
||||
send: "G'sendet"
|
||||
cancel: "Abbreche"
|
||||
save: "Speichere"
|
||||
publish: "Veröffentliche"
|
||||
create: "Erstelle"
|
||||
delay_1_sec: "1 sekunde"
|
||||
delay_3_sec: "3 sekunde"
|
||||
delay_5_sec: "5 sekunde"
|
||||
# manual: "Manual"
|
||||
# fork: "Fork"
|
||||
play: "Spiele"
|
||||
retry: "nomol versuche"
|
||||
|
||||
units:
|
||||
second: "sekunde"
|
||||
seconds: "sekunde"
|
||||
minute: "minute"
|
||||
minutes: "minute"
|
||||
hour: "stund"
|
||||
hours: "stunde"
|
||||
|
||||
modal:
|
||||
close: "beende"
|
||||
okay: "Okaz"
|
||||
|
||||
not_found:
|
||||
page_not_found: "Siite nöd gfunde"
|
||||
|
||||
nav:
|
||||
# play: "Levels"
|
||||
# editor: "Editor"
|
||||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
contribute: "Spende"
|
||||
# legal: "Legal"
|
||||
about: "Über"
|
||||
contact: "Kontakt"
|
||||
twitter_follow: "Folge"
|
||||
employers: "agschtelti"
|
||||
|
||||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
# cla_agree: "I AGREE"
|
||||
|
||||
# login:
|
||||
# sign_up: "Create Account"
|
||||
# log_in: "Log In"
|
||||
# logging_in: "Logging In"
|
||||
# log_out: "Log Out"
|
||||
# recover: "recover account"
|
||||
|
||||
# recover:
|
||||
# recover_account_title: "Recover Account"
|
||||
# send_password: "Send Recovery Password"
|
||||
|
||||
# signup:
|
||||
# create_account_title: "Create Account to Save Progress"
|
||||
# description: "It's free. Just need a couple things and you'll be good to go:"
|
||||
# email_announcements: "Receive announcements by email"
|
||||
# coppa: "13+ or non-USA "
|
||||
# coppa_why: "(Why?)"
|
||||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
# no_ie: "CodeCombat does not run in Internet Explorer 9 or older. Sorry!"
|
||||
# no_mobile: "CodeCombat wasn't designed for mobile devices and may not work!"
|
||||
# play: "Play"
|
||||
# old_browser: "Uh oh, your browser is too old to run CodeCombat. Sorry!"
|
||||
# old_browser_suffix: "You can try anyway, but it probably won't work."
|
||||
# campaign: "Campaign"
|
||||
# for_beginners: "For Beginners"
|
||||
# multiplayer: "Multiplayer"
|
||||
# for_developers: "For Developers"
|
||||
|
||||
# play:
|
||||
# choose_your_level: "Choose Your Level"
|
||||
# adventurer_prefix: "You can jump to any level below, or discuss the levels on "
|
||||
# adventurer_forum: "the Adventurer forum"
|
||||
# adventurer_suffix: "."
|
||||
# campaign_beginner: "Beginner Campaign"
|
||||
# campaign_beginner_description: "... in which you learn the wizardry of programming."
|
||||
# campaign_dev: "Random Harder Levels"
|
||||
# campaign_dev_description: "... in which you learn the interface while doing something a little harder."
|
||||
# campaign_multiplayer: "Multiplayer Arenas"
|
||||
# campaign_multiplayer_description: "... in which you code head-to-head against other players."
|
||||
# campaign_player_created: "Player-Created"
|
||||
# campaign_player_created_description: "... in which you battle against the creativity of your fellow <a href=\"/contribute#artisan\">Artisan Wizards</a>."
|
||||
# level_difficulty: "Difficulty: "
|
||||
# play_as: "Play As"
|
||||
# spectate: "Spectate"
|
||||
|
||||
# contact:
|
||||
# contact_us: "Contact CodeCombat"
|
||||
# welcome: "Good to hear from you! Use this form to send us email. "
|
||||
# contribute_prefix: "If you're interested in contributing, check out our "
|
||||
# contribute_page: "contribute page"
|
||||
# contribute_suffix: "!"
|
||||
# forum_prefix: "For anything public, please try "
|
||||
# forum_page: "our forum"
|
||||
# forum_suffix: " instead."
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate"
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 18% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns."
|
||||
|
||||
diplomat_suggestion:
|
||||
# title: "Help translate CodeCombat!"
|
||||
# sub_heading: "We need your language skills."
|
||||
pitch_body: "We develop CodeCombat in English, but we already have players all over the world. Many of them want to play in Swiss German but don't speak English, so if you can speak both, please consider signing up to be a Diplomat and help translate both the CodeCombat website and all the levels into Swiss German."
|
||||
missing_translations: "Until we can translate everything into Swiss German, you'll see generic German or English when Swiss German isn't available."
|
||||
# learn_more: "Learn more about being a Diplomat"
|
||||
# subscribe_as_diplomat: "Subscribe as a Diplomat"
|
||||
|
||||
# wizard_settings:
|
||||
# title: "Wizard Settings"
|
||||
# customize_avatar: "Customize Your Avatar"
|
||||
# active: "Active"
|
||||
# color: "Color"
|
||||
# group: "Group"
|
||||
# clothes: "Clothes"
|
||||
# trim: "Trim"
|
||||
# cloud: "Cloud"
|
||||
# team: "Team"
|
||||
# spell: "Spell"
|
||||
# boots: "Boots"
|
||||
# hue: "Hue"
|
||||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
# not_logged_in: "Log in or create an account to change your settings."
|
||||
# autosave: "Changes Save Automatically"
|
||||
# me_tab: "Me"
|
||||
# picture_tab: "Picture"
|
||||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_announcements: "Announcements"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
# contribute_prefix: "We're looking for people to join our party! Check out the "
|
||||
# contribute_page: "contribute page"
|
||||
# contribute_suffix: " to find out more."
|
||||
# email_toggle: "Toggle All"
|
||||
# error_saving: "Error Saving"
|
||||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# job_profile: "Job Profile"
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
|
||||
# account_profile:
|
||||
# edit_settings: "Edit Settings"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# approved: "Approved"
|
||||
# not_approved: "Not Approved"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# work_experience: "Work Experience"
|
||||
# education: "Education"
|
||||
# our_notes: "Our Notes"
|
||||
# projects: "Projects"
|
||||
|
||||
# employers:
|
||||
# want_to_hire_our_players: "Want to hire expert CodeCombat players?"
|
||||
# contact_george: "Contact George to see our candidates"
|
||||
# candidates_count_prefix: "We currently have "
|
||||
# candidates_count_many: "many"
|
||||
# candidates_count_suffix: "highly skilled and vetted developers looking for work."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
|
||||
# play_level:
|
||||
# level_load_error: "Level could not be loaded: "
|
||||
# done: "Done"
|
||||
# grid: "Grid"
|
||||
# customize_wizard: "Customize Wizard"
|
||||
# home: "Home"
|
||||
# guide: "Guide"
|
||||
# multiplayer: "Multiplayer"
|
||||
# restart: "Restart"
|
||||
# goals: "Goals"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# reload_title: "Reload All Code?"
|
||||
# reload_really: "Are you sure you want to reload this level back to the beginning?"
|
||||
# reload_confirm: "Reload All"
|
||||
# victory_title_prefix: ""
|
||||
# victory_title_suffix: " Complete"
|
||||
# victory_sign_up: "Sign Up to Save Progress"
|
||||
# victory_sign_up_poke: "Want to save your code? Create a free account!"
|
||||
# victory_rate_the_level: "Rate the level: "
|
||||
# victory_rank_my_game: "Rank My Game"
|
||||
# victory_ranking_game: "Submitting..."
|
||||
# victory_return_to_ladder: "Return to Ladder"
|
||||
# victory_play_next_level: "Play Next Level"
|
||||
# victory_go_home: "Go Home"
|
||||
# victory_review: "Tell us more!"
|
||||
# victory_hour_of_code_done: "Are You Done?"
|
||||
# victory_hour_of_code_done_yes: "Yes, I'm finished with my Hour of Code™!"
|
||||
# multiplayer_title: "Multiplayer Settings"
|
||||
# multiplayer_link_description: "Give this link to anyone to have them join you."
|
||||
# multiplayer_hint_label: "Hint:"
|
||||
# multiplayer_hint: " Click the link to select all, then press ⌘-C or Ctrl-C to copy the link."
|
||||
# multiplayer_coming_soon: "More multiplayer features to come!"
|
||||
# guide_title: "Guide"
|
||||
# tome_minion_spells: "Your Minions' Spells"
|
||||
# tome_read_only_spells: "Read-Only Spells"
|
||||
# tome_other_units: "Other Units"
|
||||
# tome_cast_button_castable: "Cast Spell"
|
||||
# tome_cast_button_casting: "Casting"
|
||||
# tome_cast_button_cast: "Spell Cast"
|
||||
# tome_autocast_delay: "Autocast Delay"
|
||||
# tome_select_spell: "Select a Spell"
|
||||
# tome_select_a_thang: "Select Someone for "
|
||||
# tome_available_spells: "Available Spells"
|
||||
# hud_continue: "Continue (shift+space)"
|
||||
# spell_saved: "Spell Saved"
|
||||
# skip_tutorial: "Skip (esc)"
|
||||
# editor_config: "Editor Config"
|
||||
# editor_config_title: "Editor Configuration"
|
||||
# editor_config_language_label: "Programming Language"
|
||||
# editor_config_language_description: "Define the programming language you want to code in."
|
||||
# editor_config_keybindings_label: "Key Bindings"
|
||||
# editor_config_keybindings_default: "Default (Ace)"
|
||||
# editor_config_keybindings_description: "Adds additional shortcuts known from the common editors."
|
||||
# editor_config_invisibles_label: "Show Invisibles"
|
||||
# editor_config_invisibles_description: "Displays invisibles such as spaces or tabs."
|
||||
# editor_config_indentguides_label: "Show Indent Guides"
|
||||
# editor_config_indentguides_description: "Displays vertical lines to see indentation better."
|
||||
# editor_config_behaviors_label: "Smart Behaviors"
|
||||
# editor_config_behaviors_description: "Autocompletes brackets, braces, and quotes."
|
||||
# loading_ready: "Ready!"
|
||||
# tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
|
||||
# tip_toggle_play: "Toggle play/paused with Ctrl+P."
|
||||
# tip_scrub_shortcut: "Ctrl+[ and Ctrl+] rewind and fast-forward."
|
||||
# tip_guide_exists: "Click the guide at the top of the page for useful info."
|
||||
# tip_open_source: "CodeCombat is 100% open source!"
|
||||
# tip_beta_launch: "CodeCombat launched its beta in October, 2013."
|
||||
# tip_js_beginning: "JavaScript is just the beginning."
|
||||
# tip_autocast_setting: "Adjust autocast settings by clicking the gear on the cast button."
|
||||
# think_solution: "Think of the solution, not the problem."
|
||||
# tip_theory_practice: "In theory, there is no difference between theory and practice. But in practice, there is. - Yogi Berra"
|
||||
# tip_error_free: "There are two ways to write error-free programs; only the third one works. - Alan Perlis"
|
||||
# tip_debugging_program: "If debugging is the process of removing bugs, then programming must be the process of putting them in. - Edsger W. Dijkstra"
|
||||
# tip_forums: "Head over to the forums and tell us what you think!"
|
||||
# tip_baby_coders: "In the future, even babies will be Archmages."
|
||||
# tip_morale_improves: "Loading will continue until morale improves."
|
||||
# tip_all_species: "We believe in equal opportunities to learn programming for all species."
|
||||
# tip_reticulating: "Reticulating spines."
|
||||
# tip_harry: "Yer a Wizard, "
|
||||
# tip_great_responsibility: "With great coding skill comes great debug responsibility."
|
||||
# tip_munchkin: "If you don't eat your vegetables, a munchkin will come after you while you're asleep."
|
||||
# tip_binary: "There are only 10 types of people in the world: those who understand binary, and those who don't."
|
||||
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||
# tip_no_try: "Do. Or do not. There is no try. - Yoda"
|
||||
# tip_patience: "Patience you must have, young Padawan. - Yoda"
|
||||
# tip_documented_bug: "A documented bug is not a bug; it is a feature."
|
||||
# tip_impossible: "It always seems impossible until it's done. - Nelson Mandela"
|
||||
# tip_talk_is_cheap: "Talk is cheap. Show me the code. - Linus Torvalds"
|
||||
# tip_first_language: "The most disastrous thing that you can ever learn is your first programming language. - Alan Kay"
|
||||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
# u_title: "User List"
|
||||
# lg_title: "Latest Games"
|
||||
# clas: "CLAs"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
# main_description: "Build your own levels, campaigns, units and educational content. We provide all the tools you need!"
|
||||
# article_title: "Article Editor"
|
||||
# article_description: "Write articles that give players overviews of programming concepts which can be used across a variety of levels and campaigns."
|
||||
# thang_title: "Thang Editor"
|
||||
# thang_description: "Build units, defining their default logic, graphics and audio. Currently only supports importing Flash exported vector graphics."
|
||||
# level_title: "Level Editor"
|
||||
# level_description: "Includes the tools for scripting, uploading audio, and constructing custom logic to create all sorts of levels. Everything we use ourselves!"
|
||||
# security_notice: "Many major features in these editors are not currently enabled by default. As we improve the security of these systems, they will be made generally available. If you'd like to use these features sooner, "
|
||||
# contact_us: "contact us!"
|
||||
# hipchat_prefix: "You can also find us in our"
|
||||
# hipchat_url: "HipChat room."
|
||||
# back: "Back"
|
||||
# revert: "Revert"
|
||||
# revert_models: "Revert Models"
|
||||
# fork_title: "Fork New Version"
|
||||
# fork_creating: "Creating Fork..."
|
||||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
# level_tab_settings: "Settings"
|
||||
# level_tab_components: "Components"
|
||||
# level_tab_systems: "Systems"
|
||||
# level_tab_thangs_title: "Current Thangs"
|
||||
# level_tab_thangs_all: "All"
|
||||
# level_tab_thangs_conditions: "Starting Conditions"
|
||||
# level_tab_thangs_add: "Add Thangs"
|
||||
# delete: "Delete"
|
||||
# duplicate: "Duplicate"
|
||||
# level_settings_title: "Settings"
|
||||
# level_component_tab_title: "Current Components"
|
||||
# level_component_btn_new: "Create New Component"
|
||||
# level_systems_tab_title: "Current Systems"
|
||||
# level_systems_btn_new: "Create New System"
|
||||
# level_systems_btn_add: "Add System"
|
||||
# level_components_title: "Back to All Thangs"
|
||||
# level_components_type: "Type"
|
||||
# level_component_edit_title: "Edit Component"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
# level_component_settings: "Settings"
|
||||
# level_system_edit_title: "Edit System"
|
||||
# create_system_title: "Create New System"
|
||||
# new_component_title: "Create New Component"
|
||||
# new_component_field_system: "System"
|
||||
# new_article_title: "Create a New Article"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
# new_level_title: "Create a New Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
# edit_article_title: "Edit Article"
|
||||
|
||||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
# version_history: "Version History"
|
||||
# version_history_for: "Version History for: "
|
||||
# result: "Result"
|
||||
# results: "Results"
|
||||
# description: "Description"
|
||||
# or: "or"
|
||||
# subject: "Subject"
|
||||
# email: "Email"
|
||||
# password: "Password"
|
||||
# message: "Message"
|
||||
# code: "Code"
|
||||
# ladder: "Ladder"
|
||||
# when: "When"
|
||||
# opponent: "Opponent"
|
||||
# rank: "Rank"
|
||||
# score: "Score"
|
||||
# win: "Win"
|
||||
# loss: "Loss"
|
||||
# tie: "Tie"
|
||||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
# why_codecombat: "Why CodeCombat?"
|
||||
# who_description_prefix: "together started CodeCombat in 2013. We also created "
|
||||
# who_description_suffix: "in 2008, growing it to the #1 web and iOS application for learning to write Chinese and Japanese characters."
|
||||
# who_description_ending: "Now it's time to teach people to write code."
|
||||
# why_paragraph_1: "When making Skritter, George didn't know how to program and was constantly frustrated by his inability to implement his ideas. Afterwards, he tried learning, but the lessons were too slow. His housemate, wanting to reskill and stop teaching, tried Codecademy, but \"got bored.\" Each week another friend started Codecademy, then dropped off. We realized it was the same problem we'd solved with Skritter: people learning a skill via slow, intensive lessons when what they need is fast, extensive practice. We know how to fix that."
|
||||
# why_paragraph_2: "Need to learn to code? You don't need lessons. You need to write a lot of code and have a great time doing it."
|
||||
# why_paragraph_3_prefix: "That's what programming is about. It's gotta be fun. Not fun like"
|
||||
# why_paragraph_3_italic: "yay a badge"
|
||||
# why_paragraph_3_center: "but fun like"
|
||||
# why_paragraph_3_italic_caps: "NO MOM I HAVE TO FINISH THE LEVEL!"
|
||||
# why_paragraph_3_suffix: "That's why CodeCombat is a multiplayer game, not a gamified lesson course. We won't stop until you can't stop--but this time, that's a good thing."
|
||||
# why_paragraph_4: "If you're going to get addicted to some game, get addicted to this one and become one of the wizards of the tech age."
|
||||
# why_ending: "And hey, it's free. "
|
||||
# why_ending_url: "Start wizarding now!"
|
||||
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
||||
# scott_description: "Programmer extraordinaire, software architect, kitchen wizard, and master of finances. Scott is the reasonable one."
|
||||
# nick_description: "Programming wizard, eccentric motivation mage, and upside-down experimenter. Nick can do anything and chooses to build CodeCombat."
|
||||
# jeremy_description: "Customer support mage, usability tester, and community organizer; you've probably already spoken with Jeremy."
|
||||
# michael_description: "Programmer, sys-admin, and undergrad technical wunderkind, Michael is the person keeping our servers online."
|
||||
# glen_description: "Programmer and passionate game developer, with the motivation to make this world a better place, by developing things that matter. The word impossible can't be found in his dictionary. Learning new skills is his joy!"
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
# opensource_intro: "CodeCombat is free to play and completely open source."
|
||||
# opensource_description_prefix: "Check out "
|
||||
# github_url: "our GitHub"
|
||||
# opensource_description_center: "and help out if you like! CodeCombat is built on dozens of open source projects, and we love them. See "
|
||||
# archmage_wiki_url: "our Archmage wiki"
|
||||
# opensource_description_suffix: "for a list of the software that makes this game possible."
|
||||
# practices_title: "Respectful Best Practices"
|
||||
# practices_description: "These are our promises to you, the player, in slightly less legalese."
|
||||
# privacy_title: "Privacy"
|
||||
# privacy_description: "We will not sell any of your personal information. We intend to make money through recruitment eventually, but rest assured we will not distribute your personal information to interested companies without your explicit consent."
|
||||
# security_title: "Security"
|
||||
# security_description: "We strive to keep your personal information safe. As an open source project, our site is freely open to anyone to review and improve our security systems."
|
||||
# email_title: "Email"
|
||||
# email_description_prefix: "We will not inundate you with spam. Through"
|
||||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "Currently, CodeCombat is 100% free! One of our main goals is to keep it that way, so that as many people can play as possible, regardless of place in life. If the sky darkens, we might have to charge subscriptions or for some content, but we'd rather not. With any luck, we'll be able to sustain the company with:"
|
||||
# recruitment_title: "Recruitment"
|
||||
# recruitment_description_prefix: "Here on CodeCombat, you're going to become a powerful wizard–not just in the game, but also in real life."
|
||||
# url_hire_programmers: "No one can hire programmers fast enough"
|
||||
# recruitment_description_suffix: "so once you've sharpened your skills and if you agree, we will demo your best coding accomplishments to the thousands of employers who are drooling for the chance to hire you. They pay us a little, they pay you"
|
||||
# recruitment_description_italic: "a lot"
|
||||
# recruitment_description_ending: "the site remains free and everybody's happy. That's the plan."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
# cla_url: "CLA"
|
||||
# contributor_description_suffix: "to which you should agree before contributing."
|
||||
# code_title: "Code - MIT"
|
||||
# code_description_prefix: "All code owned by CodeCombat or hosted on codecombat.com, both in the GitHub repository or in the codecombat.com database, is licensed under the"
|
||||
# mit_license_url: "MIT license"
|
||||
# code_description_suffix: "This includes all code in Systems and Components that are made available by CodeCombat for the purpose of creating levels."
|
||||
# art_title: "Art/Music - Creative Commons "
|
||||
# art_description_prefix: "All common content is available under the"
|
||||
# cc_license_url: "Creative Commons Attribution 4.0 International License"
|
||||
# art_description_suffix: "Common content is anything made generally available by CodeCombat for the purpose of creating Levels. This includes:"
|
||||
# art_music: "Music"
|
||||
# art_sound: "Sound"
|
||||
# art_artwork: "Artwork"
|
||||
# art_sprites: "Sprites"
|
||||
# art_other: "Any and all other non-code creative works that are made available when creating Levels."
|
||||
# art_access: "Currently there is no universal, easy system for fetching these assets. In general, fetch them from the URLs as used by the site, contact us for assistance, or help us in extending the site to make these assets more easily accessible."
|
||||
# art_paragraph_1: "For attribution, please name and link to codecombat.com near where the source is used or where appropriate for the medium. For example:"
|
||||
# use_list_1: "If used in a movie or another game, include codecombat.com in the credits."
|
||||
# use_list_2: "If used on a website, include a link near the usage, for example underneath an image, or in a general attributions page where you might also mention other Creative Commons works and open source software being used on the site. Something that's already clearly referencing CodeCombat, such as a blog post mentioning CodeCombat, does not need some separate attribution."
|
||||
# art_paragraph_2: "If the content being used is created not by CodeCombat but instead by a user of codecombat.com, attribute them instead, and follow attribution directions provided in that resource's description if there are any."
|
||||
# rights_title: "Rights Reserved"
|
||||
# rights_desc: "All rights are reserved for Levels themselves. This includes"
|
||||
# rights_scripts: "Scripts"
|
||||
# rights_unit: "Unit configuration"
|
||||
# rights_description: "Description"
|
||||
# rights_writings: "Writings"
|
||||
# rights_media: "Media (sounds, music) and any other creative content made specifically for that Level and not made generally available when creating Levels."
|
||||
# rights_clarification: "To clarify, anything that is made available in the Level Editor for the purpose of making levels is under CC, whereas the content created with the Level Editor or uploaded in the course of creation of Levels is not."
|
||||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
|
||||
# contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
# introduction_desc_pref: "We want to be where programmers of all stripes come to learn and play together, introduce others to the wonderful world of coding, and reflect the best parts of the community. We can't and don't want to do that alone; what makes projects like GitHub, Stack Overflow and Linux great are the people who use them and build on them. To that end, "
|
||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
# introduction_desc_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours."
|
||||
# introduction_desc_ending: "We hope you'll join our party!"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
# archmage_attribute_2: "Some experience in programming and personal initiative. We'll help you get oriented, but we can't spend much time training you."
|
||||
# how_to_join: "How To Join"
|
||||
# join_desc_1: "Anyone can help out! Just check out our "
|
||||
# join_desc_2: "to get started, and check the box below to mark yourself as a brave Archmage and get the latest news by email. Want to chat about what to do or how to get more deeply involved? "
|
||||
# join_desc_3: ", or find us in our "
|
||||
# join_desc_4: "and we'll go from there!"
|
||||
# join_url_email: "Email us"
|
||||
# join_url_hipchat: "public HipChat room"
|
||||
# more_about_archmage: "Learn More About Becoming an Archmage"
|
||||
# archmage_subscribe_desc: "Get emails on new coding opportunities and announcements."
|
||||
# artisan_summary_pref: "Want to design levels and expand CodeCombat's arsenal? People are playing through our content at a pace faster than we can build! Right now, our level editor is barebone, so be wary. Making levels will be a little challenging and buggy. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_summary_suf: ", then this class is for you."
|
||||
# artisan_introduction_pref: "We must construct additional levels! People be clamoring for more content, and we can only build so many ourselves. Right now your workstation is level one; our level editor is barely usable even by its creators, so be wary. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_introduction_suf: ", then this class might be for you."
|
||||
# artisan_attribute_1: "Any experience in building content like this would be nice, such as using Blizzard's level editors. But not required!"
|
||||
# artisan_attribute_2: "A hankering to do a whole lot of testing and iteration. To make good levels, you need to take it to others and watch them play it, and be prepared to find a lot of things to fix."
|
||||
# artisan_attribute_3: "For the time being, endurance en par with an Adventurer. Our Level Editor is super preliminary and frustrating to use. You have been warned!"
|
||||
# artisan_join_desc: "Use the Level Editor in these steps, give or take:"
|
||||
# artisan_join_step1: "Read the documentation."
|
||||
# artisan_join_step2: "Create a new level and explore existing levels."
|
||||
# artisan_join_step3: "Find us in our public HipChat room for help."
|
||||
# artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
# more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
# artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
# adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
# adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
# adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
# adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
# adventurer_join_pref: "Either get together with (or recruit!) an Artisan and work with them, or check the box below to receive emails when there are new levels to test. We'll also be posting about levels to review on our networks like"
|
||||
# adventurer_forum_url: "our forum"
|
||||
# adventurer_join_suf: "so if you prefer to be notified those ways, sign up there!"
|
||||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
# scribe_attribute_1: "Skill in words is pretty much all you need. Not only grammar and spelling, but able to convey complicated ideas to others."
|
||||
# contact_us_url: "Contact us"
|
||||
# scribe_join_description: "tell us a little about yourself, your experience with programming and what sort of things you'd like to write about. We'll go from there!"
|
||||
# more_about_scribe: "Learn More About Becoming a Scribe"
|
||||
# scribe_subscribe_desc: "Get emails about article writing announcements."
|
||||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
# ambassador_attribute_1: "Communication skills. Be able to identify the problems players are having and help them solve them. Also, keep the rest of us informed about what players are saying, what they like and don't like and want more of!"
|
||||
# ambassador_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll go from there!"
|
||||
# ambassador_join_note_strong: "Note"
|
||||
# ambassador_join_note_desc: "One of our top priorities is to build multiplayer where players having difficulty solving levels can summon higher level wizards to help them. This will be a great way for ambassadors to do their thing. We'll keep you posted!"
|
||||
# more_about_ambassador: "Learn More About Becoming an Ambassador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
# counselor_summary: "None of the above roles fit what you are interested in? Do not worry, we are on the lookout for anybody who wants a hand in the development of CodeCombat! If you are interested in teaching, game development, open source management, or anything else that you think will be relevant to us, then this class is for you."
|
||||
# counselor_introduction_1: "Do you have life experience? A different perspective on things that can help us decide how to shape CodeCombat? Of all these roles, this will probably take the least time, but individually you may make the most difference. We're on the lookout for wisened sages, particularly in areas like: teaching, game development, open source project management, technical recruiting, entrepreneurship, or design."
|
||||
# counselor_introduction_2: "Or really anything that is relevant to the development of CodeCombat. If you have knowledge and want to share it to help grow this project, then this class might be for you."
|
||||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
# creative_artisans: "Our Creative Artisans:"
|
||||
# brave_adventurers: "Our Brave Adventurers:"
|
||||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
|
||||
# classes:
|
||||
# archmage_title: "Archmage"
|
||||
# archmage_title_description: "(Coder)"
|
||||
# artisan_title: "Artisan"
|
||||
# artisan_title_description: "(Level Builder)"
|
||||
# adventurer_title: "Adventurer"
|
||||
# adventurer_title_description: "(Level Playtester)"
|
||||
# scribe_title: "Scribe"
|
||||
# scribe_title_description: "(Article Editor)"
|
||||
# diplomat_title: "Diplomat"
|
||||
# diplomat_title_description: "(Translator)"
|
||||
# ambassador_title: "Ambassador"
|
||||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
# my_matches: "My Matches"
|
||||
# simulate: "Simulate"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
# choose_opponent: "Choose an Opponent"
|
||||
# tutorial_play: "Play Tutorial"
|
||||
# tutorial_recommended: "Recommended if you've never played before"
|
||||
# tutorial_skip: "Skip Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
# tutorial_play_first: "Play the Tutorial first."
|
||||
# simple_ai: "Simple AI"
|
||||
# warmup: "Warmup"
|
||||
# vs: "VS"
|
||||
|
||||
# multiplayer_launch:
|
||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||
# new_way: "The new way to compete with code."
|
||||
# to_battle: "To Battle, Developers!"
|
||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||
# ladder_explanation: "Choose your heroes, enchant your human or ogre armies, and climb your way over defeated fellow Wizards to reach the top of the ladders–then challenge your friends in our glorious, asynchronous multiplayer coding arenas. If you're feeling creative, you can even"
|
||||
# fork_our_arenas: "fork our arenas"
|
||||
# create_worlds: "and create your own worlds."
|
||||
# javascript_rusty: "JavaScript a bit rusty? Don't worry; there's a"
|
||||
# tutorial: "tutorial"
|
||||
# new_to_programming: ". New to programming? Hit our beginner campaign to skill up."
|
||||
# so_ready: "I Am So Ready for This"
|
||||
|
||||
# loading_error:
|
||||
# could_not_load: "Error loading from server"
|
||||
# connection_failure: "Connection failed."
|
||||
# unauthorized: "You need to be signed in. Do you have cookies disabled?"
|
||||
# forbidden: "You do not have the permissions."
|
||||
# not_found: "Not found."
|
||||
# not_allowed: "Method not allowed."
|
||||
# timeout: "Server timeout."
|
||||
# conflict: "Resource conflict."
|
||||
# bad_input: "Bad input."
|
||||
# server_error: "Server error."
|
||||
# unknown: "Unknown error."
|
||||
|
||||
# resources:
|
||||
# your_sessions: "Your Sessions"
|
||||
# level: "Level"
|
||||
# social_network_apis: "Social Network APIs"
|
||||
# facebook_status: "Facebook Status"
|
||||
# facebook_friends: "Facebook Friends"
|
||||
# facebook_friend_sessions: "Facebook Friend Sessions"
|
||||
# gplus_friends: "G+ Friends"
|
||||
# gplus_friend_sessions: "G+ Friend Sessions"
|
||||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
671
app/locale/de-DE.coffee
Normal file
671
app/locale/de-DE.coffee
Normal file
|
@ -0,0 +1,671 @@
|
|||
module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription: "German (Germany)", translation:
|
||||
common:
|
||||
loading: "Lade..."
|
||||
saving: "Speichere..."
|
||||
sending: "Übertrage..."
|
||||
# send: "Send"
|
||||
cancel: "Abbrechen"
|
||||
save: "Speichern"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 Sekunde"
|
||||
delay_3_sec: "3 Sekunden"
|
||||
delay_5_sec: "5 Sekunden"
|
||||
manual: "Manuell"
|
||||
# fork: "Fork"
|
||||
play: "Abspielen"
|
||||
# retry: "Retry"
|
||||
|
||||
units:
|
||||
second: "Sekunde"
|
||||
seconds: "Sekunden"
|
||||
minute: "Minute"
|
||||
minutes: "Minuten"
|
||||
hour: "Stunde"
|
||||
hours: "Stunden"
|
||||
|
||||
modal:
|
||||
close: "Schließen"
|
||||
okay: "Okay"
|
||||
|
||||
not_found:
|
||||
page_not_found: "Seite nicht gefunden"
|
||||
|
||||
nav:
|
||||
play: "Spielen"
|
||||
editor: "Editor"
|
||||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
admin: "Administration"
|
||||
home: "Home"
|
||||
contribute: "Helfen"
|
||||
legal: "Rechtliches"
|
||||
about: "Über"
|
||||
contact: "Kontakt"
|
||||
twitter_follow: "Twitter"
|
||||
employers: "Mitarbeiter"
|
||||
|
||||
versions:
|
||||
save_version_title: "Neue Version speichern"
|
||||
new_major_version: "Neue Hauptversion"
|
||||
cla_prefix: "Damit Änderungen gespeichert werden können, musst du unsere Lizenzbedingungen ("
|
||||
cla_url: "CLA"
|
||||
cla_suffix: ") akzeptieren."
|
||||
cla_agree: "Ich stimme zu"
|
||||
|
||||
login:
|
||||
sign_up: "Registrieren"
|
||||
log_in: "Einloggen"
|
||||
# logging_in: "Logging In"
|
||||
log_out: "Ausloggen"
|
||||
recover: "Account wiederherstellen"
|
||||
|
||||
recover:
|
||||
recover_account_title: "Account Wiederherstellung"
|
||||
send_password: "Wiederherstellungskennwort senden"
|
||||
|
||||
signup:
|
||||
create_account_title: "Account anlegen, um Fortschritt zu speichern"
|
||||
description: "Es ist kostenlos. Nur noch ein paar Dinge, dann kannst Du loslegen."
|
||||
email_announcements: "Erhalte Benachrichtigungen per Email"
|
||||
coppa: "Älter als 13 oder nicht aus den USA"
|
||||
coppa_why: "(Warum?)"
|
||||
creating: "Erzeuge Account..."
|
||||
sign_up: "Neuen Account anlegen"
|
||||
log_in: "mit Passwort einloggen"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lerne spielend JavaScript"
|
||||
no_ie: "CodeCombat läuft nicht im IE8 oder älteren Browsern. Tut uns Leid!"
|
||||
no_mobile: "CodeCombat ist nicht für Mobilgeräte optimiert und funktioniert möglicherweise nicht."
|
||||
play: "Spielen"
|
||||
old_browser: "Oh! Dein Browser ist zu alt für CodeCombat. Sorry!"
|
||||
old_browser_suffix: "Du kannst es trotzdem versuchen, aber es wird wahrscheinlich nicht funktionieren."
|
||||
campaign: "Kampagne"
|
||||
for_beginners: "Für Anfänger"
|
||||
multiplayer: "Mehrspieler"
|
||||
for_developers: "Für Entwickler"
|
||||
|
||||
play:
|
||||
choose_your_level: "Wähle dein Level"
|
||||
adventurer_prefix: "Du kannst zu jedem Level springen oder diskutiere die Level "
|
||||
adventurer_forum: "im Abenteurerforum"
|
||||
adventurer_suffix: "."
|
||||
campaign_beginner: "Anfängerkampagne"
|
||||
campaign_beginner_description: "... in der Du die Zauberei der Programmierung lernst."
|
||||
campaign_dev: "Beliebiges schwierigeres Level"
|
||||
campaign_dev_description: "... in welchem Du die Bedienung erlernst, indem Du etwas schwierigeres machst."
|
||||
campaign_multiplayer: "Multiplayerarena"
|
||||
campaign_multiplayer_description: "... in der Du Kopf-an-Kopf gegen andere Spieler programmierst."
|
||||
campaign_player_created: "Von Spielern erstellt"
|
||||
campaign_player_created_description: "... in welchem Du gegen die Kreativität eines <a href=\"/contribute#artisan\">Artisan Zauberers</a> kämpfst."
|
||||
level_difficulty: "Schwierigkeit: "
|
||||
play_as: "Spiele als "
|
||||
spectate: "Zuschauen"
|
||||
|
||||
contact:
|
||||
contact_us: "Kontaktiere CodeCombat"
|
||||
welcome: "Schön von Dir zu hören! Benutze dieses Formular um uns eine Email zu schicken."
|
||||
contribute_prefix: "Wenn Du Interesse hast, uns zu unterstützen dann sieh dir die "
|
||||
contribute_page: "Unterstützer Seite"
|
||||
contribute_suffix: " an!"
|
||||
forum_prefix: "Für alle öffentlichen Themen, benutze stattdessen "
|
||||
forum_page: "unser Forum"
|
||||
forum_suffix: "."
|
||||
send: "Sende Feedback"
|
||||
# contact_candidate: "Contact Candidate"
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 18% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns."
|
||||
|
||||
diplomat_suggestion:
|
||||
title: "Hilf CodeCombat zu übersetzen!"
|
||||
sub_heading: "Wir brauchen Deine Sprachfähigkeiten."
|
||||
pitch_body: "Wir entwickeln CodeCombat in Englisch, aber wir haben Spieler in der ganzen Welt. Viele von ihnen wollen in Deutsch spielen, sprechen aber kein Englisch. Wenn Du also beide Sprachen beherrscht, melde Dich an um ein Diplomat zu werden und hilf die Website und die Levels zu Deutsch zu übersetzen."
|
||||
missing_translations: "Solange wir nicht alles ins Deutsche übesetzt haben, siehst Du die englische Übersetzung, wo Deutsch leider noch nicht zur Verfügung steht."
|
||||
learn_more: "Finde heraus, wie Du ein Diplomat werden kannst"
|
||||
subscribe_as_diplomat: "Schreibe dich als Diplomat ein"
|
||||
|
||||
wizard_settings:
|
||||
title: "Zauberer Einstellungen"
|
||||
customize_avatar: "Individualisiere deinen Avatar"
|
||||
# active: "Active"
|
||||
# color: "Color"
|
||||
# group: "Group"
|
||||
clothes: "Kleidung"
|
||||
trim: "Applikationen"
|
||||
cloud: "Wolke"
|
||||
# team: "Team"
|
||||
spell: "Zauber"
|
||||
boots: "Stiefel"
|
||||
hue: "Farbton"
|
||||
saturation: "Sättigung"
|
||||
lightness: "Helligkeit"
|
||||
|
||||
account_settings:
|
||||
title: "Accounteinstellungen"
|
||||
not_logged_in: "Logge Dich ein oder lege einen Account an, um deine Einstellungen ändern zu können."
|
||||
autosave: "Sichere Änderungen automatisch"
|
||||
me_tab: "Ich"
|
||||
picture_tab: "Bild"
|
||||
wizard_tab: "Zauberer"
|
||||
password_tab: "Passwort"
|
||||
emails_tab: "Emails"
|
||||
admin: "Admin"
|
||||
wizard_color: "Die Farbe der Kleidung des Zauberers"
|
||||
new_password: "Neues Passwort"
|
||||
new_password_verify: "Passwort verifizieren"
|
||||
email_subscriptions: "Email Abonnements"
|
||||
email_announcements: "Ankündigungen"
|
||||
email_notifications: "Benachrichtigungen"
|
||||
email_notifications_description: "Erhalte regelmäßig Benachrichtigungen zu deinem Account."
|
||||
email_announcements_description: "Erhalte regelmäßig Ankündigungen zu deinem Account."
|
||||
contributor_emails: "Unterstützer Email"
|
||||
contribute_prefix: "Wir suchen nach Leuten, die mitmachen! Schau dir die"
|
||||
contribute_page: "Unterstützer Seite"
|
||||
contribute_suffix: " an um mehr zu erfahren."
|
||||
email_toggle: "Alles wählen"
|
||||
error_saving: "Fehler beim Speichern"
|
||||
saved: "Änderungen gespeichert"
|
||||
password_mismatch: "Passwörter stimmen nicht überein."
|
||||
# job_profile: "Job Profile"
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Einstellungen ändern"
|
||||
profile_for_prefix: "Profil von "
|
||||
profile_for_suffix: ""
|
||||
# approved: "Approved"
|
||||
# not_approved: "Not Approved"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# work_experience: "Work Experience"
|
||||
# education: "Education"
|
||||
# our_notes: "Our Notes"
|
||||
# projects: "Projects"
|
||||
|
||||
# employers:
|
||||
# want_to_hire_our_players: "Want to hire expert CodeCombat players?"
|
||||
# contact_george: "Contact George to see our candidates"
|
||||
# candidates_count_prefix: "We currently have "
|
||||
# candidates_count_many: "many"
|
||||
# candidates_count_suffix: "highly skilled and vetted developers looking for work."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
|
||||
play_level:
|
||||
level_load_error: "Level konnte nicht geladen werden: "
|
||||
done: "Fertig"
|
||||
grid: "Raster"
|
||||
customize_wizard: "Bearbeite den Zauberer"
|
||||
home: "Startseite"
|
||||
guide: "Hilfe"
|
||||
multiplayer: "Multiplayer"
|
||||
restart: "Neustart"
|
||||
goals: "Ziele"
|
||||
action_timeline: "Aktionszeitstrahl"
|
||||
click_to_select: "Klicke auf eine Einheit, um sie auszuwählen."
|
||||
reload_title: "Gesamten Code neu laden?"
|
||||
reload_really: "Bist Du sicher, dass Du das Level neu beginnen willst?"
|
||||
reload_confirm: "Alles neu laden"
|
||||
victory_title_prefix: ""
|
||||
victory_title_suffix: " Abgeschlossen"
|
||||
victory_sign_up: "Melde Dich an, um Fortschritte zu speichern"
|
||||
victory_sign_up_poke: "Möchtest Du Neuigkeiten per Mail erhalten? Erstelle einen kostenlosen Account und wir halten Dich auf dem Laufenden."
|
||||
victory_rate_the_level: "Bewerte das Level: "
|
||||
victory_rank_my_game: "Werte mein Spiel"
|
||||
victory_ranking_game: "Einreichen..."
|
||||
victory_return_to_ladder: "Zurück zur Rangliste"
|
||||
victory_play_next_level: "Spiel das nächste Level"
|
||||
victory_go_home: "Geh auf die Startseite"
|
||||
victory_review: "Erzähl uns davon!"
|
||||
victory_hour_of_code_done: "Bist Du fertig?"
|
||||
victory_hour_of_code_done_yes: "Ja, ich bin mit meiner Code-Stunde fertig!"
|
||||
multiplayer_title: "Multiplayer Einstellungen"
|
||||
multiplayer_link_description: "Gib diesen Link jedem, der mitmachen will."
|
||||
multiplayer_hint_label: "Hinweis:"
|
||||
multiplayer_hint: " Klick den Link, um alles auszuwählen, dann drück ⌘-C oder Strg-C um den Link zu kopieren."
|
||||
multiplayer_coming_soon: "Mehr Multiplayerfeatures werden kommen!"
|
||||
guide_title: "Anleitung"
|
||||
tome_minion_spells: "Die Zaubersprüche Deiner Knechte"
|
||||
tome_read_only_spells: "Nur-lesen Zauberspüche"
|
||||
tome_other_units: "Andere Einheiten"
|
||||
tome_cast_button_castable: "Führe aus"
|
||||
tome_cast_button_casting: "Ausführen"
|
||||
tome_cast_button_cast: "Zauberspuch ausführen"
|
||||
tome_autocast_delay: "Verzögerung der automatischen Ausführung"
|
||||
tome_select_spell: "Wähle einen Zauber"
|
||||
tome_select_a_thang: "Wähle jemanden aus, um "
|
||||
tome_available_spells: "Verfügbare Zauber"
|
||||
hud_continue: "Weiter (drücke Shift + Leertaste)"
|
||||
spell_saved: "Zauber gespeichert"
|
||||
skip_tutorial: "Überspringen (Esc)"
|
||||
editor_config: "Editor Einstellungen"
|
||||
editor_config_title: "Editor Einstellungen"
|
||||
editor_config_language_label: "Programmiersprache"
|
||||
editor_config_language_description: "Bestimme die Programmiersprache in der du arbeiten möchtest."
|
||||
editor_config_keybindings_label: "Tastenbelegung"
|
||||
editor_config_keybindings_default: "Standard (Ace)"
|
||||
editor_config_keybindings_description: "Fügt zusätzliche Tastenkombinationen, bekannt aus anderen Editoren, hinzu"
|
||||
editor_config_invisibles_label: "Zeige unsichtbare Zeichen"
|
||||
editor_config_invisibles_description: "Zeigt unsichtbare Zeichen wie Leertasten an."
|
||||
editor_config_indentguides_label: "Zeige Einrückungshilfe"
|
||||
editor_config_indentguides_description: "Zeigt vertikale Linien an um Einrückungen besser zu sehen."
|
||||
editor_config_behaviors_label: "Intelligentes Verhalten"
|
||||
editor_config_behaviors_description: "Vervollständigt automatisch Klammern und Anführungszeichen."
|
||||
loading_ready: "Bereit!"
|
||||
tip_insert_positions: "Halte 'Umschalt' gedrückt und klicke auf die Karte um die Koordinaten einzufügen."
|
||||
tip_toggle_play: "Wechsel zwischen Play und Pause mit Strg+P."
|
||||
tip_scrub_shortcut: "Spule vor und zurück mit Strg+[ und Strg+]"
|
||||
tip_guide_exists: "Klicke auf die Anleitung am oberen Ende der Seite für nützliche Informationen"
|
||||
tip_open_source: "CodeCombat ist 100% quelloffen!"
|
||||
tip_beta_launch: "CodeCombat startete seine Beta im Oktober 2013."
|
||||
tip_js_beginning: "JavaScript ist nur der Anfang."
|
||||
tip_autocast_setting: "Ändere die Einstellungen für das automatische Ausführen über das Zahnrad neben dem Ausführen Knopf"
|
||||
think_solution: "Denke über die Lösung nach, nicht über das Problem."
|
||||
tip_theory_practice: "In der Theorie gibt es keinen Unterschied zwischen Theorie und Praxis. In der Praxis schon. - Yogi Berra"
|
||||
tip_error_free: "Es gibt zwei Wege fehlerfreie Programme zu schreiben; nur der Dritte funktioniert. - Alan Perlis"
|
||||
tip_debugging_program: "Wenn Debugging der Prozess zum Fehler entfernen ist, dann muss Programmieren der Prozess sein Fehler zu machen. - Edsger W. Dijkstra"
|
||||
tip_forums: "Gehe zum Forum und sage uns was du denkst!"
|
||||
tip_baby_coders: "In der Zukunft werden sogar Babies Erzmagier sein."
|
||||
tip_morale_improves: "Das Laden wird weiter gehen bis die Stimmung sich verbessert."
|
||||
tip_all_species: "Wir glauben an gleiche Chancen für alle Arten Programmieren zu lernen."
|
||||
# tip_reticulating: "Reticulating spines."
|
||||
tip_harry: "Du bist ein Zauberer, "
|
||||
tip_great_responsibility: "Mit großen Programmierfähigkeiten kommt große Verantwortung."
|
||||
tip_munchkin: "Wenn du dein Gemüse nicht isst, besucht dich ein Zwerg während du schläfst."
|
||||
tip_binary: "Es gibt auf der Welt nur 10 Arten von Menschen: die, welche Binär verstehen und die, welche nicht."
|
||||
tip_commitment_yoda: "Ein Programmier muss die größte Hingabe haben, den ernstesten Verstand. ~ Yoda"
|
||||
tip_no_try: "Tu. Oder tu nicht. Es gibt kein Versuchen. - Yoda"
|
||||
tip_patience: "Geduld du musst haben, junger Padawan. - Yoda"
|
||||
tip_documented_bug: "Ein dokumentierter Fehler ist kein Fehler; er ist ein Merkmal."
|
||||
tip_impossible: "Es wirkt immer unmöglich bis es vollbracht ist. - Nelson Mandela"
|
||||
tip_talk_is_cheap: "Reden ist billig. Zeig mir den Code. - Linus Torvalds"
|
||||
tip_first_language: "Das schwierigste, das du jemals lernen wirst, ist die erste Programmiersprache. - Alan Kay"
|
||||
time_current: "Aktuell"
|
||||
time_total: "Total"
|
||||
time_goto: "Gehe zu"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrator Übersicht"
|
||||
av_entities_sub_title: "Entitäten"
|
||||
av_entities_users_url: "Benutzer"
|
||||
av_entities_active_instances_url: "Aktive Instanzen"
|
||||
av_other_sub_title: "Sonstige"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
u_title: "Benutzerliste"
|
||||
lg_title: "Letzte Spiele"
|
||||
# clas: "CLAs"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editoren"
|
||||
main_description: "Entwerfe deine eigenen Level, Kampagnen, Einheiten und Lernmaterial. Wir stellen alle Werkzeuge zur Verfügung, die Du dafür benötigst!"
|
||||
article_title: "Artikel Editor"
|
||||
article_description: "Schreiben Sie Artikel, die anderen Spieler einen Überblick über Programmierkonzepte geben und in einer Vielzahl von Ebenen und Kampagnen genutzt werden können."
|
||||
# thang_title: "Thang Editor"
|
||||
thang_description: "Entwerfe Einheiten, definiere ihre Standardlogik, Grafiken und Töne. Zurzeit werden nur Flash Vektorgrafiken unterstützt."
|
||||
level_title: "Level Editor"
|
||||
level_description: "Beinhaltet die Werkzeuge zum Scripten, Hochladen von Tönen und zur Konstruktion eigener Logik, damit jedes erdenkliches Level erstellt werden kann. Genau die Sachen, die wir selber benutzen!"
|
||||
security_notice: "Viele Hauptfunktionen der Editoren sind standardmäßig noch nicht aktiviert. Sobald die Sicherheit dieser Systeme gewährleistet ist, werden sie generell freigeschaltet. Falls Du diese Funktionen früher nutzen möchtest, "
|
||||
contact_us: "setze dich mit uns in Verbindung!"
|
||||
hipchat_prefix: "Besuche uns auch in unserem"
|
||||
hipchat_url: "HipChat room."
|
||||
# back: "Back"
|
||||
revert: "Zurücksetzen"
|
||||
revert_models: "Models zurücksetzen."
|
||||
# fork_title: "Fork New Version"
|
||||
# fork_creating: "Creating Fork..."
|
||||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
level_some_options: "Einige Einstellungsmöglichkeiten?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Skripte"
|
||||
level_tab_settings: "Einstellungen"
|
||||
level_tab_components: "Komponenten"
|
||||
level_tab_systems: "Systeme"
|
||||
level_tab_thangs_title: "Aktuelle Thangs"
|
||||
# level_tab_thangs_all: "All"
|
||||
level_tab_thangs_conditions: "Startbedingungen"
|
||||
level_tab_thangs_add: "Thangs hinzufügen"
|
||||
# delete: "Delete"
|
||||
# duplicate: "Duplicate"
|
||||
level_settings_title: "Einstellungen"
|
||||
level_component_tab_title: "Aktuelle Komponenten"
|
||||
level_component_btn_new: "neue Komponente erstellen"
|
||||
level_systems_tab_title: "Aktuelle Systeme"
|
||||
level_systems_btn_new: "neues System erstellen"
|
||||
level_systems_btn_add: "System hinzufügen"
|
||||
level_components_title: "Zurück zu allen Thangs"
|
||||
level_components_type: "Typ"
|
||||
level_component_edit_title: "Komponente bearbeiten"
|
||||
level_component_config_schema: "Konfigurationsschema"
|
||||
level_component_settings: "Einstellungen"
|
||||
level_system_edit_title: "System bearbeiten"
|
||||
create_system_title: "neues System erstellen"
|
||||
new_component_title: "Neue Komponente erstellen"
|
||||
new_component_field_system: "System"
|
||||
new_article_title: "Erstelle einen neuen Artikel"
|
||||
# new_thang_title: "Create a New Thang Type"
|
||||
new_level_title: "Erstelle ein neues Level"
|
||||
# article_search_title: "Search Articles Here"
|
||||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vorschau"
|
||||
edit_article_title: "Artikel bearbeiten"
|
||||
|
||||
general:
|
||||
and: "und"
|
||||
name: "Name"
|
||||
body: "Inhalt"
|
||||
version: "Version"
|
||||
commit_msg: "Commit Nachricht"
|
||||
# version_history: "Version History"
|
||||
version_history_for: "Versionsgeschichte für: "
|
||||
result: "Ergebnis"
|
||||
results: "Ergebnisse"
|
||||
description: "Beschreibung"
|
||||
or: "oder"
|
||||
# subject: "Subject"
|
||||
email: "Email"
|
||||
password: "Passwort"
|
||||
message: "Nachricht"
|
||||
code: "Code"
|
||||
ladder: "Rangliste"
|
||||
when: "Wann"
|
||||
opponent: "Gegner"
|
||||
rank: "Rang"
|
||||
score: "Punktzahl"
|
||||
win: "Sieg"
|
||||
loss: "Niederlage"
|
||||
tie: "Unentschieden"
|
||||
easy: "Einfach"
|
||||
medium: "Mittel"
|
||||
hard: "Schwer"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wer ist CodeCombat?"
|
||||
why_codecombat: "Warum CodeCombat?"
|
||||
who_description_prefix: "gründeten CodeCombat im Jahre 2013 zusammen. Wir entwickelten außerdem "
|
||||
who_description_suffix: ", die meist benutzte (#1) Web and iOS Applikation 2008 zum Lernen des Schreibens von chinesischen und japanischen Schriftzeichen."
|
||||
who_description_ending: "Nun ist es an der Zeit, den Leuten das Programmieren beizubringen."
|
||||
why_paragraph_1: "Als er Skritter machte, wusste George nicht wie man programmiert und war permanent darüber frustriert, dass er seine Ideen nicht umsetzen konnte. Danach versuchte er es zu lernen, aber das ging ihm zu langsam. Sein Mitbewohner versuchte Codecademy, als er sich umorientierte und aufhörte zu lehren, aber \"langweilte sich\". Jede Woche begann ein neuer Freund mit Codecademy und ließ es dann wieder bleiben. Wir erkannten, dass es das gleiche Problem war, welches wir mit Skritter gelöst hatten: Leute lernen eine Fähigkeit mittels langsamer, intersiver Lerneinheiten, wobei sie schnelle, umfassende Übung bräuchten. Wir kennen Abhilfe."
|
||||
why_paragraph_2: "Programmieren lernen? Du brauchst keine Stunden. Du musst einen Haufen Code schreiben und dabei Spaß haben."
|
||||
why_paragraph_3_prefix: "Darum geht's beim Programmieren. Es soll Spaß machen. Nicht so einen Spaß wie"
|
||||
why_paragraph_3_italic: "jau, 'ne Plakette"
|
||||
why_paragraph_3_center: "sondern Spaß wie"
|
||||
why_paragraph_3_italic_caps: "NEIN MUTTI ICH MUSS NOCH DEN LEVEL BEENDEN !"
|
||||
why_paragraph_3_suffix: "Deshalb ist CodeCombat ein Multiplayerspiel und kein spielähnlicher Kurs. Wir werden nicht aufhören bis du nicht mehr aufhören kannst -- nur diesmal ist das eine gute Sache."
|
||||
why_paragraph_4: "Wenn dich Spiele süchtig machen, dass lass dich von diesem süchtig machen und werde ein Zauberer des Technologiezeitalters."
|
||||
why_ending: "Und hey, es kostet nichts. "
|
||||
why_ending_url: "Beginne jetzt zu zaubern!"
|
||||
george_description: "CEO, Businesstyp, Web Designer, Game Designer und Champion der Programmieranfänger überall."
|
||||
scott_description: "Außergewöhnlicher Programmierer, Softwarearchitekt, Küchenzauberer und Finanzmeister. Scott ist der Vernünftige."
|
||||
nick_description: "Programmierzauberer, exzentrischer Motivationskünstler und Auf-den-Kopf-stell-Experimentierer. Nick könnte alles mögliche tun und entschied CodeCombat zu bauen."
|
||||
jeremy_description: "Kundendienstmagier, Usability Tester und Community-Organisator. Wahrscheinlich hast du schon mit Jeremy gesprochen."
|
||||
michael_description: "Programmierer, Systemadministrator und studentisch technisches Wunderkind, Michael hält unsere Server am Laufen."
|
||||
glen_description: "Programmier und leidenschaftlicher Spieleentwickler mit der Motivation die Welt, durch das Entwickeln von Sachen die zählen, zu einem besseren Platz zu machen. Das Wort 'unmöglich' kann nicht in seinem Wortschatz gefunden werden. Neue Fähigkeiten zu lernen ist seine Leidenschaft!"
|
||||
|
||||
legal:
|
||||
page_title: "Rechtliches"
|
||||
opensource_intro: "CodeCombat ist Free-to-Play und vollständig Open Source."
|
||||
opensource_description_prefix: "Schau dir "
|
||||
github_url: "unsere GitHub-Seite"
|
||||
opensource_description_center: " an und mach mit wenn Du möchtest! CodeCombat baut auf duzenden Open Source Projekten auf, und wir lieben sie. Schau dir die Liste in "
|
||||
archmage_wiki_url: "unserem Erzmagier-Wiki"
|
||||
opensource_description_suffix: " an, welche Software dieses Spiel möglich macht."
|
||||
practices_title: "Best Practices"
|
||||
practices_description: "Dies sind unsere Versprechen an dich, den Spieler, in weniger Fachchinesisch."
|
||||
privacy_title: "Datenschutz"
|
||||
privacy_description: "Wir werden deine persönlichen Daten nicht verkaufen. Letztenendes beabsichtigen wir, durch Vermittlung von Jobs zu verdienen, aber sei versichert, dass wir nicht deine persönlichen Daten ohne deine ausdrückliche Einwilligung interessierten Firmen zur Verfügung stellen werden."
|
||||
security_title: "Datensicherheit"
|
||||
security_description: "Wir streben an, deine persönlichen Daten sicher zu verwahren. Als Open Source Projekt ist unsere Site frei zugänglich für jedermann, auch um unsere Sicherheitsmaßnahmen in Augenschein zu nehmen und zu verbessern."
|
||||
email_title: "Email"
|
||||
email_description_prefix: "Wir werden dich nicht mit Spam überschwemmen. Mittels"
|
||||
email_settings_url: "deiner Emaileinstellungen"
|
||||
email_description_suffix: "oder durch von uns gesendete Links kannst du jederzeit deine Einstellungen ändern und Abonnements kündigen."
|
||||
cost_title: "Kosten"
|
||||
cost_description: "CodeCombat ist zur Zeit 100% kostenlos! Eines unserer Hauptziele ist, es dabei zu belassen, so dass es so viele Leute wie möglich spielen können, unabhängig davon in welcher Lebenssituation sie sich befinden. Falls dunkle Wolken aufziehen, könnten wir manche Inhalte im Rahmen eines Abonnements anbieten, aber lieber nicht. Mit etwas Glück können wir die Firma erhalten durch:"
|
||||
recruitment_title: "Recruiting"
|
||||
recruitment_description_prefix: "Hier bei CodeCombat kannst du ein mächtiger Zauberer werden, nicht nur im Spiel, sondern auch in der Realität."
|
||||
url_hire_programmers: "Niemand kann schnell genug Programmierer einstellen."
|
||||
recruitment_description_suffix: "So wenn du deine Fähigkeiten entwickelt hast und zustimmst, werden wir deine besten Leistungen den tausenden Arbeitgebern demonstrieren, welche nur auf die Gelegentheit warten, dich einzustellen. Sie bezahlen uns ein bisschen, und sie bezahlen dir "
|
||||
recruitment_description_italic: "jede Menge"
|
||||
recruitment_description_ending: ", die Seite bleibt kostenlos und jeder ist glücklich. So der Plan."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
# cla_url: "CLA"
|
||||
# contributor_description_suffix: "to which you should agree before contributing."
|
||||
# code_title: "Code - MIT"
|
||||
# code_description_prefix: "All code owned by CodeCombat or hosted on codecombat.com, both in the GitHub repository or in the codecombat.com database, is licensed under the"
|
||||
# mit_license_url: "MIT license"
|
||||
# code_description_suffix: "This includes all code in Systems and Components that are made available by CodeCombat for the purpose of creating levels."
|
||||
# art_title: "Art/Music - Creative Commons "
|
||||
# art_description_prefix: "All common content is available under the"
|
||||
# cc_license_url: "Creative Commons Attribution 4.0 International License"
|
||||
# art_description_suffix: "Common content is anything made generally available by CodeCombat for the purpose of creating Levels. This includes:"
|
||||
# art_music: "Music"
|
||||
# art_sound: "Sound"
|
||||
# art_artwork: "Artwork"
|
||||
# art_sprites: "Sprites"
|
||||
# art_other: "Any and all other non-code creative works that are made available when creating Levels."
|
||||
# art_access: "Currently there is no universal, easy system for fetching these assets. In general, fetch them from the URLs as used by the site, contact us for assistance, or help us in extending the site to make these assets more easily accessible."
|
||||
# art_paragraph_1: "For attribution, please name and link to codecombat.com near where the source is used or where appropriate for the medium. For example:"
|
||||
# use_list_1: "If used in a movie or another game, include codecombat.com in the credits."
|
||||
# use_list_2: "If used on a website, include a link near the usage, for example underneath an image, or in a general attributions page where you might also mention other Creative Commons works and open source software being used on the site. Something that's already clearly referencing CodeCombat, such as a blog post mentioning CodeCombat, does not need some separate attribution."
|
||||
# art_paragraph_2: "If the content being used is created not by CodeCombat but instead by a user of codecombat.com, attribute them instead, and follow attribution directions provided in that resource's description if there are any."
|
||||
# rights_title: "Rights Reserved"
|
||||
# rights_desc: "All rights are reserved for Levels themselves. This includes"
|
||||
# rights_scripts: "Scripts"
|
||||
# rights_unit: "Unit configuration"
|
||||
# rights_description: "Description"
|
||||
# rights_writings: "Writings"
|
||||
# rights_media: "Media (sounds, music) and any other creative content made specifically for that Level and not made generally available when creating Levels."
|
||||
# rights_clarification: "To clarify, anything that is made available in the Level Editor for the purpose of making levels is under CC, whereas the content created with the Level Editor or uploaded in the course of creation of Levels is not."
|
||||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
|
||||
# contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
# introduction_desc_pref: "We want to be where programmers of all stripes come to learn and play together, introduce others to the wonderful world of coding, and reflect the best parts of the community. We can't and don't want to do that alone; what makes projects like GitHub, Stack Overflow and Linux great are the people who use them and build on them. To that end, "
|
||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
# introduction_desc_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours."
|
||||
# introduction_desc_ending: "We hope you'll join our party!"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
# archmage_attribute_2: "Some experience in programming and personal initiative. We'll help you get oriented, but we can't spend much time training you."
|
||||
# how_to_join: "How To Join"
|
||||
# join_desc_1: "Anyone can help out! Just check out our "
|
||||
# join_desc_2: "to get started, and check the box below to mark yourself as a brave Archmage and get the latest news by email. Want to chat about what to do or how to get more deeply involved? "
|
||||
# join_desc_3: ", or find us in our "
|
||||
# join_desc_4: "and we'll go from there!"
|
||||
# join_url_email: "Email us"
|
||||
# join_url_hipchat: "public HipChat room"
|
||||
# more_about_archmage: "Learn More About Becoming an Archmage"
|
||||
# archmage_subscribe_desc: "Get emails on new coding opportunities and announcements."
|
||||
# artisan_summary_pref: "Want to design levels and expand CodeCombat's arsenal? People are playing through our content at a pace faster than we can build! Right now, our level editor is barebone, so be wary. Making levels will be a little challenging and buggy. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_summary_suf: ", then this class is for you."
|
||||
# artisan_introduction_pref: "We must construct additional levels! People be clamoring for more content, and we can only build so many ourselves. Right now your workstation is level one; our level editor is barely usable even by its creators, so be wary. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_introduction_suf: ", then this class might be for you."
|
||||
# artisan_attribute_1: "Any experience in building content like this would be nice, such as using Blizzard's level editors. But not required!"
|
||||
# artisan_attribute_2: "A hankering to do a whole lot of testing and iteration. To make good levels, you need to take it to others and watch them play it, and be prepared to find a lot of things to fix."
|
||||
# artisan_attribute_3: "For the time being, endurance en par with an Adventurer. Our Level Editor is super preliminary and frustrating to use. You have been warned!"
|
||||
# artisan_join_desc: "Use the Level Editor in these steps, give or take:"
|
||||
# artisan_join_step1: "Read the documentation."
|
||||
# artisan_join_step2: "Create a new level and explore existing levels."
|
||||
# artisan_join_step3: "Find us in our public HipChat room for help."
|
||||
# artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
# more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
# artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
# adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
# adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
# adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
# adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
# adventurer_join_pref: "Either get together with (or recruit!) an Artisan and work with them, or check the box below to receive emails when there are new levels to test. We'll also be posting about levels to review on our networks like"
|
||||
# adventurer_forum_url: "our forum"
|
||||
# adventurer_join_suf: "so if you prefer to be notified those ways, sign up there!"
|
||||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
# scribe_introduction_url_mozilla: "Mozilla Developer Network"
|
||||
# scribe_introduction_suf: " has built. If your idea of fun is articulating the concepts of programming in Markdown form, then this class might be for you."
|
||||
# scribe_attribute_1: "Skill in words is pretty much all you need. Not only grammar and spelling, but able to convey complicated ideas to others."
|
||||
# contact_us_url: "Contact us"
|
||||
# scribe_join_description: "tell us a little about yourself, your experience with programming and what sort of things you'd like to write about. We'll go from there!"
|
||||
# more_about_scribe: "Learn More About Becoming a Scribe"
|
||||
# scribe_subscribe_desc: "Get emails about article writing announcements."
|
||||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
# ambassador_attribute_1: "Communication skills. Be able to identify the problems players are having and help them solve them. Also, keep the rest of us informed about what players are saying, what they like and don't like and want more of!"
|
||||
# ambassador_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll go from there!"
|
||||
# ambassador_join_note_strong: "Note"
|
||||
# ambassador_join_note_desc: "One of our top priorities is to build multiplayer where players having difficulty solving levels can summon higher level wizards to help them. This will be a great way for ambassadors to do their thing. We'll keep you posted!"
|
||||
# more_about_ambassador: "Learn More About Becoming an Ambassador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
# counselor_summary: "None of the above roles fit what you are interested in? Do not worry, we are on the lookout for anybody who wants a hand in the development of CodeCombat! If you are interested in teaching, game development, open source management, or anything else that you think will be relevant to us, then this class is for you."
|
||||
# counselor_introduction_1: "Do you have life experience? A different perspective on things that can help us decide how to shape CodeCombat? Of all these roles, this will probably take the least time, but individually you may make the most difference. We're on the lookout for wisened sages, particularly in areas like: teaching, game development, open source project management, technical recruiting, entrepreneurship, or design."
|
||||
# counselor_introduction_2: "Or really anything that is relevant to the development of CodeCombat. If you have knowledge and want to share it to help grow this project, then this class might be for you."
|
||||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
# creative_artisans: "Our Creative Artisans:"
|
||||
# brave_adventurers: "Our Brave Adventurers:"
|
||||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
|
||||
classes:
|
||||
archmage_title: "Erzmagier"
|
||||
archmage_title_description: "(Programmierer)"
|
||||
artisan_title: "Handwerker"
|
||||
artisan_title_description: "(Level Entwickler)"
|
||||
adventurer_title: "Abenteurer"
|
||||
adventurer_title_description: "(Level Spieltester)"
|
||||
scribe_title: "Schreiber"
|
||||
scribe_title_description: "(Artikel Editor)"
|
||||
diplomat_title: "Diplomat"
|
||||
diplomat_title_description: "(Übersetzer)"
|
||||
ambassador_title: "Botschafter"
|
||||
ambassador_title_description: "(Support)"
|
||||
counselor_title: "Berater"
|
||||
counselor_title_description: "(Experte/Lehrer)"
|
||||
|
||||
ladder:
|
||||
please_login: "Bitte logge dich zunächst ein, bevor du ein Ladder-Game spielst."
|
||||
my_matches: "Meine Matches"
|
||||
simulate: "Simuliere"
|
||||
# simulation_explanation: "By simulating games you can get your game ranked faster!"
|
||||
# simulate_games: "Simulate Games!"
|
||||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
# summary_matches: "Matches - "
|
||||
# summary_wins: " Wins, "
|
||||
# summary_losses: " Losses"
|
||||
# rank_no_code: "No New Code to Rank"
|
||||
# rank_my_game: "Rank My Game!"
|
||||
# rank_submitting: "Submitting..."
|
||||
# rank_submitted: "Submitted for Ranking"
|
||||
# rank_failed: "Failed to Rank"
|
||||
# rank_being_ranked: "Game Being Ranked"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
# no_ranked_matches_post: " team! Play against some competitors and then come back here to get your game ranked."
|
||||
choose_opponent: "Wähle einen Gegner"
|
||||
tutorial_play: "Spiele Tutorial"
|
||||
tutorial_recommended: "Empfohlen, wenn du noch nie zuvor gespielt hast."
|
||||
tutorial_skip: "Überspringe Tutorial"
|
||||
# tutorial_not_sure: "Not sure what's going on?"
|
||||
tutorial_play_first: "Spiele zuerst das Tutorial."
|
||||
simple_ai: "Einfache KI"
|
||||
warmup: "Aufwärmen"
|
||||
vs: "VS"
|
||||
|
||||
# multiplayer_launch:
|
||||
# introducing_dungeon_arena: "Introducing Dungeon Arena"
|
||||
# new_way: "The new way to compete with code."
|
||||
# to_battle: "To Battle, Developers!"
|
||||
# modern_day_sorcerer: "You know how to code? That's badass. You're a modern-day sorcerer! Isn't about time that you used your magic coding powers to command your minions in epic combat? And we're not talking robots here."
|
||||
# arenas_are_here: "CodeCombat head-to-head multiplayer arenas are here."
|
||||
# ladder_explanation: "Choose your heroes, enchant your human or ogre armies, and climb your way over defeated fellow Wizards to reach the top of the ladders–then challenge your friends in our glorious, asynchronous multiplayer coding arenas. If you're feeling creative, you can even"
|
||||
# fork_our_arenas: "fork our arenas"
|
||||
# create_worlds: "and create your own worlds."
|
||||
# javascript_rusty: "JavaScript a bit rusty? Don't worry; there's a"
|
||||
# tutorial: "tutorial"
|
||||
# new_to_programming: ". New to programming? Hit our beginner campaign to skill up."
|
||||
# so_ready: "I Am So Ready for This"
|
||||
|
||||
# loading_error:
|
||||
# could_not_load: "Error loading from server"
|
||||
# connection_failure: "Connection failed."
|
||||
# unauthorized: "You need to be signed in. Do you have cookies disabled?"
|
||||
# forbidden: "You do not have the permissions."
|
||||
# not_found: "Not found."
|
||||
# not_allowed: "Method not allowed."
|
||||
# timeout: "Server timeout."
|
||||
# conflict: "Resource conflict."
|
||||
# bad_input: "Bad input."
|
||||
# server_error: "Server error."
|
||||
# unknown: "Unknown error."
|
||||
|
||||
# resources:
|
||||
# your_sessions: "Your Sessions"
|
||||
# level: "Level"
|
||||
# social_network_apis: "Social Network APIs"
|
||||
# facebook_status: "Facebook Status"
|
||||
# facebook_friends: "Facebook Friends"
|
||||
# facebook_friend_sessions: "Facebook Friend Sessions"
|
||||
# gplus_friends: "G+ Friends"
|
||||
# gplus_friend_sessions: "G+ Friend Sessions"
|
||||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# send: "Send"
|
||||
cancel: "Abbrechen"
|
||||
save: "Speichern"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 Sekunde"
|
||||
delay_3_sec: "3 Sekunden"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
versions:
|
||||
save_version_title: "Neue Version speichern"
|
||||
new_major_version: "Neue Hauptversion"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Damit Änderungen gespeichert werden können, musst du unsere Lizenzbedingungen ("
|
||||
cla_url: "CLA"
|
||||
cla_suffix: ") akzeptieren."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
creating: "Erzeuge Account..."
|
||||
sign_up: "Neuen Account anlegen"
|
||||
log_in: "mit Passwort einloggen"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lerne spielend JavaScript"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
wizard_tab: "Zauberer"
|
||||
password_tab: "Passwort"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Die Farbe der Kleidung des Zauberers"
|
||||
new_password: "Neues Passwort"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
time_current: "Aktuell"
|
||||
time_total: "Total"
|
||||
time_goto: "Gehe zu"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrator Übersicht"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Einige Einstellungsmöglichkeiten?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Skripte"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vorschau"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
easy: "Einfach"
|
||||
medium: "Mittel"
|
||||
hard: "Schwer"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wer ist CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# send: "Send"
|
||||
cancel: "Ακύρωση"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
creating: "Δημιουργία λογαριασμού"
|
||||
sign_up: "Εγγραγή"
|
||||
log_in: "Σύνδεση με κώδικο"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Μάθε να προγραμμάτιζεις με JavaScript μέσω ενός παιχνιδιού"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
wizard_tab: "Μάγος"
|
||||
password_tab: "Κωδικός"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Χρώμα ρούχων του Μάγου"
|
||||
new_password: "Καινούργιος Κωδικός"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -126,11 +125,11 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# learn_more: "Learn more about being a Diplomat"
|
||||
# subscribe_as_diplomat: "Subscribe as a Diplomat"
|
||||
|
||||
# wizard_settings:
|
||||
wizard_settings:
|
||||
# title: "Wizard Settings"
|
||||
# customize_avatar: "Customize Your Avatar"
|
||||
customize_avatar: "Customise Your Avatar"
|
||||
# active: "Active"
|
||||
# color: "Color"
|
||||
color: "Colour"
|
||||
# group: "Group"
|
||||
# clothes: "Clothes"
|
||||
# trim: "Trim"
|
||||
|
@ -142,7 +141,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# saturation: "Saturation"
|
||||
# lightness: "Lightness"
|
||||
|
||||
# account_settings:
|
||||
account_settings:
|
||||
# title: "Account Settings"
|
||||
# not_logged_in: "Log in or create an account to change your settings."
|
||||
# autosave: "Changes Save Automatically"
|
||||
|
@ -151,9 +150,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
wizard_color: "Wizard Clothes Colour"
|
||||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
|
@ -201,11 +199,11 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
|
||||
# play_level:
|
||||
play_level:
|
||||
# level_load_error: "Level could not be loaded: "
|
||||
# done: "Done"
|
||||
# grid: "Grid"
|
||||
# customize_wizard: "Customize Wizard"
|
||||
customize_wizard: "Customise Wizard"
|
||||
# home: "Home"
|
||||
# guide: "Guide"
|
||||
# multiplayer: "Multiplayer"
|
||||
|
@ -259,7 +257,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# editor_config_invisibles_description: "Displays invisibles such as spaces or tabs."
|
||||
# editor_config_indentguides_label: "Show Indent Guides"
|
||||
# editor_config_indentguides_description: "Displays vertical lines to see indentation better."
|
||||
# editor_config_behaviors_label: "Smart Behaviors"
|
||||
editor_config_behaviors_label: "Smart Behaviours"
|
||||
# editor_config_behaviors_description: "Autocompletes brackets, braces, and quotes."
|
||||
# loading_ready: "Ready!"
|
||||
# tip_insert_positions: "Shift+Click a point on the map to insert it into the spell editor."
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,14 +395,15 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
# why_codecombat: "Why CodeCombat?"
|
||||
# who_description_prefix: "together started CodeCombat in 2013. We also created "
|
||||
# who_description_suffix: "in 2008, growing it to the #1 web and iOS application for learning to write Chinese and Japanese characters."
|
||||
# who_description_ending: "Now it's time to teach people to write code."
|
||||
# why_paragraph_1: "When making Skritter, George didn't know how to program and was constantly frustrated by his inability to implement his ideas. Afterwards, he tried learning, but the lessons were too slow. His housemate, wanting to reskill and stop teaching, tried Codecademy, but \"got bored.\" Each week another friend started Codecademy, then dropped off. We realized it was the same problem we'd solved with Skritter: people learning a skill via slow, intensive lessons when what they need is fast, extensive practice. We know how to fix that."
|
||||
why_paragraph_1: "When making Skritter, George didn't know how to program and was constantly frustrated by his inability to implement his ideas. Afterwards, he tried learning, but the lessons were too slow. His housemate, wanting to reskill and stop teaching, tried Codecademy, but \"got bored.\" Each week another friend started Codecademy, then dropped off. We realised it was the same problem we'd solved with Skritter: people learning a skill via slow, intensive lessons when what they need is fast, extensive practice. We know how to fix that."
|
||||
# why_paragraph_2: "Need to learn to code? You don't need lessons. You need to write a lot of code and have a great time doing it."
|
||||
# why_paragraph_3_prefix: "That's what programming is about. It's gotta be fun. Not fun like"
|
||||
# why_paragraph_3_italic: "yay a badge"
|
||||
|
@ -415,11 +416,11 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# george_description: "CEO, business guy, web designer, game designer, and champion of beginning programmers everywhere."
|
||||
# scott_description: "Programmer extraordinaire, software architect, kitchen wizard, and master of finances. Scott is the reasonable one."
|
||||
# nick_description: "Programming wizard, eccentric motivation mage, and upside-down experimenter. Nick can do anything and chooses to build CodeCombat."
|
||||
# jeremy_description: "Customer support mage, usability tester, and community organizer; you've probably already spoken with Jeremy."
|
||||
jeremy_description: "Customer support mage, usability tester, and community organiser; you've probably already spoken with Jeremy."
|
||||
# michael_description: "Programmer, sys-admin, and undergrad technical wunderkind, Michael is the person keeping our servers online."
|
||||
# glen_description: "Programmer and passionate game developer, with the motivation to make this world a better place, by developing things that matter. The word impossible can't be found in his dictionary. Learning new skills is his joy!"
|
||||
|
||||
# legal:
|
||||
legal:
|
||||
# page_title: "Legal"
|
||||
# opensource_intro: "CodeCombat is free to play and completely open source."
|
||||
# opensource_description_prefix: "Check out "
|
||||
|
@ -445,18 +446,18 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# recruitment_description_suffix: "so once you've sharpened your skills and if you agree, we will demo your best coding accomplishments to the thousands of employers who are drooling for the chance to hire you. They pay us a little, they pay you"
|
||||
# recruitment_description_italic: "a lot"
|
||||
# recruitment_description_ending: "the site remains free and everybody's happy. That's the plan."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
copyrights_title: "Copyrights and Licences"
|
||||
contributor_title: "Contributor Licence Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
# cla_url: "CLA"
|
||||
# contributor_description_suffix: "to which you should agree before contributing."
|
||||
# code_title: "Code - MIT"
|
||||
# code_description_prefix: "All code owned by CodeCombat or hosted on codecombat.com, both in the GitHub repository or in the codecombat.com database, is licensed under the"
|
||||
# mit_license_url: "MIT license"
|
||||
mit_license_url: "MIT licence"
|
||||
# code_description_suffix: "This includes all code in Systems and Components that are made available by CodeCombat for the purpose of creating levels."
|
||||
# art_title: "Art/Music - Creative Commons "
|
||||
# art_description_prefix: "All common content is available under the"
|
||||
# cc_license_url: "Creative Commons Attribution 4.0 International License"
|
||||
cc_license_url: "Creative Commons Attribution 4.0 International Licence"
|
||||
# art_description_suffix: "Common content is anything made generally available by CodeCombat for the purpose of creating Levels. This includes:"
|
||||
# art_music: "Music"
|
||||
# art_sound: "Sound"
|
||||
|
@ -480,7 +481,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
|
||||
# contribute:
|
||||
contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
|
@ -493,8 +494,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
archmage_summary: "Interested in working on game graphics, user interface design, database and server organisation, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
archmage_introduction: "One of the best parts about building games is they synthesise so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
|
@ -548,7 +549,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalisation developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
|
@ -565,7 +566,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
more_about_counselor: "Learn More About Becoming a Counsellor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
|
@ -574,7 +575,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
|
||||
# classes:
|
||||
classes:
|
||||
# archmage_title: "Archmage"
|
||||
# archmage_title_description: "(Coder)"
|
||||
# artisan_title: "Artisan"
|
||||
|
@ -587,7 +588,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# diplomat_title_description: "(Translator)"
|
||||
# ambassador_title: "Ambassador"
|
||||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
counselor_title: "Counsellor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
|
||||
# ladder:
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
fork: "Fork"
|
||||
play: "Play"
|
||||
retry: "Retry"
|
||||
watch: "Watch"
|
||||
unwatch: "Unwatch"
|
||||
submit_patch: "Submit Patch"
|
||||
|
||||
units:
|
||||
second: "second"
|
||||
|
@ -291,6 +294,9 @@
|
|||
time_current: "Now:"
|
||||
time_total: "Max:"
|
||||
time_goto: "Go to:"
|
||||
infinite_loop_try_again: "Try Again"
|
||||
infinite_loop_reset_level: "Reset Level"
|
||||
infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Admin Views"
|
||||
|
@ -392,6 +398,7 @@
|
|||
easy: "Easy"
|
||||
medium: "Medium"
|
||||
hard: "Hard"
|
||||
player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -596,6 +603,9 @@
|
|||
simulate_all: "RESET AND SIMULATE GAMES"
|
||||
games_simulated_by: "Games simulated by you:"
|
||||
games_simulated_for: "Games simulated for you:"
|
||||
games_simulated: "Games simulated"
|
||||
games_played: "Games played"
|
||||
ratio: "Ratio"
|
||||
leaderboard: "Leaderboard"
|
||||
battle_as: "Battle as "
|
||||
summary_your: "Your "
|
||||
|
@ -661,3 +671,4 @@
|
|||
user_schema: "User Schema"
|
||||
user_profile: "User Profile"
|
||||
patches: "Patches"
|
||||
model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
save: "Guardar"
|
||||
# publish: "Publish"
|
||||
create: "Crear"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
versions:
|
||||
save_version_title: "Guardar nueva versión"
|
||||
new_major_version: "Nueva Gran Versión"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
creating: "Creando Cuenta..."
|
||||
sign_up: "Registrarse"
|
||||
log_in: "Inicia sesión con tu contraseña"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprende a programar en JavaScript jugando"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
wizard_tab: "Hechicero"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Color de Ropas del Hechicero"
|
||||
new_password: "Nueva Contraseña"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
save: "Guardar"
|
||||
# publish: "Publish"
|
||||
create: "Crear"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
versions:
|
||||
save_version_title: "Guardar nueva versión"
|
||||
new_major_version: "Nueva versión principal"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Para guardar los cambios, primero debes aceptar nuestro"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
creating: "Creando cuenta..."
|
||||
sign_up: "Registrarse"
|
||||
log_in: "Iniciar sesión con contraseña"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprende a programar JavaScript jugando"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
wizard_tab: "Mago"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos electrónicos"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Color de la ropa del Mago"
|
||||
new_password: "Nueva contraseña"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "¿Algunas opciones?"
|
||||
level_tab_thangs: "Objetos"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vista preliminar"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "¿Qué es CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
save: "Guardar"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
versions:
|
||||
save_version_title: "Guardar Nueva Versión"
|
||||
new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Para poder guardar los cambios, primero debes aceptar nuestra"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
creating: "Creando Cuenta..."
|
||||
sign_up: "Registrarse"
|
||||
log_in: "Inicia sesión con tu contraseña"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprende a programar en JavaScript jugando"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
wizard_tab: "Hechicero"
|
||||
password_tab: "Contraseña"
|
||||
emails_tab: "Correos"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Administrador"
|
||||
wizard_color: "Color de Ropas del Hechicero"
|
||||
new_password: "Nueva Contraseña"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Previsualizar"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
easy: "Fácil"
|
||||
medium: "Medio"
|
||||
hard: "Difíficl"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "¿Quién es CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# send: "Send"
|
||||
cancel: "لغو"
|
||||
save: "ذخیره "
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 ثانیه"
|
||||
delay_3_sec: "3 ثانیه"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
versions:
|
||||
save_version_title: "ذخیره کردن نسخه جدید"
|
||||
new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "To save changes, first you must agree to our"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
creating: "...در حال ایجاد حساب کاربری"
|
||||
sign_up: "ثبت نام"
|
||||
log_in: "ورود به وسیله رمز عبور"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "کد نویسی به زبان جاوااسکریپت را با بازی بیاموزید"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
wizard_tab: "جادو"
|
||||
password_tab: "کلمه عبور"
|
||||
emails_tab: "ایمیل ها"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
# send: "Send"
|
||||
cancel: "Annuler"
|
||||
save: "Sauvegarder"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 seconde"
|
||||
delay_3_sec: "3 secondes"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
versions:
|
||||
save_version_title: "Enregistrer une nouvelle version"
|
||||
new_major_version: "Nouvelle version majeure"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Pour enregistrer vos modifications vous devez d'abord accepter notre"
|
||||
cla_url: "Copyright"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
creating: "Création du compte en cours..."
|
||||
sign_up: "S'abonner"
|
||||
log_in: "se connecter avec votre mot de passe"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Apprenez à coder en JavaScript tout en jouant"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
wizard_tab: "Magicien"
|
||||
password_tab: "Mot de passe"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Couleur des vêtements du Magicien"
|
||||
new_password: "Nouveau mot de passe"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Vues d'administrateurs"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Quelques options?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
thang_search_title: "Rechercher dans les types Thang"
|
||||
level_search_title: "Rechercher dans les niveaux"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prévisualiser"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
easy: "Facile"
|
||||
medium: "Moyen"
|
||||
hard: "Difficile"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Qui est CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
simulate_all: "REINITIALISER ET SIMULER DES PARTIES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Classement"
|
||||
battle_as: "Combattre comme "
|
||||
summary_your: "Vos "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# send: "Send"
|
||||
cancel: "ביטול"
|
||||
save: "שמור"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "שניה אחת"
|
||||
delay_3_sec: "שלוש שניות"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
versions:
|
||||
save_version_title: "שמור גרסה חדשה"
|
||||
new_major_version: "גרסה חשובה חדשה"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "כדי לשמור יש להירשם לאתר"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
creating: "יוצר חשבון..."
|
||||
sign_up: "הירשם"
|
||||
log_in: "כנס עם סיסמה"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "גם לשחק וגם ללמוד לתכנת"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
wizard_tab: "קוסם"
|
||||
password_tab: "סיסמה"
|
||||
emails_tab: "אימיילים"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "אדמין"
|
||||
wizard_color: "צבע הקוסם"
|
||||
new_password: "סיסמה חדשה"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# send: "Send"
|
||||
cancel: "Mégse"
|
||||
save: "Mentés"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 másodperc"
|
||||
delay_3_sec: "3 másodperc"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
versions:
|
||||
save_version_title: "Új verzió mentése"
|
||||
new_major_version: "Új főverzió"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "A módosítások elmentéséhez el kell fogadnod a "
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "tartalmát."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
creating: "Fiók létrehozása"
|
||||
sign_up: "Regisztráció"
|
||||
log_in: "Belépés meglévő fiókkal"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Tanulj meg JavaScript nyelven programozni, miközben játszol!"
|
||||
|
@ -129,9 +128,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
wizard_settings:
|
||||
title: "Varázsló beállításai"
|
||||
customize_avatar: "Állítsd be az Avatarod!"
|
||||
# active: "Active"
|
||||
# color: "Color"
|
||||
# group: "Group"
|
||||
active: "Aktív"
|
||||
color: "Szín"
|
||||
group: "Csoport"
|
||||
clothes: "Öltözetek"
|
||||
# trim: "Trim"
|
||||
cloud: "Felhő"
|
||||
|
@ -151,14 +150,13 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
wizard_tab: "Varázsló"
|
||||
password_tab: "Jelszó"
|
||||
emails_tab: "Levelek"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Varázslód színe"
|
||||
new_password: "Új jelszó"
|
||||
new_password_verify: "Új jelszó megismétlése"
|
||||
email_subscriptions: "Hírlevél feliratkozások"
|
||||
email_announcements: "Bejelentések"
|
||||
# email_notifications: "Notifications"
|
||||
email_notifications: "Értesítések"
|
||||
# email_notifications_description: "Get periodic notifications for your account."
|
||||
email_announcements_description: "Szeretnél levelet kapni a legújabb fejlesztéseinkről?"
|
||||
contributor_emails: "Hozzájárulóknak szóló levelek"
|
||||
|
@ -169,37 +167,37 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
error_saving: "Hiba a mentés során"
|
||||
saved: "Változtatások elmentve"
|
||||
password_mismatch: "A jelszavak nem egyeznek."
|
||||
# job_profile: "Job Profile"
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
job_profile: "Munkaköri leírás"
|
||||
job_profile_approved: "Munkaköri leírásodat a Codecombat jóváhagyta. Munkaadók mindaddig láthatják, amíg meg nem jelölöd inaktíként, vagy négy hétig,ha addig nem kerül megváltoztatásra."
|
||||
job_profile_explanation: "Szió! Töltsd ki ezt és majd kapcsolatba lépünk veled és keresünk neked egy szoftware fejlesztői állást."
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Beállítások szerkesztése"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# approved: "Approved"
|
||||
# not_approved: "Not Approved"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# work_experience: "Work Experience"
|
||||
# education: "Education"
|
||||
approved: "Jóváhagyva"
|
||||
not_approved: "Nincs jóváhagyva"
|
||||
looking_for: "Keres:"
|
||||
last_updated: "Legutóbb napra-készre hozva:"
|
||||
contact: "Kapcsolat"
|
||||
work_experience: "Munkatapasztalat"
|
||||
education: "Végzettség"
|
||||
# our_notes: "Our Notes"
|
||||
# projects: "Projects"
|
||||
projects: "Projektek"
|
||||
|
||||
# employers:
|
||||
# want_to_hire_our_players: "Want to hire expert CodeCombat players?"
|
||||
# contact_george: "Contact George to see our candidates"
|
||||
# candidates_count_prefix: "We currently have "
|
||||
# candidates_count_many: "many"
|
||||
# candidates_count_suffix: "highly skilled and vetted developers looking for work."
|
||||
# candidate_name: "Name"
|
||||
munkaadók:
|
||||
want_to_hire_our_players: "Akarsz szakértő CodeCombat játékosokat alkalmazni?"
|
||||
contact_george: "Vedd fel a kapcsolatot George-dzsal, hogy megtekinthesd jelöltjeinket"
|
||||
candidates_count_prefix: "Pillanatnyilag van"
|
||||
candidates_count_many: "sok"
|
||||
candidates_count_suffix: "magasan képzett és ellenőrzött fejlesztő, aki munkát keres."
|
||||
candidate_name: "Név"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
candidate_looking_for: "Keres"
|
||||
candidate_role: "Szerep"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
candidate_last_updated: "Legutóbb napra-készre hozva"
|
||||
|
||||
play_level:
|
||||
level_load_error: "A pályát nem sikerült betölteni: "
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# send: "Send"
|
||||
cancel: "Annulla"
|
||||
save: "Salva"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 secondo"
|
||||
delay_3_sec: "3 secondi"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
versions:
|
||||
save_version_title: "Salva nuova versione"
|
||||
new_major_version: "Nuova versione"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Per salvare le modifiche, prima devi accettare la nostra "
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
creating: "Creazione account..."
|
||||
sign_up: "Registrati"
|
||||
log_in: "Accedi con la password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Impara a programmare in JavaScript giocando"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
wizard_tab: "Stregone"
|
||||
password_tab: "Password"
|
||||
emails_tab: "Email"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Amministratore"
|
||||
wizard_color: "Colore dei vestiti da Stregone"
|
||||
new_password: "Nuova password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Vista amministratore"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Opzioni??"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Script"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Anteprima"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
easy: "Facile"
|
||||
medium: "Medio"
|
||||
hard: "Difficile"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Chi c'è in CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# send: "Send"
|
||||
cancel: "キャンセル"
|
||||
save: "保存"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1秒"
|
||||
delay_3_sec: "3秒"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
versions:
|
||||
save_version_title: "新しいバージョンを保存"
|
||||
new_major_version: "メジャーバージョンを新しくする"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "変更を適用するには, 私達のCLAに同意する必要があります。"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
creating: "アカウントを作成しています..."
|
||||
sign_up: "アカウント登録"
|
||||
log_in: "パスワードでログイン"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "ゲームをプレイしてJavaScriptを学びましょう"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
wizard_tab: "魔法使い"
|
||||
password_tab: "パスワード"
|
||||
emails_tab: "メール"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "ウィザードの色"
|
||||
new_password: "新パスワード"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "管理画面"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# send: "Send"
|
||||
cancel: "취소"
|
||||
save: "저장"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1초"
|
||||
delay_3_sec: "3초"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
versions:
|
||||
save_version_title: "새로운 버전을 저장합니다"
|
||||
new_major_version: "신규 버전"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "변경사항을 저장하기 위해서는, 먼저 계약사항에 동의 하셔야 합니다."
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
creating: "계정을 생성 중입니다..."
|
||||
sign_up: "등록"
|
||||
log_in: "비밀번호로 로그인"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "쉽고 간단한 게임으로 자바스크립트 배우기"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
wizard_tab: "마법사"
|
||||
password_tab: "비밀번호"
|
||||
emails_tab: "이메일"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "관리자"
|
||||
wizard_color: "마법사 옷 색깔"
|
||||
new_password: "새 비밀번호"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "관리자 뷰"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "다른 옵션들?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "스크립트들"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
thang_search_title: "Thang 타입들은 여기에서 찾으세요"
|
||||
level_search_title: "레벨들은 여기에서 찾으세요"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "미리보기"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
easy: "초급"
|
||||
medium: "중급"
|
||||
hard: "상급"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "코드컴뱃은 누구인가?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -10,6 +10,9 @@ module.exports =
|
|||
'en-AU': require './en-AU' # English (AU), English (AU)
|
||||
ru: require './ru' # русский язык, Russian
|
||||
de: require './de' # Deutsch, German
|
||||
'de-DE': require './de-DE' # Deutsch (Deutschland), German (Germany)
|
||||
'de-AT': require './de-AT' # Deutsch (Österreich), German (Austria)
|
||||
'de-CH': require './de-CH' # Deutsch (Schweiz), German (Switzerland)
|
||||
es: require './es' # español, Spanish
|
||||
'es-419': require './es-419' # español (América Latina), Spanish (Latin America)
|
||||
'es-ES': require './es-ES' # español (ES), Spanish (Spain)
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# send: "Send"
|
||||
cancel: "Batal"
|
||||
save: "Simpan data"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
versions:
|
||||
save_version_title: "Simpan versi baru"
|
||||
new_major_version: "Versi utama yang baru"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Untuk menyimpan pengubahsuaian, anda perlu setuju dengan"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
creating: "Sedang membuat Akaun..."
|
||||
sign_up: "Daftar"
|
||||
log_in: "Log Masuk"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Belajar Kod JavaScript Dengan Permainan"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# wizard_tab: "Wizard"
|
||||
password_tab: "Kata-laluan"
|
||||
emails_tab: "Kesemua E-mel"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
new_password: "Kata-laluan baru"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Siapa adalah CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# send: "Send"
|
||||
cancel: "Avbryt"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekunder"
|
||||
delay_3_sec: "3 sekunder"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
creating: "Oppretter Konto..."
|
||||
sign_up: "Registrer deg"
|
||||
log_in: "logg inn med passord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lær å Kode JavaScript ved å Spille et Spill"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
wizard_tab: "Trollmann"
|
||||
password_tab: "Passord"
|
||||
emails_tab: "Epost"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Farge på Trollmannens Klær"
|
||||
new_password: "Nytt Passord"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module.exports = nativeDescription: "Nederlands (België)", englishDescription: "Dutch (Belgium)", translation:
|
||||
module.exports = nativeDescription: "Nederlands (België)", englishDescription: "Dutch (Belgium)", translation:
|
||||
common:
|
||||
loading: "Aan het laden..."
|
||||
saving: "Opslaan..."
|
||||
|
@ -6,6 +6,7 @@
|
|||
send: "Verzend"
|
||||
cancel: "Annuleren"
|
||||
save: "Opslagen"
|
||||
# publish: "Publish"
|
||||
create: "Creëer"
|
||||
delay_1_sec: "1 seconde"
|
||||
delay_3_sec: "3 secondes"
|
||||
|
@ -47,9 +48,6 @@
|
|||
versions:
|
||||
save_version_title: "Nieuwe versie opslagen"
|
||||
new_major_version: "Nieuwe hoofd versie"
|
||||
update_break_level: "(Zou deze update oudere oplossingen van dit level kunnen breken?)"
|
||||
update_break_component: "(Zou deze update iets kunnen breken die afhankelijk is van deze Component?)"
|
||||
update_break_system: "(Zou deze update iets kunnen breken die afhankelijk is van dit Systeem?)"
|
||||
cla_prefix: "Om bewerkingen op te slaan, moet je eerst akkoord gaan met onze"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@
|
|||
creating: "Account aanmaken..."
|
||||
sign_up: "Aanmelden"
|
||||
log_in: "inloggen met wachtwoord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Leer programmeren in JavaScript door het spelen van een spel"
|
||||
|
@ -170,7 +169,7 @@
|
|||
password_mismatch: "Het wachtwoord komt niet overeen."
|
||||
job_profile: "Job Profiel"
|
||||
job_profile_approved: "Jouw job profiel werd goedgekeurd door CodeCombat. Werkgevers zullen het kunnen bekijken totdat je het inactief zet of als er geen verandering in komt voor vier weken."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Instellingen Aanpassen"
|
||||
|
@ -292,6 +291,9 @@
|
|||
time_current: "Nu:"
|
||||
time_total: "Maximum:"
|
||||
time_goto: "Ga naar:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrator panels"
|
||||
|
@ -325,7 +327,6 @@
|
|||
more: "Meer"
|
||||
wiki: "Wiki"
|
||||
live_chat: "Live Chat"
|
||||
level_publish: "Publiceer dit level (onomkeerbaar)?"
|
||||
level_some_options: "Enkele opties?"
|
||||
level_tab_thangs: "Elementen"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -359,8 +360,8 @@
|
|||
article_search_title: "Zoek Artikels Hier"
|
||||
thang_search_title: "Zoek Thang Types Hier"
|
||||
level_search_title: "Zoek Levels Hier"
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
read_only_warning: "Herinnering: Je kunt hier geen aanpassingen opslaan, want je bent niet ingelogd als administrator."
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -394,6 +395,7 @@
|
|||
easy: "Gemakkelijk"
|
||||
medium: "Medium"
|
||||
hard: "Moeilijk"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wie is CodeCombat?"
|
||||
|
@ -598,6 +600,9 @@
|
|||
simulate_all: "RESET EN SIMULEER SPELLEN"
|
||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Leaderboard"
|
||||
battle_as: "Vecht als "
|
||||
summary_your: "Jouw "
|
||||
|
@ -662,3 +667,5 @@
|
|||
leaderboard: "Scorebord"
|
||||
user_schema: "Gebruikersschema"
|
||||
user_profile: "Gebruikersprofiel"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription: "Dutch (Netherlands)", translation:
|
||||
module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription: "Dutch (Netherlands)", translation:
|
||||
common:
|
||||
loading: "Aan het laden..."
|
||||
saving: "Opslaan..."
|
||||
|
@ -6,6 +6,7 @@
|
|||
send: "Verzend"
|
||||
cancel: "Annuleren"
|
||||
save: "Opslagen"
|
||||
# publish: "Publish"
|
||||
create: "Creëer"
|
||||
delay_1_sec: "1 seconde"
|
||||
delay_3_sec: "3 secondes"
|
||||
|
@ -47,9 +48,6 @@
|
|||
versions:
|
||||
save_version_title: "Nieuwe versie opslagen"
|
||||
new_major_version: "Nieuwe hoofd versie"
|
||||
update_break_level: "(Zou deze update oudere oplossingen van dit level kunnen breken?)"
|
||||
update_break_component: "(Zou deze update iets kunnen breken die afhankelijk is van deze Component?)"
|
||||
update_break_system: "(Zou deze update iets kunnen breken die afhankelijk is van dit Systeem?)"
|
||||
cla_prefix: "Om bewerkingen op te slaan, moet je eerst akkoord gaan met onze"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@
|
|||
creating: "Account aanmaken..."
|
||||
sign_up: "Aanmelden"
|
||||
log_in: "inloggen met wachtwoord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Leer programmeren in JavaScript door het spelen van een spel"
|
||||
|
@ -170,7 +169,7 @@
|
|||
password_mismatch: "Het wachtwoord komt niet overeen."
|
||||
job_profile: "Job Profiel"
|
||||
job_profile_approved: "Jouw job profiel werd goedgekeurd door CodeCombat. Werkgevers zullen het kunnen bekijken totdat je het inactief zet of als er geen verandering in komt voor vier weken."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Instellingen Aanpassen"
|
||||
|
@ -292,6 +291,9 @@
|
|||
time_current: "Nu:"
|
||||
time_total: "Maximum:"
|
||||
time_goto: "Ga naar:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrator panels"
|
||||
|
@ -325,7 +327,6 @@
|
|||
more: "Meer"
|
||||
wiki: "Wiki"
|
||||
live_chat: "Live Chat"
|
||||
level_publish: "Publiceer dit level (onomkeerbaar)?"
|
||||
level_some_options: "Enkele opties?"
|
||||
level_tab_thangs: "Elementen"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -359,8 +360,8 @@
|
|||
article_search_title: "Zoek Artikels Hier"
|
||||
thang_search_title: "Zoek Thang Types Hier"
|
||||
level_search_title: "Zoek Levels Hier"
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
read_only_warning: "Herinnering: Je kunt hier geen aanpassingen opslaan, want je bent niet ingelogd als administrator."
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -394,6 +395,7 @@
|
|||
easy: "Gemakkelijk"
|
||||
medium: "Medium"
|
||||
hard: "Moeilijk"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wie is CodeCombat?"
|
||||
|
@ -598,6 +600,9 @@
|
|||
simulate_all: "RESET EN SIMULEER SPELLEN"
|
||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Leaderboard"
|
||||
battle_as: "Vecht als "
|
||||
summary_your: "Jouw "
|
||||
|
@ -662,3 +667,5 @@
|
|||
leaderboard: "Scorebord"
|
||||
user_schema: "Gebruikersschema"
|
||||
user_profile: "Gebruikersprofiel"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", translation:
|
||||
module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", translation:
|
||||
common:
|
||||
loading: "Aan het laden..."
|
||||
saving: "Opslaan..."
|
||||
|
@ -6,6 +6,7 @@
|
|||
send: "Verzend"
|
||||
cancel: "Annuleren"
|
||||
save: "Opslagen"
|
||||
# publish: "Publish"
|
||||
create: "Creëer"
|
||||
delay_1_sec: "1 seconde"
|
||||
delay_3_sec: "3 secondes"
|
||||
|
@ -47,9 +48,6 @@
|
|||
versions:
|
||||
save_version_title: "Nieuwe versie opslagen"
|
||||
new_major_version: "Nieuwe hoofd versie"
|
||||
update_break_level: "(Zou deze update oudere oplossingen van dit level kunnen breken?)"
|
||||
update_break_component: "(Zou deze update iets kunnen breken die afhankelijk is van deze Component?)"
|
||||
update_break_system: "(Zou deze update iets kunnen breken die afhankelijk is van dit Systeem?)"
|
||||
cla_prefix: "Om bewerkingen op te slaan, moet je eerst akkoord gaan met onze"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@
|
|||
creating: "Account aanmaken..."
|
||||
sign_up: "Aanmelden"
|
||||
log_in: "inloggen met wachtwoord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Leer programmeren in JavaScript door het spelen van een spel"
|
||||
|
@ -170,7 +169,7 @@
|
|||
password_mismatch: "Het wachtwoord komt niet overeen."
|
||||
job_profile: "Job Profiel"
|
||||
job_profile_approved: "Jouw job profiel werd goedgekeurd door CodeCombat. Werkgevers zullen het kunnen bekijken totdat je het inactief zet of als er geen verandering in komt voor vier weken."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
|
||||
account_profile:
|
||||
edit_settings: "Instellingen Aanpassen"
|
||||
|
@ -292,6 +291,9 @@
|
|||
time_current: "Nu:"
|
||||
time_total: "Maximum:"
|
||||
time_goto: "Ga naar:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administrator panels"
|
||||
|
@ -325,7 +327,6 @@
|
|||
more: "Meer"
|
||||
wiki: "Wiki"
|
||||
live_chat: "Live Chat"
|
||||
level_publish: "Publiceer dit level (onomkeerbaar)?"
|
||||
level_some_options: "Enkele opties?"
|
||||
level_tab_thangs: "Elementen"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -359,8 +360,8 @@
|
|||
article_search_title: "Zoek Artikels Hier"
|
||||
thang_search_title: "Zoek Thang Types Hier"
|
||||
level_search_title: "Zoek Levels Hier"
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
read_only_warning: "Herinnering: Je kunt hier geen aanpassingen opslaan, want je bent niet ingelogd als administrator."
|
||||
signup_to_create: "Registreer je om nieuwe content te maken"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -394,6 +395,7 @@
|
|||
easy: "Gemakkelijk"
|
||||
medium: "Medium"
|
||||
hard: "Moeilijk"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Wie is CodeCombat?"
|
||||
|
@ -598,6 +600,9 @@
|
|||
simulate_all: "RESET EN SIMULEER SPELLEN"
|
||||
games_simulated_by: "Door jou gesimuleerde spellen:"
|
||||
games_simulated_for: "Voor jou gesimuleerde spellen:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Leaderboard"
|
||||
battle_as: "Vecht als "
|
||||
summary_your: "Jouw "
|
||||
|
@ -662,3 +667,5 @@
|
|||
leaderboard: "Scorebord"
|
||||
user_schema: "Gebruikersschema"
|
||||
user_profile: "Gebruikersprofiel"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# send: "Send"
|
||||
cancel: "Avbryt"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekunder"
|
||||
delay_3_sec: "3 sekunder"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
creating: "Oppretter Konto..."
|
||||
sign_up: "Registrer deg"
|
||||
log_in: "logg inn med passord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lær å Kode JavaScript ved å Spille et Spill"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
wizard_tab: "Trollmann"
|
||||
password_tab: "Passord"
|
||||
emails_tab: "Epost"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Farge på Trollmannens Klær"
|
||||
new_password: "Nytt Passord"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# send: "Send"
|
||||
cancel: "Anuluj"
|
||||
save: "Zapisz"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekunda"
|
||||
delay_3_sec: "3 sekundy"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
versions:
|
||||
save_version_title: "Zapisz nową wersję"
|
||||
new_major_version: "Nowa wersja główna"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Aby zapisać zmiany, musisz najpierw zaakceptować naszą"
|
||||
cla_url: "umowę licencyjną dla współtwórców (CLA)"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
creating: "Tworzenie konta..."
|
||||
sign_up: "Zarejestruj"
|
||||
log_in: "zaloguj się używając hasła"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Naucz się JavaScript grając"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
wizard_tab: "Czarodziej"
|
||||
password_tab: "Hasło"
|
||||
emails_tab: "Powiadomienia"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Administrator"
|
||||
wizard_color: "Kolor ubrań czarodzieja"
|
||||
new_password: "Nowe hasło"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Panel administracyjny"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Trochę opcji?"
|
||||
level_tab_thangs: "Obiekty"
|
||||
level_tab_scripts: "Skrypty"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
thang_search_title: "Przeszukaj typy obiektów"
|
||||
level_search_title: "Przeszukaj poziomy"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Podgląd"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
easy: "Łatwy"
|
||||
medium: "Średni"
|
||||
hard: "Trudny"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Czym jest CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
simulate_all: "RESETUJ I SYMULUJ GRY"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Tabela rankingowa"
|
||||
battle_as: "Walcz jako "
|
||||
summary_your: "Twój "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
save: "Salvar"
|
||||
# publish: "Publish"
|
||||
create: "Criar"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
versions:
|
||||
save_version_title: "Salvar nova versão"
|
||||
new_major_version: "Nova versão principal"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Para salvar as modificações, primeiro você deve concordar com nosso"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
creating: "Criando a nova conta..."
|
||||
sign_up: "Criar conta"
|
||||
log_in: "Entre com a senha"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprenda a programar em JavaScript enquanto se diverte com um jogo."
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Senha"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Cor das Roupas do Feiticeiro"
|
||||
new_password: "Nova Senha"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Visualização de Administrador"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Algumas Opções?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
thang_search_title: "Procurar Tipos de Thang Aqui"
|
||||
level_search_title: "Procurar Níveis Aqui"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prever"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
easy: "Fácil"
|
||||
medium: "Médio"
|
||||
hard: "Difícil"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Quem é CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
simulate_all: "RESETAR E SIMULAR PARTIDAS"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Tabela de Classificação"
|
||||
battle_as: "Lutar como "
|
||||
summary_your: "Seus "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
save: "Guardar"
|
||||
# publish: "Publish"
|
||||
create: "Create"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
versions:
|
||||
save_version_title: "Guardar Nova Versão"
|
||||
new_major_version: "Nova Versão Principal"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Para guardar as alterações, precisas concordar com o nosso"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
creating: "A criar conta..."
|
||||
sign_up: "Registar"
|
||||
log_in: "iniciar sessão com palavra-passe"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprende a Programar JavaScript ao Jogar um Jogo"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Palavra-passe"
|
||||
emails_tab: "E-mails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Cor das roupas do feiticeiro"
|
||||
new_password: "Nova palavra-passe"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Visualizações de Admin"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Algumas opções?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
thang_search_title: "Procurar Tipos de Thang Aqui"
|
||||
level_search_title: "Procurar Níveis Aqui"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Visualizar"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
easy: "Fácil"
|
||||
medium: "Médio"
|
||||
hard: "Difícil"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Tabela de Classificação"
|
||||
battle_as: "Lutar como "
|
||||
summary_your: "As tuas "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Português europeu", englishDescription: "P
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# send: "Send"
|
||||
cancel: "Cancelar"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 segundo"
|
||||
delay_3_sec: "3 segundos"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
creating: "Criando a nova conta..."
|
||||
sign_up: "Criar conta"
|
||||
log_in: "Entre com a senha"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Aprenda a programar em JavaScript enquanto se diverte com um jogo."
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
wizard_tab: "Feiticeiro"
|
||||
password_tab: "Senha"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Cor das Roupas do Feiticeiro"
|
||||
new_password: "Nova Senha"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# send: "Send"
|
||||
cancel: "Anulează"
|
||||
save: "Salvează"
|
||||
# publish: "Publish"
|
||||
create: "Crează"
|
||||
delay_1_sec: "1 secundă"
|
||||
delay_3_sec: "3 secunde"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
versions:
|
||||
save_version_title: "Salvează noua versiune"
|
||||
new_major_version: "Versiune nouă majoră"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Pentru a salva modificările mai intâi trebuie sa fiți de acord cu"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
creating: "Se creează contul..."
|
||||
sign_up: "Înscrie-te"
|
||||
log_in: "loghează-te cu parola"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Învață sa scrii JavaScript jucându-te"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
wizard_tab: "Wizard"
|
||||
password_tab: "Parolă"
|
||||
emails_tab: "Email-uri"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Admin"
|
||||
wizard_color: "Culoare haine pentru Wizard"
|
||||
new_password: "Parolă nouă"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Admin vede"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Opțiuni?"
|
||||
level_tab_thangs: "Thangs"
|
||||
level_tab_scripts: "Script-uri"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
thang_search_title: "Caută tipuri de Thang aici"
|
||||
level_search_title: "Caută nivele aici"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
easy: "Ușor"
|
||||
medium: "Mediu"
|
||||
hard: "Greu"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Cine este CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
simulate_all: "RESETEAZĂ ȘI SIMULEAZĂ JOCURI"
|
||||
games_simulated_by: "Jocuri simulate de tine:"
|
||||
games_simulated_for: "Jocuri simulate pentru tine:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Clasament"
|
||||
battle_as: "Luptă ca "
|
||||
summary_your: "Al tău "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
send: "Отправить"
|
||||
cancel: "Отмена"
|
||||
save: "Сохранить"
|
||||
# publish: "Publish"
|
||||
create: "Создать"
|
||||
delay_1_sec: "1 секунда"
|
||||
delay_3_sec: "3 секунды"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
versions:
|
||||
save_version_title: "Сохранить новую версию"
|
||||
new_major_version: "Новая основная версия"
|
||||
update_break_level: "(Может ли это обновление нарушить старые решения уровня?)"
|
||||
update_break_component: "(Может ли это обновление нарушить что-нибудь, зависящее от данного Компонента?)"
|
||||
update_break_system: "(Может ли это обновление нарушить что-нибудь, зависящее от данной Системы?)"
|
||||
cla_prefix: "Чтобы сохранить изменения, сначала вы должны согласиться с нашим"
|
||||
cla_url: "лицензионным соглашением соавторов"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
creating: "Создание аккаунта..."
|
||||
sign_up: "Регистрация"
|
||||
log_in: "вход с паролем"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Научитесь программировать на JavaScript, играя в игру"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
wizard_tab: "Волшебник"
|
||||
password_tab: "Пароль"
|
||||
emails_tab: "Email-адреса"
|
||||
job_profile_tab: "Профиль соискателя"
|
||||
admin: "Админ"
|
||||
wizard_color: "Цвет одежды волшебника"
|
||||
new_password: "Новый пароль"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
time_current: "Текущее:"
|
||||
time_total: "Максимальное:"
|
||||
time_goto: "Перейти на:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Админ панель"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
more: "Ещё"
|
||||
wiki: "Вики"
|
||||
live_chat: "Онлайн-чат"
|
||||
level_publish: "Опубликовать уровень (необратимо)?"
|
||||
level_some_options: "Ещё опции"
|
||||
level_tab_thangs: "Объекты"
|
||||
level_tab_scripts: "Скрипты"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
thang_search_title: "Искать типы объектов"
|
||||
level_search_title: "Искать уровни"
|
||||
signup_to_create: "Авторизуйтесь для создания нового контента"
|
||||
read_only_warning: "Примечание: вы не можете сохранять здесь любые правки, потому что вы не вошли как администратор."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Предпросмотр"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
easy: "Просто"
|
||||
medium: "Нормально"
|
||||
hard: "Сложно"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Кто стоит за CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
simulate_all: "СБРОСИТЬ И СИМУЛИРОВАТЬ ИГРЫ"
|
||||
games_simulated_by: "Игры, симулированные вами:"
|
||||
games_simulated_for: "Игры, симулированные за вас:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "таблица лидеров"
|
||||
battle_as: "Сразиться за "
|
||||
summary_your: "Ваши "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
leaderboard: "таблица лидеров"
|
||||
user_schema: "Пользовательская Schema"
|
||||
user_profile: "Пользовательский профиль"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# send: "Send"
|
||||
cancel: "Zruš"
|
||||
save: "Ulož"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekunda"
|
||||
delay_3_sec: "3 sekundy"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
versions:
|
||||
save_version_title: "Ulož novú verziu"
|
||||
new_major_version: "Nová primárna verzia"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Ak chcete uložiť svoje zmeny, musíte najprv súhlasiť s našou"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
creating: "Vytvára sa účet..."
|
||||
sign_up: "Registruj sa"
|
||||
log_in: "prihlás sa pomocou hesla"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Nauč sa programovať v Javascripte pomocou hry"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
wizard_tab: "Kúzelník"
|
||||
password_tab: "Heslo"
|
||||
emails_tab: "E-maily"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Spravovať"
|
||||
wizard_color: "Farba kúzelníckej róby"
|
||||
new_password: "Nové heslo"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# send: "Send"
|
||||
cancel: "Откажи"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 секунда"
|
||||
delay_3_sec: "3 секунде"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
creating: "Прављење налога..."
|
||||
sign_up: "Упиши се"
|
||||
log_in: "улогуј се са шифром"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Научи да пишеш JavaScript играјући игру"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
wizard_tab: "Чаробњак"
|
||||
password_tab: "Шифра"
|
||||
emails_tab: "Мејлови"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Боја Одеће Чаробњака"
|
||||
new_password: "Нова Шифра"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# send: "Send"
|
||||
cancel: "Avbryt"
|
||||
save: "Spara"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 sekund"
|
||||
delay_3_sec: "3 sekunder"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
versions:
|
||||
save_version_title: "Spara ny version"
|
||||
new_major_version: "Ny betydande version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "För att spara ändringar måste du först godkänna vår"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
creating: "Skapar konto..."
|
||||
sign_up: "Skapa konto"
|
||||
log_in: "logga in med lösenord"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Lär dig att koda Javascript genom att spela ett spel."
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
wizard_tab: "Trollkarl"
|
||||
password_tab: "Lösenord"
|
||||
emails_tab: "E-postadresser"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Administratör"
|
||||
wizard_color: "Trollkarlens klädfärg"
|
||||
new_password: "Nytt lösenord"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Administratörsvyer"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Några inställningar?"
|
||||
level_tab_thangs: "Enheter"
|
||||
level_tab_scripts: "Skript"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
thang_search_title: "Sök enhetstyper här"
|
||||
level_search_title: "Sök nivåer här"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Förhandsgranska"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
easy: "Lätt"
|
||||
medium: "Medium"
|
||||
hard: "Svår"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Vilka är CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
simulate_all: "ÅTERSTÄLL OCH SIMULERA MATCHER"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Resultattavla"
|
||||
battle_as: "Kämpa som "
|
||||
summary_your: "Dina "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# send: "Send"
|
||||
cancel: "ยกเลิก"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 วินาที"
|
||||
delay_3_sec: "3 วินาที"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# creating: "Creating Account..."
|
||||
sign_up: "สมัคร"
|
||||
log_in: "เข้าสู่ระบบด้วยรหัสผ่าน"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# wizard_tab: "Wizard"
|
||||
password_tab: "รหัสผ่าน"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
new_password: "รหัสผ่านใหม่"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# send: "Send"
|
||||
cancel: "İptal"
|
||||
save: "Kaydet"
|
||||
# publish: "Publish"
|
||||
create: "Oluştur"
|
||||
delay_1_sec: "1 saniye"
|
||||
delay_3_sec: "3 saniye"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
versions:
|
||||
save_version_title: "Yeni Sürümü Kaydet"
|
||||
new_major_version: "Yeni Önemli Sürüm"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Değişiklikleri kaydetmek için ilk olarak"
|
||||
cla_url: "KLA'mızı"
|
||||
cla_suffix: "kabul etmelisiniz."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
creating: "Hesap oluşturuluyor..."
|
||||
sign_up: "Kaydol"
|
||||
log_in: "buradan giriş yapabilirsiniz."
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Oyun oynayarak JavaScript kodlamayı öğrenin"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
wizard_tab: "Sihirbaz"
|
||||
password_tab: "Şifre"
|
||||
emails_tab: "E-postalar"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Yönetici"
|
||||
wizard_color: "Sihirbaz Kıyafeti Rengi"
|
||||
new_password: "Yeni Şifre"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
time_current: "Şimdi:"
|
||||
time_total: "Max:"
|
||||
time_goto: "Git:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "Yönetici Görünümleri"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
level_some_options: "Bazı Seçenekler?"
|
||||
level_tab_thangs: "Nesneler"
|
||||
level_tab_scripts: "Betikler"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
level_search_title: "Seviye ara"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
read_only_warning: "Uyarı: Yönetici olarak giriş yapmadığınız sürece herhangi bir değişikliği kayıt edemezsiniz."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Önizleme"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
easy: "Kolay"
|
||||
medium: "Normal"
|
||||
hard: "Zor"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "CodeCombat kimlerden oluşur?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "Sıralama"
|
||||
# battle_as: "Battle as "
|
||||
summary_your: "Senin "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
leaderboard: "Sıralama"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# send: "Send"
|
||||
cancel: "Відміна"
|
||||
save: "Зберегти"
|
||||
# publish: "Publish"
|
||||
create: "Створити"
|
||||
delay_1_sec: "1 секунда"
|
||||
delay_3_sec: "3 секунди"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
versions:
|
||||
save_version_title: "Зберегти нову версію"
|
||||
new_major_version: "Зберегти основну версію"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Для збереження змін спочатку треба погодитись з нашим"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
creating: "Створення акаунта..."
|
||||
sign_up: "Реєстрація"
|
||||
log_in: "вхід з паролем"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Навчіться програмувати на JavaScript, граючи у гру"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
wizard_tab: "Персонаж"
|
||||
password_tab: "Пароль"
|
||||
emails_tab: "Email-адреси"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "Aдмін"
|
||||
wizard_color: "Колір одягу персонажа"
|
||||
new_password: "Новий пароль"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
level_tab_thangs: "Об'єкти"
|
||||
level_tab_scripts: "Скрипти"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
easy: "Легкий"
|
||||
medium: "Середній"
|
||||
hard: "Важкий"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "Хто є CodeCombat?"
|
||||
|
@ -480,36 +481,36 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepencies between translations, the English document takes precedence."
|
||||
|
||||
# contribute:
|
||||
# page_title: "Contributing"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
# introduction_desc_pref: "We want to be where programmers of all stripes come to learn and play together, introduce others to the wonderful world of coding, and reflect the best parts of the community. We can't and don't want to do that alone; what makes projects like GitHub, Stack Overflow and Linux great are the people who use them and build on them. To that end, "
|
||||
# introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
# introduction_desc_suf: ", and we aim to provide as many ways as possible for you to take part and make this project as much yours as ours."
|
||||
# introduction_desc_ending: "We hope you'll join our party!"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message_pref: "To subscribe for class emails, you'll need to "
|
||||
# alert_account_message_suf: "first."
|
||||
# alert_account_message_create_url: "create an account"
|
||||
# archmage_summary: "Interested in working on game graphics, user interface design, database and server organization, multiplayer networking, physics, sound, or game engine performance? Want to help build a game to help other people learn what you are good at? We have a lot to do and if you are an experienced programmer and want to develop for CodeCombat, this class is for you. We would love your help building the best programming game ever."
|
||||
contribute:
|
||||
page_title: "Співпраця"
|
||||
character_classes_title: "Класи персонажів"
|
||||
introduction_desc_intro: "Ми покладаємо великі надії на CodeCombat."
|
||||
introduction_desc_pref: "Ми хочемо створити місце, де збиралися б програмісти найрізноманітніших спеціалізацій, абі вчитись та грати разом. Хочемо знайомити інших з неймовірним світом програмування та відображувати найкращі частини спільноти. Ми не можемо і не хочемо робити це самі, бо такі проекти, як GitHub, Stack Overflow або Linux стали видатними саме завдяки людям, що використовують і будують їх. Через це"
|
||||
introduction_desc_github_url: "код CodeCombat повністю вікдритий"
|
||||
introduction_desc_suf: ", і ми пропонуємо вам усі можливі шляхи взяти участь у розробці й перетворити цей проект на не тільки наш. але й ваш теж."
|
||||
introduction_desc_ending: "Сподіваємось, ви станете частиною нашої команди!"
|
||||
introduction_desc_signature: "- Нік, Джордж, Скотт, Майкл, Джеремі та Глен"
|
||||
alert_account_message_intro: "Привіт!"
|
||||
alert_account_message_pref: "Щоб підписатися на е-мейли для вашого класу, потрібно"
|
||||
alert_account_message_suf: "спершу."
|
||||
alert_account_message_create_url: "створити акаунт"
|
||||
archmage_summary: "Зацікавлений у роботі над ігровою графікою, дизайном інтерфейсу, організацією баз даних та серверу, мультиплеєром, фізокю, звуком або продукційністю ігрового движка? Мрієш допомогти у створенні гри, яка навчить інших того, у чому ви профі? У нас багато роботи, і якщо ти досвідчений програміст і хочеш розробляти CodeCombat, цей клас для тебе. Ми будемо щасливі бачити, як ти створюєш найкращу в світі гру для програмістів. "
|
||||
# archmage_introduction: "One of the best parts about building games is they synthesize so many different things. Graphics, sound, real-time networking, social networking, and of course many of the more common aspects of programming, from low-level database management, and server administration to user facing design and interface building. There's a lot to do, and if you're an experienced programmer with a hankering to really dive into the nitty-gritty of CodeCombat, this class might be for you. We would love to have your help building the best programming game ever."
|
||||
# class_attributes: "Class Attributes"
|
||||
class_attributes: "Ознаки класу"
|
||||
# archmage_attribute_1_pref: "Knowledge in "
|
||||
# archmage_attribute_1_suf: ", or a desire to learn. Most of our code is in this language. If you're a fan of Ruby or Python, you'll feel right at home. It's JavaScript, but with a nicer syntax."
|
||||
# archmage_attribute_2: "Some experience in programming and personal initiative. We'll help you get oriented, but we can't spend much time training you."
|
||||
# how_to_join: "How To Join"
|
||||
# join_desc_1: "Anyone can help out! Just check out our "
|
||||
# join_desc_2: "to get started, and check the box below to mark yourself as a brave Archmage and get the latest news by email. Want to chat about what to do or how to get more deeply involved? "
|
||||
# join_desc_3: ", or find us in our "
|
||||
# join_desc_4: "and we'll go from there!"
|
||||
# join_url_email: "Email us"
|
||||
# join_url_hipchat: "public HipChat room"
|
||||
# more_about_archmage: "Learn More About Becoming an Archmage"
|
||||
# archmage_subscribe_desc: "Get emails on new coding opportunities and announcements."
|
||||
how_to_join: "Як приєднатися"
|
||||
join_desc_1: "Кожен може допомогти! Заходь на наш "
|
||||
join_desc_2: ", щоб почати та постав позначку в чек-боксі нижче, щоб оголосити себе відважним архімагом та отримувати останні новини по е-мейл. Хочеш поспілкуватися про те, що саме робити й як включитися в роботу найглибше?"
|
||||
join_desc_3: "або знайдіть нас у нашій "
|
||||
join_desc_4: "- і ми вирішимо, з чого почати!"
|
||||
join_url_email: "Напишіть нам"
|
||||
join_url_hipchat: "публічній HipChat кімнаті"
|
||||
more_about_archmage: "Дізнатися, як стати Архімагом"
|
||||
archmage_subscribe_desc: "Отримувати листи з анонсами та новими можливостями для розробки."
|
||||
# artisan_summary_pref: "Want to design levels and expand CodeCombat's arsenal? People are playing through our content at a pace faster than we can build! Right now, our level editor is barebone, so be wary. Making levels will be a little challenging and buggy. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_summary_suf: ", then this class is for you."
|
||||
artisan_summary_suf: "тоді цей клас для тебе."
|
||||
# artisan_introduction_pref: "We must construct additional levels! People be clamoring for more content, and we can only build so many ourselves. Right now your workstation is level one; our level editor is barely usable even by its creators, so be wary. If you have visions of campaigns spanning for-loops to"
|
||||
# artisan_introduction_suf: ", then this class might be for you."
|
||||
# artisan_attribute_1: "Any experience in building content like this would be nice, such as using Blizzard's level editors. But not required!"
|
||||
|
@ -520,17 +521,17 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# artisan_join_step2: "Create a new level and explore existing levels."
|
||||
# artisan_join_step3: "Find us in our public HipChat room for help."
|
||||
# artisan_join_step4: "Post your levels on the forum for feedback."
|
||||
# more_about_artisan: "Learn More About Becoming an Artisan"
|
||||
# artisan_subscribe_desc: "Get emails on level editor updates and announcements."
|
||||
more_about_artisan: "Дізнатися, як стати Ремісником"
|
||||
artisan_subscribe_desc: "Отримувати листи з анонсами та новинами про вдосконалення редактора рівнів."
|
||||
# adventurer_summary: "Let us be clear about your role: you are the tank. You are going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class is for you."
|
||||
# adventurer_introduction: "Let's be clear about your role: you are the tank. You're going to take heavy damage. We need people to try out brand-new levels and help identify how to make things better. The pain will be enormous; making good games is a long process and no one gets it right the first time. If you can endure and have a high constitution score, then this class might be for you."
|
||||
# adventurer_attribute_1: "A thirst for learning. You want to learn how to code and we want to teach you how to code. You'll probably be doing most of the teaching in this case, though."
|
||||
# adventurer_attribute_2: "Charismatic. Be gentle but articulate about what needs improving, and offer suggestions on how to improve."
|
||||
# adventurer_join_pref: "Either get together with (or recruit!) an Artisan and work with them, or check the box below to receive emails when there are new levels to test. We'll also be posting about levels to review on our networks like"
|
||||
# adventurer_forum_url: "our forum"
|
||||
adventurer_forum_url: "наш форум"
|
||||
# adventurer_join_suf: "so if you prefer to be notified those ways, sign up there!"
|
||||
# more_about_adventurer: "Learn More About Becoming an Adventurer"
|
||||
# adventurer_subscribe_desc: "Get emails when there are new levels to test."
|
||||
more_about_adventurer: "Дізнатися, як стати Шукачем пригод"
|
||||
adventurer_subscribe_desc: "Отримувати листи, коли з'являються нові рівні для тестування."
|
||||
# scribe_summary_pref: "CodeCombat is not just going to be a bunch of levels. It will also be a resource of programming knowledge that players can hook into. That way, each Artisan can link to a detailed article that for the player's edification: documentation akin to what the "
|
||||
# scribe_summary_suf: " has built. If you enjoy explaining programming concepts, then this class is for you."
|
||||
# scribe_introduction_pref: "CodeCombat isn't just going to be a bunch of levels. It will also include a resource for knowledge, a wiki of programming concepts that levels can hook into. That way rather than each Artisan having to describe in detail what a comparison operator is, they can simply link their level to the Article describing them that is already written for the player's edification. Something along the lines of what the "
|
||||
|
@ -539,56 +540,56 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# scribe_attribute_1: "Skill in words is pretty much all you need. Not only grammar and spelling, but able to convey complicated ideas to others."
|
||||
# contact_us_url: "Contact us"
|
||||
# scribe_join_description: "tell us a little about yourself, your experience with programming and what sort of things you'd like to write about. We'll go from there!"
|
||||
# more_about_scribe: "Learn More About Becoming a Scribe"
|
||||
# scribe_subscribe_desc: "Get emails about article writing announcements."
|
||||
more_about_scribe: "Дізнатися, як стати Писарем"
|
||||
scribe_subscribe_desc: "Отрумивати листи з анонсами щодо написання статтей."
|
||||
# diplomat_summary: "There is a large interest in CodeCombat in other countries that do not speak English! We are looking for translators who are willing to spend their time translating the site's corpus of words so that CodeCombat is accessible across the world as soon as possible. If you'd like to help getting CodeCombat international, then this class is for you."
|
||||
# diplomat_introduction_pref: "So, if there's one thing we learned from the "
|
||||
# diplomat_launch_url: "launch in October"
|
||||
# diplomat_introduction_suf: "it's that there is sizeable interest in CodeCombat in other countries! We're building a corps of translators eager to turn one set of words into another set of words to get CodeCombat as accessible across the world as possible. If you like getting sneak peeks at upcoming content and getting these levels to your fellow nationals ASAP, then this class might be for you."
|
||||
# diplomat_attribute_1: "Fluency in English and the language you would like to translate to. When conveying complicated ideas, it's important to have a strong grasp in both!"
|
||||
# diplomat_join_pref_github: "Find your language locale file "
|
||||
# diplomat_github_url: "on GitHub"
|
||||
diplomat_github_url: "на GitHub"
|
||||
# diplomat_join_suf_github: ", edit it online, and submit a pull request. Also, check this box below to keep up-to-date on new internationalization developments!"
|
||||
# more_about_diplomat: "Learn More About Becoming a Diplomat"
|
||||
# diplomat_subscribe_desc: "Get emails about i18n developments and levels to translate."
|
||||
more_about_diplomat: "Дізнатися, як стати Дипломатом"
|
||||
diplomat_subscribe_desc: "Отримувати листи про розробки i18n та нові рівні для перекладу."
|
||||
# ambassador_summary: "We are trying to build a community, and every community needs a support team when there are troubles. We have got chats, emails, and social networks so that our users can get acquainted with the game. If you want to help people get involved, have fun, and learn some programming, then this class is for you."
|
||||
# ambassador_introduction: "This is a community we're building, and you are the connections. We've got Olark chats, emails, and social networks with lots of people to talk with and help get acquainted with the game and learn from. If you want to help people get involved and have fun, and get a good feel of the pulse of CodeCombat and where we're going, then this class might be for you."
|
||||
# ambassador_attribute_1: "Communication skills. Be able to identify the problems players are having and help them solve them. Also, keep the rest of us informed about what players are saying, what they like and don't like and want more of!"
|
||||
# ambassador_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll go from there!"
|
||||
# ambassador_join_note_strong: "Note"
|
||||
# ambassador_join_note_desc: "One of our top priorities is to build multiplayer where players having difficulty solving levels can summon higher level wizards to help them. This will be a great way for ambassadors to do their thing. We'll keep you posted!"
|
||||
# more_about_ambassador: "Learn More About Becoming an Ambassador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
more_about_ambassador: "Дізнатися, як стати Посланцем"
|
||||
ambassador_subscribe_desc: "Отримувати листи з новинами щодо підтримки користувачів та розробки мультиплеєра."
|
||||
# counselor_summary: "None of the above roles fit what you are interested in? Do not worry, we are on the lookout for anybody who wants a hand in the development of CodeCombat! If you are interested in teaching, game development, open source management, or anything else that you think will be relevant to us, then this class is for you."
|
||||
# counselor_introduction_1: "Do you have life experience? A different perspective on things that can help us decide how to shape CodeCombat? Of all these roles, this will probably take the least time, but individually you may make the most difference. We're on the lookout for wisened sages, particularly in areas like: teaching, game development, open source project management, technical recruiting, entrepreneurship, or design."
|
||||
# counselor_introduction_2: "Or really anything that is relevant to the development of CodeCombat. If you have knowledge and want to share it to help grow this project, then this class might be for you."
|
||||
# counselor_attribute_1: "Experience, in any of the areas above or something you think might be helpful."
|
||||
# counselor_attribute_2: "A little bit of free time!"
|
||||
# counselor_join_desc: "tell us a little about yourself, what you've done and what you'd be interested in doing. We'll put you in our contact list and be in touch when we could use advice (not too often)."
|
||||
# more_about_counselor: "Learn More About Becoming a Counselor"
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
# diligent_scribes: "Our Diligent Scribes:"
|
||||
# powerful_archmages: "Our Powerful Archmages:"
|
||||
# creative_artisans: "Our Creative Artisans:"
|
||||
# brave_adventurers: "Our Brave Adventurers:"
|
||||
# translating_diplomats: "Our Translating Diplomats:"
|
||||
# helpful_ambassadors: "Our Helpful Ambassadors:"
|
||||
more_about_counselor: "Дізнатися, як стати Радником"
|
||||
changes_auto_save: "Зміни зберігаються автоматично, коли ви ставите позначку у чекбоксі."
|
||||
diligent_scribes: "Наші старанні Писарі:"
|
||||
powerful_archmages: "Наші могутні Архімаги:"
|
||||
creative_artisans: "Наші талановиті Ремісники:"
|
||||
brave_adventurers: "Наші хоробрі Шукачі пригод:"
|
||||
translating_diplomats: "Наші перекладачі - Дипломати:"
|
||||
helpful_ambassadors: "Наші незамінні Посланці:"
|
||||
|
||||
# classes:
|
||||
# archmage_title: "Archmage"
|
||||
# archmage_title_description: "(Coder)"
|
||||
# artisan_title: "Artisan"
|
||||
# artisan_title_description: "(Level Builder)"
|
||||
# adventurer_title: "Adventurer"
|
||||
# adventurer_title_description: "(Level Playtester)"
|
||||
# scribe_title: "Scribe"
|
||||
# scribe_title_description: "(Article Editor)"
|
||||
# diplomat_title: "Diplomat"
|
||||
# diplomat_title_description: "(Translator)"
|
||||
# ambassador_title: "Ambassador"
|
||||
# ambassador_title_description: "(Support)"
|
||||
# counselor_title: "Counselor"
|
||||
# counselor_title_description: "(Expert/Teacher)"
|
||||
classes:
|
||||
archmage_title: "Архімаг"
|
||||
archmage_title_description: "(Програміст)"
|
||||
artisan_title: "Ремісник"
|
||||
artisan_title_description: "(Створювач рівнів)"
|
||||
adventurer_title: "Шукач пригод"
|
||||
adventurer_title_description: "(Тестувальник рівнів)"
|
||||
scribe_title: "Писар"
|
||||
scribe_title_description: "(Редактор статей)"
|
||||
diplomat_title: "Дипломат"
|
||||
diplomat_title_description: "(Перекладач)"
|
||||
ambassador_title: "Посланець"
|
||||
ambassador_title_description: "(Підтримка)"
|
||||
counselor_title: "Радник"
|
||||
counselor_title_description: "(Експерт/Вчитель)"
|
||||
|
||||
# ladder:
|
||||
# please_login: "Please log in first before playing a ladder game."
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# send: "Send"
|
||||
# cancel: "Cancel"
|
||||
# save: "Save"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
# home:
|
||||
# slogan: "Learn to Code JavaScript by Playing a Game"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# send: "Send"
|
||||
cancel: "Hủy"
|
||||
save: "Lưu"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
versions:
|
||||
save_version_title: "Lưu Phiên bản Mới"
|
||||
new_major_version: "Phiên bản chính mới"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "Để lưu thay đổi, bạn phải chấp thuận với chúng tôi trước"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
creating: "Tạo tài khoản..."
|
||||
sign_up: "Đăng ký"
|
||||
log_in: "đăng nhập với mật khẩu"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "Học mã Javascript bằng chơi Games"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
wizard_tab: "Wizard"
|
||||
password_tab: "Mật khẩu"
|
||||
emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "Màu trang phục Wizard"
|
||||
new_password: "Mật khẩu mới"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -3,9 +3,10 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
loading: "读取中……"
|
||||
saving: "保存中……"
|
||||
sending: "发送中……"
|
||||
# send: "Send"
|
||||
send: "发送"
|
||||
cancel: "取消"
|
||||
save: "保存"
|
||||
# publish: "Publish"
|
||||
create: "创建"
|
||||
delay_1_sec: "1 秒"
|
||||
delay_3_sec: "3 秒"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
versions:
|
||||
save_version_title: "保存新版本"
|
||||
new_major_version: "新的重要版本"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
cla_prefix: "要想保存更改,您必须先同意我们的"
|
||||
cla_url: "贡献者许可协议"
|
||||
cla_suffix: "。"
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
creating: "账户创建中……"
|
||||
sign_up: "注册"
|
||||
log_in: "登录"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "通过游戏学习 Javascript"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
wizard_tab: "巫师"
|
||||
password_tab: "密码"
|
||||
emails_tab: "邮件"
|
||||
# job_profile_tab: "Job Profile"
|
||||
admin: "管理"
|
||||
wizard_color: "巫师 衣服 颜色"
|
||||
new_password: "新密码"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
time_current: "现在:"
|
||||
time_total: "最大:"
|
||||
time_goto: "跳到:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
admin:
|
||||
av_title: "管理员视图"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
more: "更多"
|
||||
wiki: "维基"
|
||||
live_chat: "在线聊天"
|
||||
level_publish: "发布这个关卡吗 (发布后不能撤销)?"
|
||||
level_some_options: "有哪些选项?"
|
||||
level_tab_thangs: "物体"
|
||||
level_tab_scripts: "脚本"
|
||||
|
@ -360,8 +360,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
article_search_title: "在这里搜索物品"
|
||||
thang_search_title: "在这里搜索物品类型"
|
||||
level_search_title: "在这里搜索关卡"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
read_only_warning: "注意: 你无法保存这里的编辑结果, 因为你没有以管理员身份登录."
|
||||
signup_to_create: "注册之后就可以创建一个新的关卡"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
article:
|
||||
edit_btn_preview: "预览"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
easy: "容易"
|
||||
medium: "中等"
|
||||
hard: "困难"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "什么是 CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
leaderboard: "排行榜"
|
||||
battle_as: "我要加入这一方 "
|
||||
summary_your: "你 "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
leaderboard: "排行榜"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# send: "Send"
|
||||
cancel: "取消"
|
||||
save: "存檔"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
delay_1_sec: "1 秒"
|
||||
delay_3_sec: "3 秒"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
creating: "帳號建立中..."
|
||||
sign_up: "註冊"
|
||||
log_in: "登入"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "通過玩遊戲學習Javascript 腳本語言"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
wizard_tab: "巫師"
|
||||
password_tab: "密碼"
|
||||
emails_tab: "郵件"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
wizard_color: "巫師 衣服 顏色"
|
||||
new_password: "新密碼"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
about:
|
||||
who_is_codecombat: "什麼是CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -6,6 +6,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# send: "Send"
|
||||
cancel: "退出"
|
||||
save: "保存"
|
||||
# publish: "Publish"
|
||||
# create: "Create"
|
||||
# delay_1_sec: "1 second"
|
||||
# delay_3_sec: "3 seconds"
|
||||
|
@ -47,9 +48,6 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# versions:
|
||||
# save_version_title: "Save New Version"
|
||||
# new_major_version: "New Major Version"
|
||||
# update_break_level: "(Could this update break old solutions of the level?)"
|
||||
# update_break_component: "(Could this update break anything depending on this Component?)"
|
||||
# update_break_system: "(Could this update break anything depending on this System?)"
|
||||
# cla_prefix: "To save changes, first you must agree to our"
|
||||
# cla_url: "CLA"
|
||||
# cla_suffix: "."
|
||||
|
@ -75,6 +73,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
creating: "账户在创新中"
|
||||
sign_up: "注册"
|
||||
log_in: "以密码登录"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
|
||||
home:
|
||||
slogan: "通过玩儿游戏学到Javascript脚本语言"
|
||||
|
@ -151,7 +150,6 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# wizard_tab: "Wizard"
|
||||
# password_tab: "Password"
|
||||
# emails_tab: "Emails"
|
||||
# job_profile_tab: "Job Profile"
|
||||
# admin: "Admin"
|
||||
# wizard_color: "Wizard Clothes Color"
|
||||
# new_password: "New Password"
|
||||
|
@ -293,6 +291,9 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# time_current: "Now:"
|
||||
# time_total: "Max:"
|
||||
# time_goto: "Go to:"
|
||||
# infinite_loop_try_again: "Try Again"
|
||||
# infinite_loop_reset_level: "Reset Level"
|
||||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
# admin:
|
||||
# av_title: "Admin Views"
|
||||
|
@ -326,7 +327,6 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# more: "More"
|
||||
# wiki: "Wiki"
|
||||
# live_chat: "Live Chat"
|
||||
# level_publish: "Publish This Level (irreversible)?"
|
||||
# level_some_options: "Some Options?"
|
||||
# level_tab_thangs: "Thangs"
|
||||
# level_tab_scripts: "Scripts"
|
||||
|
@ -361,7 +361,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# thang_search_title: "Search Thang Types Here"
|
||||
# level_search_title: "Search Levels Here"
|
||||
# signup_to_create: "Sign Up to Create a New Content"
|
||||
# read_only_warning: "Note: you can't save any edits here, because you're not logged in as an admin."
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -395,6 +395,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# easy: "Easy"
|
||||
# medium: "Medium"
|
||||
# hard: "Hard"
|
||||
# player: "Player"
|
||||
|
||||
# about:
|
||||
# who_is_codecombat: "Who is CodeCombat?"
|
||||
|
@ -599,6 +600,9 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# simulate_all: "RESET AND SIMULATE GAMES"
|
||||
# games_simulated_by: "Games simulated by you:"
|
||||
# games_simulated_for: "Games simulated for you:"
|
||||
# games_simulated: "Games simulated"
|
||||
# games_played: "Games played"
|
||||
# ratio: "Ratio"
|
||||
# leaderboard: "Leaderboard"
|
||||
# battle_as: "Battle as "
|
||||
# summary_your: "Your "
|
||||
|
@ -663,3 +667,5 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# leaderboard: "Leaderboard"
|
||||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# model: "Model"
|
||||
|
|
|
@ -21,7 +21,7 @@ class CocoModel extends Backbone.Model
|
|||
|
||||
type: ->
|
||||
@constructor.className
|
||||
|
||||
|
||||
clone: (withChanges=true) ->
|
||||
# Backbone does not support nested documents
|
||||
clone = super()
|
||||
|
@ -60,6 +60,7 @@ class CocoModel extends Backbone.Model
|
|||
return result.errors unless result.valid
|
||||
|
||||
save: (attrs, options) ->
|
||||
@set 'editPath', document.location.pathname
|
||||
options ?= {}
|
||||
success = options.success
|
||||
options.success = (resp) =>
|
||||
|
@ -68,7 +69,6 @@ class CocoModel extends Backbone.Model
|
|||
@markToRevert()
|
||||
@clearBackup()
|
||||
@trigger "save", @
|
||||
patch.setStatus 'accepted' for patch in @acceptedPatches or []
|
||||
return super attrs, options
|
||||
|
||||
fetch: ->
|
||||
|
@ -95,7 +95,6 @@ class CocoModel extends Backbone.Model
|
|||
cloneNewMinorVersion: ->
|
||||
newData = $.extend(null, {}, @attributes)
|
||||
clone = new @constructor(newData)
|
||||
clone.acceptedPatches = @acceptedPatches
|
||||
clone
|
||||
|
||||
cloneNewMajorVersion: ->
|
||||
|
@ -207,23 +206,25 @@ class CocoModel extends Backbone.Model
|
|||
return true if permission.access in ['owner', 'write']
|
||||
|
||||
return false
|
||||
|
||||
|
||||
getDelta: ->
|
||||
differ = deltasLib.makeJSONDiffer()
|
||||
differ.diff @_revertAttributes, @attributes
|
||||
|
||||
|
||||
applyDelta: (delta) ->
|
||||
newAttributes = $.extend(true, {}, @attributes)
|
||||
jsondiffpatch.patch newAttributes, delta
|
||||
@set newAttributes
|
||||
|
||||
|
||||
getExpandedDelta: ->
|
||||
delta = @getDelta()
|
||||
deltasLib.expandDelta(delta, @_revertAttributes, @schema())
|
||||
|
||||
watch: (doWatch=true) ->
|
||||
$.ajax("#{@urlRoot}/#{@id}/watch", {type:'PUT', data:{on:doWatch}})
|
||||
@watching = -> doWatch
|
||||
|
||||
addPatchToAcceptOnSave: (patch) ->
|
||||
@acceptedPatches ?= []
|
||||
@acceptedPatches.push patch
|
||||
@acceptedPatches = _.uniq(@acceptedPatches, false, (p) -> p.id)
|
||||
watching: ->
|
||||
return me.id in (@get('watchers') or [])
|
||||
|
||||
module.exports = CocoModel
|
||||
|
|
|
@ -8,7 +8,8 @@ module.exports = class Level extends CocoModel
|
|||
urlRoot: "/db/level"
|
||||
|
||||
serialize: (supermodel) ->
|
||||
o = _.cloneDeep @attributes # slow in level editor when there are hundreds of Thangs
|
||||
# o = _.cloneDeep @attributes # slow in level editor when there are hundreds of Thangs
|
||||
o = $.extend true, {}, @attributes
|
||||
|
||||
# Figure out Components
|
||||
o.levelComponents = _.cloneDeep (lc.attributes for lc in supermodel.getModels LevelComponent)
|
||||
|
|
|
@ -5,4 +5,7 @@ module.exports = class PatchModel extends CocoModel
|
|||
urlRoot: "/db/patch"
|
||||
|
||||
setStatus: (status) ->
|
||||
$.ajax("/db/patch/#{@id}/status", {type:"PUT", data: {status:status}})
|
||||
PatchModel.setStatus @id, status
|
||||
|
||||
@setStatus: (id, status) ->
|
||||
$.ajax("/db/patch/#{id}/status", {type:"PUT", data: {status:status}})
|
|
@ -101,9 +101,13 @@ _.extend LevelSessionSchema.properties,
|
|||
source:
|
||||
type: 'string'
|
||||
|
||||
# TODO: specify this more
|
||||
code:
|
||||
type: 'object'
|
||||
additionalProperties:
|
||||
type: 'object'
|
||||
additionalProperties:
|
||||
type: 'string'
|
||||
format: 'javascript'
|
||||
|
||||
teamSpells:
|
||||
type: 'object'
|
||||
|
@ -134,6 +138,11 @@ _.extend LevelSessionSchema.properties,
|
|||
|
||||
submittedCode:
|
||||
type: 'object'
|
||||
additionalProperties:
|
||||
type: 'object'
|
||||
additionalProperties:
|
||||
type: 'string'
|
||||
format: 'javascript'
|
||||
|
||||
isRanking:
|
||||
type: 'boolean'
|
||||
|
|
|
@ -59,7 +59,7 @@ UserSchema = c.object {},
|
|||
lookingFor: {title: 'Looking For', type: 'string', enum: ['Full-time', 'Part-time', 'Remote', 'Contracting', 'Internship'], default: 'Full-time', description: 'What kind of developer position do you want?'}
|
||||
jobTitle: {type: 'string', maxLength: 50, title: 'Desired Job Title', description: 'What role are you looking for? Ex.: "Full Stack Engineer", "Front-End Developer", "iOS Developer"', default: 'Software Developer'}
|
||||
active: {title: 'Active', type: 'boolean', description: 'Want interview offers right now?'}
|
||||
updated: c.date {title: 'Last Updated', description: 'How fresh your profile appears to employers. The fresher, the better. Profiles go inactive after 30 days.'}
|
||||
updated: c.date {title: 'Last Updated', description: 'How fresh your profile appears to employers. Profiles go inactive after 4 weeks.'}
|
||||
name: c.shortString {title: 'Name', description: 'Name you want employers to see, like "Nick Winter".'}
|
||||
city: c.shortString {title: 'City', description: 'City you want to work in (or live in now), like "San Francisco" or "Lubbock, TX".', default: 'Defaultsville, CA', format: 'city'}
|
||||
country: c.shortString {title: 'Country', description: 'Country you want to work in (or live in now), like "USA" or "France".', default: 'USA', format: 'country'}
|
||||
|
@ -74,12 +74,13 @@ UserSchema = c.object {},
|
|||
employer: c.shortString {title: 'Employer', description: 'Name of your employer.'}
|
||||
role: c.shortString {title: 'Job Title', description: 'What was your job title or role?'}
|
||||
duration: c.shortString {title: 'Duration', description: 'When did you hold this gig? Ex.: "Feb 2013 - present".'}
|
||||
description: {type: 'string', title: 'Description', description: 'What did you do there? (140 chars)', maxLength: 140}
|
||||
education: c.array {title: 'Education', description: 'List your academic ordeals.'},
|
||||
c.object {title: 'Ordeal', description: 'Some education that befell you.', required: ['school', 'degree', 'duration']},
|
||||
school: c.shortString {title: 'School', description: 'Name of your school.'}
|
||||
degree: c.shortString {title: 'Degree', description: 'What was your degree and field of study? Ex. Ph.D. Human-Computer Interaction (incomplete)'}
|
||||
duration: c.shortString {title: 'Dates', description: 'When? Ex.: "Aug 2004 - May 2008".'}
|
||||
projects: c.array {title: 'Projects', description: 'Highlight your projects to amaze employers.'},
|
||||
projects: c.array {title: 'Projects', description: 'Highlight your projects to amaze employers.', maxItems: 3},
|
||||
c.object {title: 'Project', description: 'A project you created.', required: ['name', 'description', 'picture'], default: {name: 'My Project', description: 'A project I worked on.', link: 'http://example.com', picture: ''}},
|
||||
name: c.shortString {title: 'Project Name', description: 'What was the project called?', default: 'My Project'}
|
||||
description: {type: 'string', title: 'Description', description: 'Briefly describe the project.', maxLength: 400, default: 'A project I worked on.', format: 'markdown'}
|
||||
|
|
|
@ -63,7 +63,7 @@ patchableProps = ->
|
|||
status: { enum: ['pending', 'accepted', 'rejected', 'cancelled']}
|
||||
})
|
||||
allowPatches: { type: 'boolean' }
|
||||
listeners: me.array({title:'Listeners'},
|
||||
watchers: me.array({title:'Watchers'},
|
||||
me.objectId(links: [{rel: 'extra', href: "/db/user/{($)}"}]))
|
||||
|
||||
me.extendPatchableProperties = (schema) ->
|
||||
|
|
|
@ -2,11 +2,21 @@ module.exports =
|
|||
"application:idle-changed":
|
||||
{} # TODO schema
|
||||
|
||||
"fbapi-loaded":
|
||||
{} # TODO schema
|
||||
|
||||
"logging-in-with-facebook":
|
||||
{} # TODO schema
|
||||
|
||||
"facebook-logged-in":
|
||||
{} # TODO schema
|
||||
title: "Facebook logged in"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "Published when you successfully logged in with facebook"
|
||||
type: "object"
|
||||
properties:
|
||||
response:
|
||||
type: "string"
|
||||
required: ["response"]
|
||||
|
||||
"gapi-loaded":
|
||||
{} # TODO schema
|
||||
|
@ -15,4 +25,11 @@ module.exports =
|
|||
{} # TODO schema
|
||||
|
||||
"gplus-logged-in":
|
||||
{} # TODO schema
|
||||
title: "G+ logged in"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "Published when you successfully logged in with G+"
|
||||
type: "object"
|
||||
properties:
|
||||
authResult:
|
||||
type: "string"
|
||||
required: ["authResult"]
|
||||
|
|
|
@ -27,13 +27,45 @@ module.exports =
|
|||
$ref: "bus"
|
||||
|
||||
"bus:new-message":
|
||||
{} # TODO schema
|
||||
title: "Message sent"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "A new message was sent"
|
||||
type: "object"
|
||||
properties:
|
||||
message:
|
||||
type: "string"
|
||||
bus:
|
||||
$ref: "bus"
|
||||
|
||||
"bus:player-joined":
|
||||
{} # TODO schema
|
||||
title: "Player joined"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "A new player has joined"
|
||||
type: "object"
|
||||
properties:
|
||||
player:
|
||||
type: "object"
|
||||
bus:
|
||||
$ref: "bus"
|
||||
|
||||
"bus:player-left":
|
||||
{} # TODO schema
|
||||
title: "Player left"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "A player has left"
|
||||
type: "object"
|
||||
properties:
|
||||
player:
|
||||
type: "object"
|
||||
bus:
|
||||
$ref: "bus"
|
||||
|
||||
"bus:player-states-changed":
|
||||
{} # TODO schema
|
||||
title: "Player state changes"
|
||||
$schema: "http://json-schema.org/draft-04/schema#"
|
||||
description: "State of the players has changed"
|
||||
type: "object"
|
||||
properties:
|
||||
player:
|
||||
type: "array"
|
||||
bus:
|
||||
$ref: "bus"
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
.job-profile-container
|
||||
width: 100%
|
||||
height: 100%
|
||||
min-height: 600px
|
||||
padding: 0
|
||||
display: table
|
||||
|
||||
|
@ -50,10 +51,14 @@
|
|||
.job-profile-row
|
||||
height: 100%
|
||||
display: table-row
|
||||
$side-width: 250px
|
||||
$side-padding: 5px
|
||||
$middle-width: 524px
|
||||
$middle-padding: 20px
|
||||
|
||||
.full-height-column
|
||||
height: 100%
|
||||
padding: 5px
|
||||
padding: $side-padding
|
||||
display: table-cell
|
||||
vertical-align: top
|
||||
|
||||
|
@ -61,16 +66,20 @@
|
|||
margin: 5px 0 5px 0
|
||||
|
||||
.left-column
|
||||
width: 250px
|
||||
padding: 5px
|
||||
width: $side-width - 2 * $side-padding
|
||||
padding: $side-padding
|
||||
background-color: rgb(220, 220, 220)
|
||||
|
||||
.sub-column
|
||||
width: $side-width - 2 * $side-padding
|
||||
overflow-wrap: break-word
|
||||
|
||||
.profile-photo-container
|
||||
position: relative
|
||||
margin-bottom: 10px
|
||||
|
||||
img.profile-photo
|
||||
width: 240px
|
||||
width: $side-width - 2 * $side-padding
|
||||
border-radius: 6px
|
||||
|
||||
.profile-caption
|
||||
|
@ -99,15 +108,24 @@
|
|||
font-size: 20px
|
||||
|
||||
.middle-column
|
||||
width: 524px
|
||||
width: $middle-width - 2 * $middle-padding
|
||||
padding-left: $middle-padding
|
||||
padding-right: $middle-padding
|
||||
background-color: white
|
||||
padding-left: 20px
|
||||
padding-right: 20px
|
||||
|
||||
.sub-column
|
||||
width: $middle-width - 2 * $middle-padding
|
||||
overflow-wrap: break-word
|
||||
|
||||
&.double-column
|
||||
width: 524px + 250px
|
||||
padding-left: 30px
|
||||
padding-right: 30px
|
||||
width: $middle-width + $side-width + 2 * $side-padding - 2 * $middle-padding
|
||||
$middle-padding-double: 30px
|
||||
padding-left: $middle-padding-double
|
||||
padding-right: $middle-padding-double
|
||||
|
||||
.sub-column
|
||||
width: $middle-width + $side-width + 2 * $side-padding - 2 * $middle-padding - 2 * $middle-padding-double
|
||||
overflow-wrap: break-word
|
||||
|
||||
code
|
||||
background-color: rgb(220, 220, 220)
|
||||
|
@ -130,27 +148,34 @@
|
|||
width: 32px
|
||||
height: 32px
|
||||
|
||||
.experience-entry
|
||||
margin-bottom: 15px
|
||||
|
||||
.duration
|
||||
margin-left: 10px
|
||||
margin-bottom: 10px
|
||||
|
||||
|
||||
#job-profile-notes
|
||||
width: 100%
|
||||
height: 100px
|
||||
|
||||
.right-column
|
||||
width: 250px
|
||||
width: $side-width
|
||||
background-color: rgb(220, 220, 220)
|
||||
|
||||
> h3:first-child
|
||||
background-color: white
|
||||
padding: 5px 5px
|
||||
margin: 5px 2px 5px 2px
|
||||
.sub-column
|
||||
width: $side-width - 2 * $side-padding
|
||||
overflow-wrap: break-word
|
||||
|
||||
> h3:first-child
|
||||
background-color: white
|
||||
padding: 5px 5px
|
||||
margin: 5px 2px 5px 2px
|
||||
|
||||
ul.projects
|
||||
li
|
||||
margin-bottom: 10px
|
||||
padding: 5px 5px
|
||||
padding: 5px 3px
|
||||
border: 2px solid rgb(220, 220, 220)
|
||||
transition: .5s ease-in-out
|
||||
position: relative
|
||||
|
|
|
@ -265,3 +265,8 @@ body[lang='ja']
|
|||
font-family: 'Glyphicons Halflings'
|
||||
src: url("/fonts/glyphicons-halflings-regular.eot")
|
||||
src: url("/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/glyphicons-halflings-regular.woff") format("woff"), url("/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("/fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format("svg")
|
||||
|
||||
.spr:after
|
||||
content: " "
|
||||
.spl:before
|
||||
content: " "
|
|
@ -1,4 +1,11 @@
|
|||
#editor-level-component-edit-view
|
||||
nav
|
||||
margin-bottom: 0
|
||||
|
||||
#component-patches
|
||||
padding: 0 10px 10px
|
||||
background: white
|
||||
|
||||
.navbar-text
|
||||
float: left
|
||||
|
||||
|
@ -7,9 +14,13 @@
|
|||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
top: 50px
|
||||
top: 35px
|
||||
border: 2px solid black
|
||||
border-top: none
|
||||
|
||||
.active > a, .active > a:hover, .active > a:focus
|
||||
background-color: white !important
|
||||
.inner-editor
|
||||
position: absolute
|
||||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
top: 0px
|
|
@ -1,4 +1,6 @@
|
|||
#editor-level-components-tab-view
|
||||
h3
|
||||
margin-top: 0
|
||||
|
||||
.components-container
|
||||
position: absolute
|
||||
|
@ -7,7 +9,7 @@
|
|||
|
||||
.treema-root
|
||||
position: absolute
|
||||
top: 50px
|
||||
top: 35px
|
||||
bottom: 0
|
||||
width: 250px
|
||||
overflow: scroll
|
||||
|
@ -25,13 +27,13 @@
|
|||
|
||||
.treema-root
|
||||
position: absolute
|
||||
top: 50px
|
||||
top: 35px
|
||||
right: 0
|
||||
left: 0px
|
||||
bottom: 0
|
||||
overflow: scroll
|
||||
|
||||
#create-new-component-button
|
||||
#create-new-component-button-no-select
|
||||
position: absolute
|
||||
top: 0
|
||||
right: 0
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#editor-level-view
|
||||
&, #level-editor-top-nav
|
||||
min-width: 1024px
|
||||
|
||||
a
|
||||
font-family: helvetica, arial, sans serif
|
||||
|
||||
#top-nav
|
||||
display: none
|
||||
|
||||
position: absolute
|
||||
top: 0px
|
||||
left: 0px
|
||||
|
@ -12,22 +12,54 @@
|
|||
bottom: 0px
|
||||
|
||||
$BG: rgba(228, 207, 140, 1.0)
|
||||
$NAVBG: #2f261d
|
||||
|
||||
li.navbar-btn
|
||||
margin-right: 5px
|
||||
|
||||
#level-editor-top-nav
|
||||
.nav-tabs
|
||||
border-bottom: 0 !important
|
||||
.active > a, .active > a:hover, .active > a:focus
|
||||
background-color: $BG !important
|
||||
border-color: darken($BG, 50%)
|
||||
border-bottom: 0
|
||||
// custom navbar height rules
|
||||
.navbar-nav > li > a
|
||||
padding: 7px 8px 8px
|
||||
cursor: pointer
|
||||
&:hover
|
||||
background-color: lighten($NAVBG, 10%)
|
||||
.navbar
|
||||
min-height: 0px
|
||||
border-radius: 0
|
||||
.navbar-right // not sure why bootstrap puts a big negative margin in, but this overrides it
|
||||
margin-right: 10px
|
||||
|
||||
// custom navbar styling
|
||||
.navbar-brand
|
||||
padding-top: 7px
|
||||
padding-bottom: 7px
|
||||
color: lighten(gold, 30%)
|
||||
.navbar-header
|
||||
border-left: 2px solid lighten($NAVBG, 20%)
|
||||
border-right: 2px solid lighten($NAVBG, 20%)
|
||||
background: lighten($NAVBG, 10%)
|
||||
margin-left: 20px
|
||||
.nav-tabs
|
||||
margin-left: 5px
|
||||
border-bottom: 0 !important
|
||||
.active > a, .active > a:hover, .active > a:focus
|
||||
background-color: $BG !important
|
||||
border-color: darken($BG, 50%)
|
||||
border-bottom: 0
|
||||
a
|
||||
padding: 7px 5px !important
|
||||
.dropdown-menu a
|
||||
cursor: pointer
|
||||
&:hover
|
||||
background-color: #d3d3d3
|
||||
|
||||
.badge
|
||||
background-color: green
|
||||
|
||||
.outer-content
|
||||
background-color: $BG
|
||||
position: absolute
|
||||
top: 0
|
||||
top: 35px
|
||||
bottom: 0
|
||||
left: 0
|
||||
right: 0
|
||||
|
@ -45,12 +77,11 @@
|
|||
|
||||
#level-editor-tabs
|
||||
position: absolute
|
||||
left: 20px
|
||||
right: 20px
|
||||
top: 66px
|
||||
bottom: 20px
|
||||
left: 15px
|
||||
right: 15px
|
||||
top: 15px
|
||||
bottom: 15px
|
||||
|
||||
.treema-root
|
||||
background-color: white
|
||||
border-radius: 4px
|
||||
|
||||
border-radius: 4px
|
|
@ -7,9 +7,13 @@
|
|||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
top: 50px
|
||||
top: 35px
|
||||
border: 2px solid black
|
||||
border-top: none
|
||||
|
||||
.active > a, .active > a:hover, .active > a:focus
|
||||
background-color: white !important
|
||||
|
||||
.inner-editor
|
||||
position: absolute
|
||||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
top: 0px
|
|
@ -1,4 +1,6 @@
|
|||
#editor-level-systems-tab-view
|
||||
h3
|
||||
margin-top: 0
|
||||
|
||||
.systems-container
|
||||
position: absolute
|
||||
|
@ -7,7 +9,7 @@
|
|||
|
||||
.treema-root
|
||||
position: absolute
|
||||
top: 50px
|
||||
top: 35px
|
||||
bottom: 0
|
||||
width: 250px
|
||||
overflow: scroll
|
||||
|
@ -30,7 +32,7 @@
|
|||
|
||||
.treema-root
|
||||
position: absolute
|
||||
top: 50px
|
||||
top: 35px
|
||||
right: 0
|
||||
left: 0px
|
||||
bottom: 0
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
.patches-view
|
||||
.status-buttons
|
||||
margin: 10px 0
|
||||
margin-bottom: 10px
|
||||
|
|
|
@ -7,6 +7,9 @@
|
|||
text-align: center
|
||||
margin-top: 0
|
||||
|
||||
#front-screenshot
|
||||
margin: 15px 0 40px 150px
|
||||
|
||||
#trailer-wrapper
|
||||
position: relative
|
||||
margin: 0 auto 40px
|
||||
|
@ -101,6 +104,8 @@
|
|||
font-size: 30px
|
||||
#trailer-wrapper
|
||||
display: none
|
||||
#front-screenshot
|
||||
display: none
|
||||
#mobile-trailer-wrapper
|
||||
display: inline-block
|
||||
|
||||
|
|
9
app/styles/modal/model.sass
Normal file
9
app/styles/modal/model.sass
Normal file
|
@ -0,0 +1,9 @@
|
|||
#model-modal
|
||||
.treema-root
|
||||
background-color: white
|
||||
|
||||
.modal-dialog
|
||||
width: 1000px
|
||||
|
||||
.treema-ace .ace_editor
|
||||
height: 600px
|
|
@ -28,6 +28,9 @@
|
|||
|
||||
.ellipsis-row
|
||||
text-align: center
|
||||
|
||||
.simulator-leaderboard-cell
|
||||
text-align: center
|
||||
|
||||
// friend column
|
||||
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
white-space: nowrap
|
||||
overflow: hidden
|
||||
text-overflow: ellipsis
|
||||
|
||||
.histogram-display
|
||||
height: 130px
|
||||
|
||||
.bar rect
|
||||
fill: steelblue
|
||||
|
@ -39,4 +42,8 @@
|
|||
|
||||
.ogres-rank-text
|
||||
fill: #3f44bf
|
||||
|
||||
|
||||
.load-more-ladder-entries
|
||||
position: absolute
|
||||
right: 15px
|
||||
bottom: -5px
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
body.is-playing
|
||||
background-color: black
|
||||
.footer
|
||||
background-color: black
|
||||
|
||||
#level-view
|
||||
margin: 0 auto
|
||||
|
|
|
@ -157,7 +157,8 @@ block content
|
|||
|
||||
.col-sm-8
|
||||
|
||||
h3 Glen De Cauwsemaecker
|
||||
h3
|
||||
a(href="http://www.glendc.com/") Glen De Cauwsemaecker
|
||||
|
||||
p(data-i18n="about.glen_description")
|
||||
| Programmer and passionate game developer,
|
||||
|
|
|
@ -13,85 +13,93 @@ block content
|
|||
button.btn.edit-settings-button#toggle-job-profile-approved
|
||||
i.icon-cog
|
||||
span(data-i18n='account_profile.approved').approved Approved
|
||||
span(data-i18n='account_profile.approved').not-approved Not Approved
|
||||
span(data-i18n='account_profile.not_approved').not-approved Not Approved
|
||||
|
||||
if user.get('jobProfile')
|
||||
- var profile = user.get('jobProfile');
|
||||
.job-profile-container
|
||||
.job-profile-row
|
||||
.left-column.full-height-column
|
||||
.profile-photo-container
|
||||
img.profile-photo(src=user.getPhotoURL(240, true))
|
||||
.profile-caption= profile.jobTitle || 'Software Developer'
|
||||
|
||||
if profileLinks.length
|
||||
ul.links
|
||||
each link in profileLinks
|
||||
li(title=profile.name + " on " + link.name, class=link.icon ? "has-icon" : "")
|
||||
a(href=link.link)
|
||||
if link.icon
|
||||
img(src=link.icon.url, alt=link.icon.name)
|
||||
else
|
||||
button.btn.btn-large.btn-inverse.flat-button= link.name
|
||||
|
||||
div= profile.city + ', ' + profile.country
|
||||
div= profile.visa
|
||||
div
|
||||
span(data-i18n="account_profile.looking_for") Looking for:
|
||||
| #{profile.lookingFor}
|
||||
div
|
||||
span(data-i18n="account_profile.last_updated") Last updated:
|
||||
| #{moment(profile.updated).fromNow()}
|
||||
|
||||
button#contact-candidate.btn.btn-large.btn-inverse.flat-button
|
||||
span(data-i18n="account_profile.contact") Contact
|
||||
| #{profile.name.split(' ')[0]}
|
||||
.sub-column
|
||||
.profile-photo-container
|
||||
img.profile-photo(src=user.getPhotoURL(240, true))
|
||||
.profile-caption= profile.jobTitle || 'Software Developer'
|
||||
|
||||
if profileLinks.length
|
||||
ul.links
|
||||
each link in profileLinks
|
||||
li(title=profile.name + " on " + link.name, class=link.icon ? "has-icon" : "")
|
||||
a(href=link.link)
|
||||
if link.icon
|
||||
img(src=link.icon.url, alt=link.icon.name)
|
||||
else
|
||||
button.btn.btn-large.btn-inverse.flat-button= link.name
|
||||
|
||||
div= profile.city + ', ' + profile.country
|
||||
div= profile.visa
|
||||
div
|
||||
span(data-i18n="account_profile.looking_for") Looking for:
|
||||
| #{profile.lookingFor}
|
||||
div
|
||||
span(data-i18n="account_profile.last_updated") Last updated:
|
||||
| #{moment(profile.updated).fromNow()}
|
||||
|
||||
button#contact-candidate.btn.btn-large.btn-inverse.flat-button
|
||||
span(data-i18n="account_profile.contact") Contact
|
||||
| #{profile.name.split(' ')[0]}
|
||||
|
||||
.middle-column.full-height-column
|
||||
h3= profile.name
|
||||
p= profile.shortDescription
|
||||
|
||||
each skill in profile.skills
|
||||
code= skill
|
||||
span
|
||||
div.long-description!= marked(profile.longDescription)
|
||||
|
||||
if profile.work.length
|
||||
h3.experience-header
|
||||
img.header-icon(src="/images/pages/account/profile/work.png", alt="")
|
||||
span(data-i18n="account_profile.work_experience") Work Experience
|
||||
each job in profile.work
|
||||
div.duration.pull-right= job.duration
|
||||
| #{job.role} at #{job.employer}
|
||||
.clearfix
|
||||
|
||||
if profile.education.length
|
||||
h3.experience-header
|
||||
img.header-icon(src="/images/pages/account/profile/education.png", alt="")
|
||||
span(data-i18n="account_profile.work_experience") Education
|
||||
each school in profile.education
|
||||
div.duration.pull-right= school.duration
|
||||
| #{school.degree} at #{school.school}
|
||||
.clearfix
|
||||
|
||||
if user.get('jobProfileNotes') || me.isAdmin()
|
||||
h3.experience-header(data-i18n="account_profile.our_notes") Our Notes
|
||||
- var notes = user.get('jobProfileNotes') || '';
|
||||
if me.isAdmin()
|
||||
textarea#job-profile-notes!= notes
|
||||
else
|
||||
div!= marked(notes)
|
||||
.sub-column
|
||||
h3= profile.name
|
||||
p= profile.shortDescription
|
||||
|
||||
each skill in profile.skills
|
||||
code= skill
|
||||
span
|
||||
div.long-description!= marked(profile.longDescription)
|
||||
|
||||
if profile.work.length
|
||||
h3.experience-header
|
||||
img.header-icon(src="/images/pages/account/profile/work.png", alt="")
|
||||
span(data-i18n="account_profile.work_experience") Work Experience
|
||||
each job in profile.work
|
||||
div.experience-entry
|
||||
div.duration.pull-right= job.duration
|
||||
| #{job.role} at #{job.employer}
|
||||
.clearfix
|
||||
if job.description
|
||||
div!= marked(job.description)
|
||||
|
||||
if profile.education.length
|
||||
h3.experience-header
|
||||
img.header-icon(src="/images/pages/account/profile/education.png", alt="")
|
||||
span(data-i18n="account_profile.education") Education
|
||||
each school in profile.education
|
||||
div.experience-entry
|
||||
div.duration.pull-right= school.duration
|
||||
| #{school.degree} at #{school.school}
|
||||
.clearfix
|
||||
|
||||
if user.get('jobProfileNotes') || me.isAdmin()
|
||||
h3.experience-header(data-i18n="account_profile.our_notes") Our Notes
|
||||
- var notes = user.get('jobProfileNotes') || '';
|
||||
if me.isAdmin()
|
||||
textarea#job-profile-notes!= notes
|
||||
else
|
||||
div!= marked(notes)
|
||||
|
||||
.right-column.full-height-column
|
||||
if profile.projects.length
|
||||
h3(data-i18n="account_profile.projects") Projects
|
||||
ul.projects
|
||||
each project in profile.projects
|
||||
li
|
||||
a(href=project.link)
|
||||
.project-image(style="background-image: url(/file/" + project.picture + ")")
|
||||
p= project.name
|
||||
div!= marked(project.description)
|
||||
.sub-column
|
||||
if profile.projects.length
|
||||
h3(data-i18n="account_profile.projects") Projects
|
||||
ul.projects
|
||||
each project in profile.projects
|
||||
li
|
||||
a(href=project.link)
|
||||
if project.picture
|
||||
.project-image(style="background-image: url(/file/" + project.picture + ")")
|
||||
p= project.name
|
||||
div!= marked(project.description)
|
||||
|
||||
else
|
||||
.public-profile-container
|
||||
|
|
|
@ -1,23 +1,44 @@
|
|||
nav.navbar.navbar-default(role='navigation')
|
||||
.container-fluid
|
||||
.navbar-header
|
||||
span.navbar-brand
|
||||
span(data-i18n="editor.level_component_edit_title")
|
||||
| Edit Component
|
||||
span :
|
||||
| "#{editTitle}"
|
||||
.collapse.navbar-collapse
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
li.active
|
||||
a(href="#component-code" data-toggle="tab" data-i18n="general.code") Code
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
li.active
|
||||
a(href="#component-code" data-toggle="tab" data-i18n="general.code")#component-code-tab Code
|
||||
li
|
||||
a(href="#component-config-schema" data-toggle="tab" data-i18n="editor.level_component_config_schema")#component-config-schema-tab Config Schema
|
||||
li
|
||||
a(href="#component-settings" data-toggle="tab" data-i18n="editor.level_component_settings")#component-settings-tab Settings
|
||||
li
|
||||
a(href="#component-patches" data-toggle="tab" data-i18n="resources.patches")#component-patches-tab Patches
|
||||
|
||||
.navbar-header
|
||||
span.navbar-brand= editTitle
|
||||
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li.dropdown
|
||||
a(data-toggle='dropdown')
|
||||
span.glyphicon-chevron-down.glyphicon
|
||||
|
||||
ul.dropdown-menu
|
||||
li.dropdown-header Actions
|
||||
li
|
||||
a(href="#component-config-schema" data-toggle="tab" data-i18n="editor.level_component_config_schema") Config Schema
|
||||
li
|
||||
a(href="#component-settings" data-toggle="tab" data-i18n="editor.level_component_settings") Settings
|
||||
ul.nav.navbar-nav.navbar-left
|
||||
li(data-i18n="general.version_history").btn.btn-primary.navbar-btn#history-button Version History
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li(data-i18n="editor.level_component_btn_new").btn.btn-primary.navbar-btn#create-new-component-button Create New Component
|
||||
a#component-watch-button
|
||||
span.watch
|
||||
span.glyphicon.glyphicon-eye-open
|
||||
span.spl Watch
|
||||
span.unwatch.secret
|
||||
span.glyphicon.glyphicon-eye-close
|
||||
span.spl Unwatch
|
||||
|
||||
li#patch-component-button
|
||||
a(data-i18n="common.submit_patch") Submit Patch
|
||||
|
||||
li#create-new-component-button
|
||||
a(data-i18n="editor.level_component_btn_new") Create New Component
|
||||
|
||||
li.divider
|
||||
li.dropdown-header Info
|
||||
|
||||
li#component-history-button
|
||||
a(data-i18n="general.version_history") Version History
|
||||
|
||||
.tab-content
|
||||
.tab-pane.active#component-code
|
||||
|
@ -26,3 +47,5 @@ nav.navbar.navbar-default(role='navigation')
|
|||
#config-schema-treema
|
||||
.tab-pane#component-settings
|
||||
#edit-component-treema
|
||||
.tab-pane#component-patches
|
||||
.patches-view
|
|
@ -4,6 +4,6 @@
|
|||
|
||||
.edit-component-container
|
||||
if me.isAdmin()
|
||||
button(data-i18n="editor.level_component_btn_new").btn.btn-primary#create-new-component-button Create New Component
|
||||
button(data-i18n="editor.level_component_btn_new").btn.btn-primary#create-new-component-button-no-select Create New Component
|
||||
|
||||
#editor-level-component-edit-view
|
||||
|
|
|
@ -1,74 +1,90 @@
|
|||
extends /templates/base
|
||||
|
||||
block outer_content
|
||||
.outer-content
|
||||
|
||||
block header
|
||||
if level.loading
|
||||
nav.navbar.navbar-default(role='navigation')#level-editor-top-nav
|
||||
.container-fluid
|
||||
ul.nav.navbar-nav
|
||||
li
|
||||
a(href="/editor/level", data-i18n="editor.back") Back
|
||||
.navbar-header
|
||||
span.navbar-brand
|
||||
span(data-i18n="editor.level_title") Level Editor
|
||||
span :
|
||||
span.level-title #{level.attributes.name}
|
||||
.collapse.navbar-collapse
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
|
||||
li.active
|
||||
a(href="#editor-level-thangs-tab-view", data-toggle="tab", data-i18n="editor.level_tab_thangs") Thangs
|
||||
li
|
||||
a(href="#editor-level-scripts-tab-view", data-toggle="tab", data-i18n="editor.level_tab_scripts") Scripts
|
||||
li
|
||||
a(href="#editor-level-settings-tab-view", data-toggle="tab", data-i18n="editor.level_tab_settings") Settings
|
||||
li
|
||||
a(href="#editor-level-components-tab-view", data-toggle="tab", data-i18n="editor.level_tab_components") Components
|
||||
li
|
||||
a(href="#editor-level-systems-tab-view", data-toggle="tab", data-i18n="editor.level_tab_systems") Systems
|
||||
li
|
||||
a(href="#editor-level-patches", data-toggle="tab", data-i18n="resources.patches")#patches-tab Patches
|
||||
|
||||
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li(data-toggle="coco-modal", data-target="modal/revert", data-i18n="editor.revert", disabled=authorized === true ? undefined : "true").btn.btn-primary.navbar-btn#revert-button Revert
|
||||
if authorized
|
||||
li(data-i18n="common.save").btn.btn-primary.navbar-btn#commit-level-start-button Save
|
||||
else
|
||||
li(data-i18n="common.patch").btn.btn-primary.navbar-btn#commit-level-patch-button Patch
|
||||
li(data-i18n="common.fork", disabled=anonymous ? "true": undefined).btn.btn-primary.navbar-btn#fork-level-start-button Fork
|
||||
li(title="⌃↩ or ⌘↩: Play preview of current level", data-i18n="common.play")#play-button.btn.btn-inverse.banner.navbar-btn Play!
|
||||
|
||||
li.divider
|
||||
|
||||
li.dropdown
|
||||
a.dropdown-toggle(href='#', data-toggle='dropdown', data-i18n="editor.more")
|
||||
| More
|
||||
b.caret
|
||||
ul.dropdown-menu
|
||||
li#history-button
|
||||
a(href='#', data-i18n="general.version_history") Version History
|
||||
li
|
||||
a(href='https://github.com/codecombat/codecombat/wiki/Artisan-Home', data-i18n="editor.wiki") Wiki
|
||||
li
|
||||
a(href='http://www.hipchat.com/g3plnOKqa', data-i18n="editor.live_chat") Live Chat
|
||||
li
|
||||
a(href='http://discourse.codecombat.com/category/artisan', data-i18n="nav.forum") Forum
|
||||
li
|
||||
a(data-toggle="coco-modal", data-target="modal/contact", data-i18n="nav.contact") Email
|
||||
|
||||
|
||||
|
||||
ul.dropdown-menu
|
||||
li
|
||||
span(data-i18n="editor.level_some_options").dropdown-menu-header Some Options?
|
||||
li.divider
|
||||
li
|
||||
a(data-delay="1000", href="#", data-i18n="common.delay_1_sec") 1 second
|
||||
a(data-delay="3000", href="#", data-i18n="common.delay_3_sec") 3 seconds
|
||||
a(data-delay="5000", href="#", data-i18n="common.delay_5_sec") 5 seconds
|
||||
a(data-delay="90019001", href="#", data-i18n="common.manual") Manual
|
||||
a(href="/editor/level")
|
||||
span.glyphicon-home.glyphicon
|
||||
|
||||
else
|
||||
nav.navbar.navbar-default(role='navigation')#level-editor-top-nav
|
||||
ul.nav.navbar-nav
|
||||
li
|
||||
a(href="/editor/level")
|
||||
span.glyphicon-home.glyphicon
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
|
||||
li.active
|
||||
a(href="#editor-level-thangs-tab-view", data-toggle="tab", data-i18n="editor.level_tab_thangs") Thangs
|
||||
li
|
||||
a(href="#editor-level-scripts-tab-view", data-toggle="tab", data-i18n="editor.level_tab_scripts") Scripts
|
||||
li
|
||||
a(href="#editor-level-settings-tab-view", data-toggle="tab", data-i18n="editor.level_tab_settings") Settings
|
||||
li
|
||||
a(href="#editor-level-components-tab-view", data-toggle="tab", data-i18n="editor.level_tab_components") Components
|
||||
li
|
||||
a(href="#editor-level-systems-tab-view", data-toggle="tab", data-i18n="editor.level_tab_systems") Systems
|
||||
li
|
||||
a(href="#editor-level-patches", data-toggle="tab")#patches-tab
|
||||
span(data-i18n="resources.patches").spr Patches
|
||||
- var patches = level.get('patches')
|
||||
if patches && patches.length
|
||||
span.badge= patches.length
|
||||
|
||||
.navbar-header
|
||||
span.navbar-brand #{level.attributes.name}
|
||||
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
if authorized
|
||||
li#commit-level-start-button
|
||||
a
|
||||
span.glyphicon-floppy-disk.glyphicon
|
||||
else
|
||||
li#level-patch-button
|
||||
a
|
||||
span.glyphicon-floppy-disk.glyphicon
|
||||
|
||||
li(title="⌃↩ or ⌘↩: Play preview of current level")#play-button
|
||||
a
|
||||
span.glyphicon-play.glyphicon
|
||||
li.dropdown
|
||||
a(data-toggle='dropdown')
|
||||
span.glyphicon-chevron-down.glyphicon
|
||||
ul.dropdown-menu
|
||||
li.dropdown-header Actions
|
||||
li
|
||||
a#level-watch-button
|
||||
span.watch
|
||||
span.glyphicon.glyphicon-eye-open
|
||||
span.spl Watch
|
||||
span.unwatch.secret
|
||||
span.glyphicon.glyphicon-eye-close
|
||||
span.spl Unwatch
|
||||
|
||||
li(class=anonymous ? "disabled": "")
|
||||
a(data-i18n="common.fork")#fork-level-start-button Fork
|
||||
li(class=anonymous ? "disabled": "")
|
||||
a(data-toggle="coco-modal", data-target="modal/revert", data-i18n="editor.revert")#revert-button Revert
|
||||
li.divider
|
||||
li.dropdown-header Info
|
||||
li#level-history-button
|
||||
a(href='#', data-i18n="general.version_history") Version History
|
||||
li.divider
|
||||
li.dropdown-header Help
|
||||
li
|
||||
a(href='https://github.com/codecombat/codecombat/wiki/Artisan-Home', data-i18n="editor.wiki", target="_blank") Wiki
|
||||
li
|
||||
a(href='http://www.hipchat.com/g3plnOKqa', data-i18n="editor.live_chat", target="_blank") Live Chat
|
||||
li
|
||||
a(href='http://discourse.codecombat.com/category/artisan', data-i18n="nav.forum", target="_blank") Forum
|
||||
li
|
||||
a(data-toggle="coco-modal", data-target="modal/contact", data-i18n="nav.contact") Email
|
||||
|
||||
block outer_content
|
||||
.outer-content
|
||||
div.tab-content#level-editor-tabs
|
||||
div.tab-pane.active#editor-level-thangs-tab-view
|
||||
|
||||
|
|
|
@ -1,21 +1,40 @@
|
|||
nav.navbar.navbar-default(role='navigation')
|
||||
.container-fluid
|
||||
.navbar-header
|
||||
span.navbar-brand
|
||||
span(data-i18n="editor.level_system_edit_title")
|
||||
| Edit System
|
||||
span :
|
||||
| "#{editTitle}"
|
||||
.collapse.navbar-collapse
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
li.active
|
||||
a(href="#system-code" data-toggle="tab") Code
|
||||
|
||||
ul.nav.navbar-nav.nav-tabs
|
||||
li.active
|
||||
a(href="#system-code" data-toggle="tab")#system-code-tab Code
|
||||
li
|
||||
a(href="#system-config-schema" data-toggle="tab")#system-config-schema-tab Config Schema
|
||||
li
|
||||
a(href="#system-settings" data-toggle="tab")#system-settings-tab Settings
|
||||
li
|
||||
a(href="#system-patches" data-toggle="tab" data-i18n="resources.patches")#system-patches-tab Patches
|
||||
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li.dropdown
|
||||
a(data-toggle='dropdown')
|
||||
span.glyphicon-chevron-down.glyphicon
|
||||
ul.dropdown-menu
|
||||
li.dropdown-header Actions
|
||||
li
|
||||
a(href="#system-config-schema" data-toggle="tab") Config Schema
|
||||
li
|
||||
a(href="#system-settings" data-toggle="tab") Settings
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li(data-i18n="editor.level_system_btn_new").btn.btn-primary.navbar-btn#create-new-system-button Create New System
|
||||
a#system-watch-button
|
||||
span.watch
|
||||
span.glyphicon.glyphicon-eye-open
|
||||
span.spl Watch
|
||||
span.unwatch.secret
|
||||
span.glyphicon.glyphicon-eye-close
|
||||
span.spl Unwatch
|
||||
li#patch-system-button
|
||||
a(data-i18n="common.submit_patch") Submit Patch
|
||||
li#create-new-system
|
||||
a(data-i18n="editor.level_system_btn_new") Create New System
|
||||
li.divider
|
||||
li.dropdown-header Info
|
||||
li#system-history-button
|
||||
a(data-i18n="general.version_history") Version History
|
||||
|
||||
.navbar-header
|
||||
span.navbar-brand= editTitle
|
||||
|
||||
.tab-content
|
||||
.tab-pane.active#system-code
|
||||
|
@ -24,3 +43,5 @@ nav.navbar.navbar-default(role='navigation')
|
|||
#config-schema-treema
|
||||
.tab-pane#system-settings
|
||||
#edit-system-treema
|
||||
.tab-pane#system-patches
|
||||
.patches-view
|
|
@ -6,6 +6,7 @@ block modal-header-content
|
|||
|
||||
block modal-body-content
|
||||
.modal-body
|
||||
p= patch.get('commitMessage')
|
||||
.changes-stub
|
||||
|
||||
|
||||
|
|
|
@ -4,21 +4,29 @@ block content
|
|||
|
||||
h1#site-slogan(data-i18n="home.slogan") Learn to Code JavaScript by Playing a Game
|
||||
|
||||
//- if language is Chinese, we use youku, because China can't visit youtube.
|
||||
//- otherwise, we use youtube.
|
||||
if languageName == "zh-HANS"
|
||||
#trailer-wrapper
|
||||
<embed src="http://player.youku.com/player.php/sid/XNjk2Mzg5NjYw/v.swf" style="margin-left:15px; margin-top:8px;"allowFullScreen="true" quality="high" width="920" height="518" wmode="opaque"></embed>
|
||||
img(src="/images/pages/home/video_border.png")
|
||||
#mobile-trailer-wrapper
|
||||
<embed src="http://player.youku.com/player.php/sid/XNjk2Mzg5NjYw/v.swf" style="margin-left:15px; margin-top:8px;"allowFullScreen="true" quality="high" width="280" height="158" wmode="opaque"></embed>
|
||||
else
|
||||
#trailer-wrapper
|
||||
<iframe width="920" height="518" src="//www.youtube.com/embed/1zjaA13k-dA?rel=0&controls=0&modestbranding=1&showinfo=0&iv_load_policy=3&vq=hd720&wmode=transparent" frameborder="0" wmode="opaque" allowfullscreen></iframe>
|
||||
img(src="/images/pages/home/video_border.png")
|
||||
#mobile-trailer-wrapper
|
||||
<iframe src="//www.youtube.com/embed/1zjaA13k-dA" frameborder="0" width="280" height="158"></iframe>
|
||||
hr
|
||||
if frontPageContent == 'video'
|
||||
//- if language is Chinese, we use youku, because China can't visit youtube.
|
||||
//- otherwise, we use youtube.
|
||||
if languageName == "zh-HANS"
|
||||
#trailer-wrapper
|
||||
<embed src="http://player.youku.com/player.php/sid/XNjk2Mzg5NjYw/v.swf" style="margin-left:15px; margin-top:8px;"allowFullScreen="true" quality="high" width="920" height="518" wmode="opaque"></embed>
|
||||
img(src="/images/pages/home/video_border.png")
|
||||
#mobile-trailer-wrapper
|
||||
<embed src="http://player.youku.com/player.php/sid/XNjk2Mzg5NjYw/v.swf" style="margin-left:15px; margin-top:8px;"allowFullScreen="true" quality="high" width="280" height="158" wmode="opaque"></embed>
|
||||
else
|
||||
#trailer-wrapper
|
||||
<iframe width="920" height="518" src="//www.youtube.com/embed/1zjaA13k-dA?rel=0&controls=0&modestbranding=1&showinfo=0&iv_load_policy=3&vq=hd720&wmode=transparent" frameborder="0" wmode="opaque" allowfullscreen></iframe>
|
||||
img(src="/images/pages/home/video_border.png")
|
||||
#mobile-trailer-wrapper
|
||||
<iframe src="//www.youtube.com/embed/1zjaA13k-dA" frameborder="0" width="280" height="158"></iframe>
|
||||
hr
|
||||
|
||||
else if frontPageContent == 'screenshot'
|
||||
#front-screenshot
|
||||
img(src="/images/pages/home/front_screenshot_01.png", alt="")
|
||||
|
||||
else if frontPageContent == 'nothing'
|
||||
p
|
||||
|
||||
.alert.alert-danger.lt-ie10
|
||||
strong(data-i18n="home.no_ie") CodeCombat does not run in Internet Explorer 9 or older. Sorry!
|
||||
|
|
9
app/templates/modal/model.jade
Normal file
9
app/templates/modal/model.jade
Normal file
|
@ -0,0 +1,9 @@
|
|||
extends /templates/modal/modal_base
|
||||
|
||||
block modal-header
|
||||
|
||||
block modal-body-content
|
||||
for model in models
|
||||
h3= model.type() + ': ' + model.id
|
||||
.model-treema(data-model-id=model.id)
|
||||
hr
|
|
@ -8,7 +8,7 @@ block modal-header-content
|
|||
|
||||
block modal-body-content
|
||||
if dataList
|
||||
table.table
|
||||
table.table.table-condensed
|
||||
tr
|
||||
th(data-i18n="general.name") Name
|
||||
th(data-i18n="general.version") Version
|
||||
|
|
|
@ -38,23 +38,4 @@ block content
|
|||
.tab-pane.well#my-matches
|
||||
#my-matches-tab-view
|
||||
.tab-pane.well#simulate
|
||||
p(id="simulation-status-text")
|
||||
if simulationStatus
|
||||
| #{simulationStatus}
|
||||
else
|
||||
span(data-i18n="ladder.simulation_explanation") By simulating games you can get your game ranked faster!
|
||||
p
|
||||
button(data-i18n="ladder.simulate_games").btn.btn-warning.btn-lg.highlight#simulate-button Simulate Games!
|
||||
if false && me.isAdmin()
|
||||
p
|
||||
button(data-i18n="ladder.simulate_all").btn.btn-danger.btn-lg.highlight#simulate-all-button RESET AND SIMULATE GAMES
|
||||
|
||||
p.simulation-count
|
||||
span(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#simulated-for-you= me.get('simulatedFor') || 0
|
||||
#simulate-tab-view
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
div#columns.row
|
||||
for team in teams
|
||||
for team, teamIndex in teams
|
||||
div.column.col-md-4
|
||||
div(id="histogram-display-#{team.name}", class="histogram-display",data-team-name=team.name)
|
||||
table.table.table-bordered.table-condensed.table-hover
|
||||
|
@ -17,10 +17,10 @@ div#columns.row
|
|||
|
||||
- var topSessions = team.leaderboard.topPlayers.models;
|
||||
- var showJustTop = team.leaderboard.inTopSessions() || me.get('anonymous');
|
||||
- if(!showJustTop) topSessions = topSessions.slice(0, 10);
|
||||
- if(!showJustTop && topSessions.length == 20) topSessions = topSessions.slice(0, 10);
|
||||
for session, rank in topSessions
|
||||
- var myRow = session.get('creator') == me.id
|
||||
tr(class=myRow ? "success" : "")
|
||||
tr(class=myRow ? "success" : "", data-player-id=session.get('creator'), data-session-id=session.id)
|
||||
td.rank-cell= rank + 1
|
||||
td.score-cell= Math.round(session.get('totalScore') * 100)
|
||||
td.name-col-cell= session.get('creatorName') || "Anonymous"
|
||||
|
@ -33,14 +33,16 @@ div#columns.row
|
|||
td(colspan=4).ellipsis-row ...
|
||||
for session in team.leaderboard.nearbySessions()
|
||||
- var myRow = session.get('creator') == me.id
|
||||
tr(class=myRow ? "success" : "")
|
||||
tr(class=myRow ? "success" : "", data-player-id=session.get('creator'), data-session-id=session.id)
|
||||
td.rank-cell= session.rank
|
||||
td.score-cell= Math.round(session.get('totalScore') * 100)
|
||||
td.name-col-cell= session.get('creatorName') || "Anonymous"
|
||||
td.fight-cell
|
||||
a(href="/play/level/#{level.get('slug') || level.id}/?team=#{team.otherTeam}&opponent=#{session.id}")
|
||||
span(data-i18n="ladder.fight") Fight!
|
||||
|
||||
if teamIndex == 1
|
||||
.btn.btn-sm.load-more-ladder-entries moar
|
||||
|
||||
div.column.col-md-4
|
||||
h4.friends-header Friends Playing
|
||||
if me.get('anonymous')
|
||||
|
|
49
app/templates/play/ladder/simulate_tab.jade
Normal file
49
app/templates/play/ladder/simulate_tab.jade
Normal file
|
@ -0,0 +1,49 @@
|
|||
p(id="simulation-status-text")
|
||||
if simulationStatus
|
||||
| #{simulationStatus}
|
||||
else
|
||||
span(data-i18n="ladder.simulation_explanation") By simulating games you can get your game ranked faster!
|
||||
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#simulated-by-you= me.get('simulatedBy') || 0
|
||||
|
||||
p.simulation-count
|
||||
span(data-i18n="ladder.games_simulated_for") Games simulated for you:
|
||||
|
|
||||
span#simulated-for-you= me.get('simulatedFor') || 0
|
||||
|
||||
table.table.table-bordered.table-condensed.table-hover
|
||||
tr
|
||||
th
|
||||
th(data-i18n="general.player").name-col-cell Player
|
||||
th(data-i18n="ladder.games_simulated") Games simulated
|
||||
th(data-i18n="ladder.games_played") Games played
|
||||
th(data-i18n="ladder.ratio") Ratio
|
||||
- var topSimulators = simulatorsLeaderboardData.topSimulators.models;
|
||||
- var showJustTop = simulatorsLeaderboardData.inTopSimulators() || me.get('anonymous');
|
||||
- if(!showJustTop) topSimulators = topSimulators.slice(0, 10);
|
||||
for user, rank in topSimulators
|
||||
- var myRow = user.id == me.id
|
||||
tr(class=myRow ? "success" : "")
|
||||
td.simulator-leaderboard-cell= rank + 1
|
||||
td.name-col-cell= user.get('name') || "Anonymous"
|
||||
td.simulator-leaderboard-cell= user.get('simulatedBy')
|
||||
td.simulator-leaderboard-cell= user.get('simulatedFor')
|
||||
td.simulator-leaderboard-cell= Math.round((user.get('simulatedBy') / user.get('simulatedFor')) * 10) / 10
|
||||
|
||||
if !showJustTop && simulatorsLeaderboardData.nearbySimulators().length
|
||||
tr(class="active")
|
||||
td(colspan=5).ellipsis-row ...
|
||||
for user in simulatorsLeaderboardData.nearbySimulators()
|
||||
- var myRow = user.id == me.id
|
||||
- var ratio = user.get('simulatedBy') / user.get('simulatedFor');
|
||||
tr(class=myRow ? "success" : "")
|
||||
td.simulator-leaderboard-cell= user.rank
|
||||
td.name-col-cell= user.get('name') || "Anonymous"
|
||||
td.simulator-leaderboard-cell= user.get('simulatedBy')
|
||||
td.simulator-leaderboard-cell= user.get('simulatedFor')
|
||||
td.simulator-leaderboard-cell= _.isNaN(ratio) || ratio == Infinity ? '' : ratio.toFixed(1)
|
|
@ -8,5 +8,6 @@ block modal-body-content
|
|||
p(data-i18n="play_level.infinite_loop_explanation") The initial code to build the world never finished running. It's probably either really slow or has an infinite loop. Or there might be a bug. You can either try running this code again or reset the code to the default state. If that doesn't fix it, please let us know.
|
||||
|
||||
block modal-footer-content
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="play_level.infinite_loop_wait").btn#restart-level-infinite-loop-retry-button Try Again
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="play_level.infinite_loop_reload").btn.btn-primary#restart-level-infinite-loop-confirm-button Reset Level
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="play_level.infinite_loop_try_again").btn#restart-level-infinite-loop-retry-button Try Again
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="play_level.infinite_loop_reset_level").btn.btn-danger#restart-level-infinite-loop-confirm-button Reset Level
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="play_level.infinite_loop_comment_out").btn.btn-primary#restart-level-infinite-loop-comment-button Comment Out My Code
|
||||
|
|
|
@ -10,14 +10,12 @@ module.exports = class JobProfileView extends CocoView
|
|||
'lookingFor', 'active', 'name', 'city', 'country', 'skills', 'experience', 'shortDescription', 'longDescription',
|
||||
'work', 'education', 'visa', 'projects', 'links', 'jobTitle', 'photoURL'
|
||||
]
|
||||
readOnlySettings: [
|
||||
'updated'
|
||||
]
|
||||
readOnlySettings: [] #['updated']
|
||||
|
||||
afterRender: ->
|
||||
super()
|
||||
return if @loading()
|
||||
@buildJobProfileTreema()
|
||||
_.defer => @buildJobProfileTreema() # Not sure why, but the Treemas don't fully build without this if you reload the page.
|
||||
|
||||
buildJobProfileTreema: ->
|
||||
visibleSettings = @editableSettings.concat @readOnlySettings
|
||||
|
|
|
@ -43,7 +43,7 @@ module.exports = class SettingsView extends View
|
|||
@jobProfileView = new JobProfileView()
|
||||
@listenTo @jobProfileView, 'change', @save
|
||||
@insertSubView @jobProfileView
|
||||
@buildPictureTreema()
|
||||
_.defer => @buildPictureTreema() # Not sure why, but the Treemas don't fully build without this if you reload the page.
|
||||
|
||||
chooseTab: (category) ->
|
||||
id = "##{category}-pane"
|
||||
|
@ -78,10 +78,9 @@ module.exports = class SettingsView extends View
|
|||
buildPictureTreema: ->
|
||||
data = photoURL: me.get('photoURL')
|
||||
data.photoURL = null if data.photoURL?.search('gravatar') isnt -1 # Old style
|
||||
schema = _.cloneDeep me.schema()
|
||||
schema = $.extend true, {}, me.schema()
|
||||
schema.properties = _.pick me.schema().properties, 'photoURL'
|
||||
schema.required = ['photoURL']
|
||||
console.log 'have data', data, 'schema', schema
|
||||
treemaOptions =
|
||||
filePath: "db/user/#{me.id}"
|
||||
schema: schema
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue