mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
702656ad02
258 changed files with 8039 additions and 1442 deletions
|
@ -1,12 +0,0 @@
|
|||
// Fixtures
|
||||
|
||||
db.achievements.insert({
|
||||
query: '{"level.original": "52d97ecd32362bc86e004e87"}',
|
||||
index: true,
|
||||
slug: 'dungeon-arena-started',
|
||||
name: 'Dungeon Arena started',
|
||||
worth: 1,
|
||||
collection: 'level.session',
|
||||
description: 'Started playing Dungeon Arena.',
|
||||
userField: 'creator'
|
||||
});
|
|
@ -15,13 +15,16 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
|
||||
routes:
|
||||
'': go('HomeView')
|
||||
'items': go('game-menu/InventoryView')
|
||||
|
||||
'about': go('AboutView')
|
||||
|
||||
'account/profile(/:userID)': go('account/JobProfileView')
|
||||
|
||||
'account': go('account/MainAccountView')
|
||||
'account/settings': go('account/AccountSettingsView')
|
||||
'account/unsubscribe': go('account/UnsubscribeView')
|
||||
|
||||
'account/profile': go('user/JobProfileView') # legacy URL, sent in emails
|
||||
#'account/payment'
|
||||
|
||||
'admin': go('admin/MainAdminView')
|
||||
'admin/candidates': go('admin/CandidatesView')
|
||||
'admin/clas': go('admin/CLAsView')
|
||||
|
@ -34,7 +37,7 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
|
||||
'cla': go('CLAView')
|
||||
'community': go('CommunityView')
|
||||
|
||||
|
||||
'contribute': go('contribute/MainContributeView')
|
||||
'contribute/adventurer': go('contribute/AdventurerView')
|
||||
'contribute/ambassador': go('contribute/AmbassadorView')
|
||||
|
@ -46,11 +49,11 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'db/*path': 'routeToServer'
|
||||
'demo(/*subpath)': go('DemoView')
|
||||
'docs/components': go('docs/ComponentDocumentationView')
|
||||
|
||||
|
||||
'editor': go('editor/MainEditorView')
|
||||
|
||||
'editor/achievement': go('editor/achievement/AchievementSearchView')
|
||||
'editor/achievement': go('editor/achievement/AchievementEditView')
|
||||
'editor/achievement/:articleID': go('editor/achievement/AchievementEditView')
|
||||
'editor/article': go('editor/article/ArticleSearchView')
|
||||
'editor/article/preview': go('editor/article/ArticlePreviewView')
|
||||
'editor/article/:articleID': go('editor/article/ArticleEditView')
|
||||
|
@ -58,13 +61,13 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'editor/level/:levelID': go('editor/level/LevelEditView')
|
||||
'editor/thang': go('editor/thang/ThangTypeSearchView')
|
||||
'editor/thang/:thangID': go('editor/thang/ThangTypeEditView')
|
||||
|
||||
|
||||
'employers': go('EmployersView')
|
||||
|
||||
'file/*path': 'routeToServer'
|
||||
|
||||
'legal': go('LegalView')
|
||||
|
||||
|
||||
'multiplayer': go('MultiplayerView')
|
||||
|
||||
'play': go('play/MainPlayView')
|
||||
|
@ -76,9 +79,14 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'preview': go('HomeView')
|
||||
|
||||
'teachers': go('TeachersView')
|
||||
|
||||
|
||||
'test(/*subpath)': go('TestView')
|
||||
|
||||
'user/:slugOrID': go('user/MainUserView')
|
||||
'user/:slugOrID/stats': go('user/AchievementsView')
|
||||
'user/:slugOrID/profile': go('user/JobProfileView')
|
||||
#'user/:slugOrID/code': go('user/CodeView')
|
||||
|
||||
'*name': 'showNotFoundView'
|
||||
|
||||
routeToServer: (e) ->
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
FacebookHandler = require 'lib/FacebookHandler'
|
||||
GPlusHandler = require 'lib/GPlusHandler'
|
||||
LinkedInHandler = require 'lib/LinkedInHandler'
|
||||
locale = require 'locale/locale'
|
||||
locale = require 'locale/locale' # TODO: don't require all of these? Might be slow. (Haven't checked.)
|
||||
{me} = require 'lib/auth'
|
||||
Tracker = require 'lib/Tracker'
|
||||
CocoView = require 'views/kinds/CocoView'
|
||||
AchievementNotify = require '../../templates/achievement_notify'
|
||||
|
||||
marked.setOptions {gfm: true, sanitize: true, smartLists: true, breaks: false}
|
||||
|
||||
|
@ -40,7 +39,6 @@ Application = initialize: ->
|
|||
@facebookHandler = new FacebookHandler()
|
||||
@gplusHandler = new GPlusHandler()
|
||||
$(document).bind 'keydown', preventBackspace
|
||||
$.notify.addStyle 'achievement', html: $(AchievementNotify())
|
||||
@linkedinHandler = new LinkedInHandler()
|
||||
preload(COMMON_FILES)
|
||||
$.i18n.init {
|
||||
|
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/pages/editor/level/preset_dungeon_large.jpg
Normal file
BIN
app/assets/images/pages/editor/level/preset_dungeon_large.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
BIN
app/assets/images/pages/editor/level/preset_dungeon_small.jpg
Normal file
BIN
app/assets/images/pages/editor/level/preset_dungeon_small.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
BIN
app/assets/images/pages/editor/level/preset_indoor_large.jpg
Normal file
BIN
app/assets/images/pages/editor/level/preset_indoor_large.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
BIN
app/assets/images/pages/editor/level/preset_indoor_small.jpg
Normal file
BIN
app/assets/images/pages/editor/level/preset_indoor_small.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 84 KiB |
|
@ -263,12 +263,13 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
||||
this.sendResponses = function(responseMap) {
|
||||
var urls = Object.keys(responseMap);
|
||||
var success = true;
|
||||
for(var i in urls) {
|
||||
var url = urls[i];
|
||||
var responseBody = responseMap[url];
|
||||
var responded = false;
|
||||
|
||||
var requests = jasmine.Ajax.requests.all();
|
||||
var requests = jasmine.Ajax.requests.all().slice();
|
||||
for(var j in requests) {
|
||||
var request = requests[j];
|
||||
if(request.url.startsWith(url)) {
|
||||
|
@ -282,9 +283,11 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
urls = [];
|
||||
for(var k in allRequests) urls.push(allRequests[k].url);
|
||||
console.error('could not find response for', url, 'in', urls, allRequests);
|
||||
success = false;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
return success;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
6
app/collections/AchievementCollection.coffee
Normal file
6
app/collections/AchievementCollection.coffee
Normal file
|
@ -0,0 +1,6 @@
|
|||
CocoCollection = require 'collections/CocoCollection'
|
||||
Achievement = require 'models/Achievement'
|
||||
|
||||
module.exports = class AchievementCollection extends CocoCollection
|
||||
url: '/db/achievement'
|
||||
model: Achievement
|
9
app/collections/EarnedAchievementCollection.coffee
Normal file
9
app/collections/EarnedAchievementCollection.coffee
Normal file
|
@ -0,0 +1,9 @@
|
|||
CocoCollection = require 'collections/CocoCollection'
|
||||
EarnedAchievement = require 'models/EarnedAchievement'
|
||||
|
||||
module.exports = class EarnedAchievementCollection extends CocoCollection
|
||||
model: EarnedAchievement
|
||||
|
||||
initialize: (userID) ->
|
||||
@url = "/db/user/#{userID}/achievements"
|
||||
super()
|
|
@ -1,6 +1,9 @@
|
|||
CocoCollection = require 'collections/CocoCollection'
|
||||
Achievement = require 'models/Achievement'
|
||||
|
||||
class NewAchievementCollection extends CocoCollection
|
||||
model: Achievement
|
||||
|
||||
initialize: (me = require('lib/auth').me) ->
|
||||
@url = "/db/user/#{me.id}/achievements?notified=false"
|
||||
|
||||
|
|
9
app/collections/RecentlyPlayedCollection.coffee
Normal file
9
app/collections/RecentlyPlayedCollection.coffee
Normal file
|
@ -0,0 +1,9 @@
|
|||
CocoCollection = require './CocoCollection'
|
||||
LevelSession = require 'models/LevelSession'
|
||||
|
||||
module.exports = class RecentlyPlayedCollection extends CocoCollection
|
||||
model: LevelSession
|
||||
|
||||
constructor: (userID, options) ->
|
||||
@url = "/db/user/#{userID}/recently_played"
|
||||
super options
|
10
app/collections/RelatedAchievementsCollection.coffee
Normal file
10
app/collections/RelatedAchievementsCollection.coffee
Normal file
|
@ -0,0 +1,10 @@
|
|||
CocoCollection = require 'collections/CocoCollection'
|
||||
Achievement = require 'models/Achievement'
|
||||
|
||||
class RelatedAchievementCollection extends CocoCollection
|
||||
model: Achievement
|
||||
|
||||
initialize: (relatedID) ->
|
||||
@url = "/db/achievement?related=#{relatedID}"
|
||||
|
||||
module.exports = RelatedAchievementCollection
|
25
app/lib/DefaultScripts.coffee
Normal file
25
app/lib/DefaultScripts.coffee
Normal file
|
@ -0,0 +1,25 @@
|
|||
module.exports = [
|
||||
{
|
||||
channel: "god:new-world-created"
|
||||
noteChain: []
|
||||
id: "Introduction"
|
||||
}
|
||||
{
|
||||
channel: "world:won"
|
||||
noteChain: []
|
||||
id: "Victory Playback"
|
||||
scriptPrereqs: ["Introduction"]
|
||||
}
|
||||
{
|
||||
channel: "level-set-playing"
|
||||
noteChain: []
|
||||
scriptPrereqs: ["Victory Playback"]
|
||||
id: "Victory Playback Started"
|
||||
}
|
||||
{
|
||||
channel: "surface:frame-changed"
|
||||
noteChain: []
|
||||
scriptPrereqs: ["Victory Playback Started"]
|
||||
id: "Show Victory"
|
||||
}
|
||||
]
|
|
@ -1,6 +1,7 @@
|
|||
Bus = require './Bus'
|
||||
{me} = require 'lib/auth'
|
||||
LevelSession = require 'models/LevelSession'
|
||||
utils = require 'lib/utils'
|
||||
|
||||
module.exports = class LevelBus extends Bus
|
||||
|
||||
|
@ -22,6 +23,7 @@ module.exports = class LevelBus extends Bus
|
|||
'tome:spell-changed': 'onSpellChanged'
|
||||
'tome:spell-created': 'onSpellCreated'
|
||||
'application:idle-changed': 'onIdleChanged'
|
||||
'goal-manager:new-goal-states': 'onNewGoalStates'
|
||||
|
||||
constructor: ->
|
||||
super(arguments...)
|
||||
|
@ -192,6 +194,14 @@ module.exports = class LevelBus extends Bus
|
|||
@changedSessionProperties.state = true
|
||||
@saveSession()
|
||||
|
||||
onNewGoalStates: ({goalStates})->
|
||||
state = @session.get 'state'
|
||||
unless utils.kindaEqual state.goalStates, goalStates # Only save when goals really change
|
||||
state.goalStates = goalStates
|
||||
@session.set 'state', state
|
||||
@changedSessionProperties.state = true
|
||||
@saveSession()
|
||||
|
||||
onPlayerJoined: (snapshot) =>
|
||||
super(arguments...)
|
||||
return unless @onPoint()
|
||||
|
|
|
@ -24,6 +24,7 @@ doQuerySelector = (value, operatorObj) ->
|
|||
|
||||
matchesQuery = (target, queryObj) ->
|
||||
return true unless queryObj
|
||||
throw new Error 'Expected an object to match a query against, instead got null' unless target
|
||||
for prop, query of queryObj
|
||||
if prop[0] == '$'
|
||||
switch prop
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
CocoClass = require 'lib/CocoClass'
|
||||
CocoClass = require './CocoClass'
|
||||
|
||||
namesCache = {}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
SystemNameLoader = require 'lib/SystemNameLoader'
|
||||
SystemNameLoader = require './SystemNameLoader'
|
||||
###
|
||||
Good-to-knows:
|
||||
dataPath: an array of keys that walks you up a JSON object that's being patched
|
||||
|
@ -12,7 +12,7 @@ module.exports.expandDelta = (delta, left, schema) ->
|
|||
(expandFlattenedDelta(fd, left, schema) for fd in flattenedDeltas)
|
||||
|
||||
|
||||
flattenDelta = (delta, dataPath=null, deltaPath=null) ->
|
||||
module.exports.flattenDelta = flattenDelta = (delta, dataPath=null, deltaPath=null) ->
|
||||
# takes a single jsondiffpatch delta and returns an array of objects with
|
||||
return [] unless delta
|
||||
dataPath ?= []
|
||||
|
@ -175,3 +175,5 @@ prunePath = (delta, path) ->
|
|||
prunePath delta[path[0]], path.slice(1) unless delta[path[0]] is undefined
|
||||
keys = (k for k in _.keys(delta[path[0]]) when k isnt '_t')
|
||||
delete delta[path[0]] if keys.length is 0
|
||||
|
||||
|
||||
|
|
|
@ -183,9 +183,7 @@ module.exports = class SpriteBoss extends CocoClass
|
|||
updateCache = false
|
||||
itemsJustEquipped = []
|
||||
for thang in @world.thangs when thang.exists and thang.pos
|
||||
if thang.equip and not thang.equipped
|
||||
thang.equip() # Pretty hacky, since initialize may not be called
|
||||
itemsJustEquipped.push thang
|
||||
itemsJustEquipped = itemsJustEquipped.concat @equipNewItems thang
|
||||
if sprite = @sprites[thang.id]
|
||||
sprite.setThang thang # make sure Sprite has latest Thang
|
||||
else
|
||||
|
@ -206,6 +204,21 @@ module.exports = class SpriteBoss extends CocoClass
|
|||
if @willSelectThang and @sprites[@willSelectThang[0]]
|
||||
@selectThang @willSelectThang...
|
||||
|
||||
equipNewItems: (thang) ->
|
||||
itemsJustEquipped = []
|
||||
if thang.equip and not thang.equipped
|
||||
thang.equip() # Pretty hacky, but needed since initialize may not be called if we're not running Systems.
|
||||
itemsJustEquipped.push thang
|
||||
if thang.inventoryIDs
|
||||
# Even hackier: these items were only created/equipped during simulation, so we reequip here.
|
||||
for slot, itemID of thang.inventoryIDs
|
||||
item = @world.getThangByID itemID
|
||||
unless item.equipped
|
||||
#console.log thang.id, 'equipping', item, 'in', thang.slot, 'Surface-side'
|
||||
item.equip()
|
||||
itemsJustEquipped.push item
|
||||
return itemsJustEquipped
|
||||
|
||||
cache: (update=false) ->
|
||||
return if @cached and not update
|
||||
wallSprites = (sprite for sprite in @spriteArray when sprite.thangType?.get('name').search(/(dungeon|indoor).wall/i) isnt -1)
|
||||
|
|
|
@ -25,7 +25,7 @@ module.exports.normalizeFunc = (func_thing, object) ->
|
|||
if _.isString(func_thing)
|
||||
func = object[func_thing]
|
||||
if not func
|
||||
console.error "Could not find method #{func_thing} in object #{@}"
|
||||
console.error "Could not find method #{func_thing} in object", object
|
||||
return => null # always return a func, or Mediator will go boom
|
||||
func_thing = func
|
||||
return func_thing
|
||||
|
@ -70,6 +70,7 @@ module.exports.i18n = (say, target, language=me.lang(), fallback='en') ->
|
|||
null
|
||||
|
||||
module.exports.getByPath = (target, path) ->
|
||||
throw new Error 'Expected an object to match a query against, instead got null' unless target
|
||||
pieces = path.split('.')
|
||||
obj = target
|
||||
for piece in pieces
|
||||
|
@ -82,7 +83,7 @@ module.exports.isID = (id) -> _.isString(id) and id.length is 24 and id.match(/[
|
|||
module.exports.round = _.curry (digits, n) ->
|
||||
n = +n.toFixed(digits)
|
||||
|
||||
positify = (func) -> (x) -> if x > 0 then func(x) else 0
|
||||
positify = (func) -> (params) -> (x) -> if x > 0 then func(params)(x) else 0
|
||||
|
||||
# f(x) = ax + b
|
||||
createLinearFunc = (params) ->
|
||||
|
@ -100,3 +101,32 @@ module.exports.functionCreators =
|
|||
linear: positify(createLinearFunc)
|
||||
quadratic: positify(createQuadraticFunc)
|
||||
logarithmic: positify(createLogFunc)
|
||||
|
||||
# Call done with true to satisfy the 'until' goal and stop repeating func
|
||||
module.exports.keepDoingUntil = (func, wait=100, totalWait=5000) ->
|
||||
waitSoFar = 0
|
||||
(done = (success) ->
|
||||
if (waitSoFar += wait) <= totalWait and not success
|
||||
_.delay (-> func done), wait) false
|
||||
|
||||
module.exports.grayscale = (imageData) ->
|
||||
d = imageData.data
|
||||
for i in [0..d.length] by 4
|
||||
r = d[i]
|
||||
g = d[i+1]
|
||||
b = d[i+2]
|
||||
v = 0.2126*r + 0.7152*g + 0.0722*b
|
||||
d[i] = d[i+1] = d[i+2] = v
|
||||
imageData
|
||||
|
||||
# Deep compares l with r, with the exception that undefined values are considered equal to missing values
|
||||
# Very practical for comparing Mongoose documents where undefined is not allowed, instead fields get deleted
|
||||
module.exports.kindaEqual = compare = (l, r) ->
|
||||
if _.isObject(l) and _.isObject(r)
|
||||
for key in _.union Object.keys(l), Object.keys(r)
|
||||
return false unless compare l[key], r[key]
|
||||
return true
|
||||
else if l is r
|
||||
return true
|
||||
else
|
||||
return false
|
||||
|
|
|
@ -62,7 +62,7 @@ module.exports = class Thang
|
|||
componentClass = @world.classMap[componentClass]
|
||||
else
|
||||
@world?.classMap[componentClass.className] ?= componentClass
|
||||
c = new componentClass componentConfig
|
||||
c = new componentClass componentConfig ? {}
|
||||
c.attach @
|
||||
|
||||
# [prop, type]s of properties which have values tracked across WorldFrames. Also call keepTrackedProperty some non-expensive time when you change it or it will be skipped.
|
||||
|
|
|
@ -194,7 +194,7 @@ module.exports = class World
|
|||
try
|
||||
thang.addComponents components...
|
||||
catch e
|
||||
console.error 'couldn\'t load components for', thangConfig.thangType, thangConfig.id, 'because', e, e.stack
|
||||
console.error 'couldn\'t load components for', thangTypeOriginal, thangConfig.id, 'because', e.toString(), e.stack
|
||||
thang
|
||||
|
||||
addThang: (thang) ->
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
blog: "Блог"
|
||||
forum: "Форум"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Преглед"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
general:
|
||||
and: "и"
|
||||
name: "Име"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
version: "Версия"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
blog: "Blog"
|
||||
forum: "Fòrum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Inici"
|
||||
contribute: "Col·laborar"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Català", englishDescription: "Catalan", tr
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Domů"
|
||||
contribute: "Přispívat"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
new_password: "Nové heslo"
|
||||
new_password_verify: "Potvrdit"
|
||||
email_subscriptions: "Doručovat emailem"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Oznámení"
|
||||
email_announcements_description: "Zasílat emaily o posledních novinkách a o postupu ve vývoji CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Emaily pro přispívatele"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editory CodeCombatu"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Náhled"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
general:
|
||||
and: "a"
|
||||
name: "Jméno"
|
||||
# date: "Date"
|
||||
body: "Tělo"
|
||||
version: "Verze"
|
||||
commit_msg: "Popisek ukládání"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
nick_description: "Programátorský kouzelník, excentrický motivační mág i experimentátor. Nick by mohl dělat de-facto cokoliv, ale zvolil si vytvořit CodeCombat."
|
||||
jeremy_description: "Mistr zákaznické podpory, tester použitelnosti a organizátor komunity. Je velmi pravděpodobné, že jste si spolu již psali."
|
||||
michael_description: "Programátor, systémový administrátor a král podsvětí technického zázemí. Michael udržuje naše servery 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Licence"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
introduction_desc_github_url: "CodeCombat je kompletně open source"
|
||||
introduction_desc_suf: "a snažíme se jak jen to jde, abychom vám umožnili se do tohoto projektu zapojit."
|
||||
introduction_desc_ending: "Doufáme, že se k nám přidáte!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy a Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy a Matt"
|
||||
alert_account_message_intro: "Vítejte!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Hjem"
|
||||
contribute: "Bidrag"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
new_password: "Nyt Password"
|
||||
new_password_verify: "Bekræft"
|
||||
email_subscriptions: "Emailtilmeldinger"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Nyheder"
|
||||
email_announcements_description: "Få emails om de seneste nyheder og udvikling på CodeCombat."
|
||||
email_notifications: "Notifikationer"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Bidragsklasse-emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
level_search_title: "Søg Baner Her"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Forhåndsvisning"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
general:
|
||||
and: "og"
|
||||
name: "navn"
|
||||
# date: "Date"
|
||||
body: "krop"
|
||||
version: "version"
|
||||
commit_msg: "ændringsnotat"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# 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: "Vi håber du vil deltage i vores fest!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy, ogGlen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy, ogMatt"
|
||||
alert_account_message_intro: "Hej med dig!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Home"
|
||||
contribute: "Mitmache"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
new_password: "Neus Passwort"
|
||||
new_password_verify: "Bestätige"
|
||||
email_subscriptions: "E-Mail Abos"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Akündigunge"
|
||||
email_announcements_description: "Bechum Mails mit Neuigkeite und de neuste Entwicklige bi CodeCombat."
|
||||
email_notifications: "Benachrichtigunge"
|
||||
email_notifications_summary: "Istellige für personalisierti, automatischi E-Mail Notifikatione im Zemehang mit dine CodeCombat Aktivitäte"
|
||||
email_any_notes: "Alli Notifikatione"
|
||||
email_any_notes_description: "Deaktiviere zum kei Aktivitäts-Notifikatione meh per E-Mail becho."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
# clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Level Editor"
|
||||
main_title: "CodeCombat Community"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
nick_description: "Programmier-Zauberer, exzentrische Motivations-Magier und Chopfüber-Experimentierer. De Nick chönti alles mache und het sich entschiede zum CodeCombat baue."
|
||||
jeremy_description: "Kundesupport-Magier, Usability Tester und Community-Organisator; du hesch worschinli scho mitem Jeremy gredet."
|
||||
michael_description: "Programmierer, Systemadmin und es technisches Wunderchind ohni Studium. Michael isch die Person wo üsi Server am Laufe bhaltet."
|
||||
glen_description: "Programmierer und passionierte Gameentwickler mit de Motivation, die Welt zumene bessere Ort zmache, indem mer Sache entwickled wo e Rolle spieled. S Wort unmöglich findet mer nid i sim Wortschatz. Neui Fähigkeite erlerne isch sini Freud!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Rechtlichs"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Deutsch (Schweiz)", englishDescription: "Ge
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administration"
|
||||
home: "Home"
|
||||
contribute: "Helfen"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
new_password: "Neues Passwort"
|
||||
new_password_verify: "Passwort verifizieren"
|
||||
email_subscriptions: "Email Abonnements"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Ankündigungen"
|
||||
email_announcements_description: "Erhalte regelmäßig Ankündigungen zu deinem Account."
|
||||
email_notifications: "Benachrichtigungen"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Job-Angebote"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Unterstützer Email"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Level Editor"
|
||||
main_title: "CodeCombat Community"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editoren"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
level_search_title: "Durchsuche Levels hier"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vorschau"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
general:
|
||||
and: "und"
|
||||
name: "Name"
|
||||
# date: "Date"
|
||||
body: "Inhalt"
|
||||
version: "Version"
|
||||
commit_msg: "Commit Nachricht"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Rechtliches"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administration"
|
||||
home: "Home"
|
||||
contribute: "Helfen"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
new_password: "Neues Passwort"
|
||||
new_password_verify: "Passwort verifizieren"
|
||||
email_subscriptions: "Email Abonnements"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Ankündigungen"
|
||||
email_announcements_description: "Erhalte regelmäßig Ankündigungen zu deinem Account."
|
||||
email_notifications: "Benachrichtigungen"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Job-Angebote"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Unterstützer Email"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Level Editor"
|
||||
main_title: "CodeCombat Community"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editoren"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
level_search_title: "Durchsuche Levels hier"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vorschau"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
general:
|
||||
and: "und"
|
||||
name: "Name"
|
||||
# date: "Date"
|
||||
body: "Inhalt"
|
||||
version: "Version"
|
||||
commit_msg: "Commit Nachricht"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Rechtliches"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Deutsch", englishDescription: "German", tra
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
blog: "Μπλόγκ"
|
||||
forum: "Φόρουμ"
|
||||
account: "Λογαριασμός"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Διαχειριστής"
|
||||
home: "Αρχική"
|
||||
contribute: "Συμβάλλω"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
new_password: "Καινούργιος Κωδικός"
|
||||
new_password_verify: " Επαλήθευση Κωδικού"
|
||||
email_subscriptions: "Συνδρομές Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Ανακοινώσεις"
|
||||
email_announcements_description: "Λάβετε emails για τα τελευταία νέα και τις εξελίξεις του CodeCombat."
|
||||
email_notifications: "Ειδοποιήσεις"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
general:
|
||||
and: "και"
|
||||
name: "Όνομα"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
version: "Έκδοση"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "ελληνικά", englishDescription: "Gre
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "English (AU)", englishDescription: "English
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# 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 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
account: "Account"
|
||||
profile: "Profile"
|
||||
stats: "Stats"
|
||||
code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Home"
|
||||
contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@
|
|||
new_password: "New Password"
|
||||
new_password_verify: "Verify"
|
||||
email_subscriptions: "Email Subscriptions"
|
||||
email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Announcements"
|
||||
email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
email_notifications: "Notifications"
|
||||
email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
email_any_notes: "Any Notifications"
|
||||
email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
email_news: "News"
|
||||
email_recruit_notes: "Job Opportunities"
|
||||
email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@
|
|||
clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Level Editor"
|
||||
main_title: "CodeCombat Community"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
level_editor_prefix: "Use the CodeCombat"
|
||||
level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
find_us: "Find us on these sites"
|
||||
contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@
|
|||
level_search_title: "Search Levels Here"
|
||||
achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
no_achievements: "No achievements have been added for this level yet."
|
||||
achievement_query_misc: "Key achievement off of miscellanea"
|
||||
achievement_query_goals: "Key achievement off of level goals"
|
||||
level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@
|
|||
general:
|
||||
and: "and"
|
||||
name: "Name"
|
||||
date: "Date"
|
||||
body: "Body"
|
||||
version: "Version"
|
||||
commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@
|
|||
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!"
|
||||
matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@
|
|||
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"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
alert_account_message_intro: "Hey there!"
|
||||
alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
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."
|
||||
|
@ -929,6 +944,7 @@
|
|||
candidate_sessions: "Candidate Sessions"
|
||||
user_remark: "User Remark"
|
||||
versions: "Versions"
|
||||
items: "Items"
|
||||
|
||||
delta:
|
||||
added: "Added"
|
||||
|
@ -938,3 +954,38 @@
|
|||
text_diff: "Text Diff"
|
||||
merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
no_changes: "No Changes"
|
||||
|
||||
user:
|
||||
stats: "Stats"
|
||||
singleplayer_title: "Singleplayer Levels"
|
||||
multiplayer_title: "Multiplayer Levels"
|
||||
achievements_title: "Achievements"
|
||||
last_played: "Last Played"
|
||||
status: "Status"
|
||||
status_completed: "Completed"
|
||||
status_unfinished: "Unfinished"
|
||||
no_singleplayer: "No Singleplayer games played yet."
|
||||
no_multiplayer: "No Multiplayer games played yet."
|
||||
no_achievements: "No Achievements earned yet."
|
||||
favorite_prefix: "Favorite language is "
|
||||
favorite_postfix: "."
|
||||
|
||||
achievements:
|
||||
last_earned: "Last Earned"
|
||||
amount_achieved: "Amount"
|
||||
achievement: "Achievement"
|
||||
category_contributor: "Contributor"
|
||||
category_miscellaneous: "Miscellaneous"
|
||||
category_levels: "Levels"
|
||||
category_undefined: "Uncategorized"
|
||||
current_xp_prefix: ""
|
||||
current_xp_postfix: " in total"
|
||||
new_xp_prefix: ""
|
||||
new_xp_postfix: " earned"
|
||||
left_xp_prefix: ""
|
||||
left_xp_infix: " until level "
|
||||
left_xp_postfix: ""
|
||||
|
||||
account:
|
||||
recently_played: "Recently Played"
|
||||
no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
blog: "Blog"
|
||||
forum: "Foro"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Inicio"
|
||||
contribute: "Contribuir"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
new_password: "Nueva Contraseña"
|
||||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Noticias"
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
email_notifications: "Notificaciones"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Emails Clase Contribuyente"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vista previa"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
general:
|
||||
and: "y"
|
||||
name: "Nombre"
|
||||
# date: "Date"
|
||||
body: "Cuerpo"
|
||||
version: "Versión"
|
||||
commit_msg: "Enviar mensaje"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "español (América Latina)", englishDescrip
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
blog: "Blog"
|
||||
forum: "Foro"
|
||||
account: "Cuenta"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Inicio"
|
||||
contribute: "Colaborar"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
new_password: "Nueva contraseña"
|
||||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de correo electrónico"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Noticias"
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
email_notifications: "Notificationes"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
email_recruit_notes_description: "Si tu juegas realmente bien, puede que contactemos contigo para que consigas un trabajo (mejor)."
|
||||
contributor_emails: "Correos para colaboradores"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Editor de niveles"
|
||||
main_title: "Comunidad de CodeCombat"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editores de CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
level_search_title: "Buscar niveles aquí"
|
||||
achievement_search_title: "Buscar Logros"
|
||||
read_only_warning2: "Nota: no puedes guardar nada de lo que edites aqui porque no has iniciado sesión."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Vista preliminar"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
general:
|
||||
and: "y"
|
||||
name: "Nombre"
|
||||
# date: "Date"
|
||||
body: "Cuerpo"
|
||||
version: "Versión"
|
||||
commit_msg: "Mensaje de Asignación o Commit"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
nick_description: "Mago de la programación, hechicero excéntrico de la motivación y experimentador del revés. Nick pudo haber hecho cualquier cosa y eligió desarrollar CodeCombat."
|
||||
jeremy_description: "Mago de la atención al cliente, tester de usabilidad y organizador de la comunidad; es probable que ya hayas hablado con Jeremy."
|
||||
michael_description: "Programador, administrador de sistemas y prodigio técnico, Michael es el encargado de mantener nuestros servidores en línea."
|
||||
glen_description: "Programador y apasionado desarrollador de juegos, con la motivación de hacer este mundo un sitio mejor, desarrollando cosas que importan. La palabra imposible no existe en su diccionario. ¡Aprender nuevas habilidades es su hobby!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
introduction_desc_github_url: "CodeCombat es totalmente de código abierto"
|
||||
introduction_desc_suf: ", y nuestro objetivo es ofrecer tantas maneras como sea posible para que tomes parte y hagas de este proyecto algo tan tuyo como nuestro."
|
||||
introduction_desc_ending: "¡Esperamos que te unas a nuestro equipo!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy y Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy y Matt"
|
||||
alert_account_message_intro: "¡Hola!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "¿Interesado en trabajar en gráficos para juegos, el diseño de la interfaz de usuario, bases de datos y la organización de servidores, redes multijugador, físicas, sonido o el funcionamiento del motor del juego? ¿Quieres ayudar a construir un juego para ayudar a otras personas a aprender aquello en lo que eres bueno? Tenemos mucho que hacer y si eres un programador experimentado y quieres desarrollar para CodeCombat, esta clase es para tí. Nos encantaría recibir tu ayuda para construir el mejor juego de programación que se haya hecho."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
no_changes: "Sin Cambios"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
blog: "Blog"
|
||||
forum: "Foro"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Inicio"
|
||||
contribute: "Contribuir"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
new_password: "Nueva Contraseña"
|
||||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Suscripciones de Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Noticias"
|
||||
email_announcements_description: "Recibe correos electrónicos con las últimas noticias y desarrollos de CodeCombat."
|
||||
email_notifications: "Notificación"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Correos Para Colaboradores"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Previsualizar"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
general:
|
||||
and: "y"
|
||||
name: "Nombre"
|
||||
# date: "Date"
|
||||
body: "Cuerpo"
|
||||
version: "Versión"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "español", englishDescription: "Spanish", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
blog: "بلاگ"
|
||||
forum: "انجمن"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "مدیر"
|
||||
home: "خانه"
|
||||
contribute: "همکاری"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
general:
|
||||
# and: "and"
|
||||
name: "نام"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
account: "Compte"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Accueil"
|
||||
contribute: "Contribuer"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
new_password: "Nouveau mot de passe"
|
||||
new_password_verify: "Vérifier"
|
||||
email_subscriptions: "Abonnements"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Annonces"
|
||||
email_announcements_description: "Recevoir des mails sur les dernières actualités et sur le développement de CodeCombat."
|
||||
email_notifications: "Notifications"
|
||||
email_notifications_summary: "Commandes pour personaliser les notifications automatiques d'email liées à votre activité sur CodeCombat."
|
||||
email_any_notes: "Toutes Notifications"
|
||||
email_any_notes_description: "Désactivez pour ne plus recevoir de notifications par e-mail."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Offres d'emploi"
|
||||
email_recruit_notes_description: "Si vous jouez vraiment bien, nous pouvons vous contacter pour vous proposer un (meilleur) emploi."
|
||||
contributor_emails: "Emails des contributeurs"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Editeur de niveau"
|
||||
main_title: "Communauté CodeCombat"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Éditeurs CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
level_search_title: "Rechercher dans les niveaux"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Note: vous ne pouvez sauvegarder aucune édition, car vous n'êtes pas identifié."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prévisualiser"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
general:
|
||||
and: "et"
|
||||
name: "Nom"
|
||||
# date: "Date"
|
||||
body: "Corps"
|
||||
version: "Version"
|
||||
commit_msg: "Message de mise à jour"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
nick_description: "Assistant programmeur, mage à la motivation excentrique, et bidouilleur de l'extrême. Nick peut faire n'importe quoi mais il a choisi CodeCombat."
|
||||
jeremy_description: "Mage de l'assistance client, testeur de maniabilité, et community manager; vous avez probablement déjà parlé avec Jeremy."
|
||||
michael_description: "Programmeur, administrateur réseau, et l'enfant prodige du premier cycle, Michael est la personne qui maintient nos serveurs en ligne."
|
||||
glen_description: "Programmeur et développeur de jeux passioné, avec la motivation pour faire de ce monde un meilleur endroit, en développant des choses qui comptent. Le mot impossible est introuvable dans son dictionnaire. Apprendre de nouveaux talents est sa joie !"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Légal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
introduction_desc_github_url: "CodeCombat est totalement open source"
|
||||
introduction_desc_suf: ", et nous avons pour objectif de fournir autant de manières possibles pour que vous participiez et fassiez de ce projet autant le votre que le notre."
|
||||
introduction_desc_ending: "Nous espérons que vous allez joindre notre aventure!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy et Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy et Matt"
|
||||
alert_account_message_intro: "Et tiens!"
|
||||
alert_account_message: "Pour souscrire aux e-mails, vous devez être connecté"
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "français", englishDescription: "French", t
|
|||
text_diff: "Différence de texte"
|
||||
merge_conflict_with: "Fusionner les conflits avec"
|
||||
no_changes: "Aucuns Changements"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
blog: "בלוג"
|
||||
forum: "פורום"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "אדמין"
|
||||
home: "בית"
|
||||
contribute: "תרום"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
new_password: "סיסמה חדשה"
|
||||
new_password_verify: "חזור על הסיסמה שנית"
|
||||
email_subscriptions: "הרשמויות אימייל"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "הודעות"
|
||||
email_announcements_description: "קבל את החדשות ואת הפיתוחים הכי חדישים במשחק באימייל."
|
||||
email_notifications: "עדכונים"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "אימיילים של כיתות תורמים"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Kezdőlap"
|
||||
contribute: "Segítségnyújtás"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
new_password: "Új jelszó"
|
||||
new_password_verify: "Új jelszó megismétlése"
|
||||
email_subscriptions: "Hírlevél feliratkozások"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Bejelentések"
|
||||
email_announcements_description: "Szeretnél levelet kapni a legújabb fejlesztéseinkről?"
|
||||
email_notifications: "Értesítések"
|
||||
email_notifications_summary: "CodeCombat tevékenységedre vonatkozó személyre szóló, automatikus értesítések beállításai."
|
||||
email_any_notes: "Bármely megjegyzés"
|
||||
email_any_notes_description: "Minden tevékenységgel kapcsolatos e-mail értesítés letiltása."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Álláslehetőségek"
|
||||
email_recruit_notes_description: "Ha igazán jól játszol lehet, hogy felveszzük veled a kapcsolatot és megbeszéljük, hogy szerezzünk-e neked egy (jobb) állást."
|
||||
contributor_emails: "Hozzájárulóknak szóló levelek"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Amministratore"
|
||||
home: "Pagina iniziale"
|
||||
contribute: "Contribuisci"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
new_password: "Nuova password"
|
||||
new_password_verify: "Verifica"
|
||||
email_subscriptions: "Sottoscrizioni email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Annunci email"
|
||||
email_announcements_description: "Ricevi email con le ultime novità e sviluppi di CodeCombat."
|
||||
email_notifications: "Notifiche email"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Email dei collaboratori"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editor di CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Anteprima"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
general:
|
||||
and: "e"
|
||||
name: "Nome"
|
||||
# date: "Date"
|
||||
body: "Testo"
|
||||
version: "Versione"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Questioni legali"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
blog: "ブログ"
|
||||
forum: "掲示板"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "管理"
|
||||
home: "ホーム"
|
||||
contribute: "貢献"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
new_password: "新パスワード"
|
||||
new_password_verify: "新パスワードを再入力"
|
||||
email_subscriptions: "ニュースレターの購読"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "お知らせ"
|
||||
email_announcements_description: "CodeCombatの最新のニュースや進展をメールで受け取る"
|
||||
email_notifications: "通知"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "開発を手伝ってくれる人向けのメール"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
clas: "CLA"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombatエディター"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
blog: "블로그"
|
||||
forum: "포럼"
|
||||
account: "계정"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "관리자"
|
||||
home: "홈"
|
||||
contribute: "참여하기"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
new_password: "새 비밀번호"
|
||||
new_password_verify: "확인(다시한번 입력해주세요)"
|
||||
email_subscriptions: "이메일 구독"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "공지사항"
|
||||
email_announcements_description: "코드 컴뱃의 개발 및 진행 상황을 이메일로 구독하세요"
|
||||
email_notifications: "알람"
|
||||
email_notifications_summary: "당신의 코드 컴뱃 활동과 관련된 자동 알림 메일을 설정할 수 있습니다."
|
||||
email_any_notes: "모든 알림 받기"
|
||||
email_any_notes_description: "모든 알림 메일 받지 않기"
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "구인 정보"
|
||||
email_recruit_notes_description: "정말 실력이 좋으시다고 판단되면, 보다 좋은 구직 정보와 관련하여 연락드릴 수도 있습니다."
|
||||
contributor_emails: "조력자들 이메일"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
clas: "컨트리뷰터 라이센스 약관"
|
||||
|
||||
community:
|
||||
level_editor: "레벨 에디터"
|
||||
main_title: "코드 컴뱃 커뮤니티"
|
||||
facebook: "페이스북"
|
||||
twitter: "트위터"
|
||||
gplus: "구글 플러스"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "코드 컴뱃 에디터들"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
level_search_title: "레벨들은 여기에서 찾으세요"
|
||||
achievement_search_title: "업적 검색"
|
||||
read_only_warning2: "주의: 로그인하지 않으셨기 때문에 내용을 저장할 수 없습니다."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "미리보기"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
general:
|
||||
and: "그리고"
|
||||
name: "이름"
|
||||
# date: "Date"
|
||||
body: "구성"
|
||||
version: "버전"
|
||||
commit_msg: "커밋 메세지"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
nick_description: "프로그래밍 마법사, 별난 자극의 마술사, 거꾸로 생각하는것을 좋아하는 실험가. Nick은 뭐든지 할수있는 남자입니다. 그 뭐든지 중에 코드 컴뱃을 선택했죠. "
|
||||
jeremy_description: "고객 지원 마법사, 사용성 테스터, 커뮤니티 오거나이저; 당신은 아마 이미 Jeremy랑 이야기 했을거에요."
|
||||
michael_description: "프로그래머, 시스템 관리자, 기술 신동(대학생이래요),Michael 은 우리 서버를 계속 무결점상태로 유지시켜주는 사람입니다."
|
||||
glen_description: "프로그래머이자 열정적인 게임 개발자. 의미있는 것들을 개발함으로써 세상을 보다 더 나은 곳으로 변화시키고자 하는 개발자입니다. 그의 사전에 불가능이란 없습니다. 새로운 기술을 배우는 건 그에게 몹시 즐거운 일이죠!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -26,7 +26,7 @@ module.exports =
|
|||
ar: require './ar' # العربية, Arabic
|
||||
pt: require './pt' # português, Portuguese
|
||||
'pt-BR': require './pt-BR' # português do Brasil, Portuguese (Brazil)
|
||||
'pt-PT': require './pt-PT' # Português europeu, Portuguese (Portugal)
|
||||
'pt-PT': require './pt-PT' # Português (Portugal), Portuguese (Portugal)
|
||||
pl: require './pl' # język polski, Polish
|
||||
it: require './it' # italiano, Italian
|
||||
tr: require './tr' # Türkçe, Turkish
|
||||
|
@ -54,7 +54,8 @@ module.exports =
|
|||
he: require './he' # עברית, Hebrew
|
||||
lt: require './lt' # lietuvių kalba, Lithuanian
|
||||
sr: require './sr' # српски, Serbian
|
||||
uk: require './uk' # українська мова, Ukranian
|
||||
uk: require './uk' # українська мова, Ukrainian
|
||||
hi: require './hi' # मानक हिन्दी, Hindi
|
||||
ur: require './ur' # اُردُو, Urdu
|
||||
ms: require './ms' # Bahasa Melayu, Bahasa Malaysia
|
||||
ca: require './ca' # Català, Catalan
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
home: "Halaman"
|
||||
contribute: "Sumbangan"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
new_password: "Kata-laluan baru"
|
||||
new_password_verify: "Verifikasi"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Pengumuman"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
email_notifications: "Notifikasi"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
general:
|
||||
and: "dan"
|
||||
name: "Nama"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
version: "Versi"
|
||||
commit_msg: "Mesej Commit"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Undang-Undang"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
blog: "Blogg"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrator"
|
||||
home: "Hjem"
|
||||
contribute: "Bidra"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
new_password: "Nytt Passord"
|
||||
new_password_verify: "Verifiser"
|
||||
email_subscriptions: "Epost Abonnement"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Kunngjøringer"
|
||||
email_announcements_description: "Få epost om siste nytt og utvikling fra CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Contributor Klasse Epost"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
general:
|
||||
# and: "and"
|
||||
name: "Navn"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrator"
|
||||
home: "Home"
|
||||
contribute: "Bijdragen"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
new_password: "Nieuw Wachtwoord"
|
||||
new_password_verify: "Verifieer"
|
||||
email_subscriptions: "E-mail Abonnementen"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Aankondigingen"
|
||||
email_announcements_description: "Verkrijg emails over het laatste nieuws en de ontwikkelingen bij CodeCombat."
|
||||
email_notifications: "Notificaties"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Medewerker Klasse emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
level_search_title: "Zoek Levels Hier"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Pas op, je kunt geen aanpassingen opslaan hier, want je bent niet ingelogd."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
general:
|
||||
and: "en"
|
||||
name: "Naam"
|
||||
# date: "Date"
|
||||
body: "Inhoud"
|
||||
version: "Versie"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
nick_description: "Getalenteerde programmeur, excentriek gemotiveerd, een rasechte experimenteerder. Nick kan alles en kiest ervoor om CodeCombat te ontwikkelen."
|
||||
jeremy_description: "Klantenservice Manager, usability tester en gemeenschapsorganisator; Je hebt waarschijnlijk al gesproken met Jeremy."
|
||||
michael_description: "Programmeur, sys-admin, en technisch wonderkind, Michael is de persoon die onze servers draaiende houdt."
|
||||
glen_description: "Programmeur en gepassioneerde game developer, met de motivatie om de wereld te verbeteren, door het ontwikkelen van de dingen die belangrijk zijn. Het woord onmogelijk staat niet in zijn woordenboek. Nieuwe vaardigheden leren is een plezier voor him!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legaal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
introduction_desc_github_url: "CodeCombat is volledig open source"
|
||||
introduction_desc_suf: ", en we streven ernaar om op zoveel mogelijk manieren het mogelijk te maken voor u om deel te nemen en dit project van zowel jou als ons te maken."
|
||||
introduction_desc_ending: "We hopen dat je met ons meedoet!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Matt"
|
||||
alert_account_message_intro: "Hallo!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Geïnteresserd in het werken aan game graphics, user interface design, database- en serverorganisatie, multiplayer networking, physics, geluid of game engine prestaties? Wil jij helpen een game te bouwen wat anderen leert waar jij goed in bent? We moeten nog veel doen en als jij een ervaren programmeur bent en wil ontwikkelen voor CodeCombat, dan is dit de klasse voor jou. We zouden graag je hulp hebben bij het maken van de beste programmeergame ooit."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrator"
|
||||
home: "Home"
|
||||
contribute: "Bijdragen"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
new_password: "Nieuw Wachtwoord"
|
||||
new_password_verify: "Verifieer"
|
||||
email_subscriptions: "E-mail Abonnementen"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Aankondigingen"
|
||||
email_announcements_description: "Verkrijg emails over het laatste nieuws en de ontwikkelingen bij CodeCombat."
|
||||
email_notifications: "Notificaties"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Medewerker Klasse emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
level_search_title: "Zoek Levels Hier"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Pas op, je kunt geen aanpassingen opslaan hier, want je bent niet ingelogd."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
general:
|
||||
and: "en"
|
||||
name: "Naam"
|
||||
# date: "Date"
|
||||
body: "Inhoud"
|
||||
version: "Versie"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
nick_description: "Getalenteerde programmeur, excentriek gemotiveerd, een rasechte experimenteerder. Nick kan alles en kiest ervoor om CodeCombat te ontwikkelen."
|
||||
jeremy_description: "Klantenservice Manager, usability tester en gemeenschapsorganisator; Je hebt waarschijnlijk al gesproken met Jeremy."
|
||||
michael_description: "Programmeur, sys-admin, en technisch wonderkind, Michael is de persoon die onze servers draaiende houdt."
|
||||
glen_description: "Programmeur en gepassioneerde game developer, met de motivatie om de wereld te verbeteren, door het ontwikkelen van de dingen die belangrijk zijn. Het woord onmogelijk staat niet in zijn woordenboek. Nieuwe vaardigheden leren is een plezier voor him!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legaal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
introduction_desc_github_url: "CodeCombat is volledig open source"
|
||||
introduction_desc_suf: ", en we streven ernaar om op zoveel mogelijk manieren het mogelijk te maken voor u om deel te nemen en dit project van zowel jou als ons te maken."
|
||||
introduction_desc_ending: "We hopen dat je met ons meedoet!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Matt"
|
||||
alert_account_message_intro: "Hallo!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Geïnteresserd in het werken aan game graphics, user interface design, database- en serverorganisatie, multiplayer networking, physics, geluid of game engine prestaties? Wil jij helpen een game te bouwen wat anderen leert waar jij goed in bent? We moeten nog veel doen en als jij een ervaren programmeur bent en wil ontwikkelen voor CodeCombat, dan is dit de klasse voor jou. We zouden graag je hulp hebben bij het maken van de beste programmeergame ooit."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
account: "Lidmaatschap"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrator"
|
||||
home: "Home"
|
||||
contribute: "Bijdragen"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
new_password: "Nieuw Wachtwoord"
|
||||
new_password_verify: "Verifieer"
|
||||
email_subscriptions: "E-mail Abonnementen"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Aankondigingen"
|
||||
email_announcements_description: "Verkrijg emails over het laatste nieuws en de ontwikkelingen bij CodeCombat."
|
||||
email_notifications: "Meldingen"
|
||||
email_notifications_summary: "Instellingen voor gepersonaliseerde, automatische meldingen via e-mail omtrent je activiteit op CodeCombat."
|
||||
email_any_notes: "Alle Meldingen"
|
||||
email_any_notes_description: "Zet alle activiteit-meldingen via e-mail af."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Job Aanbiedingen"
|
||||
email_recruit_notes_description: "Als je zeer goed speelt, zouden we je wel eens kunnen contacteren om je een (betere) job aan te bieden."
|
||||
contributor_emails: "Medewerker Klasse emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Level Bewerker"
|
||||
main_title: "CodeCombat Gemeenschap"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
level_search_title: "Zoek Levels Hier"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Pas op, je kunt geen aanpassingen opslaan hier, want je bent niet ingelogd."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Voorbeeld"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
general:
|
||||
and: "en"
|
||||
name: "Naam"
|
||||
# date: "Date"
|
||||
body: "Inhoud"
|
||||
version: "Versie"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
nick_description: "Getalenteerde programmeur, excentriek gemotiveerd, een rasechte experimenteerder. Nick kan alles en kiest ervoor om CodeCombat te ontwikkelen."
|
||||
jeremy_description: "Klantenservice Manager, usability tester en gemeenschapsorganisator; Je hebt waarschijnlijk al gesproken met Jeremy."
|
||||
michael_description: "Programmeur, sys-admin, en technisch wonderkind, Michael is de persoon die onze servers draaiende houdt."
|
||||
glen_description: "Programmeur en gepassioneerde game developer, met de motivatie om de wereld te verbeteren, door het ontwikkelen van de dingen die belangrijk zijn. Het woord onmogelijk staat niet in zijn woordenboek. Nieuwe vaardigheden leren is een plezier voor him!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legaal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
introduction_desc_github_url: "CodeCombat is volledig open source"
|
||||
introduction_desc_suf: ", en we streven ernaar om op zoveel mogelijk manieren het mogelijk te maken voor u om deel te nemen en dit project van zowel jou als ons te maken."
|
||||
introduction_desc_ending: "We hopen dat je met ons meedoet!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy en Matt"
|
||||
alert_account_message_intro: "Hallo!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Geïnteresserd in het werken aan game graphics, user interface design, database- en serverorganisatie, multiplayer networking, physics, geluid of game engine prestaties? Wil jij helpen een game te bouwen wat anderen leert waar jij goed in bent? We moeten nog veel doen en als jij een ervaren programmeur bent en wil ontwikkelen voor CodeCombat, dan is dit de klasse voor jou. We zouden graag je hulp hebben bij het maken van de beste programmeergame ooit."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Nederlands", englishDescription: "Dutch", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Norwegian Nynorsk", englishDescription: "No
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
blog: "Blogg"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrator"
|
||||
home: "Hjem"
|
||||
contribute: "Bidra"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
new_password: "Nytt Passord"
|
||||
new_password_verify: "Verifiser"
|
||||
email_subscriptions: "Epostabonnement"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Kunngjøringer"
|
||||
email_announcements_description: "Få epost om siste nytt og utvikling fra CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Bidragsyterklasse Epost"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
general:
|
||||
# and: "and"
|
||||
name: "Navn"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Norsk", englishDescription: "Norwegian", tr
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Główna"
|
||||
contribute: "Współpraca"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
new_password: "Nowe hasło"
|
||||
new_password_verify: "Zweryfikuj"
|
||||
email_subscriptions: "Powiadomienia email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Ogłoszenia"
|
||||
email_announcements_description: "Otrzymuj powiadomienia o najnowszych wiadomościach i zmianach w CodeCombat."
|
||||
email_notifications: "Powiadomienia"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Powiadomienia asystentów"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Edytory CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
level_search_title: "Przeszukaj poziomy"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Podgląd"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
general:
|
||||
and: "i"
|
||||
name: "Imię"
|
||||
# date: "Date"
|
||||
body: "Zawartość"
|
||||
version: "Wersja"
|
||||
commit_msg: "Wiadomość do commitu"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
nick_description: "Programistyczny czarownik, ekscentryczny magik i eksperymentator pełną gębą. Nick może robić cokolwiek, a decyduje się pracować przy CodeCombat."
|
||||
jeremy_description: "Magik od kontaktów z klientami, tester użyteczności i organizator społeczności; prawdopodobnie już rozmawiałeś z Jeremym."
|
||||
michael_description: "Programista, sys-admin, cudowne dziecko studiów technicznych, Michael to osoba utrzymująca nasze serwery online."
|
||||
glen_description: "Programmer and passionate game developer, with the motivation to make this world a better place, by developing things that mather. The word impossible can't be found in his dictionary. Learning new skills is his joy!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Nota prawna"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
introduction_desc_github_url: "CodeCombat jest całkowicie open source"
|
||||
introduction_desc_suf: " i zamierzamy zapewnić tak wiele sposobów na współpracę w projekcie jak to tylko możliwe, by był on tak samo nasz, jak i wasz."
|
||||
introduction_desc_ending: "Liczymy, że dołączysz się do nas!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy i Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy i Matt"
|
||||
alert_account_message_intro: "Hej tam!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Zainteresowany pracą przy grafice, interfejsie użytkownika, organizacji bazy danych oraz serwera, łączności multiplayer, fizyce, dźwięku lub wydajności silnika gry? Chciałbyś dołączyć się do budowania gry, która pomoże innym nauczyć się umiejętności, które sam posiadasz? Mamy wiele do zrobienia i jeśli jesteś doświadczonym programistą chcącym pomóc w rozwoju CodeCombat, ta klasa jest dla ciebie. Twoja pomoc przy budowaniu najlepszej gry programistycznej w historii będzie nieoceniona."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "język polski", englishDescription: "Polish
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
account: "Conta"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrador"
|
||||
home: "Início"
|
||||
contribute: "Contribuir"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
new_password: "Nova Senha"
|
||||
new_password_verify: "Confirmação"
|
||||
email_subscriptions: "Assinaturas para Notícias por Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Notícias"
|
||||
email_announcements_description: "Receba emails com as últimas notícias e desenvolvimentos do CodeCombat."
|
||||
email_notifications: "Notificações"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Oportunidades de emprego"
|
||||
email_recruit_notes_description: "Se você jogar muito bem, nós podemos lhe contactar para lhe oferecer um emprego (melhor)"
|
||||
contributor_emails: "Emails para as Classes de Contribuidores"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editores do CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
level_search_title: "Procurar Níveis Aqui"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Prever"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
general:
|
||||
and: "e"
|
||||
name: "Nome"
|
||||
# date: "Date"
|
||||
body: "Principal"
|
||||
version: "Versão"
|
||||
commit_msg: "Mensagem do Commit"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
nick_description: "Mago da programação, feiticeiro da motivação excêntrica e experimentador doido. Nick pode fazer qualquer coisa e escolheu desenvolver o CodeCombat."
|
||||
jeremy_description: "Mago em suporte ao consumidor, testador de usabilidade, e organizador da comunidade; você provavelmente já falou com o Jeremy."
|
||||
michael_description: "Programador, administrador de sistemas, e um técnico prodígio não graduado, Michael é a pessoa que mantém os servidores funcionando."
|
||||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Jurídico"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
introduction_desc_github_url: "CodeCombat é totalmente código aberto"
|
||||
introduction_desc_suf: ", e nosso objetivo é oferecer quantas maneiras forem possíveis para você participar e fazer deste projeto tanto seu como nosso."
|
||||
introduction_desc_ending: "Nós esperamos que você se junte a nossa festa!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
alert_account_message_intro: "Ei!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Interessado em trabalhar em gráficos do jogo, design de interface de usuário, banco de dados e organização de servidores, networking multiplayer, física, som ou desempenho do motor de jogo? Quer ajudar a construir um jogo para ajudar outras pessoas a aprender o que você é bom? Temos muito a fazer e se você é um programador experiente e quer desenvolver para o CodeCombat, esta classe é para você. Gostaríamos muito de sua ajuda a construir o melhor jogo de programação da história."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "português do Brasil", englishDescription:
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
account: "Conta"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrador"
|
||||
home: "Início"
|
||||
contribute: "Contribuir"
|
||||
|
@ -100,12 +103,12 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
for_beginners: "Para Iniciantes"
|
||||
multiplayer: "Multijogador"
|
||||
for_developers: "Para Programadores"
|
||||
javascript_blurb: "A linguagem da web. Ótima para escrever websites, aplicações da web, jogos HTML5 e servidores."
|
||||
python_blurb: "Simples mas poderoso, o Python é uma linguagem de programação ótima para propósitos gerais."
|
||||
coffeescript_blurb: "Sintaxe do Javascript mais agradável."
|
||||
clojure_blurb: "Um Lisp moderno"
|
||||
lua_blurb: "Linguagem para scripts de jogos"
|
||||
io_blurb: "Simples mas obscuro"
|
||||
# javascript_blurb: "A linguagem da web. Ótima para escrever websites, aplicações da web, jogos HTML5 e servidores."
|
||||
# python_blurb: "Simples mas poderoso, o Python é uma linguagem de programação ótima para propósitos gerais."
|
||||
# coffeescript_blurb: "Sintaxe do Javascript mais agradável."
|
||||
# clojure_blurb: "Um Lisp moderno"
|
||||
# lua_blurb: "Linguagem para scripts de jogos"
|
||||
# io_blurb: "Simples mas obscuro"
|
||||
|
||||
play:
|
||||
choose_your_level: "Escolha o Seu Nível"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
new_password: "Nova Palavra-passe"
|
||||
new_password_verify: "Verificar"
|
||||
email_subscriptions: "Subscrições de E-mail"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Anúncios"
|
||||
email_announcements_description: "Receba e-mails sobre as últimas novidades e desenvolvimentos no CodeCombat."
|
||||
email_notifications: "Notificações"
|
||||
email_notifications_summary: "Controle, de uma forma personalizada e automática, os e-mails de notificações relacionados com a sua atividade no CodeCombat."
|
||||
email_any_notes: "Quaisquer Notificações"
|
||||
email_any_notes_description: "Desative para parar de receber todos os e-mails de notificação de atividade."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Oportunidades de Emprego"
|
||||
email_recruit_notes_description: "Se joga muito bem, podemos contactá-lo para lhe arranjar um (melhor) emprego."
|
||||
contributor_emails: "Subscrições de E-mail (Contribuintes)"
|
||||
|
@ -213,10 +218,10 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
next: "Seguinte"
|
||||
next_city: "cidade?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
next_name: "nome?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
|
@ -226,39 +231,39 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# next_links: "add any personal or social links."
|
||||
# next_photo: "add an optional professional photo."
|
||||
# next_active: "mark yourself open to offers to show up in searches."
|
||||
# example_blog: "Blog"
|
||||
# example_personal_site: "Personal Site"
|
||||
# links_header: "Personal Links"
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Sítio Pessoal"
|
||||
links_header: "Ligações Pessoais"
|
||||
# links_blurb: "Link any other sites or profiles you want to highlight, like your GitHub, your LinkedIn, or your blog."
|
||||
# links_name: "Link Name"
|
||||
# links_name_help: "What are you linking to?"
|
||||
# links_link_blurb: "Link URL"
|
||||
links_name: "Nome da Ligação"
|
||||
links_name_help: "A que é que está a ligar?"
|
||||
links_link_blurb: "URL da Ligação"
|
||||
# basics_header: "Update basic info"
|
||||
# basics_active: "Open to Offers"
|
||||
# basics_active_help: "Want interview offers right now?"
|
||||
# basics_job_title: "Desired Job Title"
|
||||
# basics_job_title_help: "What role are you looking for?"
|
||||
# basics_city: "City"
|
||||
basics_city: "Cidade"
|
||||
# basics_city_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
basics_country: "País"
|
||||
# basics_country_help: "Country you want to work in (or live in now)."
|
||||
# basics_visa: "US Work Status"
|
||||
# basics_visa_help: "Are you authorized to work in the US, or do you need visa sponsorship? (If you live in Canada or Australia, mark authorized.)"
|
||||
# basics_looking_for: "Looking For"
|
||||
# basics_looking_for_full_time: "Full-time"
|
||||
# basics_looking_for_part_time: "Part-time"
|
||||
# basics_looking_for_remote: "Remote"
|
||||
basics_looking_for: "À Procura De"
|
||||
basics_looking_for_full_time: "Tempo Inteiro"
|
||||
basics_looking_for_part_time: "Part-time"
|
||||
basics_looking_for_remote: "Remoto"
|
||||
# basics_looking_for_contracting: "Contracting"
|
||||
# basics_looking_for_internship: "Internship"
|
||||
# basics_looking_for_help: "What kind of developer position do you want?"
|
||||
# name_header: "Fill in your name"
|
||||
# name_anonymous: "Anonymous Developer"
|
||||
name_anonymous: "Desenvolvedor Anónimo"
|
||||
# name_help: "Name you want employers to see, like 'Nick Winter'."
|
||||
# short_description_header: "Write a short description of yourself"
|
||||
# short_description_blurb: "Add a tagline to help an employer quickly learn more about you."
|
||||
# short_description: "Tagline"
|
||||
# short_description_help: "Who are you, and what are you looking for? 140 characters max."
|
||||
# skills_header: "Skills"
|
||||
skills_header: "Habilidades"
|
||||
# skills_help: "Tag relevant developer skills in order of proficiency."
|
||||
# long_description_header: "Describe your desired position"
|
||||
# long_description_blurb: "Tell employers how awesome you are and what role you want."
|
||||
|
@ -266,22 +271,22 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# long_description_help: "Describe yourself to potential employers. Keep it short and to the point. We recommend outlining the position that would most interest you. Tasteful markdown okay; 600 characters max."
|
||||
# work_experience: "Work Experience"
|
||||
# work_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
work_years: "Anos de Experiência"
|
||||
# work_years_help: "How many years of professional experience (getting paid) developing software do you have?"
|
||||
# work_blurb: "List your relevant work experience, most recent first."
|
||||
# work_employer: "Employer"
|
||||
# work_employer_help: "Name of your employer."
|
||||
# work_role: "Job Title"
|
||||
work_employer: "Empregador"
|
||||
work_employer_help: "Nome do seu empregador."
|
||||
work_role: "Título do Emprego"
|
||||
# work_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
work_duration: "Duração"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
work_description: "Descrição"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
education: "Educação"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
education_school: "Escola"
|
||||
education_school_help: "Nome da sua escola."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
|
@ -312,18 +317,18 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado Para Trabalhar Nos EUA"
|
||||
filter_visa_no: "Não Autorizado"
|
||||
# filter_education_top: "Top School"
|
||||
# filter_education_other: "Other"
|
||||
# filter_role_web_developer: "Web Developer"
|
||||
# filter_role_software_developer: "Software Developer"
|
||||
# filter_role_mobile_developer: "Mobile Developer"
|
||||
# filter_experience: "Experience"
|
||||
# filter_experience_senior: "Senior"
|
||||
# filter_experience_junior: "Junior"
|
||||
filter_education_top: "Universidade"
|
||||
filter_education_other: "Outro"
|
||||
filter_role_web_developer: "Desenvolvedor da Web"
|
||||
filter_role_software_developer: "Desenvolvedor de Software"
|
||||
filter_role_mobile_developer: "Desenvolvedor Mobile"
|
||||
filter_experience: "Experiência"
|
||||
filter_experience_senior: "Sénior"
|
||||
filter_experience_junior: "Júnior"
|
||||
# filter_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
filter_experience_student: "Estudante Universitário"
|
||||
filter_results: "resultados"
|
||||
start_hiring: "Começar a contratar."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
|
@ -353,7 +358,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
grid: "Grelha"
|
||||
customize_wizard: "Personalizar Feiticeiro"
|
||||
home: "Início"
|
||||
# game_menu: "Game Menu"
|
||||
game_menu: "Menu do Jogo"
|
||||
guide: "Guia"
|
||||
restart: "Reiniciar"
|
||||
goals: "Objetivos"
|
||||
|
@ -408,11 +413,11 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
tip_morale_improves: "O carregamento irá continuar até que a moral melhore."
|
||||
tip_all_species: "Acreditamos em oportunidades iguais para todas as espécies, em relação a aprenderem a programar."
|
||||
tip_reticulating: "A reticular espinhas."
|
||||
tip_harry: "Você é um Feitiçeiro, "
|
||||
# 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_harry: "Você é um Feiticeiro, "
|
||||
tip_great_responsibility: "Com uma grande habilidade de programação vem uma grande responsabilidade de depuração."
|
||||
tip_munchkin: "Se não comer os seus vegetais, virá um ogre atrás de si enquanto estiver a dormir."
|
||||
tip_binary: "Há apenas 10 tipos de pessoas no mundo: aquelas que percebem binário e aquelas que não."
|
||||
# tip_commitment_yoda: "A programmer must have the deepest commitment, the most serious mind. ~ Yoda"
|
||||
tip_commitment_yoda: "Um programador deve ter o compromisso mais profundo, a mente mais séria. ~ Yoda"
|
||||
tip_no_try: "Fazer. Ou não fazer. Não há nenhum tentar. - Yoda"
|
||||
tip_patience: "Paciência tu deves ter, jovem Padawan. - Yoda"
|
||||
tip_documented_bug: "Um erro documentado não é um erro; é uma funcionalidade."
|
||||
|
@ -428,18 +433,18 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# infinite_loop_comment_out: "Comment Out My Code"
|
||||
|
||||
game_menu:
|
||||
# inventory_tab: "Inventory"
|
||||
# choose_hero_tab: "Restart Level"
|
||||
# save_load_tab: "Save/Load"
|
||||
# options_tab: "Options"
|
||||
# guide_tab: "Guide"
|
||||
inventory_tab: "Inventário"
|
||||
choose_hero_tab: "Reiniciar Nível"
|
||||
save_load_tab: "Guarde/Carregue"
|
||||
options_tab: "Opções"
|
||||
guide_tab: "Guia"
|
||||
multiplayer_tab: "Multijogador"
|
||||
# inventory_caption: "Equip your hero"
|
||||
# choose_hero_caption: "Choose hero, language"
|
||||
# save_load_caption: "... and view history"
|
||||
# options_caption: "Configure settings"
|
||||
# guide_caption: "Docs and tips"
|
||||
# multiplayer_caption: "Play with friends!"
|
||||
inventory_caption: "Equipe o seu herói"
|
||||
choose_hero_caption: "Escolha o herói, a linguagem"
|
||||
save_load_caption: "... e veja o histórico"
|
||||
options_caption: "Configure as definições"
|
||||
guide_caption: "Documentos e dicas"
|
||||
multiplayer_caption: "Jogue com amigos!"
|
||||
|
||||
# inventory:
|
||||
# temp: "Temp"
|
||||
|
@ -447,41 +452,41 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# choose_hero:
|
||||
# temp: "Temp"
|
||||
|
||||
# save_load:
|
||||
# granularity_saved_games: "Saved"
|
||||
# granularity_change_history: "History"
|
||||
save_load:
|
||||
granularity_saved_games: "Guardados"
|
||||
granularity_change_history: "Histórico"
|
||||
|
||||
options:
|
||||
# general_options: "General Options"
|
||||
# music_label: "Music"
|
||||
# music_description: "Turn background music on/off."
|
||||
# autorun_label: "Autorun"
|
||||
# autorun_description: "Control automatic code execution."
|
||||
general_options: "Opções Gerais"
|
||||
music_label: "Música"
|
||||
music_description: "Ative ou desative a música de fundo."
|
||||
autorun_label: "Executar Automaticamente"
|
||||
autorun_description: "Controlar a execução automática do código."
|
||||
editor_config: "Configurar Editor"
|
||||
editor_config_title: "Configurar Editor"
|
||||
editor_config_level_language_label: "Linguagem para Este Nível"
|
||||
editor_config_level_language_description: "Define a linguagem de programação para este nível em particular."
|
||||
editor_config_level_language_description: "Definir a linguagem de programação para este nível em particular."
|
||||
editor_config_default_language_label: "Linguagem de Programação Predefinida"
|
||||
editor_config_default_language_description: "Define a linguagem de programação na qual deseja programar aquando do começo de novos níveis."
|
||||
editor_config_default_language_description: "Definir a linguagem de programação na qual deseja programar aquando do começo de novos níveis."
|
||||
editor_config_keybindings_label: "Atalhos do Teclado"
|
||||
editor_config_keybindings_default: "Predefinição (Ace)"
|
||||
editor_config_keybindings_description: "Adiciona atalhos de teclado adicionais conhecidos dos editores comuns."
|
||||
editor_config_keybindings_description: "Adicionar atalhos de teclado adicionais conhecidos dos editores comuns."
|
||||
editor_config_livecompletion_label: "Auto-completação em Tempo Real"
|
||||
editor_config_livecompletion_description: "Mostra sugestões de auto-completação aquando da escrita."
|
||||
editor_config_livecompletion_description: "Mostrar sugestões de auto-completação aquando da escrita."
|
||||
editor_config_invisibles_label: "Mostrar Invisíveis"
|
||||
editor_config_invisibles_description: "Mostra invisíveis tais como espaços e tabulações."
|
||||
editor_config_invisibles_description: "Mostrar invisíveis tais como espaços e tabulações."
|
||||
editor_config_indentguides_label: "Mostrar Guias de Indentação"
|
||||
editor_config_indentguides_description: "Mostra linhas verticais para se ver melhor a indentação."
|
||||
editor_config_indentguides_description: "Mostrar linhas verticais para se ver melhor a indentação."
|
||||
editor_config_behaviors_label: "Comportamentos Inteligentes"
|
||||
editor_config_behaviors_description: "Auto-completa parênteses, chavetas e aspas."
|
||||
editor_config_behaviors_description: "Auto-completar parênteses, chavetas e aspas."
|
||||
|
||||
# guide:
|
||||
# temp: "Temp"
|
||||
|
||||
multiplayer:
|
||||
multiplayer_title: "Definições Multijogador"
|
||||
# multiplayer_toggle: "Enable multiplayer"
|
||||
# multiplayer_toggle_description: "Allow others to join your game."
|
||||
multiplayer_toggle: "Ativar multijogador"
|
||||
multiplayer_toggle_description: "Permita que outros se juntem ao seu jogo."
|
||||
multiplayer_link_description: "Dê esta ligação a alguém para se juntar a si."
|
||||
multiplayer_hint_label: "Dica:"
|
||||
multiplayer_hint: " Clique na ligação para selecionar tudo. Depois carregue em ⌘-C ou Ctrl-C para copiá-la."
|
||||
|
@ -504,7 +509,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# toggle_grid: "Toggle grid overlay."
|
||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||
# beautify: "Beautify your code by standardizing its formatting."
|
||||
move_wizard: "Mover o seu Feitiçeiro pelo nível."
|
||||
move_wizard: "Mover o seu Feiticeiro pelo nível."
|
||||
|
||||
admin:
|
||||
av_title: "Vistas de Administrador"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
clas: "CLA's"
|
||||
|
||||
community:
|
||||
level_editor: "Editor de Níveis"
|
||||
main_title: "Comunidade do CodeCombat"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editores do CodeCombat"
|
||||
|
@ -547,7 +557,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
grassy: "Com Relva"
|
||||
fork_title: "Bifurcar Nova Versão"
|
||||
fork_creating: "A Criar Bifurcação..."
|
||||
# randomize: "Randomize"
|
||||
randomize: "Randomizar"
|
||||
more: "Mais"
|
||||
wiki: "Wiki"
|
||||
live_chat: "Chat Ao Vivo"
|
||||
|
@ -561,8 +571,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
level_tab_thangs_all: "Todos"
|
||||
level_tab_thangs_conditions: "Condições Iniciais"
|
||||
level_tab_thangs_add: "Adicionar Thangs"
|
||||
# delete: "Delete"
|
||||
# duplicate: "Duplicate"
|
||||
delete: "Eliminar"
|
||||
duplicate: "Duplicar"
|
||||
level_settings_title: "Configurações"
|
||||
level_component_tab_title: "Componentes Atuais"
|
||||
level_component_btn_new: "Criar Novo Componente"
|
||||
|
@ -572,7 +582,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
level_components_title: "Voltar para Todos os Thangs"
|
||||
level_components_type: "Tipo"
|
||||
level_component_edit_title: "Editar Componente"
|
||||
# level_component_config_schema: "Config Schema"
|
||||
level_component_config_schema: "Configurar Esquema"
|
||||
level_component_settings: "Configurações"
|
||||
level_system_edit_title: "Editar Sistema"
|
||||
create_system_title: "Criar Novo Sistema"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
level_search_title: "Procurar Níveis Aqui"
|
||||
achievement_search_title: "Procurar Conquistas"
|
||||
read_only_warning2: "Nota: não pode guardar nenhuma edição feita aqui, porque não tem sessão iniciada."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Pré-visualizar"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
general:
|
||||
and: "e"
|
||||
name: "Nome"
|
||||
# date: "Date"
|
||||
body: "Corpo"
|
||||
version: "Versão"
|
||||
commit_msg: "Enviar Mensagem"
|
||||
|
@ -626,28 +641,28 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
hard: "Difícil"
|
||||
player: "Jogador"
|
||||
|
||||
# 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!"
|
||||
about:
|
||||
who_is_codecombat: "Quem é o CodeCombat?"
|
||||
why_codecombat: "Porquê o CodeCombat?"
|
||||
who_description_prefix: "começaram juntos o CodeCombat em 2013. Também criaram o "
|
||||
who_description_suffix: "em 2008, tornando-o a aplicação nº1 da web e iOS para aprender a escrever caracteteres Chineses e Japoneses."
|
||||
who_description_ending: "Agora, está na altura de ensinar as pessoas a escrever código."
|
||||
why_paragraph_1: "Aquando da conceção do Skritter, o George não sabia programar e estava constantemente frustrado devido à sua inabilidade para implementar as ideias dele. Mais tarde, tentou aprender, mas as aulas eram muito lentas. O seu colega de quarto, numa tentativa de melhorar as suas habilidades e parar de ensinar, tentou o Codecademy, mas \"aborreceu-se.\" A cada semana, um outro amigo começava no Codecademy, mas desistia sempre. Apercebemo-nos de que era o mesmo problema que resolveríamos com o Skritter: pessoas a aprender uma habilidade através de aulas lentas e intensivas, quando o que precisam é de praticar rápida e extensivamente. Nós sabemos como resolver isso."
|
||||
why_paragraph_2: "Precisa de aprender a programar? Não precisa de aulas. Precisa sim de escrever muito código e passar um bom bocado enquanto o faz."
|
||||
why_paragraph_3_prefix: "Afinal, é sobre isso que é a programação. Tem de ser divertida. Não divertida do género"
|
||||
why_paragraph_3_italic: "yay uma medalha"
|
||||
why_paragraph_3_center: "mas sim divertida do género"
|
||||
why_paragraph_3_italic_caps: "NÃO MÃE, TENHO DE ACABAR O NÍVEL!"
|
||||
why_paragraph_3_suffix: "É por isso que o CodeCombat é um jogo multijogador, e não um jogo que não passa de um curso com lições. Nós não vamos parar enquanto não puderes parar--mas desta vez, isso é uma coisa boa."
|
||||
why_paragraph_4: "Se vais ficar viciado em algum jogo, vicia-te neste e torna-te num dos feiticeiros da idade da tecnologia."
|
||||
why_ending: "E vejam só, é gratuito. "
|
||||
why_ending_url: "Comece a enfeitiçar agora!"
|
||||
george_description: "CEO, homem de negócios, designer da web, designer de jogos e campeão dos programadores iniciantes de todo o lado."
|
||||
scott_description: "Programador extraordinário, arquiteto de software, feiticeiro da cozinha e mestre das finanças. O Scott é sensato."
|
||||
nick_description: "Feiticeiro da programção, mago da motivação excêntrico e experimentador de pernas para o ar. O Nick pode fazer qualquer coisa e escolhe construir o CodeCombat."
|
||||
jeremy_description: "Mago do suporte ao cliente, testador do uso e organizador da comunidade; provavelmente já falou com o Jeremy."
|
||||
michael_description: "Programador, administrador do sistema e técnico de graduação prodígio, o Michael é a pessoa que mantém os nossos servidores online."
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Legal"
|
||||
|
@ -712,13 +727,13 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
|
||||
contribute:
|
||||
page_title: "Contribuir"
|
||||
# character_classes_title: "Character Classes"
|
||||
# introduction_desc_intro: "We have high hopes for CodeCombat."
|
||||
character_classes_title: "Classes de Personagens"
|
||||
introduction_desc_intro: "Temos esperanças elevadas para o 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_github_url: "o CodeCombat é totalmente 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"
|
||||
introduction_desc_ending: "Esperemos que se junte a nós!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy e Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -787,7 +802,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# 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: "Aprenda Mais Sobre Tornar-se um Embaixador"
|
||||
# ambassador_subscribe_desc: "Get emails on support updates and multiplayer developments."
|
||||
# changes_auto_save: "Changes are saved automatically when you toggle checkboxes."
|
||||
changes_auto_save: "As alterações são guardadas automaticamente quando clica nas caixas."
|
||||
diligent_scribes: "Os Nossos Dedicados Escrivões:"
|
||||
powerful_archmages: "Os Nossos Poderosos Arcomagos:"
|
||||
creative_artisans: "Os Nossos Creativos Artesãos:"
|
||||
|
@ -834,12 +849,12 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
rank_failed: "Falhou a Classificar"
|
||||
rank_being_ranked: "Jogo a ser Classificado"
|
||||
# rank_last_submitted: "submitted "
|
||||
# help_simulate: "Help simulate games?"
|
||||
code_being_simulated: "O teu código está a ser simulado por outros jogadores, para ser classificado. Isto será actualizado quando surgirem novas partidas."
|
||||
help_simulate: "Ajudar a simular jogos?"
|
||||
code_being_simulated: "O seu novo código está a ser simulado por outros jogadores, para ser classificado. Isto será atualizado quando surgirem novas partidas."
|
||||
no_ranked_matches_pre: "Sem jogos classificados pela equipa "
|
||||
no_ranked_matches_post: "! Joga contra alguns adversários e volta aqui para veres o teu jogo classificado."
|
||||
choose_opponent: "Escolhe um Adversário"
|
||||
# select_your_language: "Select your language!"
|
||||
choose_opponent: "Escolha um Adversário"
|
||||
select_your_language: "Selecione a sua linguagem!"
|
||||
tutorial_play: "Jogar Tutorial"
|
||||
tutorial_recommended: "Recomendado se nunca jogou antes"
|
||||
tutorial_skip: "Saltar Tutorial"
|
||||
|
@ -848,40 +863,40 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
simple_ai: "Inteligência Artificial Simples"
|
||||
warmup: "Aquecimento"
|
||||
vs: "VS"
|
||||
# friends_playing: "Friends Playing"
|
||||
# log_in_for_friends: "Log in to play with your friends!"
|
||||
# social_connect_blurb: "Connect and play against your friends!"
|
||||
# invite_friends_to_battle: "Invite your friends to join you in battle!"
|
||||
# fight: "Fight!"
|
||||
# watch_victory: "Watch your victory"
|
||||
# defeat_the: "Defeat the"
|
||||
# tournament_ends: "Tournament ends"
|
||||
# tournament_ended: "Tournament ended"
|
||||
# tournament_rules: "Tournament Rules"
|
||||
# tournament_blurb: "Write code, collect gold, build armies, crush foes, win prizes, and upgrade your career in our $40,000 Greed tournament! Check out the details"
|
||||
# tournament_blurb_blog: "on our blog"
|
||||
friends_playing: "Amigos a Jogar"
|
||||
log_in_for_friends: "Inicie sessão para jogar com os seus amigos!"
|
||||
social_connect_blurb: "Conecte-se e jogue contra os seus amigos!"
|
||||
invite_friends_to_battle: "Convide os seus amigos para se juntarem a si em batalha!"
|
||||
fight: "Lutar!"
|
||||
watch_victory: "Veja a sua vitória"
|
||||
defeat_the: "Derrote o"
|
||||
tournament_ends: "O Torneio acaba"
|
||||
tournament_ended: "O Torneio acabou"
|
||||
tournament_rules: "Regras do Torneio"
|
||||
tournament_blurb: "Escreva código, recolha ouro, construa exércitos, esmague inimigos, ganhe prémios e melhore a sua carreira no nosso torneio $40,000 Greed! Confira os detalhes"
|
||||
tournament_blurb_blog: "no nosso blog"
|
||||
rules: "Regras"
|
||||
winners: "Vencedores"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes"
|
||||
# blurb_1: "These prizes will be awarded according to"
|
||||
# blurb_2: "the tournament rules"
|
||||
# blurb_3: "to the top human and ogre players."
|
||||
# blurb_4: "Two teams means double the prizes!"
|
||||
# blurb_5: "(There will be two first place winners, two second-place winners, etc.)"
|
||||
# rank: "Rank"
|
||||
# prizes: "Prizes"
|
||||
# total_value: "Total Value"
|
||||
# in_cash: "in cash"
|
||||
# custom_wizard: "Custom CodeCombat Wizard"
|
||||
# custom_avatar: "Custom CodeCombat avatar"
|
||||
# heap: "for six months of \"Startup\" access"
|
||||
# credits: "credits"
|
||||
# one_month_coupon: "coupon: choose either Rails or HTML"
|
||||
# one_month_discount: "discount, 30% off: choose either Rails or HTML"
|
||||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
ladder_prizes:
|
||||
title: "Prémios do Torneio"
|
||||
blurb_1: "Estes prémios serão entregues de acordo com"
|
||||
blurb_2: "as regras do torneio"
|
||||
blurb_3: "aos melhores jogadores humanos e ogres."
|
||||
blurb_4: "Duas equipas significam o dobro dos prémios!"
|
||||
blurb_5: "(Haverá dois vencedores em primeiro lugar, dois em segundo, etc.)"
|
||||
rank: "Classificação"
|
||||
prizes: "Prémios"
|
||||
total_value: "Valor Total"
|
||||
in_cash: "em dinheiro"
|
||||
custom_wizard: "Um Feiticeiro do CodeCombat Personalizado"
|
||||
custom_avatar: "Um Avatar do CodeCombat Personalizado"
|
||||
heap: "para seis meses de acesso \"Startup\""
|
||||
credits: "créditos"
|
||||
one_month_coupon: "cupão: escolha Rails ou HTML"
|
||||
one_month_discount: "desconto de 30%: escolha Rails ou HTML"
|
||||
license: "licença"
|
||||
oreilly: "ebook à sua escolha"
|
||||
|
||||
loading_error:
|
||||
could_not_load: "Erro ao carregar do servidor"
|
||||
|
@ -909,8 +924,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# user_schema: "User Schema"
|
||||
# user_profile: "User Profile"
|
||||
# patches: "Patches"
|
||||
# patched_model: "Source Document"
|
||||
# model: "Model"
|
||||
patched_model: "Documento Fonte"
|
||||
model: "Modelo"
|
||||
system: "Sistema"
|
||||
component: "Componente"
|
||||
components: "Componentes"
|
||||
|
@ -921,20 +936,55 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
article: "Artigo"
|
||||
# user_names: "User Names"
|
||||
# thang_names: "Thang Names"
|
||||
# files: "Files"
|
||||
files: "Ficheiros"
|
||||
# top_simulators: "Top Simulators"
|
||||
# source_document: "Source Document"
|
||||
source_document: "Documento Fonte"
|
||||
document: "Documento"
|
||||
# sprite_sheet: "Sprite Sheet"
|
||||
# candidate_sessions: "Candidate Sessions"
|
||||
# user_remark: "User Remark"
|
||||
versions: "Versões"
|
||||
|
||||
# delta:
|
||||
# added: "Added"
|
||||
# modified: "Modified"
|
||||
# deleted: "Deleted"
|
||||
# moved_index: "Moved Index"
|
||||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
delta:
|
||||
added: "Adicionados/as"
|
||||
modified: "Modificados/as"
|
||||
deleted: "Eliminados/as"
|
||||
moved_index: "Índice Movido"
|
||||
text_diff: "Diferença de Texto"
|
||||
merge_conflict_with: "FUNDIR CONFLITO COM"
|
||||
no_changes: "Sem Alterações"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Administrador"
|
||||
home: "Início"
|
||||
contribute: "Contribuir"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
new_password: "Nova Senha"
|
||||
new_password_verify: "Confirmação"
|
||||
email_subscriptions: "Assinaturas para Notícias por Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Notícias"
|
||||
email_announcements_description: "Receba emails com as últimas notícias e desenvolvimentos do CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Emails para as Classes de Contribuidores"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
general:
|
||||
# and: "and"
|
||||
name: "Nome"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "português", englishDescription: "Portugues
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Acasa"
|
||||
contribute: "Contribuie"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
new_password: "Parolă nouă"
|
||||
new_password_verify: "Verifică"
|
||||
email_subscriptions: "Subscripție Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Anunțuri"
|
||||
email_announcements_description: "Primește email-uri cu ultimele știri despre CodeCombat."
|
||||
email_notifications: "Notificări"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Editori CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
level_search_title: "Caută nivele aici"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
general:
|
||||
and: "și"
|
||||
name: "Nume"
|
||||
# date: "Date"
|
||||
body: "Corp"
|
||||
version: "Versiune"
|
||||
commit_msg: "Înregistrează Mesajul"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
nick_description: "Programming wizard, eccentric motivation mage, and upside-down experimenter. Nick poate să facă orice si a ales să dezvolte CodeCombat."
|
||||
jeremy_description: "Customer support mage, usability tester, and community organizer; probabil ca ați vorbit deja cu Jeremy."
|
||||
michael_description: "Programmer, sys-admin, and undergrad technical wunderkind, Michael este cel care ține serverele in picioare."
|
||||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Aspecte Legale"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
introduction_desc_github_url: "CodeCombat este complet open source"
|
||||
introduction_desc_suf: ", și ne propunem să vă punem la dispoziție pe cât de mult posibil modalități de a lua parte la acest proiect pentru a-l face la fel de mult as vostru cât și al nostru."
|
||||
introduction_desc_ending: "Sperăm să vă placă petrecerea noastră!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy și Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy și Matt"
|
||||
alert_account_message_intro: "Salutare!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Interesat să lucrezi la grafica jocului, interfața grafică cu utilizatorul, baze de date și organizare server, multiplayer networking, fizică, sunet, sau performanțe game engine? Vrei să ajuți la construirea unui joc pentru a învăța pe alții ceea ce te pricepi? Avem o grămadă de făcut dacă ești un programator experimentat și vrei sa dezvolți pentru CodeCombat, această clasă este pentru tine. Ne-ar plăcea să ne ajuți să construim cel mai bun joc de programare făcut vreodată."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
blog: "Блог"
|
||||
forum: "Форум"
|
||||
account: "Аккаунт"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Админ"
|
||||
home: "Домой"
|
||||
contribute: "Сотрудничество"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
new_password: "Новый пароль"
|
||||
new_password_verify: "Подтверждение пароля"
|
||||
email_subscriptions: "Email-подписки"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Оповещения"
|
||||
email_announcements_description: "Получать email-оповещения о последних новостях CodeCombat."
|
||||
email_notifications: "Уведомления"
|
||||
email_notifications_summary: "Настройки автоматических email-уведомлений, основанных на вашей активности на CodeCombat."
|
||||
email_any_notes: "Все уведомления"
|
||||
email_any_notes_description: "Отключите, чтобы больше не получать извещения."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "Возможности для работы"
|
||||
email_recruit_notes_description: "Если вы действительно хорошо играете, то мы можем связаться с вами для предложения (лучшей) работы."
|
||||
contributor_emails: "Рассылки по классам участников"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
clas: "ЛСС"
|
||||
|
||||
community:
|
||||
level_editor: "редактор уровней"
|
||||
main_title: "Сообщество CodeCombat"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Редакторы CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
level_search_title: "Искать уровни"
|
||||
achievement_search_title: "Искать достижения"
|
||||
read_only_warning2: "Примечание: вы не можете сохранять любые правки здесь, потому что вы не авторизованы."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Предпросмотр"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
general:
|
||||
and: "и"
|
||||
name: "Имя"
|
||||
# date: "Date"
|
||||
body: "Содержание"
|
||||
version: "Версия"
|
||||
commit_msg: "Сопроводительное сообщение"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
nick_description: "Маг программирования, мудрец эксцентричного мотивирования и чудаковатый экспериментатор. Ник может всё и хочет построить CodeCombat."
|
||||
jeremy_description: "Маг клиентской поддержки, юзабилити-тестер, и организатор сообщества; вы наверняка уже говорили с Джереми."
|
||||
michael_description: "Программист, сисадмин и непризнанный технический гений, Михаэль является лицом, поддерживающим наши серверы в доступности."
|
||||
glen_description: "Программист и страстный разработчик игр, с мотивацией сделать этот мир лучше путём разработки действительно значащих вещей. Слова \"невозможно\" нет в его словаре. Освоение новых навыков его развлечение!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Юридическая информация"
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
text_diff: "Разница"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
no_changes: "Нет изменений"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Spravuj"
|
||||
home: "Domov"
|
||||
contribute: "Prispej"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
new_password: "Nové heslo"
|
||||
new_password_verify: "Overenie"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
general:
|
||||
# and: "and"
|
||||
name: "Meno"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
blog: "Блог"
|
||||
forum: "Форум"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Админ"
|
||||
home: "Почетна"
|
||||
contribute: "Допринеси"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
new_password: "Нова Шифра"
|
||||
new_password_verify: "Потврди"
|
||||
email_subscriptions: "Мејл претплате"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Обавештења"
|
||||
email_announcements_description: "Прими мејл за најновије вести и достигнућа на CodeCombat-у"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Мејлови реда сарадника"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
general:
|
||||
# and: "and"
|
||||
name: "Име"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
blog: "Blogg"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Admin"
|
||||
home: "Hem"
|
||||
contribute: "Bidra"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
new_password: "Nytt lösenord"
|
||||
new_password_verify: "Verifiera"
|
||||
email_subscriptions: "E-postsprenumerationer"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Meddelanden"
|
||||
email_announcements_description: "Få e-post med de senaste nyheterna och utvecklingen på CodeCombat."
|
||||
email_notifications: "Påminnelser"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "E-post för bidragare"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombatredigerare"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
level_search_title: "Sök nivåer här"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Förhandsgranska"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
general:
|
||||
and: "och"
|
||||
name: "Namn"
|
||||
# date: "Date"
|
||||
body: "Kropp"
|
||||
version: "Version"
|
||||
commit_msg: "Förbindelsemeddelande"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
nick_description: "Programmeringstrollkarl, excentrisk motivationsmagiker och upp-och-ner-experimenterare. Nick kan göra vad som helst och väljer att bygga CodeCombat."
|
||||
jeremy_description: "Kundsupportsmagiker, användbarhetstestare och gemenskapsorganisatör; du har förmodligen redan pratat med Jeremy."
|
||||
michael_description: "Programmerare, sys-admin, och studerande tekniskt underbarn, Michael är personen som håller våra servrar online."
|
||||
glen_description: "Programmerare och passionerad spelutvecklare, med motivationen att göra denna värld till ett bättre ställe genom att utveckla saker som spelar roll. Ordet omöjligt finns inte i hans ordbok. Att lära sig nya färdigheter är hans lycka."
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Juridik"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
introduction_desc_github_url: "CodeCombat is totally open source"
|
||||
introduction_desc_suf: ", och vi siktar på att tillhandahålla så många sätt som möjligt för dig att delta och göra det här projektet till lika mycket ditt som vårt."
|
||||
introduction_desc_ending: "Vi hoppas att du vill vara med!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy och Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy och Matt"
|
||||
alert_account_message_intro: "Hej där!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "Intresserad av att jobba med spelgrafik, användargränssnittsdesign, databas- och serveroptimering, flerspelarnätverkadnde, fysik, ljud eller spelmotorprestation? Vill du hjälpa till att bygga ett spel för att hjälpa andra människor lära sig det du är bra på? Vi har mycket att göra och om du är en erfaren programmerare och vill utveckla för CodeCombat är denna klassen för dig. Vi skulle älska din hjälp med att bygga det bästa programmeringsspelet någonsin."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
blog: "บล็อก"
|
||||
forum: "กระดานสนทนา"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "ผู้ดูแลระบบ"
|
||||
home: "Home"
|
||||
contribute: "สนับสนุน"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
new_password: "รหัสผ่านใหม่"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "ประกาศ"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Yönetici"
|
||||
home: "Anasayfa"
|
||||
contribute: "Katkıda bulun"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
new_password: "Yeni Şifre"
|
||||
new_password_verify: "Teyit Et"
|
||||
email_subscriptions: "E-posta Abonelikleri"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Duyurular"
|
||||
email_announcements_description: "CodeCombat ile ilgili son haberlere ve gelişmelere ulaşın."
|
||||
email_notifications: "Bilgilendirme"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "İştirakçi Sınıfı E-postaları"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Düzenleyici"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
level_search_title: "Seviye ara"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Önizleme"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
general:
|
||||
and: "ve"
|
||||
name: "İsim"
|
||||
# date: "Date"
|
||||
body: "Gövde"
|
||||
version: "Sürüm"
|
||||
commit_msg: "Gönderme İletisi"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
nick_description: "Programlama sihirbazı, tuhaf motivasyon büyücü ve tersine mühendis. Nick her şeyden anlar ve şu anda CodeCombat'i inşa etmekle meşgul."
|
||||
jeremy_description: "Müşteri hizmetleri büyücüsü, kullanılabilirlik test edicisi ve topluluk örgütleyici; muhtemelen Jeremy ile konuşmuşluğunuz vardır."
|
||||
michael_description: "Programcı, sistem yöneticisi, halihazırda üniversite okuyan teknik-harika-çocuk. Michael sunucularımızı ayakta tutan adamın ta kendisi."
|
||||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Hukuki"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
introduction_desc_github_url: "CodeCombat tümüyle açık kaynaklıdır"
|
||||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
alert_account_message_intro: "Merhaba!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module.exports = nativeDescription: "українська мова", englishDescription: "Ukranian", translation:
|
||||
module.exports = nativeDescription: "українська мова", englishDescription: "Ukrainian", translation:
|
||||
common:
|
||||
loading: "Завантаження..."
|
||||
saving: "Збереження..."
|
||||
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
blog: "Блог"
|
||||
forum: "Форум"
|
||||
account: "Акаунт"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Адміністратор"
|
||||
home: "На головну"
|
||||
contribute: "Співпраця"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
new_password: "Новий пароль"
|
||||
new_password_verify: "Підтвердження паролю"
|
||||
email_subscriptions: "Email-підписки"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Оголошення"
|
||||
email_announcements_description: "Отримувати електронні листи про останні новини CodeCombat."
|
||||
email_notifications: "Нотифікації"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "Підписки за класами учасників"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "Редактор рівнів"
|
||||
main_title: "Спільноти CodeCombat"
|
||||
facebook: "Facebook"
|
||||
twitter: "Twitter"
|
||||
gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "Редактори CodeCombat"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
level_search_title: "Шукати рівні тут"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "Примітка: Ви не можете зберегти ніякі зміни, оскільки Ви не зареєструвались."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "Анонс"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
general:
|
||||
and: "та"
|
||||
name: "Ім’я"
|
||||
# date: "Date"
|
||||
body: "Тіло"
|
||||
version: "Версія"
|
||||
commit_msg: "Доручити повідомлення"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
nick_description: "Чарівник програмування, ексцентричний маг мотивації та непересічний експериментатор. Нік здатен зробити будь-що, і він обрав зробити CodeCombat."
|
||||
jeremy_description: "Чарівник підтримки користувачів, тестер юзабіліті та організатор спільноти; ви ймовірно вже спілкувались з Джеремі."
|
||||
michael_description: "Програміст, адмін та загадковий технічний вундеркінд, Майкл - та людина, що утримує наші сервери онлайн."
|
||||
glen_description: "Програміст та натхненний розробник ігор, що мріє зробити цей світ краще, створюючи дійсно значущі речі. Ніколи не вживає слова \"неможливо\". Дізнаватися нове - для нього найбільша насолода!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "Юридична інформація"
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "українська мова", englishDesc
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# blog: "Blog"
|
||||
forum: "Diễn đàn"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "Quản trị viên"
|
||||
home: "Nhà"
|
||||
contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
new_password: "Mật khẩu mới"
|
||||
new_password_verify: "Xác nhận"
|
||||
email_subscriptions: "Thuê bao Email"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "Thông báo"
|
||||
email_announcements_description: "Nhận email về tin tức mới nhất và sự phát triển của Codecombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
blog: "博客"
|
||||
forum: "论坛"
|
||||
account: "账号"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "管理"
|
||||
home: "首页"
|
||||
contribute: "贡献"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
new_password: "新密码"
|
||||
new_password_verify: "核实"
|
||||
email_subscriptions: "邮箱验证"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "通知"
|
||||
email_announcements_description: "接收关于 CodeCombat 的邮件。"
|
||||
email_notifications: "通知"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
email_any_notes: "任何通知"
|
||||
email_any_notes_description: "取消接收所有活动提醒邮件"
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "工作机会"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "贡献者通知"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# clas: "CLAs"
|
||||
|
||||
community:
|
||||
level_editor: "关卡编辑器"
|
||||
main_title: "CodeCombat 社区"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat 编辑器"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
level_search_title: "在这里搜索关卡"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "提示:你不能保存任何编辑,因为你没有登陆"
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "预览"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
general:
|
||||
and: "和"
|
||||
name: "名字"
|
||||
# date: "Date"
|
||||
body: "正文"
|
||||
version: "版本"
|
||||
commit_msg: "提交信息"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "法律"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
introduction_desc_github_url: "我们把 CodeCombat 完全开源"
|
||||
introduction_desc_suf: ",而且我们希望提供尽可能多的方法让你来参加这个项目,与我们一起创造。"
|
||||
introduction_desc_ending: "我们希望你也能一起加入进来!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy 以及 Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy 以及 Matt"
|
||||
alert_account_message_intro: "你好!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "你对游戏图像、界面设计、数据库和服务器运营、多人在线、物理、声音、游戏引擎性能感兴趣吗?想做一个教别人编程的游戏吗?如果你有编程经验,想要开发 CodeCombat ,那就选择这个职业吧。我们会非常高兴在制作史上最棒编程游戏的过程中得到你的帮助。"
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
blog: "官方部落格"
|
||||
forum: "論壇"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "系統管理員"
|
||||
home: "首頁"
|
||||
contribute: "貢獻"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
new_password: "新密碼"
|
||||
new_password_verify: "確認密碼"
|
||||
email_subscriptions: "訂閱"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "通知"
|
||||
email_announcements_description: "接收關於 CodeCombat 的新聞和開發消息。"
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "貢獻者電郵"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
general:
|
||||
# and: "and"
|
||||
name: "名字"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "繁体中文", englishDescription: "Chinese
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# blog: "Blog"
|
||||
# forum: "Forum"
|
||||
# account: "Account"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
# admin: "Admin"
|
||||
# home: "Home"
|
||||
# contribute: "Contribute"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# new_password: "New Password"
|
||||
# new_password_verify: "Verify"
|
||||
# email_subscriptions: "Email Subscriptions"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
# email_announcements: "Announcements"
|
||||
# email_announcements_description: "Get emails on the latest news and developments at CodeCombat."
|
||||
# email_notifications: "Notifications"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
# contributor_emails: "Contributor Class Emails"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# general:
|
||||
# and: "and"
|
||||
# name: "Name"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
blog: "部落格"
|
||||
forum: "論壇"
|
||||
account: "賬號"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "管理"
|
||||
home: "首頁"
|
||||
contribute: "貢獻"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
new_password: "新密碼"
|
||||
new_password_verify: "覈實"
|
||||
email_subscriptions: "郵箱校對"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "通知"
|
||||
email_announcements_description: "收 有關 CodeCombat 個電子信。"
|
||||
email_notifications: "通知"
|
||||
# email_notifications_summary: "Controls for personalized, automatic email notifications related to your CodeCombat activity."
|
||||
# email_any_notes: "Any Notifications"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
# email_recruit_notes: "Job Opportunities"
|
||||
# email_recruit_notes_description: "If you play really well, we may contact you about getting you a (better) job."
|
||||
contributor_emails: "貢獻人個通知"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat 編寫器"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
level_search_title: "徠箇搭尋關"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
read_only_warning2: "提醒:爾嘸處存編寫,朆登進之故"
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
article:
|
||||
edit_btn_preview: "試望"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
general:
|
||||
and: "搭"
|
||||
name: "名字"
|
||||
# date: "Date"
|
||||
body: "正文"
|
||||
version: "版本"
|
||||
commit_msg: "提交訊息"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
legal:
|
||||
page_title: "律法"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
introduction_desc_github_url: "我裏畀 CodeCombat 整個開源"
|
||||
introduction_desc_suf: ",我裏也希望提供越多越好個方法讓爾參加箇項目,搭我裏聚隊造。"
|
||||
introduction_desc_ending: "我裏希望爾也聚隊加進來!"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy 搭 Glen"
|
||||
introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy 搭 Matt"
|
||||
alert_account_message_intro: "爾好!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
archmage_summary: "爾對遊戲圖像、界面設計、數據庫搭服務器運行、多人徠線、物理、聲音、遊戲引擎性能許感興趣噃?想做一個教別人編程個遊戲噃?空是爾有編程經驗,想開發 CodeCombat ,箇勿職業揀箇去。我裏候快活個,徠造“史上最讚個編程遊戲”個過程當中有爾個幫襯。"
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -49,6 +49,9 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
blog: "博客"
|
||||
forum: "论坛"
|
||||
account: "账号"
|
||||
# profile: "Profile"
|
||||
# stats: "Stats"
|
||||
# code: "Code"
|
||||
admin: "超级管理员"
|
||||
home: "首页"
|
||||
contribute: "贡献"
|
||||
|
@ -176,12 +179,14 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
new_password: "新密码"
|
||||
new_password_verify: "验证"
|
||||
email_subscriptions: "邮件订阅"
|
||||
# email_subscriptions_none: "No Email Subscriptions."
|
||||
email_announcements: "声明"
|
||||
email_announcements_description: "获取有关CodeCombat的最新消息"
|
||||
email_notifications: "通知"
|
||||
email_notifications_summary: "控制个性化的自动邮件提醒,提醒您在CodeCombat的活动"
|
||||
email_any_notes: "任何通知"
|
||||
# email_any_notes_description: "Disable to stop all activity notification emails."
|
||||
# email_news: "News"
|
||||
email_recruit_notes: "工作机会"
|
||||
email_recruit_notes_description: "如果你玩得的确不赖,我们会联系你,或许给你一份(更好的)工作"
|
||||
contributor_emails: "贡献者邮件"
|
||||
|
@ -519,11 +524,16 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# clas: "CLAs"
|
||||
|
||||
# community:
|
||||
# level_editor: "Level Editor"
|
||||
# main_title: "CodeCombat Community"
|
||||
# facebook: "Facebook"
|
||||
# twitter: "Twitter"
|
||||
# gplus: "Google+"
|
||||
# introduction: "Check out the ways you can get involved below and decide what sounds the most fun. We look forward to working with you!"
|
||||
# level_editor_prefix: "Use the CodeCombat"
|
||||
# level_editor_suffix: "to create and edit levels. Users have created levels for their classes, friends, hackathons, students, and siblings. If create a new level sounds intimidating you can start by forking one of ours!"
|
||||
# thang_editor_prefix: "We call units within the game 'thangs'. Use the"
|
||||
# thang_editor_suffix: "to modify the CodeCombat source artwork. Allow units to throw projectiles, alter the direction of an animation, change a unit's hit points, or upload your own vector sprites."
|
||||
# article_editor_prefix: "See a mistake in some of our docs? Want to make some instructions for your own creations? Check out the"
|
||||
# article_editor_suffix: "and help CodeCombat players get the most out of their playtime."
|
||||
# find_us: "Find us on these sites"
|
||||
# contribute_to_the_project: "Contribute to the project"
|
||||
|
||||
# editor:
|
||||
# main_title: "CodeCombat Editors"
|
||||
|
@ -591,6 +601,10 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# level_search_title: "Search Levels Here"
|
||||
# achievement_search_title: "Search Achievements"
|
||||
# read_only_warning2: "Note: you can't save any edits here, because you're not logged in."
|
||||
# no_achievements: "No achievements have been added for this level yet."
|
||||
# achievement_query_misc: "Key achievement off of miscellanea"
|
||||
# achievement_query_goals: "Key achievement off of level goals"
|
||||
# level_completion: "Level Completion"
|
||||
|
||||
# article:
|
||||
# edit_btn_preview: "Preview"
|
||||
|
@ -599,6 +613,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
general:
|
||||
# and: "and"
|
||||
name: "名字"
|
||||
# date: "Date"
|
||||
# body: "Body"
|
||||
# version: "Version"
|
||||
# commit_msg: "Commit Message"
|
||||
|
@ -647,7 +662,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# 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!"
|
||||
# matt_description: "Bicyclist, Software Engineer, reader of heroic fantasy, connoisseur of peanut butter, sipper of coffee."
|
||||
|
||||
# legal:
|
||||
# page_title: "Legal"
|
||||
|
@ -718,7 +733,7 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# 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"
|
||||
# introduction_desc_signature: "- Nick, George, Scott, Michael, Jeremy and Matt"
|
||||
# alert_account_message_intro: "Hey there!"
|
||||
# alert_account_message: "To subscribe for class emails, you'll need to be logged in first."
|
||||
# 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."
|
||||
|
@ -938,3 +953,38 @@ module.exports = nativeDescription: "中文", englishDescription: "Chinese", tra
|
|||
# text_diff: "Text Diff"
|
||||
# merge_conflict_with: "MERGE CONFLICT WITH"
|
||||
# no_changes: "No Changes"
|
||||
|
||||
# user:
|
||||
# stats: "Stats"
|
||||
# singleplayer_title: "Singleplayer Levels"
|
||||
# multiplayer_title: "Multiplayer Levels"
|
||||
# achievements_title: "Achievements"
|
||||
# last_played: "Last Played"
|
||||
# status: "Status"
|
||||
# status_completed: "Completed"
|
||||
# status_unfinished: "Unfinished"
|
||||
# no_singleplayer: "No Singleplayer games played yet."
|
||||
# no_multiplayer: "No Multiplayer games played yet."
|
||||
# no_achievements: "No Achievements earned yet."
|
||||
# favorite_prefix: "Favorite language is "
|
||||
# favorite_postfix: "."
|
||||
|
||||
# achievements:
|
||||
# last_earned: "Last Earned"
|
||||
# amount_achieved: "Amount"
|
||||
# achievement: "Achievement"
|
||||
# category_contributor: "Contributor"
|
||||
# category_miscellaneous: "Miscellaneous"
|
||||
# category_levels: "Levels"
|
||||
# category_undefined: "Uncategorized"
|
||||
# current_xp_prefix: ""
|
||||
# current_xp_postfix: " in total"
|
||||
# new_xp_prefix: ""
|
||||
# new_xp_postfix: " earned"
|
||||
# left_xp_prefix: ""
|
||||
# left_xp_infix: " until level "
|
||||
# left_xp_postfix: ""
|
||||
|
||||
# account:
|
||||
# recently_played: "Recently Played"
|
||||
# no_recent_games: "No games played during the past two weeks."
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
CocoModel = require './CocoModel'
|
||||
util = require '../lib/utils'
|
||||
utils = require '../lib/utils'
|
||||
|
||||
module.exports = class Achievement extends CocoModel
|
||||
@className: 'Achievement'
|
||||
|
@ -11,6 +11,47 @@ module.exports = class Achievement extends CocoModel
|
|||
|
||||
# TODO logic is duplicated in Mongoose Achievement schema
|
||||
getExpFunction: ->
|
||||
kind = @get('function')?.kind or @schema.function.default.kind
|
||||
parameters = @get('function')?.parameters or @schema.function.default.parameters
|
||||
kind = @get('function')?.kind or jsonschema.properties.function.default.kind
|
||||
parameters = @get('function')?.parameters or jsonschema.properties.function.default.parameters
|
||||
return utils.functionCreators[kind](parameters) if kind of utils.functionCreators
|
||||
|
||||
@styleMapping:
|
||||
1: 'achievement-wood'
|
||||
2: 'achievement-stone'
|
||||
3: 'achievement-silver'
|
||||
4: 'achievement-gold'
|
||||
5: 'achievement-diamond'
|
||||
|
||||
getStyle: -> Achievement.styleMapping[@get 'difficulty']
|
||||
|
||||
@defaultImageURL: '/images/achievements/default.png'
|
||||
|
||||
getImageURL: ->
|
||||
if @get 'icon' then '/file/' + @get('icon') else Achievement.defaultImageURL
|
||||
|
||||
hasImage: -> @get('icon')?
|
||||
|
||||
# TODO Could cache the default icon separately
|
||||
cacheLockedImage: ->
|
||||
return @lockedImageURL if @lockedImageURL
|
||||
canvas = document.createElement 'canvas'
|
||||
image = new Image
|
||||
image.src = @getImageURL()
|
||||
defer = $.Deferred()
|
||||
image.onload = =>
|
||||
canvas.width = image.width
|
||||
canvas.height = image.height
|
||||
context = canvas.getContext '2d'
|
||||
context.drawImage image, 0, 0
|
||||
imgData = context.getImageData 0, 0, canvas.width, canvas.height
|
||||
imgData = utils.grayscale imgData
|
||||
context.putImageData imgData, 0, 0
|
||||
@lockedImageURL = canvas.toDataURL()
|
||||
defer.resolve @lockedImageURL
|
||||
defer
|
||||
|
||||
getLockedImageURL: -> @lockedImageURL
|
||||
|
||||
i18nName: -> utils.i18n @attributes, 'name'
|
||||
|
||||
i18nDescription: -> utils.i18n @attributes, 'description'
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
storage = require 'lib/storage'
|
||||
deltasLib = require 'lib/deltas'
|
||||
|
||||
NewAchievementCollection = require '../collections/NewAchievementCollection'
|
||||
|
||||
class CocoModel extends Backbone.Model
|
||||
idAttribute: '_id'
|
||||
loaded: false
|
||||
|
@ -220,6 +218,9 @@ class CocoModel extends Backbone.Model
|
|||
catch error
|
||||
console.error 'Error applying delta\n', JSON.stringify(delta, null, '\t'), '\n\nto attributes\n\n', newAttributes
|
||||
return false
|
||||
for key, value of newAttributes
|
||||
delete newAttributes[key] if _.isEqual value, @attributes[key]
|
||||
|
||||
@set newAttributes
|
||||
return true
|
||||
|
||||
|
@ -298,11 +299,13 @@ class CocoModel extends Backbone.Model
|
|||
return if _.isString @url then @url else @url()
|
||||
|
||||
@pollAchievements: ->
|
||||
NewAchievementCollection = require '../collections/NewAchievementCollection' # Nasty mutual inclusion if put on top
|
||||
achievements = new NewAchievementCollection
|
||||
achievements.fetch(
|
||||
achievements.fetch
|
||||
success: (collection) ->
|
||||
me.fetch (success: -> Backbone.Mediator.publish('achievements:new', collection)) unless _.isEmpty(collection.models)
|
||||
)
|
||||
error: ->
|
||||
console.error 'Miserably failed to fetch unnotified achievements', arguments
|
||||
|
||||
CocoModel.pollAchievements = _.debounce CocoModel.pollAchievements, 500
|
||||
|
||||
|
|
7
app/models/EarnedAchievement.coffee
Normal file
7
app/models/EarnedAchievement.coffee
Normal file
|
@ -0,0 +1,7 @@
|
|||
CocoModel = require './CocoModel'
|
||||
utils = require '../lib/utils'
|
||||
|
||||
module.exports = class EarnedAchievement extends CocoModel
|
||||
@className: 'EarnedAchievement'
|
||||
@schema: require 'schemas/models/earned_achievement'
|
||||
urlRoot: '/db/earnedachievement'
|
|
@ -22,7 +22,11 @@ module.exports = class Level extends CocoModel
|
|||
o.systems = @sortSystems o.systems, systemModels
|
||||
@fillInDefaultSystemConfiguration o.systems
|
||||
|
||||
o.thangTypes = (original: tt.get('original'), name: tt.get('name'), components: tt.get('components') for tt in supermodel.getModels ThangType)
|
||||
# Figure out ThangTypes' Components
|
||||
o.thangTypes = (original: tt.get('original'), name: tt.get('name'), components: $.extend(true, [], tt.get('components')) for tt in supermodel.getModels ThangType)
|
||||
@sortThangComponents o.thangTypes, o.levelComponents
|
||||
@fillInDefaultComponentConfiguration o.thangTypes, o.levelComponents
|
||||
|
||||
o
|
||||
|
||||
denormalize: (supermodel) ->
|
||||
|
@ -76,14 +80,15 @@ module.exports = class Level extends CocoModel
|
|||
visit = (c) ->
|
||||
return if c in sorted
|
||||
lc = _.find levelComponents, {original: c.original}
|
||||
console.error thang.id, 'couldn\'t find lc for', c unless lc
|
||||
console.error thang.id or thang.name, 'couldn\'t find lc for', c, 'of', levelComponents unless lc
|
||||
return unless lc
|
||||
if lc.name is 'Programmable'
|
||||
# Programmable always comes last
|
||||
visit c2 for c2 in _.without thang.components, c
|
||||
else
|
||||
for d in lc.dependencies or []
|
||||
c2 = _.find thang.components, {original: d.original}
|
||||
console.error thang.id, 'couldn\'t find dependent Component', d.original, 'from', lc.name unless c2
|
||||
console.error thang.id or thang.name, 'couldn\'t find dependent Component', d.original, 'from', lc.name unless c2
|
||||
visit c2 if c2
|
||||
if lc.name is 'Collides'
|
||||
allied = _.find levelComponents, {name: 'Allied'}
|
||||
|
|
|
@ -5,6 +5,8 @@ module.exports = class LevelComponent extends CocoModel
|
|||
@schema: require 'schemas/models/level_component'
|
||||
|
||||
@EquipsID: '53e217d253457600003e3ebb'
|
||||
@ItemID: '53e12043b82921000051cdf9'
|
||||
@AttacksID: '524b7ba57fc0f6d519000016'
|
||||
urlRoot: '/db/level.component'
|
||||
|
||||
set: (key, val, options) ->
|
||||
|
|
|
@ -36,3 +36,9 @@ module.exports = class LevelSession extends CocoModel
|
|||
spell = item[1]
|
||||
return true if c1[thang][spell] isnt c2[thang]?[spell]
|
||||
false
|
||||
|
||||
isMultiplayer: ->
|
||||
@get('team')? # Only multiplayer level sessions have teams defined
|
||||
|
||||
completed: ->
|
||||
@get('state')?.complete || false
|
||||
|
|
|
@ -58,9 +58,15 @@ module.exports = class SuperModel extends Backbone.Model
|
|||
return res
|
||||
else
|
||||
@addCollection collection
|
||||
@listenToOnce collection, 'sync', (c) ->
|
||||
console.debug 'Registering collection', url
|
||||
@registerCollection c
|
||||
onCollectionSynced = (c) ->
|
||||
if collection.url is c.url
|
||||
console.debug 'Registering collection', url, c
|
||||
@registerCollection c
|
||||
else
|
||||
console.warn 'Sync triggered for collection', c
|
||||
console.warn 'Yet got other object', c
|
||||
@listenToOnce collection, 'sync', onCollectionSynced
|
||||
@listenToOnce collection, 'sync', onCollectionSynced
|
||||
res = @addModelResource(collection, name, fetchOptions, value)
|
||||
res.load() if not (res.isLoading or res.isLoaded)
|
||||
return res
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
CocoModel = require './CocoModel'
|
||||
SpriteBuilder = require 'lib/sprites/SpriteBuilder'
|
||||
LevelComponent = require './LevelComponent'
|
||||
|
||||
buildQueue = []
|
||||
|
||||
|
@ -262,3 +263,55 @@ module.exports = class ThangType extends CocoModel
|
|||
@wizardType.url = -> url
|
||||
@wizardType.fetch()
|
||||
@wizardType
|
||||
|
||||
getPortraitURL: -> "/file/db/thang.type/#{@get('original')}/portrait.png"
|
||||
|
||||
# Item functions
|
||||
|
||||
getAllowedSlots: ->
|
||||
itemComponentRef = _.find(
|
||||
@get('components') or [],
|
||||
(compRef) -> compRef.original is LevelComponent.ItemID)
|
||||
return itemComponentRef?.config?.slots or []
|
||||
|
||||
getFrontFacingStats: ->
|
||||
stats = []
|
||||
for component in @get('components') or []
|
||||
continue unless config = component.config
|
||||
if config.attackDamage
|
||||
stats.push { name: 'Attack Damage', value: config.attackDamage }
|
||||
if config.attackRange
|
||||
stats.push { name: 'Attack Range', value: "#{config.attackRange}m" }
|
||||
if config.cooldown
|
||||
stats.push { name: 'Cooldown', value: "#{config.cooldown}s" }
|
||||
if config.maxSpeed
|
||||
stats.push { name: 'Speed', value: "#{config.maxSpeed}m/s" }
|
||||
if config.maxAcceleration
|
||||
stats.push { name: 'Acceleration', value: "#{config.maxAcceleration}m/s^2" }
|
||||
if config.stats
|
||||
for stat, value of config.stats
|
||||
if value.factor
|
||||
value = "x#{value.factor}"
|
||||
if value.addend and value.addend > 0
|
||||
value = "+#{value.addend}"
|
||||
if value.addend and value.addend < 0
|
||||
value = "#{value.addend}"
|
||||
if value.setTo
|
||||
value = "=#{value.setTo}"
|
||||
if stat is 'maxHealth'
|
||||
stats.push { name: 'Health', value: value }
|
||||
if stat is 'healthReplenishRate'
|
||||
stats.push { name: 'Regen', value: value }
|
||||
if config.programmableProperties
|
||||
props = config.programmableProperties
|
||||
if props.length
|
||||
stats.push { name: 'Allows', value: props.join(', ') }
|
||||
if config.visualRange
|
||||
value = config.visualRange
|
||||
if value is 9001 then value is "Infinite"
|
||||
stats.push { name: 'Visual Range', value: "#{value}m"}
|
||||
if config.programmableSnippets
|
||||
snippets = config.programmableSnippets
|
||||
if snippets.length
|
||||
stats.push { name: 'Snippets', value: snippets.join(', ') }
|
||||
stats
|
|
@ -9,14 +9,24 @@ module.exports = class User extends CocoModel
|
|||
urlRoot: '/db/user'
|
||||
notyErrors: false
|
||||
|
||||
defaults:
|
||||
points: 0
|
||||
|
||||
initialize: ->
|
||||
super()
|
||||
@migrateEmails()
|
||||
|
||||
onLoaded: ->
|
||||
CocoModel.pollAchievements() # Check for achievements on login
|
||||
super arguments...
|
||||
|
||||
isAdmin: ->
|
||||
permissions = @attributes['permissions'] or []
|
||||
return 'admin' in permissions
|
||||
|
||||
isAnonymous: ->
|
||||
@get 'anonymous'
|
||||
|
||||
displayName: ->
|
||||
@get('name') or 'Anoner'
|
||||
|
||||
|
@ -32,47 +42,13 @@ module.exports = class User extends CocoModel
|
|||
return "/file/#{photoURL}#{prefix}s=#{size}"
|
||||
return "/db/user/#{@id}/avatar?s=#{size}&employerPageAvatar=#{useEmployerPageAvatar}"
|
||||
|
||||
@getByID = (id, properties, force) ->
|
||||
{me} = require 'lib/auth'
|
||||
return me if me.id is id
|
||||
user = cache[id] or new module.exports({_id: id})
|
||||
if force or not cache[id]
|
||||
user.loading = true
|
||||
user.fetch(
|
||||
success: ->
|
||||
user.loading = false
|
||||
Backbone.Mediator.publish('user:fetched')
|
||||
#user.trigger 'sync' # needed?
|
||||
)
|
||||
cache[id] = user
|
||||
user
|
||||
getSlugOrID: -> @get('slug') or @get('_id')
|
||||
|
||||
set: ->
|
||||
if arguments[0] is 'jobProfileApproved' and @get("jobProfileApproved") is false and not @get("jobProfileApprovedDate")
|
||||
@set "jobProfileApprovedDate", (new Date()).toISOString()
|
||||
super arguments...
|
||||
|
||||
# callbacks can be either success or error
|
||||
@getByIDOrSlug: (idOrSlug, force, callbacks={}) ->
|
||||
{me} = require 'lib/auth'
|
||||
isID = util.isID idOrSlug
|
||||
if me.id is idOrSlug or me.slug is idOrSlug
|
||||
callbacks.success me if callbacks.success?
|
||||
return me
|
||||
cached = cache[idOrSlug]
|
||||
user = cached or new @ _id: idOrSlug
|
||||
if force or not cached
|
||||
user.loading = true
|
||||
user.fetch
|
||||
success: ->
|
||||
user.loading = false
|
||||
Backbone.Mediator.publish 'user:fetched'
|
||||
callbacks.success user if callbacks.success?
|
||||
error: ->
|
||||
user.loading = false
|
||||
callbacks.error user if callbacks.error?
|
||||
cache[idOrSlug] = user
|
||||
user
|
||||
|
||||
@getUnconflictedName: (name, done) ->
|
||||
$.ajax "/auth/name/#{name}",
|
||||
success: (data) -> done data.name
|
||||
|
@ -111,19 +87,16 @@ module.exports = class User extends CocoModel
|
|||
isEmailSubscriptionEnabled: (name) -> (@get('emails') or {})[name]?.enabled
|
||||
|
||||
a = 5
|
||||
b = 40
|
||||
b = 100
|
||||
c = b
|
||||
|
||||
# y = a * ln(1/b * (x + b)) + 1
|
||||
# y = a * ln(1/b * (x + c)) + 1
|
||||
@levelFromExp: (xp) ->
|
||||
if xp > 0 then Math.floor(a * Math.log((1/b) * (xp + b))) + 1 else 1
|
||||
if xp > 0 then Math.floor(a * Math.log((1/b) * (xp + c))) + 1 else 1
|
||||
|
||||
# x = (e^((y-1)/a) - 1) * b
|
||||
# x = b * e^((y-1)/a) - c
|
||||
@expForLevel: (level) ->
|
||||
Math.ceil((Math.exp((level - 1)/ a) - 1) * b)
|
||||
if level > 1 then Math.ceil Math.exp((level - 1)/ a) * b - c else 0
|
||||
|
||||
level: ->
|
||||
User.levelFromExp(@get('points'))
|
||||
|
||||
levelFromExp: (xp) -> User.levelFromExp(xp)
|
||||
|
||||
expForLevel: (level) -> User.expForLevel(level)
|
||||
|
|
|
@ -24,8 +24,9 @@ MongoFindQuerySchema =
|
|||
'^[-a-zA-Z0-9\.]*$':
|
||||
oneOf: [
|
||||
#{$ref: '#/definitions/' + MongoQueryOperatorSchema.id},
|
||||
{type: 'string'},
|
||||
{type: 'string'}
|
||||
{type: 'object'}
|
||||
{type: 'boolean'}
|
||||
]
|
||||
additionalProperties: true # TODO make Treema accept new pattern matched keys
|
||||
definitions: {}
|
||||
|
@ -34,36 +35,58 @@ MongoFindQuerySchema.definitions[MongoQueryOperatorSchema.id] = MongoQueryOperat
|
|||
|
||||
AchievementSchema = c.object()
|
||||
c.extendNamedProperties AchievementSchema
|
||||
c.extendBasicProperties AchievementSchema, 'article'
|
||||
c.extendBasicProperties AchievementSchema, 'achievement'
|
||||
c.extendSearchableProperties AchievementSchema
|
||||
|
||||
_.extend(AchievementSchema.properties,
|
||||
_.extend AchievementSchema.properties,
|
||||
query:
|
||||
#type:'object'
|
||||
$ref: '#/definitions/' + MongoFindQuerySchema.id
|
||||
worth: {type: 'number'}
|
||||
worth: c.float
|
||||
default: 10
|
||||
collection: {type: 'string'}
|
||||
description: {type: 'string'}
|
||||
userField: {type: 'string'}
|
||||
description: c.shortString
|
||||
default: 'Probably the coolest you\'ll ever get.'
|
||||
userField: c.shortString()
|
||||
related: c.objectId(description: 'Related entity')
|
||||
icon: {type: 'string', format: 'image-file', title: 'Icon'}
|
||||
category:
|
||||
enum: ['level', 'ladder', 'contributor']
|
||||
description: 'For categorizing and display purposes'
|
||||
difficulty: c.int
|
||||
description: 'The higher the more difficult'
|
||||
default: 1
|
||||
proportionalTo:
|
||||
type: 'string'
|
||||
description: 'For repeatables only. Denotes the field a repeatable achievement needs for its calculations'
|
||||
recalculable:
|
||||
type: 'boolean'
|
||||
description: 'Needs to be set to true before it is elligible for recalculation.'
|
||||
default: true
|
||||
function:
|
||||
type: 'object'
|
||||
description: 'Function that gives total experience for X amount achieved'
|
||||
properties:
|
||||
kind: {enum: ['linear', 'logarithmic'], default: 'linear'}
|
||||
kind: {enum: ['linear', 'logarithmic', 'quadratic'], default: 'linear'}
|
||||
parameters:
|
||||
type: 'object'
|
||||
properties:
|
||||
a: {type: 'number', default: 1}
|
||||
b: {type: 'number', default: 1}
|
||||
c: {type: 'number', default: 1}
|
||||
additionalProperties: true
|
||||
default: {kind: 'linear', parameters: a: 1}
|
||||
required: ['kind', 'parameters']
|
||||
additionalProperties: false
|
||||
)
|
||||
i18n: c.object
|
||||
format: 'i18n'
|
||||
props: ['name', 'description']
|
||||
description: 'Help translate this achievement'
|
||||
|
||||
_.extend AchievementSchema, # Let's have these on the bottom
|
||||
# TODO We really need some required properties in my opinion but this makes creating new achievements impossible as it is now
|
||||
#required: ['name', 'description', 'query', 'worth', 'collection', 'userField', 'category', 'difficulty']
|
||||
additionalProperties: false
|
||||
|
||||
AchievementSchema.definitions = {}
|
||||
AchievementSchema.definitions[MongoFindQuerySchema.id] = MongoFindQuerySchema
|
||||
|
|
|
@ -101,6 +101,14 @@ _.extend LevelSessionSchema.properties,
|
|||
type: 'object'
|
||||
source:
|
||||
type: 'string'
|
||||
goalStates:
|
||||
type: 'object'
|
||||
description: 'Maps Goal ID on a goal state object'
|
||||
additionalProperties:
|
||||
title: 'Goal State'
|
||||
type: 'object'
|
||||
properties:
|
||||
status: enum: ['failure', 'incomplete', 'success']
|
||||
|
||||
code:
|
||||
type: 'object'
|
||||
|
|
|
@ -20,6 +20,9 @@ PatchSchema = c.object({title: 'Patch', required: ['target', 'delta', 'commitMes
|
|||
major: {type: 'number', minimum: 0}
|
||||
minor: {type: 'number', minimum: 0}
|
||||
})
|
||||
|
||||
wasPending: type: 'boolean'
|
||||
newlyAccepted: type: 'boolean'
|
||||
})
|
||||
|
||||
c.extendBasicProperties(PatchSchema, 'patch')
|
||||
|
|
|
@ -222,6 +222,33 @@ _.extend UserSchema.properties,
|
|||
|
||||
points: {type: 'number'}
|
||||
activity: {type: 'object', description: 'Summary statistics about user activity', additionalProperties: c.activity}
|
||||
stats: c.object {additionalProperties: false},
|
||||
gamesCompleted: c.int()
|
||||
articleEdits: c.int()
|
||||
levelEdits: c.int()
|
||||
levelSystemEdits: c.int()
|
||||
levelComponentEdits: c.int()
|
||||
thangTypeEdits: c.int()
|
||||
patchesSubmitted: c.int
|
||||
description: 'Amount of patches submitted, not necessarily accepted'
|
||||
patchesContributed: c.int
|
||||
description: 'Amount of patches submitted and accepted'
|
||||
patchesAccepted: c.int
|
||||
description: 'Amount of patches accepted by the user as owner'
|
||||
# The below patches only apply to those that actually got accepted
|
||||
totalTranslationPatches: c.int()
|
||||
totalMiscPatches: c.int()
|
||||
articleTranslationPatches: c.int()
|
||||
articleMiscPatches: c.int()
|
||||
levelTranslationPatches: c.int()
|
||||
levelMiscPatches: c.int()
|
||||
levelComponentTranslationPatches: c.int()
|
||||
levelComponentMiscPatches: c.int()
|
||||
levelSystemTranslationPatches: c.int()
|
||||
levelSystemMiscPatches: c.int()
|
||||
thangTypeTranslationPatches: c.int()
|
||||
thangTypeMiscPatches: c.int()
|
||||
|
||||
|
||||
c.extendBasicProperties UserSchema, 'user'
|
||||
|
||||
|
|
|
@ -19,6 +19,8 @@ me.date = (ext) -> combine({type: ['object', 'string'], format: 'date-time'}, ex
|
|||
# should just be string (Mongo ID), but sometimes mongoose turns them into objects representing those, so we are lenient
|
||||
me.objectId = (ext) -> schema = combine({type: ['object', 'string']}, ext)
|
||||
me.url = (ext) -> combine({type: 'string', format: 'url', pattern: urlPattern}, ext)
|
||||
me.int = (ext) -> combine {type: 'integer'}, ext
|
||||
me.float = (ext) -> combine {type: 'number'}, ext
|
||||
|
||||
PointSchema = me.object {title: 'Point', description: 'An {x, y} coordinate point.', format: 'point2d', required: ['x', 'y']},
|
||||
x: {title: 'x', description: 'The x coordinate.', type: 'number', 'default': 15}
|
||||
|
|
32
app/styles/account/account_home.sass
Normal file
32
app/styles/account/account_home.sass
Normal file
|
@ -0,0 +1,32 @@
|
|||
@import "../bootstrap/variables"
|
||||
@import "../bootstrap/mixins"
|
||||
|
||||
#account-home
|
||||
dl
|
||||
margin-bottom: 0px
|
||||
|
||||
img#picture
|
||||
max-width: 100%
|
||||
|
||||
.panel
|
||||
margin-bottom: 10px
|
||||
|
||||
h2
|
||||
margin-bottom: 0px
|
||||
|
||||
a
|
||||
font-size: 28px
|
||||
margin-left: 5px
|
||||
|
||||
.panel-title > a
|
||||
margin-left: 5px
|
||||
color: rgb(11, 99, 188)
|
||||
|
||||
.panel-me
|
||||
td
|
||||
padding-left: 15px
|
||||
|
||||
.panel-emails
|
||||
h4
|
||||
font-family: $font-family-base
|
||||
|
243
app/styles/achievements.sass
Normal file
243
app/styles/achievements.sass
Normal file
|
@ -0,0 +1,243 @@
|
|||
@import 'bootstrap/variables'
|
||||
|
||||
.achievement-body
|
||||
position: relative
|
||||
|
||||
.achievement-icon
|
||||
position: absolute
|
||||
|
||||
.achievement-image
|
||||
width: 100%
|
||||
height: 100%
|
||||
img
|
||||
position: absolute
|
||||
margin: auto
|
||||
top: 0
|
||||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
|
||||
&.locked
|
||||
.achievement-content
|
||||
background-image: url("/images/achievements/achievement_background_locked.png")
|
||||
&:not(.locked)
|
||||
.achievement-content
|
||||
background-image: url("/images/achievements/achievement_background_light.png")
|
||||
|
||||
.achievement-content
|
||||
background-size: 100% 100%
|
||||
text-align: center
|
||||
overflow: hidden
|
||||
|
||||
> .achievement-title
|
||||
font-family: $font-family-base
|
||||
font-weight: bold
|
||||
white-space: nowrap
|
||||
max-height: 2em
|
||||
overflow: hidden
|
||||
text-overflow: ellipsis
|
||||
|
||||
|
||||
> .achievement-description
|
||||
white-space: initial
|
||||
font-size: 12px
|
||||
line-height: 1.3em
|
||||
max-height: 2.6em
|
||||
margin-top: auto
|
||||
margin-bottom: 0px !important
|
||||
padding-left: 5px
|
||||
overflow: hidden
|
||||
text-overflow: ellipsis
|
||||
|
||||
// Specific to the user stats page
|
||||
#user-achievements-view
|
||||
.achievement-body
|
||||
width: 335px
|
||||
height: 120px
|
||||
margin: 10px 0px
|
||||
|
||||
.achievement-icon
|
||||
width: 120px
|
||||
height: 120px
|
||||
top: -10px
|
||||
|
||||
.achievement-image
|
||||
img
|
||||
-moz-transform: scale(0.6)
|
||||
-webkit-transform: scale(0.6)
|
||||
transform: scale(0.6)
|
||||
|
||||
.achievement-content
|
||||
margin-left: 60px
|
||||
margin-right: 5px
|
||||
width: 260px
|
||||
height: 100px
|
||||
padding: 15px 10px 20px 60px
|
||||
|
||||
.achievement-title
|
||||
font-size: 20px
|
||||
|
||||
.achievement-description
|
||||
font-size: 12px
|
||||
line-height: 1.3em
|
||||
max-height: 2.6em
|
||||
|
||||
.achievement-popup
|
||||
padding: 20px 0px
|
||||
position: relative
|
||||
|
||||
.achievement-body
|
||||
.achievement-icon
|
||||
z-index: 1000
|
||||
width: 200px
|
||||
height: 200px
|
||||
left: -140px
|
||||
top: -20px
|
||||
|
||||
.achievement-image
|
||||
img
|
||||
position: absolute
|
||||
margin: auto
|
||||
top: 0
|
||||
left: 0
|
||||
right: 0
|
||||
bottom: 0
|
||||
|
||||
.achievement-content
|
||||
background-image: url("/images/achievements/achievement_background.png")
|
||||
position: relative
|
||||
width: 450px
|
||||
height: 160px
|
||||
padding: 24px 30px 20px 60px
|
||||
|
||||
.achievement-title
|
||||
font-family: Bangers
|
||||
font-size: 28px
|
||||
padding-left: -50px
|
||||
|
||||
.achievement-description
|
||||
font-size: 15px
|
||||
line-height: 1.3em
|
||||
max-height: 2.6em
|
||||
margin-top: auto
|
||||
margin-bottom: 0px !important
|
||||
|
||||
.progress-wrapper
|
||||
margin-left: 20px
|
||||
position: absolute
|
||||
bottom: 48px
|
||||
|
||||
.user-level
|
||||
font-size: 20px
|
||||
color: white
|
||||
position: absolute
|
||||
left: -15px
|
||||
margin-top: -8px
|
||||
vertical-align: middle
|
||||
z-index: 1000
|
||||
|
||||
> .progress-bar-wrapper
|
||||
position: absolute
|
||||
margin-left: 17px
|
||||
width: 314px
|
||||
height: 20px
|
||||
z-index: 2
|
||||
|
||||
> .progress
|
||||
margin-top: 5px
|
||||
border-radius: 50px
|
||||
height: 14px
|
||||
|
||||
> .progress-bar-border
|
||||
position: absolute
|
||||
width: 340px
|
||||
height: 30px
|
||||
margin-top: -2px
|
||||
background: url("/images/achievements/bar_border.png") no-repeat
|
||||
background-size: 100% 100%
|
||||
z-index: 1
|
||||
|
||||
.achievement-icon
|
||||
background-size: 100% 100% !important
|
||||
|
||||
.achievement-wood
|
||||
&.locked
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_wood_locked.png") no-repeat
|
||||
&:not(.locked)
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_wood.png") no-repeat
|
||||
|
||||
.achievement-stone
|
||||
&.locked
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_stone_locked.png") no-repeat
|
||||
&:not(.locked)
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_stone.png") no-repeat
|
||||
|
||||
.achievement-silver
|
||||
&.locked
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_silver_locked.png") no-repeat
|
||||
&:not(.locked)
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_silver.png") no-repeat
|
||||
|
||||
.achievement-gold
|
||||
&.locked
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_gold_locked.png") no-repeat
|
||||
&:not(.locked)
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_gold.png") no-repeat
|
||||
|
||||
.achievement-diamond
|
||||
&.locked
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_diamond_locked.png") no-repeat
|
||||
&:not(.locked)
|
||||
.achievement-icon
|
||||
background: url("/images/achievements/border_diamond.png") no-repeat
|
||||
|
||||
.xp-bar-old
|
||||
background-color: #680080
|
||||
|
||||
.xp-bar-new
|
||||
background-color: #0096ff
|
||||
|
||||
.xp-bar-left
|
||||
background-color: #fffbfd
|
||||
|
||||
// Achievements page
|
||||
.achievement-category-title
|
||||
margin-left: 20px
|
||||
font-family: $font-family-base
|
||||
font-weight: bold
|
||||
color: #5a5a5a
|
||||
text-transform: uppercase
|
||||
|
||||
.table-layout
|
||||
#no-achievements
|
||||
margin-top: 40px
|
||||
|
||||
.achievement-icon-small
|
||||
height: 18px
|
||||
|
||||
// Achievement Popup
|
||||
.achievement-popup-container
|
||||
position: fixed
|
||||
right: 0px
|
||||
bottom: 0px
|
||||
|
||||
.popup
|
||||
cursor: default
|
||||
left: 600px
|
||||
|
||||
.user-level
|
||||
background-image: url("/images/achievements/level-bg.png")
|
||||
width: 38px
|
||||
height: 38px
|
||||
line-height: 38px
|
||||
font-size: 20px
|
||||
font-family: $font-family-base
|
|
@ -21,7 +21,8 @@ h1 h2 h3 h4
|
|||
margin: 56px auto 0
|
||||
min-height: 600px
|
||||
padding: 14px 12px 5px 12px
|
||||
@include box-sizing(border-box)
|
||||
+box-sizing(border-box)
|
||||
+clearfix()
|
||||
|
||||
#outer-content-wrapper
|
||||
background: #B4B4B4
|
||||
|
@ -116,6 +117,10 @@ a
|
|||
|
||||
.background-wrapper.plain
|
||||
background: white
|
||||
|
||||
.plain
|
||||
h1, h2, h3, h4, h5, h6
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important
|
||||
|
||||
.modal-content
|
||||
@include box-shadow(none)
|
||||
|
@ -287,3 +292,9 @@ body[lang='ja']
|
|||
|
||||
a[data-toggle="coco-modal"]
|
||||
cursor: pointer
|
||||
|
||||
.achievement-corner
|
||||
position: fixed
|
||||
bottom: 0px
|
||||
right: 0px
|
||||
z-index: 1001
|
||||
|
|
|
@ -1,4 +1,44 @@
|
|||
@import "../bootstrap/variables"
|
||||
@import "../bootstrap/mixins"
|
||||
|
||||
// This is still very blocky. Browser reflows? Investigate why.
|
||||
.open > .dropdown-menu
|
||||
animation-name: fadeAnimation
|
||||
animation-duration: .7s
|
||||
animation-iteration-count: 1
|
||||
animation-timing-function: ease
|
||||
animation-fill-mode: forwards
|
||||
-webkit-animation-name: fadeAnimation
|
||||
-webkit-animation-duration: .7s
|
||||
-webkit-animation-iteration-count: 1
|
||||
-webkit-animation-timing-function: ease
|
||||
-webkit-animation-fill-mode: backwards
|
||||
-moz-animation-name: fadeAnimation
|
||||
-moz-animation-duration: .7s
|
||||
-moz-animation-iteration-count: 1
|
||||
-moz-animation-timing-function: ease
|
||||
-moz-animation-fill-mode: forwards
|
||||
|
||||
@keyframes fadeAnimation
|
||||
from
|
||||
opacity: 0
|
||||
top: 120%
|
||||
to
|
||||
opacity: 1
|
||||
top: 100%
|
||||
|
||||
@-webkit-keyframes fadeAnimation
|
||||
from
|
||||
opacity: 0
|
||||
top: 120%
|
||||
to
|
||||
opacity: 1
|
||||
top: 100%
|
||||
|
||||
a.disabled
|
||||
color: #5b5855
|
||||
text-decoration: none
|
||||
cursor: default
|
||||
|
||||
#top-nav
|
||||
a.navbar-brand
|
||||
|
@ -19,11 +59,65 @@
|
|||
.account-settings-image
|
||||
width: 18px
|
||||
height: 18px
|
||||
margin-right: 5px
|
||||
|
||||
.glyphicon-user
|
||||
font-size: 16px
|
||||
margin-right: 5px
|
||||
|
||||
.nav.navbar-link-text, .nav.navbar-link-text > li > a
|
||||
.dropdown
|
||||
.dropdown-menu
|
||||
left: auto
|
||||
width: 280px
|
||||
padding: 0px
|
||||
border-radius: 0px
|
||||
font-family: Bangers
|
||||
|
||||
> .user-dropdown-header
|
||||
position: relative
|
||||
background: #E4CF8C
|
||||
height: 160px
|
||||
padding: 10px
|
||||
text-align: center
|
||||
color: black
|
||||
border-bottom: #32281e 1px solid
|
||||
> a:hover
|
||||
background-color: transparent
|
||||
img
|
||||
border: #e3be7a 8px solid
|
||||
height: 98px // Includes the border
|
||||
&:hover
|
||||
box-shadow: 0 0 20px #e3be7a
|
||||
> h3
|
||||
margin-top: 10px
|
||||
text-shadow: 2px 2px 3px white
|
||||
color: #31281E
|
||||
.user-level
|
||||
position: absolute
|
||||
top: 73px
|
||||
right: 86px
|
||||
color: gold
|
||||
text-shadow: 1px 1px black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black
|
||||
|
||||
.user-dropdown-body
|
||||
color: black
|
||||
padding: 15px
|
||||
letter-spacing: 1px
|
||||
font: 15px 'Helvetica Neue', Helvetica, Arial, sans-serif
|
||||
+clearfix()
|
||||
|
||||
.user-dropdown-footer
|
||||
padding: 10px
|
||||
margin-left: 0px
|
||||
font-size: 14px
|
||||
+clearfix()
|
||||
|
||||
.btn-flat
|
||||
border: #ddd 1px solid
|
||||
border-radius: 0px
|
||||
margin: 0px
|
||||
|
||||
.nav.navbar-link-text > li > a
|
||||
font-weight: normal
|
||||
font-size: 25px
|
||||
letter-spacing: 2px
|
||||
|
@ -31,7 +125,7 @@
|
|||
&:hover
|
||||
color: #f8e413
|
||||
|
||||
.navbar-link-text a:hover
|
||||
.navbar-link-text > li > a:hover
|
||||
background: darken($body-bg, 3%)
|
||||
|
||||
.btn, .btn-group, .fancy-select
|
||||
|
@ -67,9 +161,6 @@
|
|||
top: 13px
|
||||
max-width: 140px
|
||||
|
||||
.nav
|
||||
margin-bottom: 0
|
||||
|
||||
div.fancy-select
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
|
||||
div.trigger
|
||||
|
|
|
@ -1,24 +1,34 @@
|
|||
@import "bootstrap/variables"
|
||||
@import "bootstrap/mixins"
|
||||
|
||||
#community-view
|
||||
|
||||
.community-columns
|
||||
width: 330px
|
||||
float: left
|
||||
padding-left: 10px
|
||||
padding-right: 10px
|
||||
|
||||
.half-width
|
||||
width: 50%
|
||||
height: 175px
|
||||
float: left
|
||||
|
||||
.logo-row
|
||||
padding-top: 10px
|
||||
width: 80%
|
||||
margin: 0 auto
|
||||
|
||||
.logo-row img
|
||||
height: 50px
|
||||
margin: 7px
|
||||
|
||||
.lower-titles
|
||||
text-align: center
|
||||
|
||||
.community_columns
|
||||
width: 330px
|
||||
float: left
|
||||
padding-left: 10px
|
||||
padding-right: 10px
|
||||
|
||||
.half_width
|
||||
width: 50%
|
||||
height: 175px
|
||||
float: left
|
||||
|
||||
.logo_row
|
||||
padding-top: 10px
|
||||
width: 80%
|
||||
margin: 0 auto
|
||||
|
||||
.logo_row img
|
||||
height: 50px
|
||||
margin: 7px
|
||||
|
||||
.lower_titles
|
||||
text-align: center
|
||||
img
|
||||
border-radius: 20px
|
||||
@include transition( (background-color 0.2s linear, box-shadow 0.2s linear) )
|
||||
&:hover
|
||||
background-color: #7abee3
|
||||
box-shadow: 0 0 20px #7abee3
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#editor-achievement-edit-view
|
||||
height: 100%
|
||||
|
||||
.treema-root
|
||||
margin: 28px 0px 20px
|
||||
|
||||
|
@ -10,3 +12,9 @@
|
|||
textarea
|
||||
width: 92%
|
||||
height: 300px
|
||||
|
||||
#achievement-view
|
||||
min-height: 200px
|
||||
position: relative
|
||||
padding-left: 200px
|
||||
|
||||
|
|
24
app/styles/editor/component/add-thang-components-modal.sass
Normal file
24
app/styles/editor/component/add-thang-components-modal.sass
Normal file
|
@ -0,0 +1,24 @@
|
|||
#add-thang-components-modal
|
||||
.list-group
|
||||
max-height: 500px
|
||||
overflow: scroll
|
||||
|
||||
.item-title
|
||||
cursor: pointer
|
||||
.glyphicon-chevron-down
|
||||
display: none
|
||||
&.collapsed
|
||||
.glyphicon-chevron-down
|
||||
display: inline
|
||||
.glyphicon-chevron-up
|
||||
display: none
|
||||
|
||||
|
||||
.list-group-item
|
||||
padding: 5px
|
||||
|
||||
.checkbox, .item-title
|
||||
overflow: hidden
|
||||
text-overflow: ellipsis
|
||||
white-space: nowrap
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue