Merge branch 'master' into production
1
.gitignore
vendored
|
@ -77,7 +77,6 @@ coverage/
|
|||
FLOOBITS_README.md
|
||||
|
||||
# mongodb
|
||||
db/
|
||||
bin/node/
|
||||
bin/mongo/
|
||||
|
||||
|
|
15
Vagrantfile
vendored
|
@ -4,17 +4,20 @@
|
|||
# Original content copyright (c) 2014 dpen2000 licensed under the MIT license
|
||||
|
||||
VAGRANTFILE_API_VERSION = "2"
|
||||
Vagrant.require_version ">= 1.5.0"
|
||||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
|
||||
# A VMware compatible box is avaliable from:
|
||||
# https://github.com/spkane/vagrant-boxes/releases/download/v1.0.0/trusty64_vmware.box
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
# Ubuntu 14.04 compatible with both VirtualBox and VMWare Fusion
|
||||
# see https://github.com/phusion/open-vagrant-boxes#readme
|
||||
config.vm.box = "phusion/ubuntu-14.04-amd64"
|
||||
|
||||
config.vm.hostname = "coco-dev"
|
||||
|
||||
config.vm.network "forwarded_port", guest: 3000, host: 3000
|
||||
config.vm.network "forwarded_port", guest: 9485, host: 9485
|
||||
|
||||
config.vm.provision "shell", path: "scripts/vagrant/provision.sh"
|
||||
config.vm.provision "shell", path: "scripts/vagrant/provision.sh", privileged: false
|
||||
|
||||
config.vm.provider "virtualbox" do |v|
|
||||
v.memory = 2048
|
||||
|
@ -22,8 +25,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
end
|
||||
|
||||
config.vm.provider "vmware_fusion" do |v|
|
||||
v.memory = 2048
|
||||
v.cpus = 2
|
||||
v.vmx["memsize"] = "2048"
|
||||
v.vmx["numvcpus"] = 2
|
||||
end
|
||||
|
||||
end
|
||||
|
|
BIN
app/assets/docs/CodeCombatCoursesGettingStartedGuide.pdf
Normal file
BIN
app/assets/images/Adobe_PDF_file_icon_32x32.png
Normal file
After Width: | Height: | Size: 979 B |
BIN
app/assets/images/pages/about/robin_small.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/pages/sales/chat_icon.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
app/assets/images/pages/sales/classroom1.png
Normal file
After Width: | Height: | Size: 119 KiB |
BIN
app/assets/images/pages/sales/classroom2.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
app/assets/images/pages/sales/classroom3.png
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
app/assets/images/pages/sales/classroom4.png
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
app/assets/images/pages/sales/classroom5.png
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
app/assets/images/pages/sales/classroom6.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
app/assets/images/pages/sales/content_table.png
Normal file
After Width: | Height: | Size: 123 KiB |
BIN
app/assets/images/pages/sales/down_arrow.png
Normal file
After Width: | Height: | Size: 438 B |
BIN
app/assets/images/pages/sales/hero_background.png
Normal file
After Width: | Height: | Size: 663 KiB |
BIN
app/assets/images/pages/sales/quote1.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
app/assets/images/pages/sales/quote2.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
app/assets/images/pages/sales/screen1.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
app/assets/images/pages/sales/screen2.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
app/assets/images/twitter_icon.png
Normal file
After Width: | Height: | Size: 471 B |
|
@ -27,6 +27,7 @@
|
|||
<link href="https://plus.google.com/115285980638641924488" rel="publisher" />
|
||||
<link rel="shortcut icon" href="/images/favicon.ico">
|
||||
<link rel="stylesheet" href="/stylesheets/app.css">
|
||||
<link href='//fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script>
|
||||
|
|
8
app/collections/Products.coffee
Normal file
|
@ -0,0 +1,8 @@
|
|||
CocoCollection = require './CocoCollection'
|
||||
Product = require 'models/Product'
|
||||
|
||||
module.exports = class Products extends CocoCollection
|
||||
model: Product
|
||||
url: '/db/products'
|
||||
|
||||
getByName: (name) -> @findWhere { name: name }
|
|
@ -20,18 +20,13 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'account': go('account/MainAccountView')
|
||||
'account/settings': go('account/AccountSettingsRootView')
|
||||
'account/unsubscribe': go('account/UnsubscribeView')
|
||||
#'account/profile': go('user/JobProfileView') # legacy URL, sent in emails
|
||||
'account/profile': go('EmployersView') # Show the not-recruiting-now screen
|
||||
'account/payments': go('account/PaymentsView')
|
||||
'account/subscription': go('account/SubscriptionView')
|
||||
'account/subscription/sale': go('account/SubscriptionSaleView')
|
||||
'account/invoices': go('account/InvoicesView')
|
||||
'account/prepaid': go('account/PrepaidView')
|
||||
|
||||
'admin': go('admin/MainAdminView')
|
||||
'admin/candidates': go('admin/CandidatesView')
|
||||
'admin/clas': go('admin/CLAsView')
|
||||
'admin/employers': go('admin/EmployersListView')
|
||||
'admin/files': go('admin/FilesView')
|
||||
'admin/analytics': go('admin/AnalyticsView')
|
||||
'admin/analytics/subscriptions': go('admin/AnalyticsSubscriptionsView')
|
||||
|
@ -62,9 +57,6 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'contribute/diplomat': go('contribute/DiplomatView')
|
||||
'contribute/scribe': go('contribute/ScribeView')
|
||||
|
||||
'courses/mock1': go('courses/mock1/CoursesView')
|
||||
'courses/mock1/enroll/:courseID': go('courses/mock1/CourseEnrollView')
|
||||
'courses/mock1/:courseID': go('courses/mock1/CourseDetailsView')
|
||||
'courses': go('courses/CoursesView')
|
||||
'Courses': go('courses/CoursesView')
|
||||
'courses/students': go('courses/StudentCoursesView')
|
||||
|
@ -93,8 +85,7 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
'editor/campaign/:campaignID': go('editor/campaign/CampaignEditorView')
|
||||
'editor/poll': go('editor/poll/PollSearchView')
|
||||
'editor/poll/:articleID': go('editor/poll/PollEditView')
|
||||
|
||||
'employers': go('EmployersView')
|
||||
'editor/thang-tasks': go('editor/ThangTasksView')
|
||||
|
||||
'file/*path': 'routeToServer'
|
||||
|
||||
|
@ -126,14 +117,14 @@ module.exports = class CocoRouter extends Backbone.Router
|
|||
|
||||
'preview': go('HomeView')
|
||||
|
||||
'schools': go('SalesView')
|
||||
|
||||
'teachers': go('TeachersView')
|
||||
'teachers/freetrial': go('TeachersFreeTrialView')
|
||||
|
||||
'test(/*subpath)': go('TestView')
|
||||
|
||||
'user/:slugOrID': go('user/MainUserView')
|
||||
#'user/:slugOrID/profile': go('user/JobProfileView')
|
||||
'user/:slugOrID/profile': go('EmployersView') # Show the not-recruiting-now screen
|
||||
|
||||
'*name/': 'removeTrailingSlash'
|
||||
'*name': go('NotFoundView')
|
||||
|
|
|
@ -51,7 +51,11 @@ module.exports.loginUser = (userObject, failure=genericFailure, nextURL=null) ->
|
|||
module.exports.logoutUser = ->
|
||||
FB?.logout?()
|
||||
callback = ->
|
||||
window.location = '/hoc'
|
||||
location = _.result(currentView, 'logoutRedirectURL')
|
||||
if location
|
||||
window.location = location
|
||||
else
|
||||
window.location.reload()
|
||||
res = $.post('/auth/logout', {}, callback)
|
||||
res.fail(genericFailure)
|
||||
|
||||
|
|
|
@ -240,6 +240,7 @@ codeLanguages =
|
|||
python: 'ace/mode/python'
|
||||
clojure: 'ace/mode/clojure'
|
||||
lua: 'ace/mode/lua'
|
||||
java: 'ace/mode/java'
|
||||
io: 'ace/mode/text'
|
||||
|
||||
class CodeLanguagesObjectTreema extends TreemaNode.nodeMap.object
|
||||
|
@ -256,7 +257,9 @@ class CodeTreema extends TreemaNode.nodeMap.ace
|
|||
constructor: ->
|
||||
super(arguments...)
|
||||
@workingSchema.aceTabSize = 4
|
||||
@workingSchema.aceMode ?= mode if mode = codeLanguages[@keyForParent]
|
||||
# TODO: Find a less hacky solution for this
|
||||
@workingSchema.aceMode = mode if mode = codeLanguages[@keyForParent]
|
||||
@workingSchema.aceMode = mode if mode = codeLanguages[@parent?.data?.language]
|
||||
|
||||
class CoffeeTreema extends CodeTreema
|
||||
constructor: ->
|
||||
|
|
|
@ -244,7 +244,7 @@ module.exports.getCoursePraise = getCoursePraise = ->
|
|||
]
|
||||
praise[_.random(0, praise.length - 1)]
|
||||
|
||||
module.exports.getPrepaidCodeAmount = getPrepaidCodeAmount = (price=999, users=0, months=0) ->
|
||||
module.exports.getPrepaidCodeAmount = getPrepaidCodeAmount = (price=0, users=0, months=0) ->
|
||||
return 0 unless users > 0 and months > 0
|
||||
total = price * users * months
|
||||
total
|
||||
|
@ -252,7 +252,7 @@ module.exports.getPrepaidCodeAmount = getPrepaidCodeAmount = (price=999, users=0
|
|||
module.exports.filterMarkdownCodeLanguages = (text) ->
|
||||
return '' unless text
|
||||
currentLanguage = me.get('aceConfig')?.language or 'python'
|
||||
excludedLanguages = _.without ['javascript', 'python', 'coffeescript', 'clojure', 'lua', 'io'], currentLanguage
|
||||
excludedLanguages = _.without ['javascript', 'python', 'coffeescript', 'clojure', 'lua', 'java', 'io'], currentLanguage
|
||||
exclusionRegex = new RegExp "```(#{excludedLanguages.join('|')})\n[^`]+```\n?", 'gm'
|
||||
text.replace exclusionRegex, ''
|
||||
|
||||
|
@ -260,9 +260,11 @@ module.exports.aceEditModes = aceEditModes =
|
|||
'javascript': 'ace/mode/javascript'
|
||||
'coffeescript': 'ace/mode/coffee'
|
||||
'python': 'ace/mode/python'
|
||||
'java': 'ace/mode/java'
|
||||
'clojure': 'ace/mode/clojure'
|
||||
'lua': 'ace/mode/lua'
|
||||
'io': 'ace/mode/text'
|
||||
'java': 'ace/mode/java'
|
||||
|
||||
module.exports.initializeACE = (el, codeLanguage) ->
|
||||
contents = $(el).text().trim()
|
||||
|
|
|
@ -28,7 +28,7 @@ module.exports = class LevelBus extends Bus
|
|||
constructor: ->
|
||||
super(arguments...)
|
||||
@changedSessionProperties = {}
|
||||
highLoad = true
|
||||
highLoad = false
|
||||
[wait, maxWait] = switch
|
||||
when not application.isProduction() then [1, 5] # Save quickly in development.
|
||||
when not highLoad then [4, 10] # Save slowly when in production.
|
||||
|
|
|
@ -245,7 +245,7 @@ module.exports = class LevelLoader extends CocoClass
|
|||
if extantRequiredThangTypes.length < requiredThangTypes.length
|
||||
console.error "Some Thang had a blank required ThangType in components list:", components
|
||||
for thangType in extantRequiredThangTypes
|
||||
url = "/db/thang.type/#{thangType}/version?project=name,components,original,rasterIcon,kind"
|
||||
url = "/db/thang.type/#{thangType}/version?project=name,components,original,rasterIcon,kind,prerenderedSpriteSheetData"
|
||||
@worldNecessities.push @maybeLoadURL(url, ThangType, 'thang')
|
||||
|
||||
onThangNamesLoaded: (thangNames) ->
|
||||
|
|
|
@ -59,6 +59,7 @@ module.exports = class Simulator extends CocoClass
|
|||
success: (taskData) =>
|
||||
return if @destroyed
|
||||
unless taskData
|
||||
@retryDelayInSeconds = 10
|
||||
@trigger 'statusUpdate', "No games to simulate. Trying another game in #{@retryDelayInSeconds} seconds."
|
||||
@simulateAnotherTaskAfterDelay()
|
||||
return
|
||||
|
|
|
@ -128,6 +128,7 @@ module.exports = class SpriteBuilder
|
|||
@colorMap = {}
|
||||
colorGroups = @thangType.get('colorGroups')
|
||||
return if _.isEmpty colorGroups
|
||||
return unless _.size @shapeStore # We don't have the shapes loaded because we are doing a prerendered spritesheet approach
|
||||
colorConfig = @options.colorConfig
|
||||
# colorConfig ?= {team: {hue:0.4, saturation: -0.5, lightness: -0.5}} # test config
|
||||
return if not colorConfig
|
||||
|
|
|
@ -151,7 +151,7 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
lank.layer = @
|
||||
@listenTo(lank, 'action-needs-render', @onActionNeedsRender)
|
||||
@lanks.push lank
|
||||
lank.thangType.initPrerenderedSpriteSheets()
|
||||
lank.thangType.initPrerenderedSpriteSheets() unless currentView.getQueryVariable 'jitSpritesheets'
|
||||
prerenderedSpriteSheet = lank.thangType.getPrerenderedSpriteSheet(lank.options.colorConfig, @defaultSpriteType)
|
||||
prerenderedSpriteSheet?.markToLoad()
|
||||
@loadThangType(lank.thangType)
|
||||
|
@ -273,6 +273,7 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
builder.buildAsync()
|
||||
catch e
|
||||
@resolutionFactor *= 0.9
|
||||
#console.log " Rerendering sprite sheet didn't fit, going down to resolutionFactor", @resolutionFactor, "async", async
|
||||
return @_renderNewSpriteSheet(async)
|
||||
builder.on 'complete', @onBuildSpriteSheetComplete, @, true, builder
|
||||
@asyncBuilder = builder
|
||||
|
@ -290,7 +291,8 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
# get a rough estimate of how much smaller the spritesheet needs to be
|
||||
for image, index in builder.spriteSheet._images
|
||||
total += image.height / builder.maxHeight
|
||||
@resolutionFactor /= (Math.max(1.1, Math.sqrt(total)))
|
||||
@resolutionFactor /= (Math.max(1.25, Math.sqrt(total)))
|
||||
#console.log "#{@name} rerendering new sprite sheet with resolutionFactor", @resolutionFactor, "async", e.async
|
||||
@_renderNewSpriteSheet(e.async)
|
||||
return
|
||||
|
||||
|
@ -357,6 +359,7 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
if prerenderedSpriteSheet and not prerenderedSpriteSheet.loadedImage
|
||||
return
|
||||
containersToRender = thangType.getContainersForActions(actionNames)
|
||||
#console.log 'render segmented', thangType.get('name'), actionNames, colorConfig, 'because we do not have prerendered sprite sheet?', prerenderedSpriteSheet
|
||||
spriteBuilder = new SpriteBuilder(thangType, {colorConfig: colorConfig})
|
||||
for containerGlobalName in containersToRender
|
||||
containerKey = @renderGroupingKey(thangType, containerGlobalName, colorConfig)
|
||||
|
@ -387,6 +390,8 @@ module.exports = LayerAdapter = class LayerAdapter extends CocoClass
|
|||
sprite = new createjs.Sprite(prerenderedSpriteSheet.spriteSheet)
|
||||
sprite.gotoAndStop(i)
|
||||
prerenderedFramesMap[i] = spriteSheetBuilder.addFrame(sprite, null, scale)
|
||||
#else
|
||||
# console.log ' Rerendering singular thang type', thangType.get('name'), thangType.get('spriteType'), colorConfig, actionNames
|
||||
|
||||
actionObjects = _.values(thangType.getActions())
|
||||
animationActions = []
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
multiplayer: "متعدد اللاعبين" # Not currently shown on home page
|
||||
for_developers: "للمطوّرين" # Not currently shown on home page.
|
||||
or_ipad: "أو حمِّل من أجل الآيباد"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "إلعب" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
creating: "جاري إنساء الحساب..."
|
||||
sign_up: "التسجيل"
|
||||
log_in: "تسجيل الدّخول بكلمة السرّ"
|
||||
social_signup: "أو، يمكنك الاشتراك من خلال الفايسبوك أو جوجل+"
|
||||
required: "تحتاج إلى تسجيل الدخول قبل أن تتمكن من السير في هذا الطريق."
|
||||
login_switch: "لديك حساب بالفعل?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
incomplete: "غير مكتمل"
|
||||
timed_out: "تم انتهاء الوقت"
|
||||
failing: "فشل"
|
||||
action_timeline: "عمل الجدول الزمني"
|
||||
click_to_select: "انقر على وحدة لتحديده."
|
||||
control_bar_multiplayer: "متعددة"
|
||||
control_bar_join_game: "تاريخ لعبة"
|
||||
reload: "تحديث"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "إرسال تعليقات"
|
||||
contact_candidate: "الاتصال المرشح" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "إعدادات الحساب"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "العربية", englishDescription: "Arabi
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
multiplayer: "Мултиплейър" # Not currently shown on home page
|
||||
for_developers: "За разработчици" # Not currently shown on home page.
|
||||
or_ipad: "Или свали за iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Нива" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
creating: "Създаване на профил..."
|
||||
sign_up: "Регистриране"
|
||||
log_in: "Вход с парола"
|
||||
social_signup: "Или, можеш да се регистрираш през Facebook или G+:"
|
||||
required: "Трабва да влезеш преди можеш да ходиш на там."
|
||||
login_switch: "Вече имаш акаунт?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
incomplete: "Недовършен"
|
||||
timed_out: "Времето изтече"
|
||||
failing: "Неуспех"
|
||||
action_timeline: "График на действията"
|
||||
click_to_select: "Кликни на нещото за да го избереш."
|
||||
control_bar_multiplayer: "Мултиплейър"
|
||||
control_bar_join_game: "Присъединяване"
|
||||
reload: "Презареди"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
parents_title: "Скъпи Родители: Вашето дете се учи да програмира. Ще му помогнете ли да продължи?"
|
||||
parents_blurb1: "Вашето дете изигра __nLevels__ нива и получи основни познания в програмирането. Развийте интереса в него като му купите абонамент - така то ще може да продължи с игрите."
|
||||
parents_blurb1a: "Програмирането е важно умение което без съмнение вашето дете ще използва когато порасне. До 2020-та, основни познания по програмиране ще са необходими за повече от 77% от работните места, а софтуерните инженери ще са много търсени по света. Знаете ли, че диплома в сферата на информационните технологии е предпоставка за едни от най-високите заплати в индустрията?"
|
||||
parents_blurb2: "За $9.99 USD/месец, вашето дете ще получава нови задачи всяка седмица, както и персонална помощ по електронната поща от професионални програмисти."
|
||||
parents_blurb2: "За ${{price}} USD/месец, вашето дете ще получава нови задачи всяка седмица, както и персонална помощ по електронната поща от професионални програмисти."
|
||||
parents_blurb3: "Без Риск: 100% гаранция за възстановяване на средствата, прекратяване на абонамента с едно натискане на бутон."
|
||||
payment_methods: "Начини на плащане"
|
||||
payment_methods_title: "Възможни начини на плащане"
|
||||
payment_methods_blurb1: "В момента приемаме кредитни карти и Alipay." # {change}
|
||||
payment_methods_blurb2: "Ако желаете алтернативна форма на плащане, свържете се с нас"
|
||||
sale_already_subscribed: "Вече имате абонамент!"
|
||||
sale_blurb1: "Спестете $21" # {change}
|
||||
sale_blurb2: "от редовната абонаментна такса от $120 за цялата година!"
|
||||
sale_button: "Разпродажба!"
|
||||
sale_button_title: "Спестете $21 като направите абонамент за 1 година" # {change}
|
||||
sale_click_here: "Кликнете Тук"
|
||||
sale_ends: "Завършва"
|
||||
sale_extended: "*Съществуващият абонамент ще бъде продължен с 1 година."
|
||||
sale_feature_here: "Ето какво получавате:"
|
||||
sale_feature2: "Достъп до 9 силни <strong>нови герои</strong> с уникални умения!"
|
||||
sale_feature4: "<strong>42,000 скъпоценни камъни бонус</strong> присъдени веднага!"
|
||||
sale_continue: "Готови ли сте да продължите приключението?"
|
||||
sale_limited_time: "Офертата е достъпна за ограничен период от време!"
|
||||
sale_new_heroes: "Нови герои!"
|
||||
sale_title: "Назад към Училищната Разпродажба"
|
||||
sale_view_button: "Купи едногодишен абонамент за"
|
||||
sale_button_title: "Спестете ${{discount}} като направите абонамент за 1 година" # {change}
|
||||
stripe_description: "Месечен Абонамент"
|
||||
stripe_description_year_sale: "Едногодишен абонамент ($21 намаление)" # {change}
|
||||
stripe_description_year_sale: "Едногодишен абонамент (${{discount}} намаление)" # {change}
|
||||
subscription_required_to_play: "Необходим ви е абонамент за да играете това ниво."
|
||||
unlock_help_videos: "Абонирайте се за да отключите всичките видео уроци."
|
||||
personal_sub: "Персонален абонамент" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
currently_free_until: "В момента имате абонамент до"
|
||||
was_free_until: "Имали сте безплатен абонамент до"
|
||||
managed_subs: "Управлявани Абонаменти"
|
||||
managed_subs_desc: "Добавете абонаменти на други играчи (студенти, деца и т.н.)"
|
||||
managed_subs_desc_2: "Получателите трябва да имат CodeCombat акаунт, асоцииран с email адреса, който предоставяте."
|
||||
group_discounts: "Групови намаления"
|
||||
group_discounts_1: "Също предлагаме специални намаления за групово абониране."
|
||||
group_discounts_1st: "Първи абонамент"
|
||||
group_discounts_full: "Пълната цена"
|
||||
group_discounts_2nd: "Абонаменти 2-11"
|
||||
group_discounts_20: "20% намаление"
|
||||
group_discounts_12th: "Абонаменти 12+"
|
||||
group_discounts_40: "40% намаление"
|
||||
subscribing: "Абониране..."
|
||||
recipient_emails_placeholder: "Въведете email адресите на абонатите, по един на ред."
|
||||
subscribe_users: "Абониране на потребители"
|
||||
users_subscribed: "Абонирани потребители:"
|
||||
no_users_subscribed: "Няма абонирани потребители, моля проверете email адресите отново."
|
||||
current_recipients: "Текущи получатели"
|
||||
unsubscribing: "Прекратяване на абонамента..." # {change}
|
||||
subscribe_prepaid: "Кликнете 'Абонамент', за да използвате предплатен код"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "български език", englishDescri
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Pro vývojáře" # Not currently shown on home page.
|
||||
or_ipad: "Nebo stáhnout pro iPad"
|
||||
hoc_class_code: "Mám heslo pro třídu"
|
||||
hoc_enter: "Vstoupit"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Úrovně" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
creating: "Vytvářím účet..."
|
||||
sign_up: "Přihlášení"
|
||||
log_in: "zadejte vaše heslo"
|
||||
social_signup: "Nebo se přihlašte přes Facebook nebo Google+:"
|
||||
required: "Nejprve se musíte přihlásit."
|
||||
login_switch: "Máte již účet?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
incomplete: "Nedokončený"
|
||||
timed_out: "Vypršel čas"
|
||||
failing: "Selhání"
|
||||
action_timeline: "Časová osa"
|
||||
click_to_select: "Vyberte kliknutím."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Vstoupit do hry"
|
||||
reload: "Znovu načíst"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
parents_title: "Vaše dítě se naučí programovat." # {change}
|
||||
parents_blurb1: "Pomocí CodeCombat se vaše dítě učí psaním opravdového kódu. Začínají učením se základním příkazů a postupně se přidávají pokročilejší témata."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "Za $9.99 USD/měsíc, získají nové výzvy každý týden a osobní emailovou podporu od profesionálních programátorů." # {change}
|
||||
parents_blurb2: "Za ${{price}} USD/měsíc, získají nové výzvy každý týden a osobní emailovou podporu od profesionálních programátorů." # {change}
|
||||
parents_blurb3: "Bez rizika: 100% záruka vrácení peněz, jednoduché zrušení předplatného na 1 kliknutí."
|
||||
payment_methods: "Platební metody"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
sale_button: "Výprodej!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Měsíční předplatné"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Pro hraní této úrovně potřebujete předplatné."
|
||||
unlock_help_videos: "Kupte si předplatné pro odemčení všech tutoriálových videí."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "Systemové požadavky"
|
||||
sys_requirements_1: "Protože CodeCombat je hra, pro počítače je to více náročnější než přehrávání videa. Optimalizovali jsme CodeCombat, aby běžel rychle na všech moderních prohlížečích a dokonce i na starších mašinách, takže každý může hrát. Takže tady jsou naše návrhy, jak si co nejvíce užít váš Hour of Code zážitek:" # {change}
|
||||
sys_requirements_2: "Používejte nejnovější verzi Chromu nebo Firefoxu." # {change}
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
screenshot_included: "Snímek obrazovky zahrnut."
|
||||
where_reply: "Kam máme odpovědět?"
|
||||
send: "Odeslat připomínku"
|
||||
contact_candidate: "Kontaktovat kandidáta" # Deprecated
|
||||
recruitment_reminder: "Použijte tento formulář pro kontaktování kandidátů, se kterými chcete udělat rozhovor. Pamatujte, že CodeCombat si účtuje 15% z platu po dobu prvního roku. Tento poplatek je splatný při náboru zaměstancnů a je vratný do 90 dní pokud zaměstnanec nezůstane zaměstnán. Zaměstnanci na částečný úvazek, dálkový a zaměstnanci se smlouvami jsou zdarma, stejně jako stážisté." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Nastavení účtu"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
saved: "Změny uloženy"
|
||||
password_mismatch: "Hesla nesouhlasí."
|
||||
password_repeat: "Opakujte prosím vaše heslo."
|
||||
job_profile: "Pracovní profil" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Váš pracovní profil byl schválen. Zaměstnavatelé ho uvidí do doby, než ho neoznačíte jako neaktivní nebo nebude změněn po dobu 4 týdnů."
|
||||
job_profile_explanation: "Ahoj! Vyplň tohle a kontaktujeme tě ohledně nalezení práce jako vývojář softwaru."
|
||||
sample_profile: "Podívat se na ukázkový profil"
|
||||
view_profile: "Podívat se na profil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Klávesové zkratky"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
payments: "Platby"
|
||||
prepaid_codes: "Předplacené kódy"
|
||||
purchased: "Zaplaceno"
|
||||
sale: "Výprodej"
|
||||
subscription: "Předplatné"
|
||||
invoices: "Faktury"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
email_settings_url: " nastavení emailu"
|
||||
email_description_suffix: "nebo skrze odkazy v odeslaných emailech si můžete nastavit nebo se kdykoliv odhlásit z naší korespondence."
|
||||
cost_title: "Cena"
|
||||
cost_description: "Momentálně je CodeCombat 100% zdarma! Naší snahou je udržet přístup zdarma, abychom dali možnost hrát co největšímu množství lidí. V případě nutnosti budeme muset přejít na placený vstup nebo platbu za přístup k určitému obsahu, ale raději bychom se tomu vyhnuli. S trochou štěstí doufáme v následující plán monetizace:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights a Licence"
|
||||
contributor_title: "Licenční ujednání přispívatelů (CLA)"
|
||||
contributor_description_prefix: "Všichni přispívatelé jak na webu tak do projektu na GitHubu spadají pod naše "
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
nutshell_title: "Ve zkratce"
|
||||
nutshell_description: "Vše co je poskytnuto v editoru úrovní je zdarma a mžete toho využít při vytváření úrovní. Ale vyhrazujeme si právo omezit distribuci úrovní samotných (těch, které byly vytvořeny na codecombat.com), takže v budoucnu bude možno tyto zpoplatnit, bude-li to v nejhorším případě nutné"
|
||||
canonical: "Anglická verze tohoto dokumentu je původní, rozhodující verzí. Nastane-li rozdíl v překladu, Anglická verze bude mít vždy přednost."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Ceny v turnaji" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
license: "licence"
|
||||
oreilly: "ebook vlastního výběru"
|
||||
|
||||
account_profile:
|
||||
settings: "Nastavení" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Upravit Profil"
|
||||
done_editing: "Úpravy dokončeny"
|
||||
profile_for_prefix: "Profil pro "
|
||||
profile_for_suffix: ""
|
||||
featured: "Uvedeno"
|
||||
not_featured: "Neuvedeno"
|
||||
looking_for: "Hledám:"
|
||||
last_updated: "Naposled aktualizováno:"
|
||||
contact: "Kontakt"
|
||||
active: "Právě hledá nabídky na pohovor"
|
||||
inactive: "Právě nehledá nabídky na pohovor"
|
||||
complete: "dokončeno"
|
||||
next: "Další"
|
||||
next_city: "město?"
|
||||
next_country: "vyberte vaši zemi."
|
||||
next_name: "jméno?"
|
||||
next_short_description: "napište krátký popisek."
|
||||
next_long_description: "popište vaši vysněnou pozici."
|
||||
next_skills: "vypište alespoň pět dovedností."
|
||||
next_work: "vypište vaši pracovní historii."
|
||||
next_education: "vypište vaše tituly."
|
||||
next_projects: "ukažte nám tři projekty, na kterých jste pracovali."
|
||||
next_links: "přidejte jakékoliv osobní nebo sociální odkazy."
|
||||
next_photo: "přidejte dodatečnou profesionální fotku."
|
||||
next_active: "označte se jako \"Právě hledá nabídky na pohovor\"."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Osobní stránka"
|
||||
links_header: "Osobní odkazy"
|
||||
links_blurb: "Odkažte jakoukoliv jinou stránku nebo profil, kterou chcete vyzdvihnout, jako váš GitHub, váš LinkedIn, nebo váš blog."
|
||||
links_name: "Název odkazu"
|
||||
links_name_help: "Kam odkazujete?"
|
||||
links_link_blurb: "Odkaz"
|
||||
basics_header: "Update basic info"
|
||||
basics_active: "Otevřen nabídkám"
|
||||
basics_active_help: "Chcete nyní nabídku pohovoru?"
|
||||
basics_job_title: "Název vysněné práce"
|
||||
basics_job_title_help: "Jakou práci hledáte?"
|
||||
basics_city: "Město"
|
||||
basics_city_help: "Město, ve kterém chcete pracovat (nebo ve kterém nyní žijete)."
|
||||
basics_country: "Země"
|
||||
basics_country_help: "Země, ve které chcete pracovat (nebo ve které nyní žijete)."
|
||||
basics_visa: "USA pracovní status"
|
||||
basics_visa_help: "Jste autorizován pro práci v USA, nebo potřebujete visa sponzorství? (Pokud žijete v Kanadě nebo Austrálii, zaškrtněte Autorizováno.)"
|
||||
basics_looking_for: "Hledám"
|
||||
basics_looking_for_full_time: "Plný úvazek"
|
||||
basics_looking_for_part_time: "Částečný úvazek"
|
||||
basics_looking_for_remote: "Dálkovou práci"
|
||||
basics_looking_for_contracting: "Smluvní práci"
|
||||
basics_looking_for_internship: "Stáž"
|
||||
basics_looking_for_help: "Jakou chcete pozici vývojáře?"
|
||||
name_header: "Vyplňte své jméno"
|
||||
name_anonymous: "Anonymní vývojář"
|
||||
name_help: "Jméno, pod kterým budete vystupovat, jako \"Jan Novák\"."
|
||||
short_description_header: "Napište krátký popis sama sebe"
|
||||
short_description_blurb: "Přidejte slogat, aby se o vás zaměstnavatel dozvěděl více."
|
||||
short_description: "Slogan"
|
||||
short_description_help: "Kdo jste, a za čím si jdete? 140 znaků max."
|
||||
skills_header: "Dovednosti"
|
||||
skills_help: "Označte relevantní vývojářské dovednosti v pořadí zdatnosti."
|
||||
long_description_header: "Popište vysněnou pozici"
|
||||
long_description_blurb: "Řekněte zaměstavatelům jak jste úžasní a jakou roli chcete."
|
||||
long_description: "Vlastní popis"
|
||||
long_description_help: "Popište sebe, abyste zaujali zaměstnavatele. Zanechte to krátké a výstižné. Doporučujeme navržení pozice, která vás nejvíce zajímá. 600 znaků max."
|
||||
work_experience: "Pracovní zkušenosti"
|
||||
work_header: "Vypište vaši pracovní historii"
|
||||
work_years: "Let zkušeností"
|
||||
work_years_help: "Kolik let profesionálních zkušenost (dostávat zaplaceno) vyvýjením softwaru máte?"
|
||||
work_blurb: "Vypište vaše pracovní zkušenosti, nejnovější jako první."
|
||||
work_employer: "Zaměstnavatel"
|
||||
work_employer_help: "Název vašeho zaměstnavatele."
|
||||
work_role: "Název práce"
|
||||
work_role_help: "Jak se nazývala vaše práce nebo role?"
|
||||
work_duration: "Trvání"
|
||||
work_duration_help: "Jak dlouho jste tam pracoval?"
|
||||
work_description: "Popisek"
|
||||
work_description_help: "Co jste tam dělal? (140 znaků; nepovinné)"
|
||||
education: "Vzdělání"
|
||||
education_header: "Vypište vaše akademické snažení"
|
||||
education_blurb: "Vypište své akademické vzdělání."
|
||||
education_school: "Škola"
|
||||
education_school_help: "Název vaší školy."
|
||||
education_degree: "Titul"
|
||||
education_degree_help: "Jaký je váš titul a obor studia?"
|
||||
education_duration: "Datumy"
|
||||
education_duration_help: "Kdy?"
|
||||
education_description: "Popisek"
|
||||
education_description_help: "Vyzdvihněte cokoliv o této vzdělávací zkušenosti. (140 znaků; nepovinné)"
|
||||
our_notes: "Poznámky CodeCombatu"
|
||||
remarks: "Poznámky"
|
||||
projects: "Projekty"
|
||||
projects_header: "Přidejte 3 projekty"
|
||||
projects_header_2: "Projekty (Nejlepší 3)"
|
||||
projects_blurb: "Vyzdvihněte vaše projekty k ohromení zaměstnavatelů."
|
||||
project_name: "Název projektu"
|
||||
project_name_help: "Jak se projekt jmenoval?"
|
||||
project_description: "Popisek"
|
||||
project_description_help: "Krátce popište projekt."
|
||||
project_picture: "Obrázek"
|
||||
project_picture_help: "Nahrajte 230x115px nebo větší obrázek ukazující projekt."
|
||||
project_link: "Odkaz"
|
||||
project_link_help: "Odkaz na projekt."
|
||||
player_code: "Kód hráče"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Omlouváme se, CodeCombat právě nepřijímá další žadatele."
|
||||
deprecation_warning: "Zaměřujeme se na začátečnickou úroveň, místo toho, abychom nalézali vývojářské experty."
|
||||
hire_developers_not_credentials: "Najímejte vývojáře, ne jen ty s tituly." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Začnětě"
|
||||
already_screened: "Již jsme si technicky prověřili všechny naše kandidáty"
|
||||
filter_further: ", ale můžete si také zapnout filtry:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "USA autorizováno"
|
||||
filter_visa_no: "Neautorizováno"
|
||||
filter_education_top: "Nejlepší škola"
|
||||
filter_education_other: "Jiné"
|
||||
filter_role_web_developer: "Webový vývojář"
|
||||
filter_role_software_developer: "Softwarový vývojářr"
|
||||
filter_role_mobile_developer: "Mobilní vývojář"
|
||||
filter_experience: "Zkušený"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Čerstvý absolvent"
|
||||
filter_experience_student: "Vysokoškolák"
|
||||
filter_results: "výsledky"
|
||||
start_hiring: "Začít přijímat."
|
||||
reasons: "Tři důvody, pro byste měli přijímat přes nás:"
|
||||
everyone_looking: "Každý zde hledá svou další příležitost."
|
||||
everyone_looking_blurb: "Zapomeňte na 20% LinkedIn InMail míru odezvy. Každý, který je uveden na této stránce chce najít svou další pozici a odpoví na váš požadavek na představení se."
|
||||
weeding: "Opřete se; odstranili jsme všechny mouchy za vás."
|
||||
weeding_blurb: "Každý hráč, který je uveden byl prověřen o svých technických dovednostech. Kandidáti také uvádí poznámky na svých profilech, aby vám ušetřili čas."
|
||||
pass_screen: "Projdou vašimi technickými prověrkami."
|
||||
pass_screen_blurb: "Prohlédněte si kód každého kandidáta. Takto zjistíte, jestli se vám kandidát bude hodit či nikoliv."
|
||||
make_hiring_easier: "Ulehčete mi přijímání zaměstananců, prosím."
|
||||
what: "Co je CodeCombat?"
|
||||
what_blurb: "CodeCombat je multiplayerová prohlížečová programovací hra. Hráči píší köd, kterým ovládají jejich jednotky v boji proti jiným vývojářům. Naši hráči mají dobré zkušenosti s technikou."
|
||||
cost: "Kolik si účtujeme?"
|
||||
cost_blurb: "Účtujeme si 15% z platu po dobu prvního roku a nabízíme 100% záruku vrácení peněz po dobu 90 dní. Neúčtujeme si za kandidáty, se kterými se již aktivně vede pohovor ve vaší společnosti."
|
||||
candidate_name: "Jméno"
|
||||
candidate_location: "Umístění"
|
||||
candidate_looking_for: "Hledá"
|
||||
candidate_role: "Role"
|
||||
candidate_top_skills: "Nejlepší dovednosti"
|
||||
candidate_years_experience: "Roků zkušeností"
|
||||
candidate_last_updated: "Naposled aktualizováno"
|
||||
candidate_who: "Kdo"
|
||||
featured_developers: "Uvedení vývojáři"
|
||||
other_developers: "Jiní vývojáři"
|
||||
inactive_developers: "Neaktivní vývojáři"
|
||||
|
||||
admin:
|
||||
av_espionage: "Špionáž" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email nebo jméno"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "čeština", englishDescription: "Czech", tr
|
|||
av_entities_sub_title: "Entity"
|
||||
av_entities_users_url: "Uživatelé"
|
||||
av_entities_active_instances_url: "Aktivní instance"
|
||||
av_entities_employer_list_url: "Seznam zaměstnavatelů"
|
||||
av_entities_candidates_list_url: "Seznam kandidátů"
|
||||
av_entities_user_code_problems_list_url: "Seznam problémů uživatelských kódů"
|
||||
av_other_sub_title: "Ostatní"
|
||||
av_other_debug_base_url: "Base (pro debugování base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "For Udviklere" # Not currently shown on home page.
|
||||
or_ipad: "Eller download til iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Spil" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
creating: "Opretter Konto..."
|
||||
sign_up: "Registrer"
|
||||
log_in: "Log ind med password"
|
||||
social_signup: "Eller du kan skrive dig op med Facebook eller G+:"
|
||||
required: "Du skal logge ind før du kan gå den vej."
|
||||
login_switch: "Har du allerede en konto?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
incomplete: "Ufærdig"
|
||||
timed_out: "Løb tør for tid"
|
||||
failing: "Fejler"
|
||||
action_timeline: "Handlingstidslinje"
|
||||
click_to_select: "Klik på en enhed for at vælge"
|
||||
control_bar_multiplayer: "Flerspiller"
|
||||
control_bar_join_game: "Tilslut spil"
|
||||
reload: "Genindlæs"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Kontoindstillinger"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
saved: "Ændringer Gemt"
|
||||
password_mismatch: "Password matcher ikke."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profil for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "dansk", englishDescription: "Danish", trans
|
|||
# av_entities_sub_title: "Entities"
|
||||
av_entities_users_url: "Brugere"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Andre"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
multiplayer: "Mehrspieler" # Not currently shown on home page
|
||||
for_developers: "Für Entwickler" # Not currently shown on home page.
|
||||
or_ipad: "Oder für iPad runterladen"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Spielen" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
creating: "Erzeuge Account..."
|
||||
sign_up: "Neuen Account anlegen"
|
||||
log_in: "mit Passwort einloggen"
|
||||
social_signup: "oder, du registriest dich über Facebook oder G+:"
|
||||
required: "Du musst dich vorher einloggen um dort hin zu gehen."
|
||||
login_switch: "Du hast bereits einen Account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
incomplete: "Unvollständig"
|
||||
timed_out: "Zeit abgelaufen"
|
||||
# failing: "Failing"
|
||||
action_timeline: "Aktionszeitlinie"
|
||||
click_to_select: "Klicke auf eine Einheit, um sie auszuwählen."
|
||||
control_bar_multiplayer: "Mehrspieler"
|
||||
control_bar_join_game: "Spiel beitreten"
|
||||
reload: "Neu laden"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info für Lehrer"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Sende Feedback"
|
||||
contact_candidate: "Kontaktiere Kandidaten" # Deprecated
|
||||
recruitment_reminder: "Benutzen Sie dieses Formular um Kontakt zu Kandidaten aufzunehmen, an denen Sie interessiert sind. Bedenken Sie das CodeCombat 15% des ersten Jahresgehaltes berechnet. Diese Gebühr wird fällig wenn Sie den Kandidaten einstellen und ist für 90 Tage rückerstattungsfähig, sollte der Mitarbeiter nicht eingestellt bleiben. Mitarbeiter die für Teilzeit, Remote oder eine Auftragsarbeit eingestellt werden sind kostenlos, das gilt auch für Praktikanten." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Accounteinstellungen"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
saved: "Änderungen gespeichert"
|
||||
password_mismatch: "Passwörter stimmen nicht überein."
|
||||
password_repeat: "Bitte wiederhole dein Passwort."
|
||||
job_profile: "Jobprofil" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Dein Jobprofil wurde von CodeCombat freigegeben. Arbeitgeber können dieses solange einsehen, bis du es als inaktiv markiert oder wenn innerhalb von vier Wochen keine Änderung daran vorgenommen wurde."
|
||||
job_profile_explanation: "Hi! Fülle dies aus und wir melden uns bei dir bezüglich des Auffindens eines Jobs als Programmierer"
|
||||
sample_profile: "Ein Beispielprofil ansehen"
|
||||
view_profile: "Dein Profil ansehen"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Tastaturkürzel"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
email_settings_url: "deiner Emaileinstellungen"
|
||||
email_description_suffix: "oder durch von uns gesendete Links kannst du jederzeit deine Einstellungen ändern und Abonnements kündigen."
|
||||
cost_title: "Kosten"
|
||||
cost_description: "CodeCombat ist zur Zeit 100% kostenlos! Eines unserer Hauptziele ist, es dabei zu belassen, so dass es so viele Leute wie möglich spielen können, unabhängig davon in welcher Lebenssituation sie sich befinden. Falls dunkle Wolken aufziehen, könnten wir manche Inhalte im Rahmen eines Abonnements anbieten, aber lieber nicht. Mit etwas Glück können wir die Firma erhalten durch:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights und Lizenzen"
|
||||
contributor_title: "Contributor License Agreement"
|
||||
contributor_description_prefix: "Alle Beiträge, sowohl auf unserer Webseite als auch in unserem GitHub Repository, unterliegen unserer"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
nutshell_title: "Zusammenfassung"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
canonical: "Die englische Version dieses Dokuments ist die definitive, kanonische Version. Sollte es Unterschiede zwischen den Übersetzungen geben, dann hat das englische Dokument Vorrang."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Turnierpreise" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
license: "Lizenz"
|
||||
oreilly: "Ebook deiner Wahl"
|
||||
|
||||
account_profile:
|
||||
settings: "Einstellungen" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Profil editieren"
|
||||
done_editing: "Editierung beenden"
|
||||
profile_for_prefix: "Profil von "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "Suche nach:"
|
||||
last_updated: "zuletzt geändert:"
|
||||
contact: "Kontakt"
|
||||
active: "Suche jetzt nach Interview-Angeboten"
|
||||
inactive: "Suche momentan nicht nach Angeboten"
|
||||
complete: "komplett"
|
||||
# next: "Next"
|
||||
next_city: "Stadt?"
|
||||
next_country: "Wähle dein Land."
|
||||
next_name: "Name?"
|
||||
next_short_description: "Schreibe eine kurze Beschreibung."
|
||||
next_long_description: "Beschreibe deine gewünschte Position"
|
||||
next_skills: "Liste mindestens fünf Fähigkeiten."
|
||||
next_work: "Liste deine berufliche Erfahrung chronologisch auf."
|
||||
next_education: "Erzähle von deinen schulischen Martyrien."
|
||||
next_projects: "Zeige bis zu 3 Projekte an denen du gearbeitet hast."
|
||||
next_links: "Füge beliebige persönliche oder soziale Links hinzu."
|
||||
next_photo: "Füge ein optionales professionelles Foto hinzu."
|
||||
next_active: "Markiere dich empfänglich für Job-Angebote um in Suchergebnissen zu erscheinen."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Persönliche Seite"
|
||||
links_header: "Persönliche Links"
|
||||
links_blurb: "Verlinke zu anderen Seiten oder Profilen die du hervorheben möchtest, wie z.B. dein GitHub, dein LinkedIn oder deinen Blog."
|
||||
links_name: "Link-Name"
|
||||
links_name_help: "Wozu verlinkst du?"
|
||||
links_link_blurb: "Link URL"
|
||||
basics_header: "Aktualisiere Grundangaben"
|
||||
basics_active: "Offen für Angebote"
|
||||
basics_active_help: "Möchtest du nun Angebote für Vorstellungsgespräche erhalten?"
|
||||
basics_job_title: "Gewünschter Job-Titel"
|
||||
basics_job_title_help: "Was für eine Stelle suchst du?"
|
||||
basics_city: "Stadt"
|
||||
basics_city_help: "Stadt in der du arbeiten möchtest (oder jetzt lebst)."
|
||||
basics_country: "Land"
|
||||
basics_country_help: "Land in dem du arbeiten möchtest (oder jetzt lebst)."
|
||||
basics_visa: "US Arbeitserlaubnis"
|
||||
basics_visa_help: "Bist du berechtigt in den USA zu arbeiten oder benötigst du Visa Sponsoring? (Wenn du in Kanada oder Australien lebst, markiere berechtigt.)"
|
||||
basics_looking_for: "Suche nach"
|
||||
basics_looking_for_full_time: "Vollzeit"
|
||||
basics_looking_for_part_time: "Teilzeit"
|
||||
basics_looking_for_remote: "Remote"
|
||||
basics_looking_for_contracting: "Vertragsarbeit"
|
||||
basics_looking_for_internship: "Praktikum"
|
||||
basics_looking_for_help: "Was für eine Art Entwickler-Position suchst du?"
|
||||
name_header: "Trage deinen Namen ein"
|
||||
name_anonymous: "Anonymer Entwickler"
|
||||
name_help: "Name den Arbeitgeber sehen sollen, z.B. 'Nick Winter'."
|
||||
short_description_header: "Schreibe einen kurzen Text über dich"
|
||||
# short_description_blurb: "Add a tagline to help an employer quickly learn more about you."
|
||||
# short_description: "Tagline"
|
||||
short_description_help: "Wer bist du und wonach suchst du? 140 Zeichen max."
|
||||
skills_header: "Fähigkeiten"
|
||||
# skills_help: "Tag relevant developer skills in order of proficiency."
|
||||
long_description_header: "Beschreibe deine gewünschte Position"
|
||||
long_description_blurb: "Teile Arbeitgebern mit wie toll du bist und nach welcher Position du suchst."
|
||||
# long_description: "Self Description"
|
||||
# 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: "Berufserfahrung"
|
||||
work_header: "Liste deine Berufserfahrung chronologisch auf"
|
||||
work_years: "Jahre der Erfahrung"
|
||||
work_years_help: "Wieviele Jahre professionelle Erfahrung (bezahlte Arbeit) hast du mit der Entwicklung von Software?"
|
||||
work_blurb: "Liste deine relevante Berufserfahrung auf, letzte Tätigkeit zuerst."
|
||||
work_employer: "Arbeitgeber"
|
||||
work_employer_help: "Name deines Arbeitgebers."
|
||||
work_role: "Jobtitel"
|
||||
work_role_help: "Was war dein Jobtitel oder deine Rolle?"
|
||||
work_duration: "Dauer"
|
||||
work_duration_help: "Wann warst du dort?"
|
||||
work_description: "Beschreibung"
|
||||
work_description_help: "Was hast du dort gemacht (140 Zeichen; optional)"
|
||||
education: "Schulbildung"
|
||||
education_header: "Erzähle von deinen akademischen Martyrien"
|
||||
education_blurb: "Liste deine akademischen Martyrien."
|
||||
education_school: "Schule"
|
||||
education_school_help: "Name deiner Schule."
|
||||
education_degree: "Abschluss"
|
||||
education_degree_help: "Was war dein Abschluss und deine Fachrichtung?"
|
||||
education_duration: "Daten"
|
||||
education_duration_help: "Wann?"
|
||||
education_description: "Beschreibung"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
our_notes: "CodeCombat's Notizen"
|
||||
remarks: "Kommentare"
|
||||
projects: "Projekte"
|
||||
projects_header: "Füge 3 Projekte hinzu"
|
||||
projects_header_2: "Projekte (Top 3)"
|
||||
projects_blurb: "Hebe deine Projekte hervor um Arbeitgeber zu verblüffen."
|
||||
project_name: "Projekt Name"
|
||||
project_name_help: "Wie wurde das Projekt genannt?"
|
||||
project_description: "Beschreibung"
|
||||
project_description_help: "Beschreibe kurz das Projekt."
|
||||
project_picture: "Bild"
|
||||
project_picture_help: "Lade ein 230x115px oder größeres Bild hoch, welches das Projekt darstellt."
|
||||
project_link: "Link"
|
||||
project_link_help: "Verlinke zu dem Projekt."
|
||||
player_code: "Spieler Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Stellen Sie Entwickler ein, nicht Qualifikationen." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Legen Sie los"
|
||||
already_screened: "Wir haben alle Kandidaten bereits technisch geprüft"
|
||||
filter_further: ", aber Sie können noch weiter filtern:"
|
||||
filter_visa: "Visum"
|
||||
filter_visa_yes: "US authorisiert"
|
||||
filter_visa_no: "nicht authorisiert"
|
||||
filter_education_top: "Top-Schule"
|
||||
filter_education_other: "Andere"
|
||||
filter_role_web_developer: "Web Entwickler"
|
||||
filter_role_software_developer: "Software Entwickler"
|
||||
filter_role_mobile_developer: "Mobile Entwickler"
|
||||
filter_experience: "Erfahrung"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Vor kurzem promoviert"
|
||||
filter_experience_student: "Student"
|
||||
filter_results: "Ergebnisse"
|
||||
start_hiring: "Beginnen Sie einzustellen."
|
||||
reasons: "Drei Gründe warum Sie durch uns einstellen sollten:"
|
||||
everyone_looking: "Jeder sucht hier nach der nächsten Herausforderung."
|
||||
everyone_looking_blurb: "Vergessen Sie die 20% LinkedIn InMail Antwort-Raten. Jeden den wir auf unseren Webseite listen, sucht nach seiner nächsten Position und wird Ihnen auf Ihren Wunsch zu einem weiteren kennenlernen antworten."
|
||||
weeding: "Lehnen Sie sich zurück; wir haben das Aussortieren für Sie übernommen."
|
||||
weeding_blurb: "Jeden Spieler den wir listen wurde bereits auf seine technischen Fähigkeiten geprüft. Wir führen auch Telefoninterviews mit ausgewählten Kandidaten durch und machen Notizen in ihrem Profil um Ihnen Zeit zu ersparen."
|
||||
pass_screen: "Sie werden Ihre technischen Tests bestehen."
|
||||
pass_screen_blurb: "Prüfen Sie den Code jedes Kandidaten bevor Sie ihn kontaktieren. Ein Arbeitgeber fand heraus das bis zu 5 mal soviele unserer Entwickler sein technisches Screening bestanden als wenn er durch Hacker News eingestellt hätte."
|
||||
make_hiring_easier: "Machen Sie bitte meinen Einstellungsprozess einfachen."
|
||||
what: "Was ist CodeCombat?"
|
||||
what_blurb: "CodeCombat ist ein Mehrspieler Browser-Programmierspiel. Spieler schreiben Code um Ihre Armeen im Kampf gegen andere Entwickler zu steuern. Unsere Spieler habe Erfahrung mit allen wichtigen Tech-Stacks."
|
||||
cost: "Wieviel berechnen wir?"
|
||||
cost_blurb: "Wir berechnen 15% des ersten Jahresgehalts und bieten eine 100% Geld-Zurück-Garantie für 90 Tage an. Wir berechnen nicht für Kandidaten die bereits aktiv an Ihrem Bewerbungsverfahren teilnehmen."
|
||||
candidate_name: "Name"
|
||||
candidate_location: "Standort"
|
||||
candidate_looking_for: "Sucht nach"
|
||||
candidate_role: "Rolle"
|
||||
candidate_top_skills: "Top Fähigkeiten"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
candidate_last_updated: "Zuletzt aktualisiert"
|
||||
candidate_who: "Wer"
|
||||
# featured_developers: "Featured Developers"
|
||||
other_developers: "Andere Entwickler"
|
||||
inactive_developers: "Inaktive Etwickler"
|
||||
|
||||
admin:
|
||||
av_espionage: "Spionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email oder Benutzername"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Deutsch (Österreich)", englishDescription:
|
|||
av_entities_sub_title: "Entitäten"
|
||||
av_entities_users_url: "Benutzer"
|
||||
av_entities_active_instances_url: "Aktive Instanzen"
|
||||
av_entities_employer_list_url: "Arbeitgeberliste"
|
||||
av_entities_candidates_list_url: "Kandidatenliste"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Sonstige"
|
||||
av_other_debug_base_url: "Base (um base.jade zu debuggen)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Für Entwickler" # Not currently shown on home page.
|
||||
or_ipad: "Oder lads fürs iPad abä"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
creating: "Account wird erstellt..."
|
||||
sign_up: "Registriere"
|
||||
log_in: "Mit Passwort ilogge"
|
||||
social_signup: "Du chasch dich au mit Facebook oder G+ registriere:"
|
||||
required: "Du muesch dich zersch ilogge befor du det dure chasch"
|
||||
login_switch: "Häsch scho es Account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
incomplete: "Unvollständig"
|
||||
timed_out: "Ziit abglaufe"
|
||||
failing: "Fehler"
|
||||
action_timeline: "Aktionsziitleiste"
|
||||
click_to_select: "Klick uf e Einheit zum sie uswähle."
|
||||
control_bar_multiplayer: "Mehrspiiler"
|
||||
control_bar_join_game: "Mitspiilä"
|
||||
reload: "Neu lade"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
parents_title: "Liebi Eltere, Ihres Chind isch am Lerne wieme programmiert. Wen Sie im helfe?"
|
||||
parents_blurb1: "Ihres CHind hed __nLevels__ levels gschpilt und hed programmier Basics glernd. Helfed Sie soch dInträssi für sProgrammiere ufrecht zhalte und unterschtützed Sie in idem Sie es Abo chaufed."
|
||||
parents_blurb1a: "Programmiere isch en wichtigi Begabig wo Ihres Chind als Erwachsene sicher wird bruche. Ab 2020 werded 77% vo allne Jobs eifachi Programmierkentniss benötige und die wos behersched werded uf de ganze Welt gsuecht. Hend Sie gwüsst das Programmiere de best bezallti Uni abschluss isch?"
|
||||
parents_blurb2: "Für $9.99 USD/im Monät, würd Ihres Chind jedes Wuche neue und spannendi Challenges becho und professionelle E-Mail Support!"
|
||||
parents_blurb2: "Für ${{price}} USD/im Monät, würd Ihres Chind jedes Wuche neue und spannendi Challenges becho und professionelle E-Mail Support!"
|
||||
parents_blurb3: "Kei Risikos, 100% Geld zrugg Garantie und ganz eifaches deaboniere mid eim Klick"
|
||||
payment_methods: "Zalligs Methode"
|
||||
payment_methods_title: "Akzeptierti Zalligs Methode"
|
||||
payment_methods_blurb1: "Mier akzeptiered immoment Kreditchartene und Alipay." # {change}
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Du bruchsch es Abo um das Level zspile."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
managed_subs: "Abos verwalte"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
group_discounts_1st: "Erstes Abonement"
|
||||
group_discounts_full: "de ganz Priis"
|
||||
group_discounts_2nd: "Aboniere 2-11"
|
||||
group_discounts_20: "20% billiger"
|
||||
group_discounts_12th: "Aboniere 12+"
|
||||
group_discounts_40: "40% billiger"
|
||||
subscribing: "Am Aboniere..."
|
||||
recipient_emails_placeholder: "Gib dini Mails zum Aboniere i, eine pro Linie:"
|
||||
subscribe_users: "Abonier Users"
|
||||
users_subscribed: "Users aboniert:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
unsubscribing: "Am Abo chünde" # {change}
|
||||
subscribe_prepaid: "Klick Aboniere um en PrePaid Code izlöse"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info für Lehrer"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
free_title: "Wie fill choschtets?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
how_much_title: "Wievil choschtet es monatlichs Abo?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Feedback schicke"
|
||||
contact_candidate: "Kandidat kontaktiere" # Deprecated
|
||||
recruitment_reminder: "Benutz das Formular zum mit Kandidate Kontakt ufneh, i die du interessiert bisch. Bhalt in Erinnerig, dass CodeCombat 15% vom erstjöhrige Lohn verrechnet. De Betrag wird fällig, sobald de Programmierer agstellt wird und chan 90 Täg lang zruggverrechnet werde wenn de Agstellti nid agstellt bliibt. Teilziitarbeit, Fernarbeit und temporäri Agstellti sind chostelos, s gliiche gilt für Interni Mitarbeiter." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Account Istellige"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
view_profile: "Dis Profil aluege"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Shortcuts uf de Tastatur"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
email_settings_url: "E-Mail Istellige"
|
||||
email_description_suffix: "oder dur d Links i de E-Mails wo mir schicked, chasch du jederziit dini Preferänze ändere und dich ganz eifach us de Mailing-Liste neh."
|
||||
cost_title: "Chöste"
|
||||
cost_description: "Im Moment isch CodeCombat 100% gratis! Eis vo üsne Hauptziel isch, dass das so bliibt, damit so viel Lüüt wie möglich chönd spiele, egal wo sie sich im Lebe befinded. Sötted dunkli Wolke am Horizont ufzieh chas sii, dass mir müed en Teil vom Inhalt chostepflichtig mache, aber es isch üs lieber, wenn da nid passiert. Mit chli Glück werded mir fähig sii, s Unternehme ufrecht z erhalte und zwor mit:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "Istellige" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Profil bearbeite"
|
||||
done_editing: "Fertig mit bearbeite"
|
||||
profile_for_prefix: "Profil für "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
last_updated: "S letzte Update:"
|
||||
contact: "Kontakt"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
complete: "komplett"
|
||||
next: "Nögst"
|
||||
next_city: "Stadt?"
|
||||
next_country: "wähl dis Land."
|
||||
next_name: "Name?"
|
||||
next_short_description: "schriibe e churzi Beschriibig."
|
||||
next_long_description: "beschriib dini Wunschstell."
|
||||
next_skills: "liste mindestens füf Fähigkeite uf."
|
||||
next_work: "liste din bruefliche Werdegang uf."
|
||||
# next_education: "recount your educational ordeals."
|
||||
next_projects: "Zeig üs bis zu drü Projekt a dene du scho gschaffet hesch."
|
||||
next_links: "füeg persönlichi oder Social Media Links ih."
|
||||
next_photo: "füeg optional es professionells Foti hinzue."
|
||||
next_active: "markier dich selber als offe für Agebot zum i Suechafroge uftauche."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Eigeni Websiite"
|
||||
links_header: "Eigeni Links"
|
||||
links_blurb: "Verlinke anderi Sitene oder Profil wo du willsch hervorhebe, wie zum Bispiel dis GitHub, dis LinkedIn Profil oder din Blog."
|
||||
links_name: "Link Name"
|
||||
links_name_help: "Woane verlinksch?"
|
||||
links_link_blurb: "Link URL"
|
||||
basics_header: "Eifachi infos update"
|
||||
basics_active: "Offe für Agebot"
|
||||
basics_active_help: "Wötsch ez gad Interview Agebot?"
|
||||
basics_job_title: "Erwünschte Job Titel"
|
||||
basics_job_title_help: "Noch welem Job suechsch?"
|
||||
basics_city: "Stadt"
|
||||
basics_city_help: "D Stadt wo du willsch schaffe (oder im Moment wohnsch)."
|
||||
basics_country: "Land"
|
||||
basics_country_help: "Country you want to work in (or live in now)."
|
||||
basics_visa: "US Work Status"
|
||||
basics_visa_help: "Hesch du d Berechtigung zum i de USA schaffe oder bruchsch du e Visa Sponsorship? (Wenn du in Kanada oder Australie wohnsch, markier als berechtigt.)"
|
||||
basics_looking_for: "Ich sueche nach"
|
||||
basics_looking_for_full_time: "Vollziit"
|
||||
basics_looking_for_part_time: "Teilziit"
|
||||
# basics_looking_for_remote: "Remote"
|
||||
# basics_looking_for_contracting: "Contracting"
|
||||
basics_looking_for_internship: "Praktikum"
|
||||
basics_looking_for_help: "Weli Art vo Entwicklerposition möchtisch du?"
|
||||
name_header: "Füll din Name us"
|
||||
name_anonymous: "Anonyme Entwickler"
|
||||
name_help: "De Name wo d Entwickler söled gseh, z.B. 'Nick Winter'."
|
||||
short_description_header: "Schriib e churzi Beschriibi vo dir."
|
||||
short_description_blurb: "Füeg e Tagline hinzue, damit Arbeitgeber chönd schnell öppis über dich erfahre."
|
||||
short_description: "Tagline"
|
||||
short_description_help: "Wer bisch du und noch wa suechsch? 140 Charakter max."
|
||||
skills_header: "Fähigkeite"
|
||||
skills_help: "Tagge relevanti Entwicklerfähigkeite gordnet nach Kenntnis."
|
||||
long_description_header: "Beschriib dini Wunschposition"
|
||||
long_description_blurb: "Verzell de Arbetgeber wie fantastisch du bisch und weli Position du gern hettsch."
|
||||
long_description: "Selbstbeschriibig"
|
||||
long_description_help: "Beschriib dich de potentielle Arbetgeber. Halte es churz und relevant. Mir empfehled, churz d Position z umrahme, wo dich am meiste interessiert. Stilvolli Herabsetzig okay; 600 Charakter max."
|
||||
work_experience: "Arbeitserfahrig"
|
||||
work_header: "Liste dini Arbeitserfahrig uf"
|
||||
work_years: "Johr a Arbeitserfahrig"
|
||||
work_years_help: "Wieviel (bezahlti) Johre Erfahrig hesch du im Bereich Softwareentwicklig?"
|
||||
work_blurb: "Liste dini relevant Arbeitserfahrig uf, s neuste als Ersts."
|
||||
work_employer: "Arbeitgeber"
|
||||
work_employer_help: "Name vo dim Arbeitgeber."
|
||||
work_role: "Job Titel"
|
||||
work_role_help: "Was hesch für en Job Titel / Position gha?"
|
||||
work_duration: "Ziitduur"
|
||||
work_duration_help: "Wenn hesch die Astellig gha?"
|
||||
work_description: "Beschriibig"
|
||||
work_description_help: "Wa hesch du det gmacht? (140 Charakter; optional)"
|
||||
education: "Usbildig"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
education_school: "Schuel"
|
||||
education_school_help: "De Name vo dinere Schuel."
|
||||
education_degree: "Abschluss"
|
||||
education_degree_help: "Was isch din Abschluss und dis Studiefach gsi?"
|
||||
education_duration: "Date"
|
||||
education_duration_help: "Wenn?"
|
||||
education_description: "Beschriibig"
|
||||
education_description_help: "Öppis wo du willsch hervorhebe bezüglich dere Usbildig. (140 Charakter; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
remarks: "Bemerkige"
|
||||
projects: "Projekt"
|
||||
projects_header: "Füeg 3 Projekt hinzue"
|
||||
projects_header_2: "Projekt (Top 3)"
|
||||
projects_blurb: "Hebe dini Projekt hervor zum Arbeitgeber in Stuune z versetze."
|
||||
project_name: "Projektname"
|
||||
project_name_help: "Wie het s Projekt gheisse?"
|
||||
project_description: "Beschriibig"
|
||||
project_description_help: "Beschriib churz dis Projekt."
|
||||
project_picture: "Bild"
|
||||
project_picture_help: "Lad es Bild ufe wo 230x115px oder grösser isch zum dis Projekt präsentiere."
|
||||
project_link: "Link"
|
||||
project_link_help: "Link zum Projekt."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Sorry, CodeCombat rekrutiert grad nid."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Stell Entwickler ah, nid Zügnis." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Dütsch (Schwiiz)", englishDescription: "Ge
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
multiplayer: "Mehrspieler" # Not currently shown on home page
|
||||
for_developers: "Für Entwickler" # Not currently shown on home page.
|
||||
or_ipad: "Oder downloade es hier für das iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Spielen" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
creating: "Erzeuge Account..."
|
||||
sign_up: "Neuen Account anlegen"
|
||||
log_in: "mit Passwort einloggen"
|
||||
social_signup: "oder, du registrierst dich über Facebook oder G+."
|
||||
required: "Du musst dich vorher einloggen diesen Dienst zu nutzen"
|
||||
login_switch: "Hast du schon einen Account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
incomplete: "Unvollständig"
|
||||
timed_out: "Zeit abgelaufen"
|
||||
failing: "Fehlgeschlagen"
|
||||
action_timeline: "Aktionszeitstrahl"
|
||||
click_to_select: "Klicke auf eine Einheit, um sie auszuwählen."
|
||||
control_bar_multiplayer: "Mehrspieler"
|
||||
control_bar_join_game: "Spiel beitreten"
|
||||
reload: "Neu laden"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
parents_title: "Liebe Eltern: Ihr kind erlernt das Programmieren. Wollen Sie es nicht dabei unterstützen?"
|
||||
parents_blurb1: "Ihr Kind hat __nLevels__ Level gemeistert und dabei Grundkenntnisse des Programmierens erlangt. Fördern Sie ihr Kind weiterhin, indem sie mit einem Abonnement weitere Herausforderungen freischalten."
|
||||
parents_blurb1a: "Das Programmieren entwickelt sich zunehmend zu einem Grundwerkzeug, dass in immer mehr Berufen benötigt wird und ohne Zweifel sich im Leben als eine sehr nützliche Fähigkeit erweisen wird."
|
||||
parents_blurb2: "Für 9.99 im Monat, bekommt Ihr Kind jede Woche neue Herausforderungen sowie persönlichen Email Support von erfahrenen Programmierern."
|
||||
parents_blurb2: "Für {{price}} im Monat, bekommt Ihr Kind jede Woche neue Herausforderungen sowie persönlichen Email Support von erfahrenen Programmierern."
|
||||
parents_blurb3: "Kein Risiko: 100% Geld zurück Garantie, und 1-Klick Abokündigung."
|
||||
payment_methods: "Zahlungsarten"
|
||||
payment_methods_title: "Akzeptierte Zahlungsarten"
|
||||
payment_methods_blurb1: "Momentan akzeptieren wir nur Kreditkarten und Alipay." # {change}
|
||||
payment_methods_blurb2: "Wenn Sie auf eine andere Art zahlen wollen, bitte kontaktieren Sie"
|
||||
sale_already_subscribed: "Sie haben bereits ein Abonnement!"
|
||||
sale_blurb1: "Spare $21" # {change}
|
||||
sale_blurb2: "vom regelmäßigen Abonnementpreis von $120 für ein ganzes Jahr!"
|
||||
sale_button: "Angebot!"
|
||||
sale_button_title: "Spare $21 beim Kauf eines Jahresabonnements" # {change}
|
||||
sale_click_here: "Hier klicken"
|
||||
# sale_ends: "Ends"
|
||||
sale_extended: "*Bestehende Abonnements werden um 1 Jahr verlängert."
|
||||
sale_feature_here: "Dies ist im Abonnement enthalten:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
sale_continue: "Bereit das Abenteuer fortzusetzen?"
|
||||
sale_limited_time: "Nur für beschränkte Zeit!"
|
||||
sale_new_heroes: "Neue Helden!"
|
||||
sale_title: "Angebot zum neuen Schuljahr"
|
||||
sale_view_button: "Kaufe ein Jahresabonnement für"
|
||||
sale_button_title: "Spare ${{discount}} beim Kauf eines Jahresabonnements" # {change}
|
||||
stripe_description: "Monatsabo"
|
||||
stripe_description_year_sale: "Jahresabonnement ($21 Angebot)" # {change}
|
||||
stripe_description_year_sale: "Jahresabonnement (${{discount}} Angebot)" # {change}
|
||||
subscription_required_to_play: "Leider musst du ein Abo haben, um dieses Level spielen zu können."
|
||||
unlock_help_videos: "Abonniere, um alle Videoanleitungen freizuschalten."
|
||||
personal_sub: "Persönliches Abonnement" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
currently_free_until: "Du hast aktuell ein kostenloses Abonnement bis zum"
|
||||
was_free_until: "Du hattest ein kostenloses Abonnement bis zum"
|
||||
managed_subs: "Verwaltete Abonnements"
|
||||
managed_subs_desc: "Abonnements für andere Spieler (Studenten, Kinder, usw.) hinzufügen"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
group_discounts: "Gruppenrabatt"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
group_discounts_1st: "Erstes Abonnement (inklusive deinem)" # {change}
|
||||
group_discounts_full: "voller Preis"
|
||||
group_discounts_2nd: "Abonnements 2-11"
|
||||
group_discounts_20: "20% Rabatt"
|
||||
group_discounts_12th: "Abonnement 12+"
|
||||
group_discounts_40: "40% Rabatt"
|
||||
subscribing: "Abonniere..."
|
||||
recipient_emails_placeholder: "Gib die E-Mail-Adressen ein, für die du ein Abonnement übernehmen möchtest, eine pro Zeile."
|
||||
subscribe_users: "Abonnement für Spieler übernehmen"
|
||||
users_subscribed: "Abonnement für Spieler übernommen:"
|
||||
no_users_subscribed: "Abonnement für keine Spieler übernommen, bitte prüfe deine E-Mail-Adressen."
|
||||
current_recipients: "Aktuelle Empfänger"
|
||||
unsubscribing: "Abonnement wird gekündigt..."
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info für Lehrer"
|
||||
intro_1: "CodeCombat ist ein Onlinespiel, dass Programmieren lehrt, indem es Schüler Code in gängigen Programmiersprachen schreiben lässt."
|
||||
intro_2: "Keine Vorkenntnisse nötig!"
|
||||
free_title: "Wie viel kostet es?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "Es gibt 110+ kostenlose Level, die alle Konzepte abedecken."
|
||||
free_2: "Ein monatliches Abonnement verschafft Zugang zu Video-Tutorien and zusätzlichen Übungsleveln."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Für Lehrer ist das Abonnement kostenlos!" # {change}
|
||||
teacher_subs_0: "Wir bieten Lehrern ein kostenloses Abonnement zu evaluirungszwecken." # {change}
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
sub_includes_title: "Was beinhaltet ein Abonnement?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
sub_includes_2: "80+ Übungslevel"
|
||||
sub_includes_3: "Video-Tutorien"
|
||||
sub_includes_4: "Email-Support"
|
||||
sub_includes_5: "10 neue Helden zum Meistern"
|
||||
sub_includes_6: "3500 Juwelen jeden Monat"
|
||||
sub_includes_7: "Private Clans"
|
||||
monitor_progress_title: "Wie verfolge ich die Fortschritte der Schüler?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
who_for_title: "An wen richtet sich CodeCombat?"
|
||||
who_for_1: "Wir empfehlen CodeCombat Schülern im Alter von 9 Jahren und älter. Es werden keine Vorkenntnisse vorausgesetzt."
|
||||
who_for_2: "Wir haben CodeCombat so gestalltet, dass es sowohl Jungen als auch Mädchen ansprechend finden."
|
||||
material_title: "Wie viel Lernstoff gibt es?"
|
||||
material_premium_server: "Bislang gibt es ungefähr 50 Spielstunden verteilt über 190+ Level (mit Abonnement)."
|
||||
material_1: "Ungefähr 25 Spielstunden kostenlosen Inhalts und zusätzliche 15 Spielstunden die mit einem Abonnement freigeschaltet werden."
|
||||
concepts_title: "Welche Konzepte werde abgedeckt?"
|
||||
how_much_title: "Wie viel kostet ein monatliches Abonnement?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
who_for_1: "Wir empfehlen CodeCombat Schülern im Alter von 9 Jahren und älter. Es werden keine Vorkenntnisse vorausgesetzt." # {change}
|
||||
who_for_2: "Wir haben CodeCombat so gestalltet, dass es sowohl Jungen als auch Mädchen ansprechend finden." # {change}
|
||||
more_info_title: "Wo kann ich mehr Information finden?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "System Voraussetzungen"
|
||||
sys_requirements_1: "Ein aktueller Webbrowser. Neuere Versionen von Chrome, Firefox, oder Safari. Internet Explorer 9 oder aktueller."
|
||||
sys_requirements_2: "CodeCombat wird auf dem iPad noch nicht unterstützt." # {change}
|
||||
|
||||
teachers_survey:
|
||||
title: "Lehrerumfrage"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
screenshot_included: "Bildschirmfoto hinzugefügt."
|
||||
where_reply: "Wohin sollen wir antworten?"
|
||||
send: "Sende Feedback"
|
||||
contact_candidate: "Kontaktiere Kandidaten" # Deprecated
|
||||
recruitment_reminder: "Benutzen Sie dieses Formular, um Kontakt zu Kandidaten aufzunehmen, an denen Sie interessiert sind. Bedenken Sie, dass CodeCombat 15% des ersten Jahresgehaltes berechnet. Diese Gebühr wird fällig, wenn Sie den Kandidaten einstellen und ist für 90 Tage rückerstattungsfähig, sollte der Mitarbeiter nicht eingestellt bleiben. Mitarbeiter, die für Teilzeit, Remote oder eine Auftragsarbeit eingestellt werden, sind kostenlos; das gilt auch für Praktikanten." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Accounteinstellungen"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
saved: "Änderungen gespeichert"
|
||||
password_mismatch: "Passwörter stimmen nicht überein."
|
||||
password_repeat: "Bitte wiederhole dein Passwort."
|
||||
job_profile: "Jobprofil" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Dein Jobprofil wurde von CodeCombat freigegeben. Arbeitgeber können dieses solange einsehen, bis du es als inaktiv markiert oder wenn innerhalb von vier Wochen keine Änderung daran vorgenommen wurde."
|
||||
job_profile_explanation: "Hi! Fülle dies aus und wir melden uns bei dir bezüglich des Auffindens eines Jobs als Programmierer"
|
||||
sample_profile: "Ein Beispielprofil ansehen"
|
||||
view_profile: "Dein Profil ansehen"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Tastaturkürzel"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
payments: "Zahlungen"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Gekauft"
|
||||
# sale: "Sale"
|
||||
subscription: "Abo"
|
||||
invoices: "Rechnungen"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
email_settings_url: "deiner Emaileinstellungen"
|
||||
email_description_suffix: "oder durch von uns gesendete Links kannst du jederzeit deine Einstellungen ändern und Abonnements kündigen."
|
||||
cost_title: "Kosten"
|
||||
cost_description: "Alle normalen Level von CodeCombat sind kostenlos spielbar, mit einem Abonnement von $9.99 USD/Monat kann man extra Level Verzweigungen und 3500 Bonus Juwelen pro Monat. Du kannst das Abonnement mit nur einem Klick widerrufen und wir versprechen eine 100% Geld-zurück Garantie."
|
||||
cost_description: "Alle normalen Level von CodeCombat sind kostenlos spielbar, mit einem Abonnement von ${{price}} USD/Monat kann man extra Level Verzweigungen und {{gems}} Bonus Juwelen pro Monat. Du kannst das Abonnement mit nur einem Klick widerrufen und wir versprechen eine 100% Geld-zurück Garantie."
|
||||
copyrights_title: "Copyrights und Lizenzen"
|
||||
contributor_title: "Contributor License Agreement"
|
||||
contributor_description_prefix: "Alle Beiträge, sowohl auf unserer Webseite als auch in unserem GitHub Repository, unterliegen unserer"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
nutshell_title: "Zusammenfassung"
|
||||
nutshell_description: "Jegliche Ressourcen, die wir im Level Editor zur Verfügung stellen, sind für dich frei nutzbar, um Levels zu erstellen. Doch wir behalten uns das Recht vor, die Verbreitung der Levels (welche auf codecombat.com erstellt werden) einzuschränken, so dass in der Zukunft dafür gezahlt werden muss, wenn es das ist, was letztendlich passieren wird."
|
||||
canonical: "Die englische Version dieses Dokuments ist die definitive, kanonische Version. Sollte es Unterschiede zwischen den Übersetzungen geben, dann hat das englische Dokument Vorrang."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Turnierpreise" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
license: "Lizenz"
|
||||
oreilly: "Ebook deiner Wahl"
|
||||
|
||||
account_profile:
|
||||
settings: "Einstellungen" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Profil editieren"
|
||||
done_editing: "Bearbeitung beenden"
|
||||
profile_for_prefix: "Profil von "
|
||||
profile_for_suffix: ""
|
||||
featured: "Featured"
|
||||
not_featured: "Not Featured"
|
||||
looking_for: "Suche nach:"
|
||||
last_updated: "zuletzt geändert:"
|
||||
contact: "Kontakt"
|
||||
active: "Suche jetzt nach Interview-Angeboten"
|
||||
inactive: "Suche momentan nicht nach Angeboten"
|
||||
complete: "komplett"
|
||||
next: "Nächstes"
|
||||
next_city: "Stadt?"
|
||||
next_country: "Wähle dein Land."
|
||||
next_name: "Name?"
|
||||
next_short_description: "Schreibe eine kurze Beschreibung."
|
||||
next_long_description: "Beschreibe deine gewünschte Position"
|
||||
next_skills: "Liste mindestens fünf Fähigkeiten."
|
||||
next_work: "Liste deine berufliche Erfahrung chronologisch auf."
|
||||
next_education: "Erzähle von deinen schulischen Martyrien."
|
||||
next_projects: "Zeige bis zu 3 Projekte an denen du gearbeitet hast."
|
||||
next_links: "Füge beliebige persönliche oder soziale Links hinzu."
|
||||
next_photo: "Füge ein optionales professionelles Foto hinzu."
|
||||
next_active: "Markiere dich empfänglich für Job-Angebote um in Suchergebnissen zu erscheinen."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Persönliche Seite"
|
||||
links_header: "Persönliche Links"
|
||||
links_blurb: "Verlinke zu anderen Seiten oder Profilen die du hervorheben möchtest, wie z.B. dein GitHub, dein LinkedIn oder deinen Blog."
|
||||
links_name: "Link-Name"
|
||||
links_name_help: "Wozu verlinkst du?"
|
||||
links_link_blurb: "Link URL"
|
||||
basics_header: "Aktualisiere Grundangaben"
|
||||
basics_active: "Offen für Angebote"
|
||||
basics_active_help: "Möchtest du nun Angebote für Vorstellungsgespräche erhalten?"
|
||||
basics_job_title: "Gewünschter Job-Titel"
|
||||
basics_job_title_help: "Was für eine Stelle suchst du?"
|
||||
basics_city: "Stadt"
|
||||
basics_city_help: "Stadt in der du arbeiten möchtest (oder jetzt lebst)."
|
||||
basics_country: "Land"
|
||||
basics_country_help: "Land in dem du arbeiten möchtest (oder jetzt lebst)."
|
||||
basics_visa: "US Arbeitserlaubnis"
|
||||
basics_visa_help: "Bist du berechtigt in den USA zu arbeiten oder benötigst du Visa Sponsoring? (Wenn du in Kanada oder Australien lebst, markiere berechtigt.)"
|
||||
basics_looking_for: "Suche nach"
|
||||
basics_looking_for_full_time: "Vollzeit"
|
||||
basics_looking_for_part_time: "Teilzeit"
|
||||
basics_looking_for_remote: "Remote"
|
||||
basics_looking_for_contracting: "Vertragsarbeit"
|
||||
basics_looking_for_internship: "Praktikum"
|
||||
basics_looking_for_help: "Was für eine Art Entwickler-Position suchst du?"
|
||||
name_header: "Trage deinen Namen ein"
|
||||
name_anonymous: "Anonymer Entwickler"
|
||||
name_help: "Name den Arbeitgeber sehen sollen, z.B. 'Nick Winter'."
|
||||
short_description_header: "Schreibe einen kurzen Text über dich"
|
||||
short_description_blurb: "Füge eine Tagline hinzu, damit Arbeitgeber schnell mehr über dich erfahren können."
|
||||
short_description: "Tagline"
|
||||
short_description_help: "Wer bist du und wonach suchst du? 140 Zeichen max."
|
||||
skills_header: "Fähigkeiten"
|
||||
skills_help: "Markiere relevante Entwicklerfähigkeiten in der Reihenfolge deines Niveaus."
|
||||
long_description_header: "Beschreibe deine gewünschte Position"
|
||||
long_description_blurb: "Teile Arbeitgebern mit, wie toll du bist und nach welcher Position du suchst."
|
||||
long_description: "Selbstbeschreibung"
|
||||
long_description_help: "Beschreibe dich selbst für potentielle Arbeitgeber. Fasse dich kurz, aber treffend. Wir empfehlen die Position kurz darzustellen, die dich am meisten interessieren würde. Geschmackvoller Preisabschlag ist ok; max. 600 Zeichen."
|
||||
work_experience: "Berufserfahrung"
|
||||
work_header: "Liste deine Berufserfahrung chronologisch auf"
|
||||
work_years: "Jahre der Erfahrung"
|
||||
work_years_help: "Wie viele Jahre professionelle Erfahrung (bezahlte Arbeit) hast du mit der Entwicklung von Software?"
|
||||
work_blurb: "Liste deine relevante Berufserfahrung auf, letzte Tätigkeit zuerst."
|
||||
work_employer: "Arbeitgeber"
|
||||
work_employer_help: "Name deines Arbeitgebers."
|
||||
work_role: "Jobtitel"
|
||||
work_role_help: "Was war dein Jobtitel oder deine Rolle?"
|
||||
work_duration: "Dauer"
|
||||
work_duration_help: "Wann warst du dort?"
|
||||
work_description: "Beschreibung"
|
||||
work_description_help: "Was hast du dort gemacht (140 Zeichen; optional)"
|
||||
education: "Schulbildung"
|
||||
education_header: "Erzähle von deinen akademischen Martyrien"
|
||||
education_blurb: "Liste deine akademischen Martyrien."
|
||||
education_school: "Schule"
|
||||
education_school_help: "Name deiner Schule."
|
||||
education_degree: "Abschluss"
|
||||
education_degree_help: "Was war dein Abschluss und deine Fachrichtung?"
|
||||
education_duration: "Daten"
|
||||
education_duration_help: "Wann?"
|
||||
education_description: "Beschreibung"
|
||||
education_description_help: "Hebe etwas aus dieser Ausbildung hervor. (140 Zeichen; optional)"
|
||||
our_notes: "CodeCombat's Notizen"
|
||||
remarks: "Kommentare"
|
||||
projects: "Projekte"
|
||||
projects_header: "Füge 3 Projekte hinzu"
|
||||
projects_header_2: "Projekte (Top 3)"
|
||||
projects_blurb: "Hebe deine Projekte hervor, um Arbeitgeber zu verblüffen."
|
||||
project_name: "Projekt Name"
|
||||
project_name_help: "Wie wurde das Projekt genannt?"
|
||||
project_description: "Beschreibung"
|
||||
project_description_help: "Beschreibe kurz das Projekt."
|
||||
project_picture: "Bild"
|
||||
project_picture_help: "Lade ein 230x115px oder größeres Bild hoch, welches das Projekt darstellt."
|
||||
project_link: "Link"
|
||||
project_link_help: "Verlinke das Projekt."
|
||||
player_code: "Spieler Code"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Leider sucht CodeCombat derzeit keine neuen Mitarbeiter."
|
||||
deprecation_warning: "Wir konzentrieren uns derzeit auf Anfängerlevel, statt Expertendeveloper zu finden."
|
||||
hire_developers_not_credentials: "Stellen Sie Entwickler ein, nicht Qualifikationen." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Legen Sie los"
|
||||
already_screened: "Wir haben alle Kandidaten bereits technisch geprüft"
|
||||
filter_further: ", aber Sie können noch weiter filtern:"
|
||||
filter_visa: "Visum"
|
||||
filter_visa_yes: "US autorisiert"
|
||||
filter_visa_no: "nicht autorisiert"
|
||||
filter_education_top: "Top-Schule"
|
||||
filter_education_other: "Andere"
|
||||
filter_role_web_developer: "Web Entwickler"
|
||||
filter_role_software_developer: "Software Entwickler"
|
||||
filter_role_mobile_developer: "Mobile Entwickler"
|
||||
filter_experience: "Erfahrung"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Vor kurzem promoviert"
|
||||
filter_experience_student: "Student"
|
||||
filter_results: "Ergebnisse"
|
||||
start_hiring: "Beginnen Sie einzustellen."
|
||||
reasons: "Drei Gründe warum Sie durch uns einstellen sollten:"
|
||||
everyone_looking: "Jeder sucht hier nach der nächsten Herausforderung."
|
||||
everyone_looking_blurb: "Vergessen Sie die 20% LinkedIn InMail Antwort-Raten. Jeden den wir auf unseren Webseite auflisten, sucht nach seinem nächsten Arbeitsplatz und wird Ihnen auf Ihre Kontaktanfrage antworten."
|
||||
weeding: "Lehnen Sie sich zurück; wir haben das Aussortieren für Sie übernommen."
|
||||
weeding_blurb: "Jeden Spieler, den wir auflisten, wurde bereits auf seine technischen Fähigkeiten geprüft. Wir führen auch Telefoninterviews mit ausgewählten Kandidaten durch und machen Notizen in ihrem Profil, um Ihnen Zeit zu ersparen."
|
||||
pass_screen: "Sie werden Ihre technischen Tests bestehen."
|
||||
pass_screen_blurb: "Prüfen Sie den Code jedes Kandidaten bevor Sie ihn kontaktieren. Ein Arbeitgeber fand heraus das bis zu 5 mal so viele unserer Entwickler sein technisches Screening bestanden als wenn er durch Hacker News eingestellt hätte."
|
||||
make_hiring_easier: "Machen Sie bitte meinen Einstellungsprozess einfachen."
|
||||
what: "Was ist CodeCombat?"
|
||||
what_blurb: "CodeCombat ist ein Mehrspieler Browser-Programmierspiel. Spieler schreiben Code, um Ihre Armeen im Kampf gegen andere Entwickler zu steuern. Unsere Spieler haben Erfahrung mit allen wichtigen Tech-Stacks."
|
||||
cost: "Wie viel berechnen wir?"
|
||||
cost_blurb: "Wir berechnen 15% des ersten Jahresgehalts und bieten eine 100% Geld-Zurück-Garantie für 90 Tage an. Wir berechnen nicht für Kandidaten, die bereits aktiv an Ihrem Bewerbungsverfahren teilnehmen."
|
||||
candidate_name: "Name"
|
||||
candidate_location: "Standort"
|
||||
candidate_looking_for: "Sucht nach"
|
||||
candidate_role: "Rolle"
|
||||
candidate_top_skills: "Top Fähigkeiten"
|
||||
candidate_years_experience: "Erfahrung (Jahre)"
|
||||
candidate_last_updated: "Zuletzt aktualisiert"
|
||||
candidate_who: "Wer"
|
||||
featured_developers: "Mitwirkende Entwickler"
|
||||
other_developers: "Andere Entwickler"
|
||||
inactive_developers: "Inaktive Entwickler"
|
||||
|
||||
admin:
|
||||
av_espionage: "Spionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email oder Benutzername"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Deutsch (Deutschland)", englishDescription:
|
|||
av_entities_sub_title: "Entitäten"
|
||||
av_entities_users_url: "Benutzer"
|
||||
av_entities_active_instances_url: "Aktive Instanzen"
|
||||
av_entities_employer_list_url: "Arbeitgeberliste"
|
||||
av_entities_candidates_list_url: "Kandidatenliste"
|
||||
av_entities_user_code_problems_list_url: "User Code Problem-Liste"
|
||||
av_other_sub_title: "Sonstige"
|
||||
av_other_debug_base_url: "Base (um base.jade zu debuggen)"
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
no_ie: "Το CodeCombat δεν είναι συμβατό με το Internet Explorer 9 ή κάποια παλαιότερη έκδοση. Συγνώμη!" # Warning that only shows up in IE8 and older
|
||||
no_mobile: "Το CodeCombat δεν σχεδιάστηκε για κινητά και μπορεί να μην δουλεύει!" # Warning that shows up on mobile devices
|
||||
play: "Παίξε" # The big play button that opens up the campaign view.
|
||||
# play_campaign_version: "Play Campaign Version" # Shows up under big play button if you only play /courses
|
||||
play_campaign_version: "Παίξε σε Μορφή Εκστρατείας" # Shows up under big play button if you only play /courses
|
||||
old_browser: "Ωχ, ο περιηγητής σας είναι πολύ παλιός για να τρέξει το CodeCombat. Συγνώμη!" # Warning that shows up on really old Firefox/Chrome/Safari
|
||||
old_browser_suffix: "Μπορείτε να δοκιμάσετε, αλλά πιθανότατα να μην λειτουργήσει."
|
||||
ipad_browser: "Δυσάρεστα νέα: Το CodeCombat δεν τρέχει στο iPad μέσω περιηγητή. Ευχάριστα νέα: αναμένουμε την έγκριση της Apple για την εφαρμογή μας για iPad."
|
||||
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
multiplayer: "Πολλαπλοί Παίκτες" # Not currently shown on home page
|
||||
for_developers: "Για προγραμματιστές" # Not currently shown on home page.
|
||||
or_ipad: "Ή κατεβάστε για iPad"
|
||||
hoc_class_code: "Έχω Κωδικό Τάξης "
|
||||
hoc_enter: "Είσοδος"
|
||||
hoc_title: "Ώρα του Κώδικα?"
|
||||
|
||||
nav:
|
||||
play: "Επίπεδα" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -78,7 +75,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
subscription_required: "Απαιτείται εγγραφή"
|
||||
anonymous: "Ανώνυμοι Παίκτες"
|
||||
level_difficulty: "Δυσκολία: "
|
||||
# play_classroom_version: "Play Classroom Version" # Choose a level in campaign version that you also can play in one of your courses
|
||||
play_classroom_version: "Παίξε σε Μορφή Μαθημάτων" # Choose a level in campaign version that you also can play in one of your courses
|
||||
campaign_beginner: "Εκστρατεία για Αρχάριους"
|
||||
awaiting_levels_adventurer_prefix: "Έχουμε νέα επίπεδα κάθε εβδομάδα."
|
||||
awaiting_levels_adventurer: "Εγγραφή ως Adventurer"
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
creating: "Δημιουργία Λογαριασμού..."
|
||||
sign_up: "Εγγραφή"
|
||||
log_in: "Σύνδεση με κωδικό"
|
||||
social_signup: "Ή, μπορείς να συνδεθείς μέσω Facebook ή G+:"
|
||||
required: "Θα πρέπει να συνδεθείτε πριν πάτε προς τα εκεί."
|
||||
login_switch: "Έχεις ήδη λογαριασμό;"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "Ονομα Σχολείου και Πόλη"
|
||||
optional: "Προαιρετικό"
|
||||
school_name_placeholder: "Παράδειγμα ΕΠΑΛ Καλύμνου, Κάλυμνος"
|
||||
|
||||
recover:
|
||||
recover_account_title: "Ανάκτηση λογαριασμού"
|
||||
|
@ -244,12 +240,10 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
incomplete: "Ατελές"
|
||||
timed_out: "Έμεινες από χρόνο"
|
||||
failing: "Αποτυγχάνει"
|
||||
action_timeline: "Χρονοδιάγραμμα δράσης"
|
||||
click_to_select: "Κάντε κλικ σε μια μονάδα για να το επιλέξετε."
|
||||
control_bar_multiplayer: "πολλαπλών παικτών"
|
||||
control_bar_join_game: "Παίξε κι εσύ"
|
||||
reload: "Επαναφόρτωση"
|
||||
reload_title: "Ανανέωση όλου του κωδικά;"
|
||||
reload_title: "Ανανέωση όλου του κώδικα;"
|
||||
reload_really: "Είσαι σίγουρος ότι θέλεις να φορτώσεις αυτό το επίπεδο από την αρχή;"
|
||||
reload_confirm: "Ανανέωση όλων"
|
||||
victory: "Νίκη"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
parents_title: "Αγαπητέ Γονέα: Το παιδί σας μαθαίνει να προγραμματίζει ηλεκτρονικούς υπολογιστές. Θα το βοηθήσετε να συνεχίσει;"
|
||||
parents_blurb1: "Το παιδί σας έχει παίξει __nLevels__ επίπεδα και έχει μάθει τα βασικά του προγραμματισμού. Βοηθήστε το να καλλιεργήσει το ενδιαφέρον του και αγοράστε του μια συνδρομή για να συνεχίσει να παίζει."
|
||||
parents_blurb1a: "Ο προγραμματισμός υπολογιστών είναι μια αναγκαία ικανότητα, το οποίο το παιδί σας σίγουρα χρησιμοποιήσει ως ανήλικας. Έως το 2020, το 77% των δουλειών θα απαιτούν βασικές ικανότητες σε λογισμικό, και οι προγραμματιστές έχουν μεγάλη ζήτηση ανά την υφήλιο. Ξέρετε ότι η Επιστήμη Υπολογιστώνείναι το πιο καλοπληρωμένο πτυχίο πανεπιστημίου;"
|
||||
parents_blurb2: "Για $9.99 Δολλάρια ΗΠΑ/μήνα, το παιδί σας θα έχει νέες προκλήσεις κάθε εβδομάδα και προσωπική υποστήριξη μέσω ηλεκτρονικού ταχυδρομείου από επαγγελματίες προγραμματιστές."
|
||||
parents_blurb2: "Για ${{price}} Δολλάρια ΗΠΑ/μήνα, το παιδί σας θα έχει νέες προκλήσεις κάθε εβδομάδα και προσωπική υποστήριξη μέσω ηλεκτρονικού ταχυδρομείου από επαγγελματίες προγραμματιστές."
|
||||
parents_blurb3: "Κανένα Ρίσκο: 100% εγγύση επιστροφής χρημάτων, εύκολη διακοπή συνδρομής, με 1 κλικ."
|
||||
payment_methods: "Τρόποι Πληρωμής"
|
||||
payment_methods_title: "Αποδεκτοί Τρόποι Πληρωμής"
|
||||
payment_methods_blurb1: "Προς το παρόν δεχόμαστε πιστωτικές κάρτες και Alipay." # {change}
|
||||
payment_methods_blurb2: "Αν ενδιαφέρεστε για άλλο τρόπο πληρωμής, παρακαλούμε επικοινωνείστε μαζί μας."
|
||||
sale_already_subscribed: "Είστε ήδη συνδρομητής!"
|
||||
sale_blurb1: "Γλίτωσε $21" # {change}
|
||||
sale_blurb2: "από την τιμή της κανονικής συνδρομής των $120 το χρόνο!"
|
||||
sale_button: "Εκπτώσεις!"
|
||||
sale_button_title: "Γλίτωσε $21 όταν αγοράσεις συνδρομή ετήσια συνδρομή" # {change}
|
||||
sale_click_here: "Πάτα εδώ"
|
||||
sale_ends: "Τελειώνει"
|
||||
sale_extended: "*Οι υπάρχουσες συνδρομές θα επεκταθούν για ένα χρόνο."
|
||||
sale_feature_here: "Θα αποκτήσετε τα παρακάτω:"
|
||||
sale_feature2: "Πρόσβαση σε 9 παντοδύναμους <strong>νέους ήρωες</strong> με μοναδικές ικανότητες!"
|
||||
sale_feature4: "Θα έχετε άμεσα <strong>42.000 πετράδια</strong>!"
|
||||
sale_continue: "Είσαι έτοιμος να συνεχίσεις την περιπέτεια;"
|
||||
sale_limited_time: "Η προσφορά θα διαρκέσει μόνο για λίγο!"
|
||||
sale_new_heroes: "Νέοι ήρωες!"
|
||||
sale_title: "Εκπτώσεις λόγω επιστροφής στο Σχολείο"
|
||||
sale_view_button: "Αγόρασε ετήσια συνδρομή για"
|
||||
sale_button_title: "Γλίτωσε ${{discount}} όταν αγοράσεις συνδρομή ετήσια συνδρομή" # {change}
|
||||
stripe_description: "Μηνιαία Συνδρομή"
|
||||
stripe_description_year_sale: "Ετήσια Συνδρομή ($21 έκπτωση)" # {change}
|
||||
stripe_description_year_sale: "Ετήσια Συνδρομή (${{discount}} έκπτωση)" # {change}
|
||||
subscription_required_to_play: "Πρέπει να είσαι συνδρομητής για να παίξεις αυτό το επίπεδο."
|
||||
unlock_help_videos: "Απέκτησε συνδρομή για να ξεκλειδώσεις όλα τα βίντεο βοηθήματα."
|
||||
personal_sub: "Προσωπική Συνδρομή" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
currently_free_until: "Η συνδρομή σας λήγει στις"
|
||||
was_free_until: "Είχατε δωρεάν συνδρομή μέχρι τις"
|
||||
managed_subs: "Συνδρομές που διαχειρίζεστε"
|
||||
managed_subs_desc: "Προσθέστε συνδρομές για άλλους παίκτες (μαθητές, παιδιά, κπλ.)"
|
||||
managed_subs_desc_2: "Οι αποδέκτες πρέπει να έχουν λογαριασμό στο CodeCombat με τη διεύθυνση ηλεκτρονικού ταχυδρομείου που δώσατε."
|
||||
group_discounts: "Ομαδικές εκπτώσεις"
|
||||
group_discounts_1: "Παρεχουμε ομαδικές εκπτώσεις για πολλαπλές συνδρομές."
|
||||
group_discounts_1st: "1η συνδρομή"
|
||||
group_discounts_full: "Πλήρης τιμή"
|
||||
group_discounts_2nd: "2-11 συνδρομές"
|
||||
group_discounts_20: "20% έκπτωση"
|
||||
group_discounts_12th: "12+ συνδρομές"
|
||||
group_discounts_40: "40% έκπτωση"
|
||||
subscribing: "Δημιουργία συνδρομής..."
|
||||
recipient_emails_placeholder: "Παρακαλώ συμπληρώστε διεύθυνση ηλεκτρονικού ταχυδρομείογια συνδρομή, μια ανά γραμμή."
|
||||
subscribe_users: "Συνδρομή Χρηστών"
|
||||
users_subscribed: "Εγγεγραμένοι Χρήστες:"
|
||||
no_users_subscribed: "Δε δημιουργήθηκε συνδρομη για κανένα χρήστη, παρακαλώ ελέγξτε ξανά τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας."
|
||||
current_recipients: "Αποδέκτες"
|
||||
unsubscribing: "Κατάργηση συνδρομής"
|
||||
subscribe_prepaid: "Πατήστε Συνδρομή για να χρησιμποιήσετε τον προπληρωμένο κωδικό"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Περισσότερες Πληροφορίες για Εκπαιδευτικούς"
|
||||
intro_1: "Το CodeCombat είναι ένα παιχνίδι που διδάσκει προγραμματισμό Η/Υ. Οι μαθητές γράφουν κώδικα σε κανονικές γλώσσες προγραμματισμού."
|
||||
intro_2: "Δε χρειάζεται προηγούμενη εμπειρία!"
|
||||
free_title: "Πόσο κοστίζει"
|
||||
cost_premium_server: "Το CodeCombat είναι δωρεάν για τα πέντε πρώτα επίπεδα, μετά τα οποία κοστίζει $9.99 Δολλάρια ΗΠΑ το μήνα για να έχετε πρόσβαση στα πάνω από 190 επίπεδα στους αποκλειστικούς για τη χώρα εξυπηρετητές."
|
||||
free_1: "Υπάρχουν πάνω από 100 ΔΩΡΕΑΝ επίπεδα που καλύπτουν όλα τα αντικείμενα."
|
||||
free_2: "Η μηνιαία συνδρομή παρέχει πρόσβαση σε βίντεο βοηθήματα και παραπάνω επίπεδα για εξάσκηση."
|
||||
free_3: "Το περιεχομένο του CodeCombat χωρίζεται σε"
|
||||
free_4: "μαθήματα"
|
||||
free_5: ". Η πρώτη σειρά μαθημάτων είναι δωρεάν και περιέχει περίπου μια ώρα υλικού."
|
||||
free_6: "Πρόσβαση σε πρόσθετα μαθημάτα μπορεί να αποκτηθεί με αγορά συνδρομής."
|
||||
teacher_subs_title: "Οι εκπαιδευτικοί παίρνουν δωρεάν συνδρομές!" # {change}
|
||||
teacher_subs_0: "Προσφέρουμε δωρεάν συνδρομές σε εκπαιδευτικούς για να μπορέσουν να αξιολογήσουν το παιχνίδι." # {change}
|
||||
teacher_subs_1: "παρακαλούμε συμπληρώστε το"
|
||||
teacher_subs_2: "Ερωτηματολόγιο Εκπαιδευτικών"
|
||||
teacher_subs_3: "για να δημιουργήσουμε τη συνδρομή σας." # {change}
|
||||
sub_includes_title: "Τι περιλαμβάνει η συνδρομή;"
|
||||
sub_includes_1: "Επιπλέον των πάνω από 110 βασικά επίπεδα, οι μαθητές που έχουν μηνιαία συνδρομή έχουν πρόσβαση και στα ακόλουθα μοναδικά χαρακτηριστικά:"
|
||||
sub_includes_2: "Πάνω από 80 επίπεδα για εξάσκηση"
|
||||
sub_includes_3: "Βίντεο βοηθήματα"
|
||||
sub_includes_4: "Προνομιακή υποστήριξη μέσω ηλεκτρονικού ταχυδρομείου"
|
||||
sub_includes_5: "10 νέους ήρωες με μοναδικές ικανότηες"
|
||||
sub_includes_6: "Δώρο 3500 πετράσια κάθε μήνα"
|
||||
sub_includes_7: "Ιδιωτικές Φατρίες"
|
||||
monitor_progress_title: "Πως μπορώ να παρακολουθώ την πρόοδο των μαθητών;"
|
||||
monitor_progress_1: "Μπορείτε να παρακολουθείτε την πρόοδο των μαθητών δημιουργόντας μια"
|
||||
monitor_progress_2: "για την τάξη σας."
|
||||
monitor_progress_3: "Για να προσθέσεις ένα μαθητή, στείλε του μια πρόσκληση για τη Φατρία σου, που είναι στην "
|
||||
monitor_progress_4: "σελίδα."
|
||||
monitor_progress_5: "Αφού γίνουν μέλη, θα δεις μια περίληψη της προόδου του μαθητή στη σελίδα της φατρίας σου."
|
||||
private_clans_1: "Οι ιδιωτικές φατρίες παρέχουν αυξημένη ιδιωτικήτητα και λεπτομερίς πληροφορίες προόδου για κάθε ένα μαθητή."
|
||||
private_clans_2: "Για να φτιάξεις μια ιδωιτική φατρία, τσέκαρε το 'Κάνε τη φατρία ιδιωτική' όταν φτιάχνεις μια"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Για ποιον είναι το CodeCombat;"
|
||||
who_for_1: "Προτείνουμε το CodeCombat για μαθητές από 9 χρονών και πάνω. Δεν απαιτείται προηγούμενη πείρα στον προγραμματισμό."
|
||||
who_for_2: "Σχεδιάσαμε το CodeCombat και για αγόρια και για κορίτσια."
|
||||
material_title: "Πόσο υλικό υπάρχει;"
|
||||
material_premium_server: "Περίπου 50 ώρες παιχνιδιού, με πάνω από 190 επίπεδα μόνο για συνδρομητές, μέχρι τώρα."
|
||||
material_1: "Περίπου 25 ώρες δψρεάν περιεχομένου και επιπλέον 15 ώρες συνδρομητικού περιεχομένου."
|
||||
concepts_title: "Ποια θέματα καλύπτονται;"
|
||||
how_much_title: "Πόσο κοστίζει μια μηνιαία συνδρομή;"
|
||||
how_much_1: "Μια"
|
||||
how_much_2: "μηνιαία συνδρομή"
|
||||
how_much_3: "κοστίζει $9.99 δολλάρια ΗΠΑ, και μπορεί να ακυρωθεί οποιαδήποτε στιγμή."
|
||||
how_much_4: "Επιπλεέον, προσφέρουμε εκπτώσεις για μεγαλύτερες ομάδες:"
|
||||
how_much_5: "Δεχόμαστε αγορές με έκπτωση, μόνο για μια φορά, και ετήσιες συνδρομέςγια ομάδες, όπως μια τάξη ή ένα σχολείο. Παρακαλούμε επικοινωνείστε"
|
||||
how_much_6: "για περισσότερες πληροφορίες."
|
||||
who_for_1: "Προτείνουμε το CodeCombat για μαθητές από 9 χρονών και πάνω. Δεν απαιτείται προηγούμενη πείρα στον προγραμματισμό." # {change}
|
||||
who_for_2: "Σχεδιάσαμε το CodeCombat και για αγόρια και για κορίτσια." # {change}
|
||||
more_info_title: "Που μπορώ να βρω περισσότερες πληροφορίες"
|
||||
more_info_1: "Το"
|
||||
more_info_2: "φόρουμ των εκπαιδευτικών"
|
||||
more_info_3: "είναι ένα καλό σημείο για να συνδεθείτε με άλλους εκπαιδευτικούς που χρησιμοποιούν το CodeCombat."
|
||||
sys_requirements_title: "Απαιτήσεις Συστήματος"
|
||||
sys_requirements_1: "Ένας σύγχρονος φυλλομετρητής. Οι νεώτερες εκδόσεις των Chrome, Firefox, ή Safari. Ο Internet Explorer από την έκδοση 9 και μετά."
|
||||
sys_requirements_2: "Το CodeCombat δεν υποστηρίζεται ακόμα στο iPad."
|
||||
|
||||
teachers_survey:
|
||||
title: "Έρευνα Εκπαιδευτικών"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
screenshot_included: "Θα συμπεριλάβουμε και στιγμιότυπα οθόνης."
|
||||
where_reply: "Σε ποια διεύθυνση να απαντήσουμε;"
|
||||
send: "Αποστολή σχολίων"
|
||||
contact_candidate: "Επικοινώνησε με τον Υποψήφιο" # Deprecated
|
||||
recruitment_reminder: "Χρησιμοποίησε τη φόρμα αυτή για να επικοινωνήσεις με τους υποψήφιους, από τους οποίους ενδιαφέρεσαι να πάρεις συνέντευξη. Υπενθυμίζουμε πως το CodeCombat χρεώνει το 15% της αμοιβής του πρώτου έτους. Η καταβολή του ποσού γίνεται με την πρόσληψη του εργαζομένου, και μπορεί να επιστραφεί εντός 90 ημερών, στην περίπτωση που ο εργαζόμενος δεν παραμείνει στην εργασία. Οι μερικής απασχόλησης, οι εργαζόμενοι εξ αποστάσεως (τηλε-εργασία), οι μπλοκάκηδες και οι πρακτικάριοι είναι δωρεάν." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Ρυθμίσεις λογαριασμού"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
saved: "Οι αλλαγές αποθηκεύτηκαν"
|
||||
password_mismatch: "Οι κωδικοί δεν ταιριάζουν"
|
||||
password_repeat: "Παρακαλώ επαναλάβετε τον κωδικό σας."
|
||||
job_profile: "Προφίλ Δουλειάς" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Το προφίλ εργασίας έχει έχει εγκριθεί από το CodeCombat. Οι εργοδότες θα μπορούν να το βλέπουν μέχρι να το μαρκάρεις σαν ανενεργό ή να μην έχει αλλαχθεί για 4 εβδομάδες."
|
||||
job_profile_explanation: "Γεια! Συμπλήρωσε το παρακάτω, και θα επικοινωνήσουμε μαζί σου για το πως θα βρεις μια δουλειά ως προγραμματιστής."
|
||||
sample_profile: "Δες ένα δοκιμαστικό προφίλ"
|
||||
view_profile: "Προβολή του προφίλ σου"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Συντομεύσεις πληκτρολογίου"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
subs_only: "μόνο για συνδρομητές"
|
||||
create_clan: "Δημιουργία Νέας Φατρίας"
|
||||
private_preview: "Προεπισκόπηση"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Δημόσιες Φατρίες"
|
||||
my_clans: "Οι Φατρίες Μου"
|
||||
clan_name: "Όνομα Φατρίας"
|
||||
|
@ -855,7 +770,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
started_2: "Ξεκίνησε"
|
||||
not_started_2: "Δεν ξεκίνησε"
|
||||
view_solution: "Πάτα για να δεις τη λύση."
|
||||
# view_attempt: "Click to view attempt."
|
||||
view_attempt: "Κλικ για να δείς την προσπάθεια."
|
||||
latest_achievement: "Τελευταίο Επίτευγμα"
|
||||
playtime: "Χρόνος παιχνιδιού"
|
||||
last_played: "Έπαιξε τελευταία φορά"
|
||||
|
@ -877,7 +792,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
courses:
|
||||
course: "Μάθημα"
|
||||
courses: "μαθήματα"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "Δημιουργια Νεας Ταξης"
|
||||
not_enrolled: "Δεν έχετε εγγραφεί στο μάθημα αυτό."
|
||||
visit_pref: "Παρακαλώ επισκεφτείτε τη "
|
||||
visit_suf: "σελίδα για να εγγραφείτε."
|
||||
|
@ -952,149 +867,152 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
topics: "Θέματα"
|
||||
hours_content: "Ώρες περιεχομένου:"
|
||||
get_free: "Πάρε ΔΩΡΕΑΝ μάθημα"
|
||||
# enroll_paid: "Enroll Students in Paid Courses"
|
||||
# you_have1: "You have"
|
||||
# you_have2: "unused paid enrollments"
|
||||
# use_one: "Use 1 paid enrollment for"
|
||||
# use_multiple: "Use paid enrollments for the following students:"
|
||||
# already_enrolled: "already enrolled"
|
||||
# licenses_remaining: "licenses remaining:"
|
||||
# insufficient_enrollments: "insufficient paid enrollments"
|
||||
# enroll_students: "Enroll Students"
|
||||
# get_enrollments: "Get More Enrollments"
|
||||
# change_language: "Change Course Language"
|
||||
# keep_using: "Keep Using"
|
||||
# switch_to: "Switch To"
|
||||
# greetings: "Greetings!"
|
||||
# learn_p: "Learn Python"
|
||||
# learn_j: "Learn JavaScript"
|
||||
# language_cannot_change: "Language cannot be changed once students join a class."
|
||||
# back_classrooms: "Back to my classrooms"
|
||||
# back_courses: "Back to my courses"
|
||||
# edit_details: "Edit class details"
|
||||
# enrolled_courses: "enrolled in paid courses:"
|
||||
# purchase_enrollments: "Purchase Enrollments"
|
||||
# remove_student: "remove student"
|
||||
# assign: "Assign"
|
||||
# to_assign: "to assign paid courses."
|
||||
# teacher: "Teacher"
|
||||
# complete: "Complete"
|
||||
# none: "None"
|
||||
# save: "Save"
|
||||
# play_campaign_title: "Play the Campaign"
|
||||
# play_campaign_description: "You’re ready to take the next step! Explore hundreds of challenging levels, learn advanced programming skills, and compete in multiplayer arenas!"
|
||||
# create_account_title: "Create an Account"
|
||||
# create_account_description: "Sign up for a FREE CodeCombat account and gain access to more levels, more programming skills, and more fun!"
|
||||
# preview_campaign_title: "Preview Campaign"
|
||||
# preview_campaign_description: "Take a sneak peek at all that CodeCombat has to offer before signing up for your FREE account."
|
||||
# arena: "Arena"
|
||||
# arena_soon_title: "Arena Coming Soon"
|
||||
# arena_soon_description: "We are working on a multiplayer arena for classrooms at the end of"
|
||||
# not_enrolled1: "Not enrolled"
|
||||
# not_enrolled2: "Ask your teacher to enroll you in the next course."
|
||||
# next_course: "Next Course"
|
||||
# coming_soon1: "Coming soon"
|
||||
# coming_soon2: "We are hard at work making more courses for you!"
|
||||
# available_levels: "Available Levels"
|
||||
# welcome_to_courses: "Adventurers, welcome to Courses!"
|
||||
# ready_to_play: "Ready to play?"
|
||||
# start_new_game: "Start New Game"
|
||||
# play_now_learn_header: "Play now to learn"
|
||||
# play_now_learn_1: "basic syntax to control your character"
|
||||
# play_now_learn_2: "while loops to solve pesky puzzles"
|
||||
# play_now_learn_3: "strings & variables to customize actions"
|
||||
# play_now_learn_4: "how to defeat an ogre (important life skills!)"
|
||||
# welcome_to_page: "Welcome to your Courses page!"
|
||||
# completed_hoc: "Amazing! You've completed the Hour of Code course!"
|
||||
# ready_for_more_header: "Ready for more? Play the campaign mode!"
|
||||
# ready_for_more_1: "Use gems to unlock new items!"
|
||||
# ready_for_more_2: "Play through brand new worlds and challenges"
|
||||
# ready_for_more_3: "Learn even more programming!"
|
||||
# saved_games: "Saved Games"
|
||||
# hoc: "Hour of Code"
|
||||
# my_classes: "My Classes"
|
||||
# class_added: "Class successfully added!"
|
||||
# view_class: "view class"
|
||||
# view_levels: "view levels"
|
||||
# join_class: "Join A Class"
|
||||
# ask_teacher_for_code: "Ask your teacher if you have a CodeCombat class code! If so, enter it below:"
|
||||
# enter_c_code: "<Enter Class Code>"
|
||||
# join: "Join"
|
||||
# joining: "Joining class"
|
||||
# course_complete: "Course Complete"
|
||||
# play_arena: "Play Arena"
|
||||
# start: "Start"
|
||||
# last_level: "Last Level"
|
||||
# welcome_to_hoc: "Adventurers, welcome to our Hour of Code!"
|
||||
# logged_in_as: "Logged in as:"
|
||||
# not_you: "Not you?"
|
||||
# welcome_back: "Hi adventurer, welcome back!"
|
||||
# continue_playing: "Continue Playing"
|
||||
# more_options: "More options:"
|
||||
# option1_header: "Option 1: Invite students via email"
|
||||
# option1_body: "Students will automatically be sent an invitation to join this class, and will need to create an account with a username and password."
|
||||
# option2_header: "Option 2: Send URL to your students"
|
||||
# option2_body: "Students will be asked to enter an email address, username and password to create an account."
|
||||
# option3_header: "Option 3: Direct students to codecombat.com/courses"
|
||||
# option3_body: "Give students the following passcode to enter along with an email address, username and password when they create an account."
|
||||
# thank_you_pref: "Thank you for your purchase! You can now assign"
|
||||
# thank_you_suff: "more students to paid courses."
|
||||
# return_to_class: "Return to classroom"
|
||||
# return_to_course_man: "Return to course management."
|
||||
# students_not_enrolled: "students not enrolled"
|
||||
# total_all_classes: "Total Across All Classes"
|
||||
# how_many_enrollments: "How many additional paid enrollments do you need?"
|
||||
# each_student_access: "Each student in a class will get access to Courses 2-4 once they are enrolled in paid courses. You may assign each course to each student individually."
|
||||
# purchase_now: "Purchase Now"
|
||||
# enrollments: "enrollments"
|
||||
# remove_student1: "Remove Student"
|
||||
# are_you_sure: "Are you sure you want to remove this student from this class?"
|
||||
# remove_description1: "Student will lose access to this classroom and assigned classes. Progress and gameplay is NOT lost, and the student can be added back to the classroom at any time."
|
||||
# remove_description2: "The activated paid license will not be returned."
|
||||
# keep_student: "Keep Student"
|
||||
# removing_user: "Removing user"
|
||||
# to_join_ask: "To join a class, ask your teacher for an unlock code."
|
||||
# join_this_class: "Join Class"
|
||||
# enter_here: "<enter unlock code here>"
|
||||
# successfully_joined: "Successfully joined"
|
||||
# click_to_start: "Click here to start taking"
|
||||
# my_courses: "My Courses"
|
||||
# classroom: "Classroom"
|
||||
# use_school_email: "use your school email if you have one"
|
||||
# unique_name: "a unique name no one has chosen"
|
||||
# pick_something: "pick something you can remember"
|
||||
# class_code: "Class Code"
|
||||
# optional_ask: "optional - ask your teacher to give you one!"
|
||||
# optional_school: "optional - what school do you go to?"
|
||||
# start_playing: "Start Playing"
|
||||
# skip_this: "Skip this, I'll create an account later!"
|
||||
# welcome: "Welcome"
|
||||
# getting_started: "Getting Started with Courses"
|
||||
# download_getting_started: "Download Getting Started Guide [PDF]"
|
||||
# getting_started_1: "Create a new class by clicking the green 'Create New Class' button below."
|
||||
# getting_started_2: "Once you've created a class, click the blue 'Add Students' button."
|
||||
# getting_started_3: "You'll see student's progress below as they sign up and join your class."
|
||||
# additional_resources: "Additional Resources"
|
||||
# additional_resources_1_pref: "Download/print our"
|
||||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
# available_courses: "Available Courses"
|
||||
# unused_enrollments: "Unused enrollments available:"
|
||||
# students_access: "All students get access to Introduction to Computer Science for free. One enrollment per student is required to assign them to paid CodeCombat courses. A single student does not need multiple enrollments to access all paid courses."
|
||||
enroll_paid: "Γράψε μαθητές σε μαθήματα με πληρωμή"
|
||||
you_have1: "Έχεις"
|
||||
you_have2: "αχρησιμοποιήτες πληρωμένες συνδρομές"
|
||||
use_one: "Χρησιμοποιήσε 1 πληρωμένη συνδρομή για"
|
||||
use_multiple: "Χρησιμοποιήσε τις πληρωμένη συνδρομές για τους παρακάτω μαθητές:"
|
||||
already_enrolled: "Ήδη εγγεγραμένος"
|
||||
licenses_remaining: "Συνδρομές που απομένουν:"
|
||||
insufficient_enrollments: "Δεν αρκούν οι πληρωμένες συνδρομές"
|
||||
enroll_students: " Γράψε Μαθητές"
|
||||
get_enrollments: "Ζήτα και αλλές εγγραφές"
|
||||
change_language: "Αλλαγή Γλώσσας Μαθήματος"
|
||||
keep_using: "Συνέχισε να χρησιμοποιείς"
|
||||
switch_to: "Αλλαγή σε"
|
||||
greetings: "Καλως ΄Ηρθες!"
|
||||
learn_p: "Μάθε Python"
|
||||
learn_j: "Μάθε JavaScript"
|
||||
language_cannot_change: "Η γλώσσα δεν μπορεί να αλλάξει από τη στιγμή που οι μαθητές θα συνδεθούν με την τάξη."
|
||||
back_classrooms: "Πίσω στις τάξεις μου"
|
||||
back_courses: "Πίσω στα μαθήματα μου"
|
||||
edit_details: "Επεξεργασία Ρυθμίσεων Τάξης"
|
||||
enrolled_courses: "Εγγεγραμμένοι σε μαθήματα με πληρωμή:"
|
||||
purchase_enrollments: "Αγόρασε Συνδρομές επί πληρωμή"
|
||||
remove_student: "Διαγραφή Μαθητή"
|
||||
assign: "Ανάθεση"
|
||||
to_assign: "Ανάθεση μαθημάτων επί πληρωμή."
|
||||
teacher: "Δάσκαλος"
|
||||
complete: "Ολοκληρωμένο"
|
||||
none: "Κανένα"
|
||||
save: "Αποθήκευση"
|
||||
play_campaign_title: "Παίξε την Εκστρατεία"
|
||||
play_campaign_description: "Είσαι έτοιμος να κάνει το επόμενο βήμα! Εξερευνήστε εκατοντάδες επίπεδα γεμάτα με νεές προκλήσεις, αποκτώνγτας προηγμένες γνώσεις προγραμματισμού, και ανταγωνιστείτε σε αρένες με άλλους παίκτες!"
|
||||
create_account_title: "Δημιουργία Λογαριασμού"
|
||||
create_account_description: "Εγγραφείτε για ένα Δωρέαν CodeCombat λογαριασμό και κερδίστε πρόσβαση σε περισσότερα επίπεδα και προγραμματιστικές τεχνικές και φυσικά περισσότερη διασκέδαση!"
|
||||
preview_campaign_title: "Προεπισκόπηση Εκστρατείας"
|
||||
preview_campaign_description: "Ρίξτε μια κλεφτή ματιά σε όλα όσα το CodeCombat έχει να προσφέρει πριν από την εγγραφή σας για το ΔΩΡΕΑΝ λογαριασμό."
|
||||
arena: "Αρενα"
|
||||
arena_soon_title: "Σύντομα Έρχεται Αρένα"
|
||||
arena_soon_description: "Κατασκευάζουμε μια αρένα πολλών παικτών για τάξεις στο τέλος του"
|
||||
not_enrolled1: "Όχι εγγεγραμμένος"
|
||||
not_enrolled2: "Ζήτα από το δάσκαλο σου να σε εγγράψει στο επόμενο μάθημα."
|
||||
next_course: "Επόμενο Μάθημα"
|
||||
coming_soon1: "Έρχεται Σύντομα"
|
||||
coming_soon2: "Εργαζόμαστε σκληρά, φτιάχνοντας νέα μαθήματα για εσάς!"
|
||||
available_levels: "Διαθέσιμα Επίπεδα"
|
||||
welcome_to_courses: " Εξερευνητές καλωσήρθατε στις Σειρές Μαθημάτων!"
|
||||
ready_to_play: "Έτοιμος να παίξεις?"
|
||||
start_new_game: " Ξεκίνα Νέο Παιχνίδι"
|
||||
play_now_learn_header: "Παίξε για να μάθεις"
|
||||
play_now_learn_1: "Βασικό συντακτικό για τον έλεγχο του ήρωα σου."
|
||||
play_now_learn_2: "Επαναληπτικοί Βρόχοι While για να λύνεις βαρετούς γρίφους"
|
||||
play_now_learn_3: "συμβολοσειρές και μεταβλητές για να τροποποιείς εύκολα τις ενέργειες σου"
|
||||
play_now_learn_4: " Πως να νικησεις ένα Ogre(απαραίτητο μάθημα επιβίωσης!)"
|
||||
welcome_to_page: "Καλως ήρθες στη σελίδα των μαθημάτων σου!"
|
||||
completed_hoc: "Καταπληκτικό! Ολοκλήρωσες την ώρα του κώδικα!"
|
||||
ready_for_more_header: "Έτοιμος για περισσότερα? Παίξε στις Εκστρατείες!"
|
||||
ready_for_more_1: "Χρησιμοποιήσε τα πετράδια για να ξεκλειδώσεις νέα αντικείμενα!"
|
||||
ready_for_more_2: "Παίξε σενέους κόσμους κυνηγώντας καινούριες προκλήσεις"
|
||||
ready_for_more_3: "Μάθε περισσότερα πάνω στο Προγραμματισμό!"
|
||||
saved_games: "Αποθηκευμένα Παιχνίδια"
|
||||
hoc: "Ώρα του Κώδικα"
|
||||
my_classes: "Οι Τάξεις μου"
|
||||
class_added: "Τάξη Προστέθηκε!"
|
||||
view_class: "Ελέγχος Τάξης"
|
||||
view_levels: "Ελέγχος Επίπεδων"
|
||||
join_class: "Σύνδεση με Τάξη"
|
||||
ask_teacher_for_code: "Ζήτα από το δάσκαλο σου, εάν έχει ένα κωδικό τάξης για το CodeCombat! Εάν έχει, πληκτρολόγησε το παρακάτω:"
|
||||
enter_c_code: "<Πληκτρολόγησε Κωδικό Τάξης>"
|
||||
join: "Σύνδεση"
|
||||
joining: "Σύνδεση με Τάξη"
|
||||
course_complete: "Μάθημα Ολοκληρωμένο"
|
||||
play_arena: "Παίξε στην Αρένα"
|
||||
start: "Εκκίνηση"
|
||||
last_level: "Προηγουμένο Επίπεδο"
|
||||
welcome_to_hoc: "Εξερευνητές, καλωσήρθατε στη δικιά μας Ώρα του Κώδικα!"
|
||||
logged_in_as: "Υπογράφεις ως:"
|
||||
not_you: "Δεν είσαι εσύ?"
|
||||
welcome_back: "Γειά σου εξερευνητή καλωσήρθες πίσω!"
|
||||
continue_playing: "Συνέχιση Παιχνιδιού"
|
||||
more_options: "Περισσότερες Επιλογές:"
|
||||
option1_header: "Επιλογή 1: Πρόσκληση στους μαθητές μέσω email"
|
||||
option1_body: "Οι μαθητές θα λάβουν αυτομάτα μια πρόσκληση να συνδεθούν με την τάξηε, θα χρειαστεί να δημιουργήσουν ένα λογαριασμό με όνομα χρήστη και κωδικό πρόσβασης."
|
||||
option2_header: "Επιλογή 2: Στείλε το URL στους μαθητές σου"
|
||||
option2_body: "Από τους μαθητές θα ζητηθεί να εισάγουν μια διεύθυνση email, καθώς και όνομα χρήστη με κωδικό πρόσβασης."
|
||||
option3_header: "Επιλογή 3: Καθοδήγησε τους μαθητές σου στο codecombat.com/courses"
|
||||
option3_body: "Δώσε στους μαθητές σου τον κωδικό που ακολουθεί για να το χρησιμοποιήσουν όταν θα δημιουργούν ένα λογαριασμό."
|
||||
thank_you_pref: "Ευχαριστούμε για την αγορά σου! Μπορείς τώρα να εκχωρήσεις"
|
||||
thank_you_suff: "και άλλους μαθητές στα μαθήματα επί πληρωμή."
|
||||
return_to_class: "Επιστροφή στην Τάξη"
|
||||
return_to_course_man: "Επιστροφή στη Διαχείριση Τάξης."
|
||||
students_not_enrolled: "μαθητές όχι εγγεγραμμένοι"
|
||||
total_all_classes: "Σύνολο σε όλες τις τάξεις"
|
||||
how_many_enrollments: "Πόσες ακόμα συνδρομές θα χρειαστείς?"
|
||||
each_student_access: " Κάθε μαθητής στην τάξη θα αποκτήσει πρόσβαση στα Μαθήματα 2-4 μόλις συνδεθούν με τα μαθήματα επί πληρωμή. Μπορείς να συνδέεις κάθε μάθημα με κάθε μαθητή ξεχωριστά."
|
||||
purchase_now: "Αγορά Τώρα"
|
||||
enrollments: "Συνδρομές"
|
||||
remove_student1: "Διαγραφή Μαθητή"
|
||||
are_you_sure: "Είσαι σίγουρος ότι θέλεις να διαγράψεις τον μαθητή από αυτή την τάξη?"
|
||||
remove_description1: "Ο μαθητής θα χάσει την πρόσβαση σε αυτή την τάξη και στα συνδεμένα μαθήματα. Η πρόοδος και το gameplay δεν θα χαθούν, και ο μαθητής μπορεί να προστεθεί πίσω στην τάξη, ανά πάσα στιγμή."
|
||||
remove_description2: "Η ενεργοποιημένη πληρωμένη συνδρομή δεν πρόκειται να επιστραφεί."
|
||||
keep_student: "Keep Student"
|
||||
removing_user: "Διαγραφή χρήστη"
|
||||
to_join_ask: "Για να συνδεθείς με μία τάξη, ζήτα από το δάσκαλο σου τον κώδικο τάξης."
|
||||
join_this_class: "Σύνδεση με Τάξη"
|
||||
enter_here: "<Πληκτρόλογησε κωδικό τάξης εδώ>"
|
||||
successfully_joined: "Επιτυχώς Συνδέθηκες"
|
||||
click_to_start: "Κλικ εδώ για να ξεκινήσεις"
|
||||
my_courses: "Μαθήματα μου"
|
||||
classroom: "Τάξη"
|
||||
use_school_email: "Χρησιμοποιήσε ένα email"
|
||||
unique_name: "Ένα όνομα μοναδικό"
|
||||
pick_something: "Διάλεξε κάτι που θα θυμάσαι"
|
||||
class_code: "Κωδικός Τάξης"
|
||||
optional_ask: "Προαιρετικό - ζήτα από το δάσκαλο σου να σου δώσει ένα!"
|
||||
optional_school: "Προαιρετικό - σε ποιό σχολείο πηγαίνεις?"
|
||||
start_playing: "Ξεκίνα να Παίζεις"
|
||||
skip_this: "Πάραλειψε τοs, θα δημιουργήσω λογαριασμό αργότερα!"
|
||||
welcome: "Καλώς Ήρθες"
|
||||
getting_started: "Ξεκινώντας με τις Σειρές Μαθημάτων"
|
||||
download_getting_started: "Κατέβασε Getting Started Guide [PDF]"
|
||||
getting_started_1: "Δημιούργησε μία νέα τάξη κάνοντας κλικ στο πράσινο κουμπί <Δημιουργία Τάξης> παρακάτω."
|
||||
getting_started_2: "Μόλις δημιουργήσετε την τάξη, κλικ στο μπλε κουμπί για να προσθέσετε μαθητές."
|
||||
getting_started_3: "Θα βλέπεις την πρόοδο των μαθητών σου μόλις ολοκληρώσουν την εγγραφή τους και συνδεθούν με την τάξη σου."
|
||||
additional_resources: "Additional Resources"
|
||||
additional_resources_1_pref: "Κατέβασε/Εκτύπωσε"
|
||||
additional_resources_1_mid: "Οδηγός Εκπαιδευτικού για Μάθημα 1"
|
||||
additional_resources_1_suff: "Επεξηγήσεις και λύσεις για το κάθε επίπεδο."
|
||||
additional_resources_2_pref: "Συμπλήρωσε την"
|
||||
additional_resources_2_suff: "για να κερδίσεις 15 ακόμα ώρες υλικού Δωρεάν για 2 μήνες."
|
||||
additional_resources_3_pref: "Επισκέψη"
|
||||
additional_resources_3_mid: "στα Forums των εκπαιδευτικών"
|
||||
additional_resources_3_suff: "για να επικοινωνήσεις με άλλους συναδέρφους που χρησιμοποιούν το CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
your_classes: "Οι Τάξεις σου"
|
||||
no_classes: "Όχι Τάξεις ακόμα!"
|
||||
create_new_class1: "δημιουργία Τάξης"
|
||||
available_courses: "Διαθέσιμα Μαθήματα"
|
||||
unused_enrollments: "Αδιάθετες συνδρομές:"
|
||||
students_access: "Όλοι οι μαθητές να έχουν πρόσβαση στην ενότητα Εισαγωγή στην Επιστήμη των Υπολογιστών δωρεάν. Μία συνδρομή ανά φοιτητή είναι υποχρεωτική για να να τους τοποθετήσετε στα μαθήματα που απαιτούν πληρωμή.Μία συνδρομή ανα μαθητή είναι αρκετή για την εγγραφή του σε όλα τα μαθήματα."
|
||||
# active_courses: "active courses"
|
||||
# no_students: "No students yet!"
|
||||
# add_students1: "add students"
|
||||
# view_edit: "view/edit"
|
||||
# students_enrolled: "students enrolled"
|
||||
# length: "Length:"
|
||||
no_students: "Όχι μαθητές ακόμα!"
|
||||
add_students1: "πρόσθεση μαθητών"
|
||||
view_edit: "Παρακολούθηση/Επεξεργασία"
|
||||
students_enrolled: "Εγγεγραμμένοι Μαθητές"
|
||||
length: "Μήκος:"
|
||||
|
||||
classes:
|
||||
archmage_title: "Αρχιμάγος"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
payments: "Πληρωμές"
|
||||
prepaid_codes: "Προπληρωμένοι Κώδικες"
|
||||
purchased: "Αγοράστηκαν"
|
||||
sale: "Πώληση"
|
||||
subscription: "Συνδρομή"
|
||||
invoices: "Εντολές Πληρωμής"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
email_settings_url: "ρυθμίσεις σου για το ηλεκτρονικό ταχυδρομείο"
|
||||
email_description_suffix: "ή μέσα από συνδέσμους στα μυνήματα που σου στέλνουμε, μπορείς να αλλάξεις τις προτιμήσεις σου κα να απεγγραφείς εύκολα οποιαδήποτε στιγμή θέλεις."
|
||||
cost_title: "Κόστος"
|
||||
cost_description: "Το παιχνίδι στο CodeCombat είναι δωρεάν για όλα τα βασικά του επίπεδα, με μια μηνιαία συνδρομή αξίας $9.99 Δολλάρια ΗΠΑ το μήνα για να έχετε πρόσβαση σε έξτρα επίπεδα and 3500 δώρο πετράδια κάθε μήνα. Μπορείτε να ακυρώσετε με ένα κλικ, και προσφέρουμε 100% εγγύηση επιστροφής χρημάτων."
|
||||
cost_description: "Το παιχνίδι στο CodeCombat είναι δωρεάν για όλα τα βασικά του επίπεδα, με μια μηνιαία συνδρομή αξίας ${{price}} Δολλάρια ΗΠΑ το μήνα για να έχετε πρόσβαση σε έξτρα επίπεδα and {{gems}} δώρο πετράδια κάθε μήνα. Μπορείτε να ακυρώσετε με ένα κλικ, και προσφέρουμε 100% εγγύηση επιστροφής χρημάτων."
|
||||
copyrights_title: "Πνευματικά Δικαιώματα και Άδειες"
|
||||
contributor_title: "Συμφωνητικό Άδειας Συντελεστή (Contributor License Agreement)"
|
||||
contributor_description_prefix: "Όλες οι συνεισφορές, και στη σελίδα και στο GitHub υπόκεινται στη"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
nutshell_title: "Στα Γρήγορα"
|
||||
nutshell_description: "Όλες οι πηγές που παρέχουμε στο Διορθωτή Επιπέδων είναι ελεύθερα να τα χρησιμοποιήσετε όπως θέλετε για τη δημιουργία επιπέδων. Αλλά διατηρούμε το δικαίωμα να περιορίσουμε τη διανομή των ίδιων των επιπέδων (που δημιουργήθηκαν στο codecombat.com) ώστε να είναι επί πληρωμή στο μέλλον, αν αυτό καταλήξει να γίνει."
|
||||
canonical: "Η Αγγλική έκδοση αυτού του εγγράφου είναι η απόλυτη , ρυθμιστική (canonical) έκδοση. Αν υπάρχουν αισθητές διαφορές μεταξύ των μεταφράσεων, το Αγγλικό έγγραφο προηγείται."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Βραβεία Τουρνουά" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
license: "άδεια"
|
||||
oreilly: "ηλεκτρονικό βιβλίο της επιλογής σου"
|
||||
|
||||
account_profile:
|
||||
settings: "Ρυθμίσεις" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Επεξεργασία προφίλ"
|
||||
done_editing: "Τέλος επεξεργασίας"
|
||||
profile_for_prefix: "Προφίλ για "
|
||||
profile_for_suffix: ""
|
||||
featured: "Προτεινόμενα"
|
||||
not_featured: "Μη Προτεινόμενα"
|
||||
looking_for: "Αναζήτηση για:"
|
||||
last_updated: "Τελευταία ενημερώθηκε:"
|
||||
contact: "Επικοινωνία"
|
||||
active: "Επιθυμώ προσφορές για συνέντευξη"
|
||||
inactive: "Δεν επιθυμώ προσφορές για συνέντευξη αυτή την περίοδο"
|
||||
complete: "Ολοκληρωμένο"
|
||||
next: "Επόμενο"
|
||||
next_city: "πόλη;"
|
||||
next_country: "επέλεξε τη χώρα σου."
|
||||
next_name: "όνομα;"
|
||||
next_short_description: "γράψε μία μικρή περιγραφή."
|
||||
next_long_description: "περιέγραψε την επιθυμητή σου θέση."
|
||||
next_skills: "κατόνομασε τουλάχιστον πέντε δεξιότητες."
|
||||
next_work: "Γράψε το ιστορικό σου στην αγορά εργασίας."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Ελληνικά", englishDescription: "Gre
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights and Licences"
|
||||
contributor_title: "Contributor Licence Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "English (UK)", englishDescription: "English
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "English (US)", englishDescription: "English
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "For Developers" # Not currently shown on home page.
|
||||
or_ipad: "Or download for iPad"
|
||||
hoc_class_code: "I Have a Class Code"
|
||||
hoc_enter: "Enter"
|
||||
hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@
|
|||
creating: "Creating Account..."
|
||||
sign_up: "Sign Up"
|
||||
log_in: "log in with password"
|
||||
social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
required: "You need to log in before you can go that way."
|
||||
login_switch: "Already have an account?"
|
||||
school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@
|
|||
incomplete: "Incomplete"
|
||||
timed_out: "Ran out of time"
|
||||
failing: "Failing"
|
||||
action_timeline: "Action Timeline"
|
||||
click_to_select: "Click on a unit to select it."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Join Game"
|
||||
reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@
|
|||
parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
payment_methods: "Payment Methods"
|
||||
payment_methods_title: "Accepted Payment Methods"
|
||||
payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
sale_already_subscribed: "You're already subscribed!"
|
||||
sale_blurb1: "Save $21"
|
||||
sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
sale_button: "Sale!"
|
||||
sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
sale_click_here: "Click Here"
|
||||
sale_ends: "Ends"
|
||||
sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
sale_feature_here: "Here's what you'll get:"
|
||||
sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
sale_continue: "Ready to continue adventuring?"
|
||||
sale_limited_time: "Limited time offer!"
|
||||
sale_new_heroes: "New heroes!"
|
||||
sale_title: "Back to School Sale"
|
||||
sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Monthly Subscription"
|
||||
stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
|
||||
|
@ -473,21 +453,7 @@
|
|||
currently_free_until: "You currently have a subscription until"
|
||||
was_free_until: "You had a free subscription until"
|
||||
managed_subs: "Managed Subscriptions"
|
||||
managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
group_discounts: "Group discounts"
|
||||
group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
group_discounts_1st: "1st subscription"
|
||||
group_discounts_full: "Full price"
|
||||
group_discounts_2nd: "Subscriptions 2-11"
|
||||
group_discounts_20: "20% off"
|
||||
group_discounts_12th: "Subscriptions 12+"
|
||||
group_discounts_40: "40% off"
|
||||
subscribing: "Subscribing..."
|
||||
recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
subscribe_users: "Subscribe Users"
|
||||
users_subscribed: "Users subscribed:"
|
||||
no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
current_recipients: "Current Recipients"
|
||||
unsubscribing: "Unsubscribing"
|
||||
subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -613,62 +579,17 @@
|
|||
carlos_blurb: "Celery Man"
|
||||
maka_title: "Customer Advocate"
|
||||
maka_blurb: "Storyteller"
|
||||
robin_title: "UX Design & Research"
|
||||
robin_blurb: "Scaffolding"
|
||||
|
||||
teachers:
|
||||
more_info: "More Info for Teachers"
|
||||
intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
intro_2: "No experience required!"
|
||||
free_title: "How much does it cost?"
|
||||
cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "There are 110+ FREE levels which cover every concept."
|
||||
free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
free_3: "The CodeCombat content is divided into"
|
||||
free_4: "courses"
|
||||
free_5: ". The first course is free, and about an hour of material."
|
||||
free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Teachers get a free trial!"
|
||||
teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "Please fill out our"
|
||||
teacher_subs_2: "Teacher Survey"
|
||||
teacher_subs_3: "to try out the paid courses."
|
||||
sub_includes_title: "What is included in the subscription?"
|
||||
sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
sub_includes_2: "80+ practice levels"
|
||||
sub_includes_3: "Video tutorials"
|
||||
sub_includes_4: "Premium email support"
|
||||
sub_includes_5: "10 new heroes with unique skills to master"
|
||||
sub_includes_6: "3500 bonus gems every month"
|
||||
sub_includes_7: "Private Clans"
|
||||
monitor_progress_title: "How do I monitor student progress?"
|
||||
monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
monitor_progress_2: "for your class."
|
||||
monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
monitor_progress_4: "page."
|
||||
monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Who is CodeCombat for?"
|
||||
who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
material_title: "How much material is there?"
|
||||
material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
concepts_title: "What concepts are covered?"
|
||||
how_much_title: "How much does a monthly subscription cost?"
|
||||
how_much_1: "A"
|
||||
how_much_2: "monthly subscription"
|
||||
how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
how_much_6: "for more details."
|
||||
who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
more_info_title: "Where can I find more information?"
|
||||
more_info_1: "Our"
|
||||
more_info_2: "teachers forum"
|
||||
more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "System Requirements"
|
||||
sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
teachers_survey:
|
||||
title: "Teacher Survey"
|
||||
|
@ -726,8 +647,6 @@
|
|||
screenshot_included: "Screenshot included."
|
||||
where_reply: "Where should we reply?"
|
||||
send: "Send Feedback"
|
||||
contact_candidate: "Contact Candidate" # Deprecated
|
||||
recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Account Settings"
|
||||
|
@ -772,11 +691,6 @@
|
|||
saved: "Changes Saved"
|
||||
password_mismatch: "Password does not match."
|
||||
password_repeat: "Please repeat your password."
|
||||
job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
sample_profile: "See a sample profile"
|
||||
view_profile: "View Your Profile"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -827,6 +741,7 @@
|
|||
subs_only: "subscribers only"
|
||||
create_clan: "Create New Clan"
|
||||
private_preview: "Preview"
|
||||
private_clans: "Private Clans"
|
||||
public_clans: "Public Clans"
|
||||
my_clans: "My Clans"
|
||||
clan_name: "Clan Name"
|
||||
|
@ -1086,6 +1001,9 @@
|
|||
additional_resources_3_pref: "Visit our"
|
||||
additional_resources_3_mid: "Teacher Forums"
|
||||
additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
additional_resources_4_pref: "Check out our"
|
||||
additional_resources_4_mid: "Schools Page"
|
||||
additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
your_classes: "Your Classes"
|
||||
no_classes: "No classes yet!"
|
||||
create_new_class1: "create new class"
|
||||
|
@ -1379,7 +1297,6 @@
|
|||
payments: "Payments"
|
||||
prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Purchased"
|
||||
sale: "Sale"
|
||||
subscription: "Subscription"
|
||||
invoices: "Invoices"
|
||||
service_apple: "Apple"
|
||||
|
@ -1569,7 +1486,7 @@
|
|||
email_settings_url: "your email settings"
|
||||
email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
cost_title: "Cost"
|
||||
cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
cost_description: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights and Licenses"
|
||||
contributor_title: "Contributor License Agreement"
|
||||
contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1604,6 +1521,8 @@
|
|||
nutshell_title: "In a Nutshell"
|
||||
nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
third_party_title: "Third Party Services"
|
||||
third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1625,157 +1544,6 @@
|
|||
license: "license"
|
||||
oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Edit Profile"
|
||||
done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profile for "
|
||||
profile_for_suffix: ""
|
||||
featured: "Featured"
|
||||
not_featured: "Not Featured"
|
||||
looking_for: "Looking for:"
|
||||
last_updated: "Last updated:"
|
||||
contact: "Contact"
|
||||
active: "Looking for interview offers now"
|
||||
inactive: "Not looking for offers right now"
|
||||
complete: "complete"
|
||||
next: "Next"
|
||||
next_city: "city?"
|
||||
next_country: "pick your country."
|
||||
next_name: "name?"
|
||||
next_short_description: "write a short description."
|
||||
next_long_description: "describe your desired position."
|
||||
next_skills: "list at least five skills."
|
||||
next_work: "chronicle your work history."
|
||||
next_education: "recount your educational ordeals."
|
||||
next_projects: "show off up to three projects you've worked on."
|
||||
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"
|
||||
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"
|
||||
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_help: "City you want to work in (or live in now)."
|
||||
basics_country: "Country"
|
||||
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_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_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_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."
|
||||
long_description: "Self Description"
|
||||
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_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_role_help: "What was your job title or role?"
|
||||
work_duration: "Duration"
|
||||
work_duration_help: "When did you hold this gig?"
|
||||
work_description: "Description"
|
||||
work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Education"
|
||||
education_header: "Recount your academic ordeals"
|
||||
education_blurb: "List your academic ordeals."
|
||||
education_school: "School"
|
||||
education_school_help: "Name of your school."
|
||||
education_degree: "Degree"
|
||||
education_degree_help: "What was your degree and field of study?"
|
||||
education_duration: "Dates"
|
||||
education_duration_help: "When?"
|
||||
education_description: "Description"
|
||||
education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
our_notes: "CodeCombat's Notes"
|
||||
remarks: "Remarks"
|
||||
projects: "Projects"
|
||||
projects_header: "Add 3 projects"
|
||||
projects_header_2: "Projects (Top 3)"
|
||||
projects_blurb: "Highlight your projects to amaze employers."
|
||||
project_name: "Project Name"
|
||||
project_name_help: "What was the project called?"
|
||||
project_description: "Description"
|
||||
project_description_help: "Briefly describe the project."
|
||||
project_picture: "Picture"
|
||||
project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
project_link: "Link"
|
||||
project_link_help: "Link to the project."
|
||||
player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Get Started"
|
||||
already_screened: "We've already technically screened all our candidates"
|
||||
filter_further: ", but you can also filter further:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "US Authorized"
|
||||
filter_visa_no: "Not Authorized"
|
||||
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_experience_recent_grad: "Recent Grad"
|
||||
filter_experience_student: "College Student"
|
||||
filter_results: "results"
|
||||
start_hiring: "Start hiring."
|
||||
reasons: "Three reasons you should hire through us:"
|
||||
everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
weeding: "Sit back; we've done the weeding for you."
|
||||
weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
pass_screen: "They will pass your technical screen."
|
||||
pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
make_hiring_easier: "Make my hiring easier, please."
|
||||
what: "What is CodeCombat?"
|
||||
what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
cost: "How much do we charge?"
|
||||
cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Name"
|
||||
candidate_location: "Location"
|
||||
candidate_looking_for: "Looking For"
|
||||
candidate_role: "Role"
|
||||
candidate_top_skills: "Top Skills"
|
||||
candidate_years_experience: "Yrs Exp"
|
||||
candidate_last_updated: "Last Updated"
|
||||
candidate_who: "Who"
|
||||
featured_developers: "Featured Developers"
|
||||
other_developers: "Other Developers"
|
||||
inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email or username"
|
||||
|
@ -1786,8 +1554,6 @@
|
|||
av_entities_sub_title: "Entities"
|
||||
av_entities_users_url: "Users"
|
||||
av_entities_active_instances_url: "Active Instances"
|
||||
av_entities_employer_list_url: "Employer List"
|
||||
av_entities_candidates_list_url: "Candidate List"
|
||||
av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Other"
|
||||
av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Niveloj" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Esperanto", englishDescription: "Esperanto"
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
multiplayer: "Multijugador" # Not currently shown on home page
|
||||
for_developers: "Para Desarrolladores" # Not currently shown on home page.
|
||||
or_ipad: "O descargar para iPad"
|
||||
hoc_class_code: "Tengo un Código de Clase"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Jugar" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -51,7 +48,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
pitch_body: "Desarrollamos CodeCombat en inglés, pero ya tenemos jugadores de todo el mundo. Muchos de ellos quieren jugar en español pero no hablan inglés, así que si puedes hablar ambos, por favor considera registrarte pare ser un Diplomático y ayudar a traducir tanto el sitio de CodeCombat como todos los niveles al español."
|
||||
missing_translations: "Hasta que podamos traducir todo al español, verás inglés cuando el español no esté disponible."
|
||||
learn_more: "Aprende más sobre ser un Diplomático"
|
||||
subscribe_as_diplomat: "Suscribete como un Diplomático"
|
||||
subscribe_as_diplomat: "Suscríbete como un Diplomático"
|
||||
|
||||
play:
|
||||
play_as: "Jugar Como " # Ladder page
|
||||
|
@ -92,7 +89,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
share_progress_modal:
|
||||
blurb: "¡Estás haciendo un gran progreso! Cuéntale a tus padres cuánto has aprendido con CodeCombat."
|
||||
email_invalid: "Dirección de Email inválida."
|
||||
form_blurb: "¡Ingresa su email debajo y les enseñaremos!"
|
||||
form_blurb: "¡Escribe su email debajo y les enseñaremos!"
|
||||
form_label: "Dirección de Email"
|
||||
placeholder: "dirección de email"
|
||||
title: "Excelente Trabajo, Aprendiz"
|
||||
|
@ -115,10 +112,9 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
creating: "Creando Cuenta..."
|
||||
sign_up: "Registrarse"
|
||||
log_in: "Inicia sesión con tu contraseña"
|
||||
social_signup: "O puedes conectarte a través de Facebook o G+:"
|
||||
required: "Necesitas entrar a tu cuenta antes de continuar."
|
||||
login_switch: "¿Ya tienes una cuenta?"
|
||||
# school_name: "School Name and City"
|
||||
school_name: "Nombre de Escuela y Ciudad"
|
||||
optional: "opcional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
|
||||
|
@ -225,7 +221,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
years: "años"
|
||||
|
||||
play_level:
|
||||
# completed_level: "Completed Level:"
|
||||
completed_level: "Nivel Completado:"
|
||||
course: "Curso:"
|
||||
done: "Listo"
|
||||
next_level: "Siguiente Nivel:"
|
||||
|
@ -242,12 +238,10 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
running: "Andando..."
|
||||
success: "¡Éxito!"
|
||||
incomplete: "Incompleto"
|
||||
timed_out: "Se te acabo el tiempo"
|
||||
timed_out: "Se te acabó el tiempo"
|
||||
failing: "Fallando"
|
||||
action_timeline: "Cronología de Acción"
|
||||
click_to_select: "Has click en una unidad para seleccionarla."
|
||||
control_bar_multiplayer: "Multijugador"
|
||||
control_bar_join_game: "Ingresar al juego"
|
||||
control_bar_join_game: "Entrar al juego"
|
||||
reload: "Recargar"
|
||||
reload_title: "¿Recargar Todo el Código?"
|
||||
reload_really: "¿Estás seguro de que quieres empezar este nivel desde el principio?"
|
||||
|
@ -292,13 +286,13 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
time_total: "Max:"
|
||||
time_goto: "Ir a:"
|
||||
non_user_code_problem_title: "No se puede cargar el nivel"
|
||||
infinite_loop_title: "Loop infinito detectado"
|
||||
infinite_loop_title: "Ciclo infinito detectado"
|
||||
infinite_loop_description: "El código inicial para construir el mundo no terminó de ejecutarse. Probablemente es muy lento o tiene un loop infinito. O puede ser un bug. Puedes tratar ejecutando este código nuevamente o reiniciar el código a su estado por defecto. Si eso no lo arregla, haznos saber."
|
||||
check_dev_console: "Tú puedes también abrir la consola de desarrollo para ver que puede salir mal."
|
||||
check_dev_console_link: "(instrucciones)"
|
||||
infinite_loop_try_again: "Intentar nuevamente"
|
||||
infinite_loop_reset_level: "Reiniciar Nivel"
|
||||
infinite_loop_comment_out: "Comente Mi Código"
|
||||
infinite_loop_comment_out: "Comenta Mi Código"
|
||||
tip_toggle_play: "Activa jugar/pausa con Ctrl+P."
|
||||
tip_scrub_shortcut: "Ctrl+[ y Ctrl+] para rebobinar y avanzar rápido."
|
||||
tip_guide_exists: "Haga click en la guía en la parte superior de la página para obtener información útil"
|
||||
|
@ -358,7 +352,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
guide_video_tutorial: "Guía en video"
|
||||
guide_tips: "Pistas"
|
||||
multiplayer_tab: "Multijugador"
|
||||
auth_tab: "Ingresar"
|
||||
auth_tab: "Entrar"
|
||||
inventory_caption: "Equipar a tu héroe"
|
||||
choose_hero_caption: "Elegir héroe, lenguaje"
|
||||
save_load_caption: "... y ver historia"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
parents_title: "Estimado Padre de Familia: Su hijo está aprendiendo a programar. ¿Le apoyaría a continuar?"
|
||||
parents_blurb1: "Con CodeCombat, su hijo aprenderá a escribiendo código real. Empezaran aprendiendo comandos simples avanzando a temas más complejos."
|
||||
parents_blurb1a: "La Programación es una habilidad escencial que su hijo sin duda usará en la adultez. Para el 2020, habilidades básicas en software serán requeridas por el 77% de trabajos, y los ingenieros de software están en alta demanda alrededor del mundo. ¿Sabía que Ciencias de la Computación es la carrera mejor pagada?"
|
||||
parents_blurb2: "Por $9.99 USD mensuales, su hijo recibirá nuevos desafíos todas las semanas y soporte personal por email de programadores profesionales."
|
||||
parents_blurb2: "Por ${{price}} USD mensuales, su hijo recibirá nuevos desafíos todas las semanas y soporte personal por email de programadores profesionales."
|
||||
parents_blurb3: "Sin Riesgo: Garantía de 100% de devolución, fácil 1-click y des- suscribirse."
|
||||
payment_methods: "Metodos de pago"
|
||||
payment_methods_title: "Metodos de pago aceptados."
|
||||
payment_methods_blurb1: "Actualmente aceptamos tarjetas de credito y Alipay." # {change}
|
||||
payment_methods_blurb2: "Si necesitas una forma alternativa de pago, por favor contactarse"
|
||||
sale_already_subscribed: "¡Ya estás subscrito!"
|
||||
sale_blurb1: "Ahorra $21" # {change}
|
||||
sale_blurb2: "de descuento en el precio regular de una suscripción de $120 USD por un año completo!"
|
||||
sale_button: "Venta!"
|
||||
sale_button_title: "Ahorra $21 al adquirir una suscripción por 1 año" # {change}
|
||||
sale_click_here: "Haz Click Aquí"
|
||||
sale_ends: "Termina"
|
||||
sale_extended: "*Las suscripciones existentes se extenderán por un año."
|
||||
sale_feature_here: "Esto es lo que obtendrás:"
|
||||
sale_feature2: "¡Acceso a 9 poderosos <strong>nuevos héroes</strong> con habilidades únicas!"
|
||||
sale_feature4: "¡Una bonificación inmediata de <strong>42,000 gemas</strong>!"
|
||||
sale_continue: "¿Estás listo para continuar aventurándote?"
|
||||
sale_limited_time: "¡Oferta por tiempo limitado!"
|
||||
sale_new_heroes: "¡Nuevos héroes!"
|
||||
sale_title: "Venta de regreso a clases"
|
||||
sale_view_button: "Compra la suscripción de 1 año por"
|
||||
sale_button_title: "Ahorra ${{discount}} al adquirir una suscripción por 1 año" # {change}
|
||||
stripe_description: "Suscripción Mensual"
|
||||
stripe_description_year_sale: "Suscripción por 1 año ($21 descuento)" # {change}
|
||||
stripe_description_year_sale: "Suscripción por 1 año (${{discount}} descuento)" # {change}
|
||||
subscription_required_to_play: "Necesitas una suscripción para jugar este nivel."
|
||||
unlock_help_videos: "Suscríbete para desbloquear todos los video tutoriales."
|
||||
personal_sub: "Suscripción Personal" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
currently_free_until: "Actualmente tienes una suscripción gratuita hasta"
|
||||
was_free_until: "Tuviste una suscripción gratuita hasta"
|
||||
managed_subs: "Suscripciones administradas"
|
||||
managed_subs_desc: "Agregar suscripciones para otros jugadores (alumnos, hijos, etc.)"
|
||||
managed_subs_desc_2: "Los recipientes deben tener una cuenta de CodeCombat asociada con el email que usted provea."
|
||||
group_discounts: "Descuentos por grupo"
|
||||
group_discounts_1: "También ofrecemos descuentos grupales por suscripciones masivas."
|
||||
group_discounts_1st: "primera suscripción (incluye la tuya)"
|
||||
group_discounts_full: "Precio regular"
|
||||
group_discounts_2nd: "2-11 Suscripciones"
|
||||
group_discounts_20: "20% descuento"
|
||||
group_discounts_12th: "12+ Suscripciones"
|
||||
group_discounts_40: "40% descuento"
|
||||
subscribing: "Suscribiendo..."
|
||||
recipient_emails_placeholder: "Ingresa las direcciones de email a suscribir, una por línea."
|
||||
subscribe_users: "Suscribir Usuarios"
|
||||
users_subscribed: "Usuarios suscritos:"
|
||||
no_users_subscribed: "No se suscribieron usuarios, por favor revisa las direcciones de email."
|
||||
current_recipients: "Recipientes actuales"
|
||||
unsubscribing: "Desuscribiendo..." # {change}
|
||||
subscribe_prepaid: "Click en suscribirse para utlizar un código prepago"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
josh_c_blurb: "Diseña juegos"
|
||||
carlos_title: "Manager de Región, Brasil"
|
||||
carlos_blurb: "Hombre apio"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Información para profesores"
|
||||
intro_1: "CodeCombat es un juego online que enseña a programar.Los estudiantes escriben código en idiomas de programación real."
|
||||
intro_2: "No se necesita experiencia previa!"
|
||||
free_title: "¿Cuánto cuesta?"
|
||||
cost_premium_server: "CodeCombat es gratis para lso primeros 5 niveles, después de ellos cuesta $9.99 USD mensuales para accesar a nuestros otros más de 190 niveles en nuestraos exclusivos servidores específicos para cada país."
|
||||
free_1: "Hay más de 110 niveles gratis que cubren cada concepto."
|
||||
free_2: "Una suscripción mensual le da acceso a tutoriales en vídeo y niveles extra para practicar."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
free_4: "cursos"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "¡Los amestros obtienen suscripciones gratuitas!" # {change}
|
||||
teacher_subs_0: "Ofrecemos suscripciones gratuitas a profesores con propósitos de evaluación." # {change}
|
||||
teacher_subs_1: "Por favor llene nuestra"
|
||||
teacher_subs_2: "Encuesta para maestros"
|
||||
teacher_subs_3: "para configurar su suscripción." # {change}
|
||||
sub_includes_title: "¿Qué se incluye en la suscripción?"
|
||||
sub_includes_1: "Adicionalmente a los más de 70 niveles básicos, los estudiantes con una suscripción mensual obtienen acceso a estas características adicionales:" # {change}
|
||||
sub_includes_2: "Más de 70 niveles de práctica" # {change}
|
||||
sub_includes_3: "Video tutoriales"
|
||||
sub_includes_4: "Soporte de correo electronico Premium"
|
||||
sub_includes_5: "10 héroes nuevos con habilidades unicas que dominar"
|
||||
sub_includes_6: "bonificación de 3500 gemas cada mes"
|
||||
sub_includes_7: "Clanes privados"
|
||||
monitor_progress_title: "¿Cómo monitoreo el progreso del estudiante?"
|
||||
monitor_progress_1: "El progreso del estudiante puede ser monitoreado creando una"
|
||||
monitor_progress_2: "para su clase."
|
||||
monitor_progress_3: "Para agregar un estudiante, envíele el enlace de invitación para su Clan, que está en la"
|
||||
monitor_progress_4: "página."
|
||||
monitor_progress_5: "Después de que ellos se unan, podrá ver un resumen del progreso de los estudiantes en la página de su Clan."
|
||||
private_clans_1: "Los Clanes privados proveen más privacidad y más detalle en la información de progreso de cada estudiante."
|
||||
private_clans_2: "Para cerar un Clan privado, marque la caja 'Hacer clan privado' cuando esté creando un"
|
||||
private_clans_3: "."
|
||||
who_for_title: "¿Para quienes es CodeCombat?"
|
||||
who_for_1: "Recomendamos CodeCombat para estudiantes de edades 9 y arriba. No se require experiencia en programación."
|
||||
who_for_2: "Hemos diseñado a CodeCombat para atraer a niños y niñas."
|
||||
material_title: "Cuánto material hay?"
|
||||
material_premium_server: "Aproximadamente 22 horas de juego repartidas en más de 120 niveles sólo para suscriptores, con cinco nueveos niveles cada semana." # {change}
|
||||
material_1: "Aproximadamente 8 horas de contenido gratis y un adicional de 14 horas de contenido de suscriptores, con cinco nueveos niveles cada semana." # {change}
|
||||
concepts_title: "¿Qué conceptos están cubiertos?"
|
||||
how_much_title: "¿Cuánto cuesta una suscripción mensual?"
|
||||
how_much_1: "una"
|
||||
how_much_2: "suscribción mensual"
|
||||
how_much_3: "Cuesta u$s9.99, y puede ser cancelada en cualquier momento."
|
||||
how_much_4: "Adicionalmente, nosotros otorgamos descuentos a grupos grandes:"
|
||||
how_much_5: "Aceptamos compras individuales con descuentos y suscripciones anuales para grupos, tales como una clase o una escuela. Por favor contacte"
|
||||
how_much_6: "para más detalles."
|
||||
who_for_1: "Recomendamos CodeCombat para estudiantes de edades 9 y arriba. No se require experiencia en programación." # {change}
|
||||
who_for_2: "Hemos diseñado a CodeCombat para atraer a niños y niñas." # {change}
|
||||
more_info_title: "¿Dónde puedo encontrar más información?"
|
||||
more_info_1: "Nuestro"
|
||||
more_info_2: "el foro de profesores"
|
||||
more_info_3: "es un buen lugar para connectarse con los educadores que estan usando CodeCombat."
|
||||
sys_requirements_title: "Requerimientos del sistema"
|
||||
sys_requirements_1: "Un navegador moderno. Las últimas versiones de Chrome, Firefox o Safari. Internet Explorer 9 o más reciente."
|
||||
sys_requirements_2: "CodeCombat no está soportado en iPad aún."
|
||||
|
||||
teachers_survey:
|
||||
title: "Encuesta de Maestros"
|
||||
|
@ -676,14 +597,14 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
approved_1: "Su aplicación a una suscripción gratuita fue" # {change}
|
||||
approved_2: "aprobada." # {change}
|
||||
# approved_4: "You can now enroll your students on the"
|
||||
# approved_5: "courses"
|
||||
approved_5: "cursos"
|
||||
# approved_6: "page."
|
||||
denied_1: "Su aplicación a una suscripción gratuita ha sido" # {change}
|
||||
denied_2: "denegada."
|
||||
contact_1: "Por favor contactarse"
|
||||
contact_2: "si tiene más preguntas."
|
||||
description_1: "Ofrecemos suscripciones gratuitas a maestros con propósitos de evaluación. Puede hallar más información en nuestra"
|
||||
# description_1b: "You can find more information on our"
|
||||
description_1b: "Puede hallar más información en nuestra"
|
||||
description_2: "página"
|
||||
description_3: "de maestros."
|
||||
description_4: "Por favor llene esta encuesta rápida y le mandaremos por email las instrucciones de configuración."
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
screenshot_included: "Captura de pantalla incluida."
|
||||
where_reply: "¿A dónde deberíamos responder?"
|
||||
send: "Enviar Comentario"
|
||||
contact_candidate: "Contacta un Candidato" # Deprecated
|
||||
recruitment_reminder: "Usa este formulario para llegar a los candidatos que estés interesado en entrevistar. Recuerda que CodeCombat cobra 18% del primer año de salario. Este honorario se debe a la contratación del empleado y reembolsable por 90 días si el empleado no permanece contratado. Tiempo parcial, remoto, y empleados por contrato son gratis, como así también internos." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Configuración de la Cuenta"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
saved: "Cambios Guardados"
|
||||
password_mismatch: "La contraseña no coincide."
|
||||
password_repeat: "Por favor repita su contraseña."
|
||||
job_profile: "Perfil de Trabajo" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Tu perfil de trabajo ha sido aprobado por CodeCombat. Los empleadores podrán verlo hasta que lo marques como inactivo o permanezca sin cambios por cuatro semanas."
|
||||
job_profile_explanation: "¡Hola! Llena esto, y te contactaremos acerca de encontrar un trabajo como desarrollador de software."
|
||||
sample_profile: "Mira un perfil de ejemplo"
|
||||
view_profile: "Ver tu perfil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Atajos de teclado"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
subs_only: "solo suscriptores"
|
||||
create_clan: "Crear nuevo clan"
|
||||
private_preview: "Vista previa"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Clanes publicos"
|
||||
my_clans: "Mis Clanes"
|
||||
clan_name: "Nombre del clan"
|
||||
|
@ -855,7 +770,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
started_2: "Iniciado"
|
||||
not_started_2: "No inciiado"
|
||||
view_solution: "Click para ver la solución."
|
||||
# view_attempt: "Click to view attempt."
|
||||
view_attempt: "Click para ver intento."
|
||||
latest_achievement: "último logro"
|
||||
playtime: "Tiempo de juego"
|
||||
last_played: "Último jugado"
|
||||
|
@ -877,7 +792,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
courses:
|
||||
course: "Curso"
|
||||
courses: "cursos"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "Crear Nueva Clase"
|
||||
not_enrolled: "No estás inscrito en este curso."
|
||||
visit_pref: "Por favor visite la"
|
||||
visit_suf: "página para inscribirse."
|
||||
|
@ -953,7 +868,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
hours_content: "Horas de contenido:"
|
||||
get_free: "Obtenga curso GRATIS"
|
||||
# enroll_paid: "Enroll Students in Paid Courses"
|
||||
# you_have1: "You have"
|
||||
you_have1: "Tiene"
|
||||
# you_have2: "unused paid enrollments"
|
||||
# use_one: "Use 1 paid enrollment for"
|
||||
# use_multiple: "Use paid enrollments for the following students:"
|
||||
|
@ -963,9 +878,9 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# enroll_students: "Enroll Students"
|
||||
# get_enrollments: "Get More Enrollments"
|
||||
# change_language: "Change Course Language"
|
||||
# keep_using: "Keep Using"
|
||||
# switch_to: "Switch To"
|
||||
# greetings: "Greetings!"
|
||||
keep_using: "Seguir Usando"
|
||||
switch_to: "Cambiar a"
|
||||
greetings: "Saludos!"
|
||||
learn_p: "Aprender Python"
|
||||
learn_j: "Aprender JavaScript"
|
||||
# language_cannot_change: "Language cannot be changed once students join a class."
|
||||
|
@ -974,48 +889,48 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# edit_details: "Edit class details"
|
||||
# enrolled_courses: "enrolled in paid courses:"
|
||||
# purchase_enrollments: "Purchase Enrollments"
|
||||
# remove_student: "remove student"
|
||||
# assign: "Assign"
|
||||
remove_student: "Quitar alumno"
|
||||
assign: "Asignar"
|
||||
# to_assign: "to assign paid courses."
|
||||
teacher: "Maestro"
|
||||
# complete: "Complete"
|
||||
complete: "Completado"
|
||||
# none: "None"
|
||||
# save: "Save"
|
||||
# play_campaign_title: "Play the Campaign"
|
||||
# play_campaign_description: "You’re ready to take the next step! Explore hundreds of challenging levels, learn advanced programming skills, and compete in multiplayer arenas!"
|
||||
# create_account_title: "Create an Account"
|
||||
# create_account_description: "Sign up for a FREE CodeCombat account and gain access to more levels, more programming skills, and more fun!"
|
||||
save: "Guardar"
|
||||
play_campaign_title: "Jugar Campaña"
|
||||
play_campaign_description: "Estas listo para dar el siguiente paso! Explora cientos de desafiantes niveles, aprende habilidades avanzadas de programación, y compite en arenas multijugador!"
|
||||
create_account_title: "Crea una Cuenta"
|
||||
create_account_description: "Registrate gratis con una cuenta CodeCombat y obten acceso a mas niveles, mas habilidades de programacion, y mas diversion!"
|
||||
# preview_campaign_title: "Preview Campaign"
|
||||
# preview_campaign_description: "Take a sneak peek at all that CodeCombat has to offer before signing up for your FREE account."
|
||||
# arena: "Arena"
|
||||
arena: "Arena"
|
||||
# arena_soon_title: "Arena Coming Soon"
|
||||
# arena_soon_description: "We are working on a multiplayer arena for classrooms at the end of"
|
||||
# not_enrolled1: "Not enrolled"
|
||||
not_enrolled1: "No inscrito"
|
||||
# not_enrolled2: "Ask your teacher to enroll you in the next course."
|
||||
# next_course: "Next Course"
|
||||
# coming_soon1: "Coming soon"
|
||||
# coming_soon2: "We are hard at work making more courses for you!"
|
||||
# available_levels: "Available Levels"
|
||||
# welcome_to_courses: "Adventurers, welcome to Courses!"
|
||||
# ready_to_play: "Ready to play?"
|
||||
# start_new_game: "Start New Game"
|
||||
# play_now_learn_header: "Play now to learn"
|
||||
# play_now_learn_1: "basic syntax to control your character"
|
||||
coming_soon1: "Próximamente"
|
||||
coming_soon2: "Estamos trabajando duro para hacer mas cursos para ti!"
|
||||
available_levels: "Niveles Disponibles"
|
||||
welcome_to_courses: "Aventureros, Bienvenidos a los Cursos!"
|
||||
ready_to_play: "Estas listo?"
|
||||
start_new_game: "Iniciar un Nuevo Juego"
|
||||
play_now_learn_header: "Juega y Aprende"
|
||||
play_now_learn_1: "Sintaxis básica para controlar a tu personaje"
|
||||
# play_now_learn_2: "while loops to solve pesky puzzles"
|
||||
# play_now_learn_3: "strings & variables to customize actions"
|
||||
# play_now_learn_4: "how to defeat an ogre (important life skills!)"
|
||||
play_now_learn_3: "cadenas & variables para personalizar acciones"
|
||||
play_now_learn_4: "como vencer a un ogro (habilidades importantes en la vida!)"
|
||||
# welcome_to_page: "Welcome to your Courses page!"
|
||||
# completed_hoc: "Amazing! You've completed the Hour of Code course!"
|
||||
# ready_for_more_header: "Ready for more? Play the campaign mode!"
|
||||
# ready_for_more_1: "Use gems to unlock new items!"
|
||||
ready_for_more_header: "Listo para mas? Juega el modo campaña!"
|
||||
ready_for_more_1: "Usa las gemas para desbloquear nuevos objetos!"
|
||||
# ready_for_more_2: "Play through brand new worlds and challenges"
|
||||
# ready_for_more_3: "Learn even more programming!"
|
||||
# saved_games: "Saved Games"
|
||||
saved_games: "Juegos Guardados"
|
||||
# hoc: "Hour of Code"
|
||||
# my_classes: "My Classes"
|
||||
my_classes: "Mis Clases"
|
||||
# class_added: "Class successfully added!"
|
||||
# view_class: "view class"
|
||||
# view_levels: "view levels"
|
||||
view_levels: "ver niveles"
|
||||
# join_class: "Join A Class"
|
||||
# ask_teacher_for_code: "Ask your teacher if you have a CodeCombat class code! If so, enter it below:"
|
||||
# enter_c_code: "<Enter Class Code>"
|
||||
|
@ -1023,7 +938,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# joining: "Joining class"
|
||||
# course_complete: "Course Complete"
|
||||
# play_arena: "Play Arena"
|
||||
# start: "Start"
|
||||
start: "Iniciar"
|
||||
# last_level: "Last Level"
|
||||
# welcome_to_hoc: "Adventurers, welcome to our Hour of Code!"
|
||||
# logged_in_as: "Logged in as:"
|
||||
|
@ -1047,11 +962,11 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# each_student_access: "Each student in a class will get access to Courses 2-4 once they are enrolled in paid courses. You may assign each course to each student individually."
|
||||
# purchase_now: "Purchase Now"
|
||||
# enrollments: "enrollments"
|
||||
# remove_student1: "Remove Student"
|
||||
remove_student1: "Quitar alumno"
|
||||
# are_you_sure: "Are you sure you want to remove this student from this class?"
|
||||
# remove_description1: "Student will lose access to this classroom and assigned classes. Progress and gameplay is NOT lost, and the student can be added back to the classroom at any time."
|
||||
# remove_description2: "The activated paid license will not be returned."
|
||||
# keep_student: "Keep Student"
|
||||
keep_student: "Mantener alumno"
|
||||
# removing_user: "Removing user"
|
||||
# to_join_ask: "To join a class, ask your teacher for an unlock code."
|
||||
# join_this_class: "Join Class"
|
||||
|
@ -1062,13 +977,13 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# classroom: "Classroom"
|
||||
# use_school_email: "use your school email if you have one"
|
||||
# unique_name: "a unique name no one has chosen"
|
||||
# pick_something: "pick something you can remember"
|
||||
pick_something: "Escoge algo que recuerdes"
|
||||
# class_code: "Class Code"
|
||||
# optional_ask: "optional - ask your teacher to give you one!"
|
||||
# optional_school: "optional - what school do you go to?"
|
||||
# start_playing: "Start Playing"
|
||||
# skip_this: "Skip this, I'll create an account later!"
|
||||
# welcome: "Welcome"
|
||||
optional_school: "opcional - a qué escuela vas?"
|
||||
start_playing: "Comienza a Jugar"
|
||||
skip_this: "Saltar esto, Crearé una cuenta mas tarde!"
|
||||
welcome: "Bienvenido"
|
||||
# getting_started: "Getting Started with Courses"
|
||||
# download_getting_started: "Download Getting Started Guide [PDF]"
|
||||
# getting_started_1: "Create a new class by clicking the green 'Create New Class' button below."
|
||||
|
@ -1079,20 +994,23 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
# available_courses: "Available Courses"
|
||||
available_courses: "Cursos Disponibles"
|
||||
# unused_enrollments: "Unused enrollments available:"
|
||||
# students_access: "All students get access to Introduction to Computer Science for free. One enrollment per student is required to assign them to paid CodeCombat courses. A single student does not need multiple enrollments to access all paid courses."
|
||||
# active_courses: "active courses"
|
||||
# no_students: "No students yet!"
|
||||
# add_students1: "add students"
|
||||
view_edit: "vee/editar"
|
||||
no_students: "Aún no hay alumnos!"
|
||||
add_students1: "añadir alumnos"
|
||||
view_edit: "ver/editar"
|
||||
# students_enrolled: "students enrolled"
|
||||
# length: "Length:"
|
||||
|
||||
|
@ -1280,7 +1198,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
helpful_ambassadors: "Nuestros amables Embajadores:"
|
||||
|
||||
ladder:
|
||||
please_login: "Por favor inicia sesión antes de jugar una partida de escalera."
|
||||
please_login: "Por favor inicia sesión antes de jugar una partida de clasificación."
|
||||
my_matches: "Mis Partidas"
|
||||
simulate: "Simular"
|
||||
simulation_explanation: "¡Simulando tus juegos puedes mejorar tu posición más rápido!"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
payments: "Pagos"
|
||||
prepaid_codes: "Códigos Prepagados"
|
||||
purchased: "Comprado"
|
||||
sale: "Venta"
|
||||
subscription: "Suscripción"
|
||||
invoices: "Facturas"
|
||||
service_apple: "Apple"
|
||||
|
@ -1495,11 +1412,11 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
courses: "Cursos"
|
||||
# course_instance: "Course Instance"
|
||||
# course_instances: "Course Instances"
|
||||
# classroom: "Classroom"
|
||||
# classrooms: "Classrooms"
|
||||
classroom: "Salón"
|
||||
classrooms: "Salones"
|
||||
clan: "Clan"
|
||||
clans: "Clanes"
|
||||
# members: "Members"
|
||||
members: "Miembros"
|
||||
users: "Usuarios"
|
||||
|
||||
concepts:
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
email_settings_url: "tus opciones de mail"
|
||||
email_description_suffix: "o mediante links en los mails que mandamos, tu puedas cambiar tus preferencias y fácilmente desuscribirte en cualquier momento."
|
||||
cost_title: "Costo"
|
||||
cost_description: "CodeCombat es gratuito para todos sus niveles principales, con una suscripción de $9.99 USD/mes con acceso a niveles adicionales y un bonus de 3500 gemas cada mes. Puedes cancelar con un click y ofrecemos una garantía del 100%."
|
||||
cost_description: "CodeCombat es gratuito para todos sus niveles principales, con una suscripción de ${{price}} USD/mes con acceso a niveles adicionales y un bonus de {{gems}} gemas cada mes. Puedes cancelar con un click y ofrecemos una garantía del 100%."
|
||||
copyrights_title: "Derechos y Licencias"
|
||||
contributor_title: "Contributor License Agreement"
|
||||
contributor_description_prefix: "Todas las Contribuciones, tanto en el website como en nuestro Repositorio GitHub, estan sujetos a nuestra aprobación."
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
nutshell_title: "En una palabra"
|
||||
nutshell_description: "Cualquier recurso que te proveamos en el Editor de Niveles es gratis de usar como te plazca para la creación de Niveles. Sin embargo, nos reservamos el derecho de restringir la distribución de los niveles por sí mismos (aquellos creados en codecombat.com) para así poder cobrar por ellos en el futuro, si es que eso es lo que termina pasando."
|
||||
canonical: "La versión en inglés de este documento es la versión canónica y definitiva. Si hay alguna discrepancia entre las traducciones, la versión en inglés toma precedencia."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Premios de Torneos" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
license: "licencia"
|
||||
oreilly: "ebook de su elección"
|
||||
|
||||
account_profile:
|
||||
settings: "Configuración" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Editar Perfil"
|
||||
done_editing: "Terminar Edición"
|
||||
profile_for_prefix: "Perfil para "
|
||||
profile_for_suffix: ""
|
||||
featured: "Soportado"
|
||||
not_featured: "No Soportado"
|
||||
looking_for: "Buscando:"
|
||||
last_updated: "Última Actualización:"
|
||||
contact: "Contacto"
|
||||
active: "En busca de entrevistas ahora mismo"
|
||||
inactive: "No busco entrevistas por ahora"
|
||||
complete: "completado"
|
||||
next: "Siguiente"
|
||||
next_city: "¿Ciudad?"
|
||||
next_country: "selecciona tu país"
|
||||
next_name: "¿Nombre?"
|
||||
next_short_description: "escribe una breve descripción."
|
||||
next_long_description: "describe a que posción aspiras."
|
||||
next_skills: "nombra al menos cinco de tus cualidades."
|
||||
next_work: "detalla tu historial laboral."
|
||||
next_education: "realiza un recuento de tus méritos academicos."
|
||||
next_projects: "exhibe un máximo de tres proyectos en los que hayas participado."
|
||||
next_links: "añade cualquier enlace personal o social"
|
||||
next_photo: "añade una foto profesional (opcional)."
|
||||
next_active: "etiquetate como abierto a ofertas, para aparecer en las busquedas."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Sitio Personal"
|
||||
links_header: "Enlaces Personale"
|
||||
links_blurb: "Añade enlaces a cualquier otro sitio o perfil que desees destacar, como tu GitHub, LinkedIn, o blog."
|
||||
links_name: "Nombre del enlace"
|
||||
links_name_help: "¿A que estas enlazando?"
|
||||
links_link_blurb: "URL del enlace"
|
||||
basics_header: "Actualizar información básica"
|
||||
basics_active: "Abierto a ofertas"
|
||||
basics_active_help: "¿Quieres ofertas para entrevistarte ahora mismo?"
|
||||
basics_job_title: "Posición Laboral deseada"
|
||||
basics_job_title_help: "¿Qué posición laboral estas buscando?"
|
||||
basics_city: "Ciudad"
|
||||
basics_city_help: "Ciudad en la que deseas trabajar (o en la que vives ahora)."
|
||||
basics_country: "País"
|
||||
basics_country_help: "País en el que deseas trabajar (o en el que vives ahora)."
|
||||
basics_visa: "Estatus laboral en EEUU"
|
||||
basics_visa_help: "¿Te encuentras autorizado para trabajar en los EEUU, o necesitas un patrocinador de visa? (Si vives en Canada o australia, selecciona autorizado.)"
|
||||
basics_looking_for: "Buscando"
|
||||
basics_looking_for_full_time: "Tiempo completo"
|
||||
basics_looking_for_part_time: "Tiempo parcial"
|
||||
basics_looking_for_remote: "A distacia"
|
||||
basics_looking_for_contracting: "Contratación"
|
||||
basics_looking_for_internship: "Pasantía"
|
||||
basics_looking_for_help: "¿Qué tipo de posición estas buscando como desarrollador?"
|
||||
name_header: "Escribe tu nombre"
|
||||
name_anonymous: "Desarrollador anónimo"
|
||||
name_help: "El nombre que los empleadores verán, por ejemplo 'Max Power'."
|
||||
short_description_header: "Descríbete en pocas palabras"
|
||||
short_description_blurb: "Añade un lema, para que un empleador pueda conocerte mejor facilmente."
|
||||
short_description: "Lema"
|
||||
short_description_help: "¿Quién eres, y que estas buscando? 140 caractéres máximo."
|
||||
skills_header: "Cualidades"
|
||||
skills_help: "Etiqueta tus cualidades más relevantes como desarrollador, en orden de competencia."
|
||||
long_description_header: "Describe tu posición laboral deseada"
|
||||
long_description_blurb: "Dile a los empleadores lo genial que eres, y que rol estas buscando."
|
||||
long_description: "Auto Descripción"
|
||||
long_description_help: "Describete a ti mismo para tus potenciales empleadores. Mantenlo corto y ve al grano. Te recomendamos destacar la posición laboral de mayor interes para ti. Un enfoque reduccionista, de buen gusto, es bienvenido; 600 caracteres mmáximo."
|
||||
work_experience: "Experiencia de Trabajo"
|
||||
work_header: "Detalla tu historial laboral"
|
||||
work_years: "Años de Experiencia"
|
||||
work_years_help: "Cuántos años de experiencia profesional (pagos) desarrollando software tienes?"
|
||||
work_blurb: "Realiza una lista con lo que consideres es tu experiencia laboral relevante, comenzando por la más reciente."
|
||||
work_employer: "Empleador"
|
||||
work_employer_help: "Nombre de tu empleador."
|
||||
work_role: "Nombre de la posición laboral"
|
||||
work_role_help: "¿Cuál era tu posición laboral o rol?"
|
||||
work_duration: "Duración"
|
||||
work_duration_help: "¿Cuál fue la duración de esa experiencia?"
|
||||
work_description: "Descripción"
|
||||
work_description_help: "¿Qué actividades realizabas allí? (140 caracteres; opcional)"
|
||||
education: "Educación"
|
||||
education_header: "Realiza un recuento de tus méritos academicos"
|
||||
education_blurb: "Escribe un recuento de tus méritos academicos."
|
||||
education_school: "Escuela"
|
||||
education_school_help: "Nombre de tu escuela."
|
||||
education_degree: "Título"
|
||||
education_degree_help: "¿Cuál fue tu título y área de estudio"
|
||||
education_duration: "Fechas"
|
||||
education_duration_help: "¿Cuándo?"
|
||||
education_description: "Descripción"
|
||||
education_description_help: "Destaca cualquier cosa acerca de esta experiencia educacional. (140 caracteres; opcional)"
|
||||
our_notes: "Nuestras Notas"
|
||||
remarks: "Observaciones"
|
||||
projects: "Proyectos"
|
||||
projects_header: "Añade 3 proyectos"
|
||||
projects_header_2: "Proyectos (Top 3)"
|
||||
projects_blurb: "Destaca tus proyectos para sorprender a los empleadores."
|
||||
project_name: "Nombre del Proyecto"
|
||||
project_name_help: "¿Cómo se llamaba el proyecto?"
|
||||
project_description: "Descripción"
|
||||
project_description_help: "Describe el proyecto brevemente.."
|
||||
project_picture: "Foto"
|
||||
project_picture_help: "Sube una imagen de 230x115px (o mayor) mostrando el proyecto"
|
||||
project_link: "Enlace"
|
||||
project_link_help: "Enlace al proyecto."
|
||||
player_code: "Código de Jugador"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Lo sentimos, CodeCombat no esta reclutando en estos momentos."
|
||||
deprecation_warning: "Estamos enfocados en los niveles de principiante en lugar de buscar desarrolladores expertos por el momento."
|
||||
hire_developers_not_credentials: "Contrata desarrolladores, no credenciales." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Comenzar"
|
||||
already_screened: "Ya hemos realizado un monitoreo técnico de todos los candidatos"
|
||||
filter_further: ",pero también puedes hacer un filtrado mas específico:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado para los EEUU"
|
||||
filter_visa_no: "No autorizado"
|
||||
filter_education_top: "Escuela de elite"
|
||||
filter_education_other: "Otro"
|
||||
filter_role_web_developer: "Desarrollador Web"
|
||||
filter_role_software_developer: "Desarrollador de Software"
|
||||
filter_role_mobile_developer: "Desarrollador Móvil"
|
||||
filter_experience: "Experiencia"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Grado académico reciente"
|
||||
filter_experience_student: "Estudiante Universitario"
|
||||
filter_results: "resultados"
|
||||
start_hiring: "Comenzar a contratar."
|
||||
reasons: "Tres razones por las cuales deberías contratar a traves de nosotros:"
|
||||
everyone_looking: "Todos aquí estan en busqueda de una oportunidad laboral."
|
||||
everyone_looking_blurb: "Olvidate del 20% de respuestas promedio obtenidas via LinkedIn InMail. Todas las personas listadas en este sitio quieren encontrar su próxima posición laboral y responderan a tu solicitud para concretar una introducción."
|
||||
weeding: "Relajate; ya hemos desmalezado por ti."
|
||||
weeding_blurb: "Todo jugador listado ha sido monitoreado en lo que a su habilidad técnica se refiere. También llevamos a cabo monitoreos telefónicos a los candidatos seleccionados y dejamos notas en sus perfiles para ahorrarte tiempo."
|
||||
pass_screen: "Ell@s superaran tu monitoreo técnico."
|
||||
pass_screen_blurb: "Revisa el código de cada jugador antes de ponerte en contacto. Uno de nuestros empleadores se encontro con una proporción 5 veces mayor de nuestros desarrolladores superando su monitoreo técnico al compararlo con contrataciones realizadas en Hacker News."
|
||||
make_hiring_easier: "Has mi contratación mas simple, por favor."
|
||||
what: "Que es CodeCombat?"
|
||||
what_blurb: "CodeCombat es un juego multijugador de programación para navegadores. Los jugadores escriben un código para medirse en batalla contra otros desarrolladores. Nuestros jugadores cuentan con experiencia en los principales lenguajes técnicos."
|
||||
cost: "¿Cuánto cobramos?"
|
||||
cost_blurb: "Cobramos un 15% del primer salario anual y ofrecemos una garantía de devolución del 100% del dinero por 90 días. No cobramos por candidatos que actualmente se encuentren siendo entrevistados de forma activa por tu compañía."
|
||||
candidate_name: "Nombre"
|
||||
candidate_location: "Ubicación"
|
||||
candidate_looking_for: "Buscando"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Mejores Habilidades"
|
||||
candidate_years_experience: "Años de Exp"
|
||||
candidate_last_updated: "Última Actualización"
|
||||
candidate_who: "Quién"
|
||||
featured_developers: "Desarrolladores Destacados"
|
||||
other_developers: "Otros Desarrolladores"
|
||||
inactive_developers: "Desarrolladores Inactivos"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionaje" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Mail o usuario"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Español (América Latina)", englishDescrip
|
|||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Usuarios"
|
||||
av_entities_active_instances_url: "Instancias Activas"
|
||||
av_entities_employer_list_url: "Lista de Empleadores"
|
||||
av_entities_candidates_list_url: "Lista de Candidatos"
|
||||
av_entities_user_code_problems_list_url: "Lista de Usuarios con problemas de código"
|
||||
av_other_sub_title: "Otro"
|
||||
av_other_debug_base_url: "Base (para depurar base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
multiplayer: "Multijugador" # Not currently shown on home page
|
||||
for_developers: "Para programadores" # Not currently shown on home page.
|
||||
or_ipad: "O descargalo para iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Jugar" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
creating: "Creando cuenta..."
|
||||
sign_up: "Registrarse"
|
||||
log_in: "Iniciar sesión con contraseña"
|
||||
social_signup: "O, puedes acceder a través de tu cuenta de Facebook o G+:"
|
||||
required: "Tienes que estar reginstrado antes de poder seguir por aquí."
|
||||
login_switch: "¿Ya tienes una cuenta?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
incomplete: "Incompleto"
|
||||
timed_out: "Te has quedado sin tiempo"
|
||||
failing: "Fallando"
|
||||
action_timeline: "Cronología de Acción"
|
||||
click_to_select: "Click en una unidad para seleccionarla"
|
||||
control_bar_multiplayer: "Multijugador"
|
||||
control_bar_join_game: "Unirse a un juego"
|
||||
reload: "Recargar"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
parents_title: "Queridos padres: Vuestro hijo está aprendiendo a programar. ¿Le ayudáis para que continue?"
|
||||
parents_blurb1: "Su hijo ha jugado __nLevels__ niveles y ha aprendido conceptos básicos de programación. Ayudadle a mejorar su eficiencia adquiriendo una suscripción para poder seguir programando."
|
||||
parents_blurb1a: "La programación informática es una habilidad fundamental que su hijo usará indudablemente cuando sea un adulto. Aproximadamente en 2020, se necesitarán conceptos de programación en el 77% de los empleos, y los ingenieros programadores están muy demandados en todo el mundo. ¿Sabían que la Ingeniería Informática es la titulación que más dinero paga?"
|
||||
parents_blurb2: "Por tan sólo $9.99 USD/mes, su hijo podrá afrontar nuevos retos cada semana, y recibirá soporte por correo electrónico de programadores profesionales."
|
||||
parents_blurb2: "Por tan sólo ${{price}} USD/mes, su hijo podrá afrontar nuevos retos cada semana, y recibirá soporte por correo electrónico de programadores profesionales."
|
||||
parents_blurb3: "Sin riesgo: 100% garantía de devoluación de dinero, desuscripción con un simple click."
|
||||
payment_methods: "Métodos de pago"
|
||||
payment_methods_title: "Métodos de pago permitidos"
|
||||
payment_methods_blurb1: "Actualmente aceptamos pagos a través de tarjetas de crédito / débito y Alipay." # {change}
|
||||
payment_methods_blurb2: "Si necesitas una forma alternativa de pago, puedes contactarnos"
|
||||
sale_already_subscribed: "Ya estás suscrito!"
|
||||
sale_blurb1: "¡Ahorra un $21" # {change}
|
||||
sale_blurb2: "de una suscripción normal de 120$ por un año entero!!"
|
||||
sale_button: "Comprar!"
|
||||
sale_button_title: "Ahorra un $21 si compras una suscripción de 1 año" # {change}
|
||||
sale_click_here: "Haz click aquí"
|
||||
sale_ends: "Finaliza"
|
||||
sale_extended: "*Las suscripciones actuales se extenderán un año más."
|
||||
sale_feature_here: "Esto es lo que tendrás:"
|
||||
sale_feature2: "¡10 <strong>héroes nuevos</strong> con poderes únicos!"
|
||||
sale_feature4: "¡<strong>42,000 gemas extra</strong> entregadas al momento!"
|
||||
sale_continue: "¿Listo para continuar con la aventura?"
|
||||
sale_limited_time: "¡Oferta de tiempo limitado!"
|
||||
sale_new_heroes: "¡Nuevos héroes!"
|
||||
sale_title: "Venta de Vuelta al Colegio"
|
||||
sale_view_button: "Compra una suscripción de 1 año por"
|
||||
sale_button_title: "Ahorra un ${{discount}} si compras una suscripción de 1 año" # {change}
|
||||
stripe_description: "Suscripción mensual"
|
||||
stripe_description_year_sale: "Suscripción de 1 año ($21 descuento)" # {change}
|
||||
stripe_description_year_sale: "Suscripción de 1 año (${{discount}} descuento)" # {change}
|
||||
subscription_required_to_play: "Necesitas una suscripción para jugar este nivel."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
currently_free_until: "Actualmente tienes una suscripción hasta el"
|
||||
was_free_until: "Tenías una suscripción gratuita hasta el"
|
||||
managed_subs: "Suscripciones administradas"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
subscribing: "Suscribiendo..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
current_recipients: "Últimos recibos"
|
||||
unsubscribing: "Dando de baja..." # {change}
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Información para profesores"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
intro_2: "¡No se necesita experiencia!"
|
||||
free_title: "¿Cuanto cuesta?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
how_much_1: "Una"
|
||||
how_much_2: "suscripción mensual"
|
||||
how_much_3: "tiene un coste de $9.99, y puede ser cancelada en cualquier momento."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
screenshot_included: "Pantallazo incluido."
|
||||
where_reply: "¿Dónde debemos responder?"
|
||||
send: "Envía tu comentario"
|
||||
contact_candidate: "Contactar Candidato" # Deprecated
|
||||
recruitment_reminder: "Usa este formulario para contactar con los candidatos que quieras entrevistar. Recuerda que CodeCombat cobrará el 18% del salario durante el primer año. La cuota es por la contratación del empleado y es reembolsable durante 90 días si el empleado no permanece contratado. A tiempo parcial, a distancia y los empleados de contrato son gratis, como lo son los becarios." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Ajustes de la cuenta"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
saved: "Cambios guardados"
|
||||
password_mismatch: "La contraseña no coincide"
|
||||
password_repeat: "Repite tu contraseña."
|
||||
job_profile: "Perfil de trabajo" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Tu perfil de trabajo ha sido aprobado por CodeCombat. Los empleadores podrán verlo hasta que lo marques como inactivo o no haya sido cambiado durante cuatro semanas."
|
||||
job_profile_explanation: "¡Hola! Rellena esto y estaremos en contacto para hablar sobre encontrarte un trabajo como desarrollador de software."
|
||||
sample_profile: "Mira un perfil de ejemplo"
|
||||
view_profile: "Mira tu perfil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Atajos de teclado"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
subs_only: "Sólo para usuarios suscritos"
|
||||
create_clan: "Crear nuevo Clan"
|
||||
private_preview: "Previsualización"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Clanes públicos"
|
||||
my_clans: "Mis Clanes"
|
||||
clan_name: "Nombre del Clan"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
payments: "Pagos"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Adquirido"
|
||||
sale: "Venta"
|
||||
subscription: "Suscripción"
|
||||
invoices: "Facturas"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
email_settings_url: "tus ajustes de correo electrónico"
|
||||
email_description_suffix: "o a través de los enlaces en los correos que te enviemos, puedes cambiar tus preferencias y darte de baja fácilmente en cualquier momento."
|
||||
cost_title: "Precio"
|
||||
cost_description: "Actualmente, ¡CodeCombat es 100% gratis! Uno de nuestros principales objetivos es mantenerlo así, de forma que el mayor número posible de gente pueda jugar, independientemente de sus posibilidades económicas. Si las cosas se tuercen, quizás tengamos que cobrar suscripciones o por algún contenido, pero preferimos no hacerlo. Con un poco de suerte, podremos mantener la empresa con: "
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights y Licencias"
|
||||
contributor_title: "Acuerdo de Licencia del Colaborador"
|
||||
contributor_description_prefix: "Todas las colaboraciones, tanto en la web como en nuestro repositorio de GitHub, están sujetas a nuestro"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
nutshell_title: "En una palabra"
|
||||
nutshell_description: "Todos los recursos que ofrecemos en el editor de niveles son libres de ser utilizados para crear niveles. Pero nos reservamos el derecho de restringir la distribución de los propios niveles (que se crean en codecombat.com) de modo que se pueda cobrar por ellos en el futuro, si eso es lo que termina sucediendo."
|
||||
canonical: "La versión inglesa de este documento es la canónica, la definitiva. Si hay alguna diferencia con lo que pueda aparecer en las traducciones, la versión inglesa es la que prevalece sobre las demás."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Premios del Torneo" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
license: "licencia"
|
||||
oreilly: "ebook de tu eleccion"
|
||||
|
||||
account_profile:
|
||||
settings: "Configuración" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Editar Perfil"
|
||||
done_editing: "Edición Terminada"
|
||||
profile_for_prefix: "Perfil de "
|
||||
profile_for_suffix: ""
|
||||
featured: "Destacado"
|
||||
not_featured: "Sin Destacar"
|
||||
looking_for: "Buscando:"
|
||||
last_updated: "Última actualización:"
|
||||
contact: "Contacto"
|
||||
active: "Buscando entrevistas de trabajo"
|
||||
inactive: "No busco entrevistas de trabajo ahora mismo"
|
||||
complete: "completado"
|
||||
next: "Siguiente"
|
||||
next_city: "¿Ciudad?"
|
||||
next_country: "elige tu país."
|
||||
next_name: "¿Nombre?"
|
||||
next_short_description: "escribe una descripción breve."
|
||||
next_long_description: "describe tu puesto de trabajo deseado."
|
||||
next_skills: "Pon al menos cinco habilidades."
|
||||
next_work: "Resume tu historia laboral."
|
||||
next_education: "Relatar tu experiencia educativa."
|
||||
next_projects: "Muestranos tres proyectos en los que hayas trabajado."
|
||||
next_links: "añade links personales o de redes sociales."
|
||||
next_photo: "añadir una foto para el perfil profesional."
|
||||
next_active: "mostrarte abierto a ofertas en las busquedas."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Web personal"
|
||||
links_header: "Enlaces Personales"
|
||||
links_blurb: "Enlaza otros sitios o perfiles que quieras destacar como tu GitHub, LinkedIn, o tu blog."
|
||||
links_name: "Nombre del enlace"
|
||||
links_name_help: "¿Qué estás enlazando?"
|
||||
links_link_blurb: "URL del enlace"
|
||||
basics_header: "Actualizar información básica"
|
||||
basics_active: "Abierto a ofertas"
|
||||
basics_active_help: "Buscas entrevistas de trabajo ahora?"
|
||||
basics_job_title: "Nombre del Cargo deseado"
|
||||
basics_job_title_help: "Que tipo de rol estas buscando?"
|
||||
basics_city: "Ciudad"
|
||||
basics_city_help: "Ciudad en la que quieres trabajar (o en la que vives actualmente)."
|
||||
basics_country: "País"
|
||||
basics_country_help: "País en la que quieres trabajar (o en la que vives actualmente)."
|
||||
basics_visa: "Estatus de Trabajo en EEUU"
|
||||
basics_visa_help: "Estas autorizado a trabajar en EEUU, o necesitas una visa patrocinada? (Si vives en Canada o Australia, marca autorizado.)"
|
||||
basics_looking_for: "Estoy Buscando"
|
||||
basics_looking_for_full_time: "Full-time (tiempo completo)"
|
||||
basics_looking_for_part_time: "Tiempo Partido"
|
||||
basics_looking_for_remote: "Desde Casa"
|
||||
basics_looking_for_contracting: "Contractual"
|
||||
basics_looking_for_internship: "Interino"
|
||||
basics_looking_for_help: "Que tipo de puesto de desarrollo te gustaria?"
|
||||
name_header: "Escriba su nombre"
|
||||
name_anonymous: "Desarrollador Anónimo"
|
||||
name_help: "Esto es lo que quieres que vean las empresas, algo como 'Nick Winter'."
|
||||
short_description_header: "Escriba una breve descripción sobre usted."
|
||||
short_description_blurb: "Añade una frase que ayude a las empresas a hacerse una idea de ti."
|
||||
# short_description: "Tagline"
|
||||
short_description_help: "¿Quién eres, y qué estás buscando? 140 caracteres como máximo."
|
||||
skills_header: "Habilidades"
|
||||
skills_help: "Etiqueta tus habilidades de desarrolloen orden de competencia."
|
||||
long_description_header: "Describenos tu trabajo soñado"
|
||||
long_description_blurb: "Cuenta a tus empleadores lo impresionante que eres y que trabajo estas buscando."
|
||||
long_description: "Descripción Personal"
|
||||
long_description_help: "Descríbete a ti mismo para tus potenciales empleadores. Mantenlo corto y directo. Recomendamos describir la posición que más te interesa. 600 caracteres max."
|
||||
work_experience: "Experiencia laboral"
|
||||
work_header: "Cuentanos un poco de tu historial laboral"
|
||||
work_years: "Años de experiencia"
|
||||
work_years_help: "Cuantos años de experiencia profesional(remunerada) como desarrollador de sofware tienes?"
|
||||
work_blurb: "Haz un listado con la experiencia laboral relevante, los mas recientes primero."
|
||||
work_employer: "Empresa/Empleador"
|
||||
work_employer_help: "Nombre de la empresa /el empleador."
|
||||
work_role: "Cargo"
|
||||
work_role_help: "¿Cuál era tu cargo o rol?"
|
||||
work_duration: "Duración"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
work_description: "Descripción"
|
||||
work_description_help: "Que has hecho alli? (140 caracteres maximo; opcional)"
|
||||
education: "Educación"
|
||||
education_header: "Detalla tu experiencia académica"
|
||||
education_blurb: "Lista tu experiencia académica."
|
||||
education_school: "Universidad"
|
||||
education_school_help: "Nombre de la Universidad."
|
||||
education_degree: "Titulo"
|
||||
education_degree_help: "Cual era tu carrera y tu campo de estudio?"
|
||||
education_duration: "Duracion"
|
||||
education_duration_help: "¿Cuándo?"
|
||||
education_description: "Descripción"
|
||||
education_description_help: "Resalta algo de tu experiencia educacional. (140 caracteres maximo; optional)"
|
||||
our_notes: "Nuestras notas"
|
||||
remarks: "Observaciones"
|
||||
projects: "Proyectos"
|
||||
projects_header: "Añade 3 proyectos"
|
||||
projects_header_2: "Proyectos (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
project_name: "Nombre del proyecto"
|
||||
project_name_help: "Como se llamaba el proyecto?"
|
||||
project_description: "Descripción"
|
||||
project_description_help: "Describe el proyecto brevemente."
|
||||
project_picture: "Foto"
|
||||
project_picture_help: "Sube una imagen de 230x115px o mas grande enseñandonos el proyecto."
|
||||
project_link: "Enlace"
|
||||
project_link_help: "Enlace al proyecto."
|
||||
player_code: "Codigo de Jugador"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Contrata desarrolladores, no credenciales." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Empezar"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
filter_further: ", Pero puedes filtrar mas alla:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado en EEUU"
|
||||
filter_visa_no: "No Autorizado"
|
||||
# filter_education_top: "Top School"
|
||||
filter_education_other: "Otros"
|
||||
filter_role_web_developer: "Desarrollador Web"
|
||||
filter_role_software_developer: "Desarrollador de Software"
|
||||
filter_role_mobile_developer: "Desarrollador de Mobiles"
|
||||
filter_experience: "Experiencia"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Recien Graduado"
|
||||
filter_experience_student: "Estudiante Universitario"
|
||||
filter_results: "notas"
|
||||
start_hiring: "Comenzar a contratar."
|
||||
reasons: "Tres razones por las que deberias contratar a traves de nosotros:"
|
||||
everyone_looking: "Todo el mundo aqui esta buscando su proxima oportunidad."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
weeding: "Sientate; nosotros hemos hecho el trabajo por ti."
|
||||
weeding_blurb: "Todos los jugadores que ponemos en la lista ha sido seguido por sus habilidades tecnicas. Tambien hacemos llamadas de telefono para los candidatos seleccionados y haz notas en sus perfiles para ahorrar tiempo."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
make_hiring_easier: "Hacer mi contratacion mas facil, por favor."
|
||||
what: "¿Qué es CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
cost: "Cuanto cobramos?"
|
||||
cost_blurb: "Cobramos el 15% del salario del primer año y ofrecemos reembolso del 100% del dinero durante 90 dias. No cobramos a los candidatos que ya estan siendo entrevistados en tu compañia."
|
||||
candidate_name: "Nombre"
|
||||
candidate_location: "Ubicación"
|
||||
candidate_looking_for: "Buscando"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Mejores Habilidades"
|
||||
candidate_years_experience: "Años Exp"
|
||||
candidate_last_updated: "Última actualización"
|
||||
candidate_who: "Quien"
|
||||
featured_developers: "Desarrolladores Destacados"
|
||||
other_developers: "Otros Desarrolladores"
|
||||
inactive_developers: "Desarrolladores Inactivos"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email o Nombre de usuario"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "español (ES)", englishDescription: "Spanis
|
|||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Usuarios"
|
||||
av_entities_active_instances_url: "Instancias Activas"
|
||||
av_entities_employer_list_url: "Lista de empleados"
|
||||
av_entities_candidates_list_url: "Lista de Candidatos"
|
||||
av_entities_user_code_problems_list_url: "Lista de Problemas de Codigo del Usuario"
|
||||
av_other_sub_title: "Otros"
|
||||
av_other_debug_base_url: "Base (para debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Eesti", englishDescription: "Estonian", tra
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "سطوح" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
creating: "...در حال ایجاد حساب کاربری"
|
||||
sign_up: "ثبت نام"
|
||||
log_in: "ورود به وسیله رمز عبور"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "ارسال بازخورد"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "تنظیمات حساب کاربری"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "فارسی", englishDescription: "Persian",
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
multiplayer: "Moninpeli" # Not currently shown on home page
|
||||
for_developers: "Kehittäjille" # Not currently shown on home page.
|
||||
or_ipad: "Tai lataa iPad:ille"
|
||||
hoc_class_code: "Minulla on Luokkakoodi"
|
||||
hoc_enter: "Sisään"
|
||||
hoc_title: "Kooditunti?"
|
||||
|
||||
nav:
|
||||
play: "Tasot" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
creating: "Luodaan tili..."
|
||||
sign_up: "Ilmoittaudu"
|
||||
log_in: "kirjaudu sisään salasanalla"
|
||||
social_signup: "Tai ilmoittaudu Facebook tai G+ tunnuksilla:"
|
||||
required: "Kirjaudu ensin jotta pääset jatkamaan."
|
||||
login_switch: "Onko sinulla jo tili?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
incomplete: "Kesken"
|
||||
timed_out: "Aika loppui"
|
||||
failing: "Epäonnistui"
|
||||
action_timeline: "Toiminto-aikajana"
|
||||
click_to_select: "Jos valitset yksikön, klikkaa sitä."
|
||||
control_bar_multiplayer: "Moninpelaaja"
|
||||
control_bar_join_game: "Liity peliin"
|
||||
reload: "Lataa"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
parents_title: "Hyvät vanhemmat: Teidän lapsenne haluaa oppia ohjelmoimaan. Autatteko häntä oppimaan?"
|
||||
parents_blurb1: "Lapsenne on läpäissyt jo __nLevels__ tasoa ja oppinut niissä ohjelmoinnin alkeita. Auta häntä etenemmään tehokkaammin oppimisessaan ostamalla hänelle CodeCombat kuukausitilaus."
|
||||
parents_blurb1a: "Ohjelmointi on nykypäivän perustaito, jota lapsenne epäilemättä tarvitsee aikuisena. Vuoteen 2020 mennessä, perusohjelmointitaitoja tarvitaan 77% työtehtävistä, ja koulutettuja ohjelmisto-osaajia tarvitaan ympäri maailman. Tiesitkö myös, että tietojenkäsittelytiede tarjoaa valmistuneille korkeakoulu-opiskelijoille korkeapalkkaisia työmahdollisuuksia?"
|
||||
parents_blurb2: "Hintaan $9.99 USD/kk, lapsenne saa uusia haastavia tehtäviä joka viikko sekä henkilökohtaista sähköpostitukea ammatti-ohjelmoijiltamme."
|
||||
parents_blurb2: "Hintaan ${{price}} USD/kk, lapsenne saa uusia haastavia tehtäviä joka viikko sekä henkilökohtaista sähköpostitukea ammatti-ohjelmoijiltamme."
|
||||
parents_blurb3: "Ei riskiä: 100% rahat takaisin takuu, sekä yksinkertainen yhden painalluksen tilausken lopetus."
|
||||
payment_methods: "Maksutavat"
|
||||
payment_methods_title: "Käytössä olevat maksutavat"
|
||||
payment_methods_blurb1: "Tällä hetkellä käytössämme on luottokorttimaksu ja Alipay." # {change}
|
||||
payment_methods_blurb2: "Jos haluat käyttää vaihtoehtoista maksutapaa, ole hyvä ja ota yhteyttä"
|
||||
sale_already_subscribed: "Sinulla on jo kuukausitilaus!"
|
||||
sale_blurb1: "Säästä $21" # {change}
|
||||
sale_blurb2: "kuukausitilauksesta, jonka hinta tavallisesti on $120 USD vuodessa!"
|
||||
sale_button: "Alennus!"
|
||||
sale_button_title: "Säästä $21 kun ostat kuukausitilauksen koko vuodeksi kerralla" # {change}
|
||||
sale_click_here: "Paina tästä"
|
||||
sale_ends: "Päättyy"
|
||||
sale_extended: "*Olemassaolevia kuukausitilauksia tullaan jatkamaan 12 kuukaudella."
|
||||
sale_feature_here: "Saat kaiken tämän:"
|
||||
sale_feature2: "10 mahtavaa <strong>uutta sankaria</strong> erilaisine kykyineen!"
|
||||
sale_feature4: "<strong>42,000 jalokiveä</strong> toimitettuna välittömästi!"
|
||||
sale_continue: "Oletko valmis jatkamaan seikkailua?"
|
||||
sale_limited_time: "Tarjous voimassa rajoitetun ajan!"
|
||||
sale_new_heroes: "Uusia sankareita!"
|
||||
sale_title: "Koulujen alku-alennusmyynti"
|
||||
sale_view_button: "Osta kuukausitilaus koko vuodeksi hintaan"
|
||||
sale_button_title: "Säästä ${{discount}} kun ostat kuukausitilauksen koko vuodeksi kerralla" # {change}
|
||||
stripe_description: "Kuukausittainen tilaus"
|
||||
stripe_description_year_sale: "12 kk:n kuukausitilaus ($21 alennuksella)" # {change}
|
||||
stripe_description_year_sale: "12 kk:n kuukausitilaus (${{discount}} alennuksella)" # {change}
|
||||
subscription_required_to_play: "Tarvitset CodeCombat kuukausitilauksen pellataksesi tätä tasoa."
|
||||
unlock_help_videos: "Hanki tilaus avataksesi kaikki video-oppaat."
|
||||
personal_sub: "Henkilökohtainen tilaus" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
currently_free_until: "Tilauksesi on voimassa"
|
||||
was_free_until: "Ilmainen tilauksesi päättyi"
|
||||
managed_subs: "Hallinnoidut tilaukset"
|
||||
managed_subs_desc: "Lisää tilaus toiselle pelaajalle (oppilas, lapsesi, jne.)"
|
||||
managed_subs_desc_2: "Vastaanottajalla tulee olla CodeCombat tili liitettynä antamaasi sähköpostiosoitteeseen."
|
||||
group_discounts: "Ryhmäalennukset"
|
||||
group_discounts_1: "Tarjoamme alennettuja hintoja ryhmätilauksille."
|
||||
group_discounts_1st: "Ensimmäinen tilaus"
|
||||
group_discounts_full: "Täysi hinta"
|
||||
group_discounts_2nd: "Tilaukset 2-11"
|
||||
group_discounts_20: "Alennus 20%"
|
||||
group_discounts_12th: "Tilaukset 12+"
|
||||
group_discounts_40: "Alennus40%"
|
||||
subscribing: "Tilausta käsitellään..."
|
||||
recipient_emails_placeholder: "Syötä tilausken vastaanottajan sähköpostiosoite, yksi riville."
|
||||
subscribe_users: "Tilaa käyttäjille"
|
||||
users_subscribed: "Tilattu käyttäjille:"
|
||||
no_users_subscribed: "Tilaus ei onnistunut, ole hyvä ja tarksita sähköpostiosoitteet."
|
||||
current_recipients: "Tämänhetkiset vastaanottajat"
|
||||
unsubscribing: "Tilaus päätetään..." # {change}
|
||||
subscribe_prepaid: "Tilaa käyttämällä ennakkomaksettua koodinumeroa"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Lisää tietoa opettajille"
|
||||
intro_1: "CodeCombat on selainpeli, joka opettaa ohjelmointia. Opiskelijat kirjoittavat ohjelmakoodia oikeilla ohjelmointikielillä."
|
||||
intro_2: "Aiempi kokemus ei ole tarpeen!"
|
||||
free_title: "Mitä kaikki maksaa?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "Käytössäsi on 110+ ILMAISTA tasoa, jotka kattavat koko ohjelmoinnin perustan."
|
||||
free_2: "Maksullinen kuukausitilaus avaa pääsyn video-oppaisiin ja lisätasoihin."
|
||||
free_3: "CodeCombat sivusto on jaettu content is divided into"
|
||||
free_4: "kursseihin"
|
||||
free_5: ". Ensimmäinen kurssi on ilmainen. Se on kestoltaan noin tunnin."
|
||||
free_6: "Pääsyn lisätehtäviin voit avata kertaostoksella."
|
||||
teacher_subs_title: "Opettajat saavat ilmaisen kuukausitilauksen!" # {change}
|
||||
teacher_subs_0: "Tarjoamme ilmaisen kokeilun opettajille."
|
||||
teacher_subs_1: "Ole hyvä ja täytä"
|
||||
teacher_subs_2: "opettajan kysely"
|
||||
teacher_subs_3: "ottaaksesi tilauksesi käyttöön." # {change}
|
||||
sub_includes_title: "Mitä kuukausitilaukseen kuuluu?"
|
||||
sub_includes_1: "110+ perustason lisäksi, kuukausitilaus avaa jokaiselle oppilaalle seuraavat edut:"
|
||||
sub_includes_2: "70+ lisätasoa" # {change}
|
||||
sub_includes_3: "Video-oppaat"
|
||||
sub_includes_4: "Premium sähköpostituki"
|
||||
sub_includes_5: "10 uutta sankaria erilaisine kykyineen"
|
||||
sub_includes_6: "3500 jalokiveä joka kuukausi"
|
||||
sub_includes_7: "Yksityisklaanit"
|
||||
monitor_progress_title: "Kuinka seuraan oppilaitteni edistymistä?"
|
||||
monitor_progress_1: "Oppilaittesi edistymistä voit seurata luomalla oman"
|
||||
monitor_progress_2: "luokallesi."
|
||||
monitor_progress_3: "Lisätäksesi oppilaan klaaniin, lähetä hänelle kutsulinkki, jonka löydät"
|
||||
monitor_progress_4: "sivulta."
|
||||
monitor_progress_5: "Oppilaiden liityttyä klaaniin, näet yhteenvedon heidän edistymisestä Klaanin sivulla."
|
||||
private_clans_1: "Yksityisklaanit tarjoavat enemmän yksityisyyttä ja seikkaperäiset edistymistiedot jokaisesta opiskelijasta."
|
||||
private_clans_2: "Luodaksesi yksityisklaanin, valitse 'Yksityinen klaani' valintaruutu"
|
||||
private_clans_3: "luodessasi."
|
||||
who_for_title: "Kenelle CodeCombat on tarkoitettu?"
|
||||
who_for_1: "Suosittelemme CodeCombatia 9 vuotiaille ja vanhemmille oppilaille. Aiempaa ohjelmointiosaamista ei tarvita."
|
||||
who_for_2: "CodeCombat on suunniteltu yhtälailla pojille kuin tytöille."
|
||||
material_title: "Kuinka paljon sisältöä palvelu tarjoaa?"
|
||||
material_premium_server: "Noin 40 tunnin edestä, yli 180+ pelitasoa kuukausitilanneille käyttäjille tähänmennessä." # {change}
|
||||
material_1: "Noin 25 tuntia ilmaista sisältöä ja kuukausitilanneille noin 15 tuntia lisämateriaalia."
|
||||
concepts_title: "Mitkä ohjelmointikonseptit CodeCombat kattaa?"
|
||||
how_much_title: "Minkä verran kuukausitilaus maksaa?"
|
||||
how_much_1: "CodeCombat"
|
||||
how_much_2: "Kuukausitilaus"
|
||||
how_much_3: "maksaa $9.99 USD, ja se voidaan lopettaa milloin tahansa."
|
||||
how_much_4: "Lisäksi, tarjoamme alennuksia ryhmätilauksille seuraavasti:"
|
||||
how_much_5: "Tarjoamme alennuksia kertaostoista ja kuukausitilauksista ryhmille, kuten luokille tai kouluille. Lisätietoja saat ottamalla yhteyttä"
|
||||
how_much_6: "."
|
||||
who_for_1: "Suosittelemme CodeCombatia 9 vuotiaille ja vanhemmille oppilaille. Aiempaa ohjelmointiosaamista ei tarvita." # {change}
|
||||
who_for_2: "CodeCombat on suunniteltu yhtälailla pojille kuin tytöille." # {change}
|
||||
more_info_title: "Mistä saan lisätietoa?"
|
||||
more_info_1: ""
|
||||
more_info_2: "Opettajien foorumi"
|
||||
more_info_3: "(keskustelu pääosin englanniksi) on hyvä paikkaia tutustua toisiin opettajiin jotka käyttävät CodeCombatia."
|
||||
sys_requirements_title: "Järjestelmävaatimukset"
|
||||
sys_requirements_1: "Nykyaikainen selainohjelma, kuten Chrome, Firefox, tai Safari joista uusi versio. Internet Explorer 9 tai uudempi."
|
||||
sys_requirements_2: "iPad app CodeCombatista on vasta kehitteillä."
|
||||
|
||||
teachers_survey:
|
||||
title: "Opettajan kysely"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
screenshot_included: "Kuvankaappaus liitetty."
|
||||
where_reply: "Mihin haluatte vastauksen?"
|
||||
send: "Lähetä"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Tiliasetukset"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
saved: "Muutokset tallennettu"
|
||||
password_mismatch: "Salasanat eivät täsmää."
|
||||
password_repeat: "Kirjoita salasana uudestaan."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
view_profile: "Tutki profiiliasi"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Pikanäppäimet"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
subs_only: "Vain tilanneille"
|
||||
create_clan: "Luo uusi klaani"
|
||||
private_preview: "Esikatselu"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Julkiset klaanit"
|
||||
my_clans: "Omat klaanit"
|
||||
clan_name: "Klaanin nimi"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
payments: "Ostot"
|
||||
prepaid_codes: "Prepaid koodi"
|
||||
purchased: "Ostettu"
|
||||
sale: "Alennus"
|
||||
subscription: "Kuukausitilaus"
|
||||
invoices: "Laskut"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "suomi", englishDescription: "Finnish", tran
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
multiplayer: "Multixogador" # Not currently shown on home page
|
||||
for_developers: "Para programadores" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Xogar" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
creating: "Creando conta..."
|
||||
sign_up: "Rexistrarse"
|
||||
log_in: "Iniciar sesión con contrasinal"
|
||||
social_signup: "Ou, podes acceder a través da túa conta de Facebook ou G+:"
|
||||
required: "Tes que estar rexistrado antes de poder continuar."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
incomplete: "Incompleto"
|
||||
timed_out: "Acabouse o tempo"
|
||||
failing: "Fallando"
|
||||
action_timeline: "Cronoloxía de Acción"
|
||||
click_to_select: "Preme nunha unidade para seleccionala"
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Envía o teu comentario"
|
||||
contact_candidate: "Contactar Candidato" # Deprecated
|
||||
recruitment_reminder: "Usa este formulario para contactar cos candidatos que queiras entrevistar. Recorda que CodeCombat cobrará o 18% do salario durante o primeiro ano. A cuota é pola contratación do empregado e é reembolsable durante 90 días se o empregado non permanece contratado. A tempo parcial, a distancia e os empregados de contrato son gratis, como o son os bolseiros." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Axustes da conta"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
saved: "Cambios gardados"
|
||||
password_mismatch: "O contrasinal non coincide"
|
||||
password_repeat: "Repite o teu contrasinal."
|
||||
job_profile: "Perfil de traballo" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "O teu perfil de traballo foi aprobado por CodeCombat. Os empleadores poderán velo ata que o marques como inactivo ou non sexa cambiado durante catro semanas."
|
||||
job_profile_explanation: "Ola! Enche isto e estaremos en contacto para falar sobre atoparte un traballo como desenvolvedor de software."
|
||||
sample_profile: "Mira un perfil de exemplo"
|
||||
view_profile: "Mira o teu perfil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Atallos de teclado"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
email_settings_url: "os teus axustes de correo electrónico"
|
||||
email_description_suffix: "ou a través das ligazóns nos correos que te enviemos, podes cambiar as túas preferencias e darte de baixa doadamente en calquera momento."
|
||||
cost_title: "Prezo"
|
||||
cost_description: "Actualmente, CodeCombat é 100% de balde! Un dos nosos principais obxectivos é mantelo así, de forma que o maior número posible de xente poida xogar, independientemente das súas posibilidades económicas. Se as cousas van mal, se cadra teremos que cobrar suscripcións por algún contido, pero preferimos non facelo. Cun pouco de sorte, poderemos manter a empresa con: "
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Copyrights e Licenzas"
|
||||
contributor_title: "Acordo de Licenza do Colaborador"
|
||||
contributor_description_prefix: "Todas as colaboracións, tanto na web como no noso repositorio de GitHub, están suxeitas ao noso"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
nutshell_title: "Nunha palabra"
|
||||
nutshell_description: "Todos os recursos que ofrecemos no editor de niveis son libres de ser utilizados para crear niveis. Pero reservámosnos o dereito de restrinxir a distribución dos propios niveis (que se crean en codecombat.com) de modo que se poida cobrar por eles no futuro, se iso é o que termina por suceder."
|
||||
canonical: "A versión inglesa deste documento é a canónica, a definitiva. Se hai algunha diferenza coa que poida aparecer nas traduccións, a versión inglesa é a que prevalece sobre as demais."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Premios do Torneo" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
license: "licenza"
|
||||
oreilly: "ebook da túa escolla"
|
||||
|
||||
account_profile:
|
||||
settings: "Configuración" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Editar Perfil"
|
||||
done_editing: "Edición Terminada"
|
||||
profile_for_prefix: "Perfil de "
|
||||
profile_for_suffix: ""
|
||||
featured: "Destacado"
|
||||
not_featured: "Sen Destacar"
|
||||
looking_for: "Buscando:"
|
||||
last_updated: "Última actualización:"
|
||||
contact: "Contacto"
|
||||
active: "Buscando entrevistas de traballo"
|
||||
inactive: "Non busco entrevistas de traballo agora mesmo"
|
||||
complete: "Completado"
|
||||
next: "Seguinte"
|
||||
next_city: "Cidade?"
|
||||
next_country: "escolle o teu país."
|
||||
next_name: "Nome?"
|
||||
next_short_description: "escribe unha descripción breve."
|
||||
next_long_description: "describe o teu posto de traballo desexado."
|
||||
next_skills: "Pon ao menos cinco habilidades."
|
||||
next_work: "Resume a túa historia laboral."
|
||||
# next_education: "recount your educational ordeals."
|
||||
next_projects: "Amósanos tres proxectos nos que teñas traballado."
|
||||
next_links: "Engade ligazóns personais ou de redes sociais."
|
||||
next_photo: "Engadir unha foto para o perfil profesional."
|
||||
next_active: "Amosarte aberto a ofertas nas búsquedas."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Web personal"
|
||||
links_header: "Ligazóns Personais"
|
||||
links_blurb: "Liga a outros sitios ou perfiles que queiras destacar como o teu GitHub, LinkedIn, ou o teu blog."
|
||||
links_name: "Nome da ligazón"
|
||||
links_name_help: "Que estás ligando?"
|
||||
links_link_blurb: "URL da ligazón"
|
||||
basics_header: "Actualizar información básica"
|
||||
basics_active: "Aberto a ofertas"
|
||||
basics_active_help: "Buscas entrevistas de traballo agora?"
|
||||
# basics_job_title: "Desired Job Title"
|
||||
basics_job_title_help: "Que tipo de rol estás buscando?"
|
||||
basics_city: "Cidade"
|
||||
basics_city_help: "Cidade na que queres traballar (ou na que vives actualmente)."
|
||||
basics_country: "País"
|
||||
basics_country_help: "País no que queres traballar (ou no que vives actualmente)."
|
||||
basics_visa: "Status de Traballo en EEUU"
|
||||
basics_visa_help: "Estás autorizado a traballar en EEUU, ou precisas unha visa patrocinada? (Se vives en Canadá ou Australia, marca autorizado.)"
|
||||
basics_looking_for: "Estou Buscando"
|
||||
basics_looking_for_full_time: "Full-time (tempo completo)"
|
||||
basics_looking_for_part_time: "Tempo Parcial"
|
||||
basics_looking_for_remote: "Dende a Casa"
|
||||
basics_looking_for_contracting: "Contractual"
|
||||
basics_looking_for_internship: "Interino"
|
||||
basics_looking_for_help: "Que tipo de posto de desenvolemento te gustaría?"
|
||||
name_header: "Escribe o teu nome"
|
||||
name_anonymous: "Desenvolvedor Anónimo"
|
||||
name_help: "Esto é o que queres que vexan as empresas, algo como 'Nick Winter'."
|
||||
short_description_header: "Escribe unha breve descripción sobre ti."
|
||||
short_description_blurb: "Engade unha frase que lles axude ás empresas a facerse unha idea de ti."
|
||||
# short_description: "Tagline"
|
||||
short_description_help: "Quen es, e que estás buscando? 140 caracteres como máximo."
|
||||
skills_header: "Habilidades"
|
||||
# skills_help: "Tag relevant developer skills in order of proficiency."
|
||||
long_description_header: "Descríbenos o teu traballo soñado"
|
||||
long_description_blurb: "Conta aos teus empregadores o impresionante que es e que traballo estás buscando."
|
||||
long_description: "Descripción Persoal"
|
||||
# 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: "Experiencia laboral"
|
||||
work_header: "Cóntanos un pouco a túa historial laboral"
|
||||
work_years: "Anos de experiencia"
|
||||
work_years_help: "Cantos anos tes de experiencia profesional (remunerada) como desenvolvedor de sofware?"
|
||||
work_blurb: "Fai un listado coa experiencia laboral relevante, o máis recente primeiro."
|
||||
work_employer: "Empresa/Empregador"
|
||||
work_employer_help: "Nome da empresa / empregador."
|
||||
# work_role: "Job Title"
|
||||
# work_role_help: "What was your job title or role?"
|
||||
work_duration: "Duración"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
work_description: "Descripción"
|
||||
work_description_help: "Que fixeches alí? (140 caracteres máximo; opcional)"
|
||||
education: "Educación"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
education_school: "Universidade"
|
||||
education_school_help: "Nome da Universidade."
|
||||
education_degree: "Titulo"
|
||||
education_degree_help: "Cal era a túa carreira e o teu campo de estudo?"
|
||||
education_duration: "Duración"
|
||||
education_duration_help: "Cando?"
|
||||
education_description: "Descripción"
|
||||
education_description_help: "Resalta algo da túa experiencia educativa. (140 caracteres maximo; opcional)"
|
||||
our_notes: "As nosas notas"
|
||||
# remarks: "Remarks"
|
||||
projects: "Proxectos"
|
||||
projects_header: "Engade 3 proxectos"
|
||||
projects_header_2: "Proyectos (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
project_name: "Nome do proxecto"
|
||||
project_name_help: "Como se chamaba o proxecto?"
|
||||
project_description: "Descripción"
|
||||
project_description_help: "Describe o proxecto brevemente."
|
||||
project_picture: "Foto"
|
||||
project_picture_help: "Sube unha imaxe de 230x115 px ou máis grande ensinándonos o proxecto."
|
||||
project_link: "Ligazón"
|
||||
project_link_help: "Ligazón ao proxecto."
|
||||
player_code: "Código de Xogador"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Contrata desenvolvedores, non credenciais." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Comezar"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
filter_further: ", Pero podes filtrar máis alá:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado en EEUU"
|
||||
filter_visa_no: "Non Autorizado"
|
||||
# filter_education_top: "Top School"
|
||||
filter_education_other: "Outros"
|
||||
filter_role_web_developer: "Desenvolvedor Web"
|
||||
filter_role_software_developer: "Desenvolvedor de Software"
|
||||
filter_role_mobile_developer: "Desenvolvedor de Móbiles"
|
||||
filter_experience: "Experiencia"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Recén Graduado"
|
||||
filter_experience_student: "Estudante Universitario"
|
||||
filter_results: "notas"
|
||||
start_hiring: "Comenzar a contratar."
|
||||
reasons: "Tres razóns polas que deberías contratar a través de nos:"
|
||||
everyone_looking: "Todo o mundo aquí está buscando a súa proxima oportunidade."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
weeding: "Séntate; nós fixemos o traballo por ti."
|
||||
weeding_blurb: "Todos os xogadores que poñemos na lista foron seguidos polas súas habilidades técnicas. Tamén facemos chamadas de teléfono para os candidatos seleccionados e anotamos nos seus perfís para aforrar tempo."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
make_hiring_easier: "Facer a miña contratación máis doada, por favor."
|
||||
what: "Que é CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
cost: "Canto cobramos?"
|
||||
cost_blurb: "Cobramos o 15% do salario do primeiro ano e ofrecemos reembolso do 100% do diñeiro durante 90 días. Non cobramos aos candidatos que xa están sendo entrevistados na túa compañia."
|
||||
candidate_name: "Nome"
|
||||
candidate_location: "Ubicación"
|
||||
candidate_looking_for: "Buscando"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Mellores Habilidades"
|
||||
candidate_years_experience: "Anos Experiencia"
|
||||
candidate_last_updated: "Última actualización"
|
||||
candidate_who: "Quen"
|
||||
featured_developers: "Desenvolvedores Destacados"
|
||||
other_developers: "Outros Desenvolvedores"
|
||||
inactive_developers: "Desenvolvedores Inactivos"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionaxe" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Correo electrónico ou Nome de usuario"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Galego", englishDescription: "Galician", tr
|
|||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Usuarios"
|
||||
av_entities_active_instances_url: "Instancias Activas"
|
||||
av_entities_employer_list_url: "Lista de empregados"
|
||||
av_entities_candidates_list_url: "Lista de candidatos"
|
||||
av_entities_user_code_problems_list_url: "Lista de Problemas de Código do Usuario"
|
||||
av_other_sub_title: "Outros"
|
||||
av_other_debug_base_url: "Base (para debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
multiplayer: "רב-משתתפים" # Not currently shown on home page
|
||||
for_developers: "למפתחים" # Not currently shown on home page.
|
||||
or_ipad: "iPadאו הורד ל"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "שלבים" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
creating: "יוצר חשבון..."
|
||||
sign_up: "הירשם"
|
||||
log_in: "כנס עם סיסמה"
|
||||
social_signup: "Facebook ו Google+ או, שאתה יכול להירשם דרך"
|
||||
required: ".יש להתחבר על מנת לגשת לשלב זה"
|
||||
login_switch: "? כבר יש לך משתמש"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
incomplete: "לא הושלם"
|
||||
timed_out: "הזמן אזל"
|
||||
failing: "נכשל"
|
||||
action_timeline: "ציר זמן"
|
||||
click_to_select: ".לחץ על יחידה על מנת לבחור בה"
|
||||
control_bar_multiplayer: "רב-משתתפים"
|
||||
control_bar_join_game: "הצטרף למשחק"
|
||||
reload: "טען שוב"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
parents_title: "ילדכם ילמד לתכנת." # {change}
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "מנוי חודשי"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "יש צורך במנוי כדי לשחק בשלב זה."
|
||||
unlock_help_videos: "רכוש מנוי כדי לפתוח את כל הדרכות הוידאו."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
screenshot_included: ".כולל תמונות"
|
||||
where_reply: "?איפה אנחנו אמורים להגיב"
|
||||
send: "שלח מייל"
|
||||
contact_candidate: "צור קשר עם נציג" # Deprecated
|
||||
recruitment_reminder: "השתמש בטופס זה כדי להגיע למועמדים שאתה מעוניין לראיין. זכור כי CodeCombat גובה 15% מהשכר בשנה הראשונה.התשלום מתבצע בעת שכירת העובדים ויוחזר במשך 90 ימים אם העובד לא יישאר מועסק. משרה חלקית, עובדים מרוחקים, עובדי חוזה הם חינם, כמו גם מתמחה." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "הגדרות חשבון"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
saved: "השינויים נשמרו"
|
||||
password_mismatch: "סיסמאות לא זהות"
|
||||
password_repeat: ".אנא חזור על הסיסמא"
|
||||
job_profile: "פרופיל עבודה" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "פרופיל העבודה שלך אושר על ידי CodeCombat. מעסיקים יוכלו לראות את הפרופיל עד שאתה או מסמן אותו כ 'לא פעיל' או אם הוא לא השתנה במשך ארבעה שבועות."
|
||||
job_profile_explanation: "היי! מלא את זה, ואנו ניצור איתך קשר על מציאת עבודה כמפתח תוכנה."
|
||||
sample_profile: "פרופיל לדוגמה"
|
||||
view_profile: "צפה בפרופיל שלך"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "קיצורי מקשים"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
subs_only: "מנויים בלבד"
|
||||
create_clan: "צור שבט חדש"
|
||||
private_preview: "צפה"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "שבטים פתוחים"
|
||||
my_clans: "השבטים שלי"
|
||||
clan_name: "שם השבט"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
payments: "תשלומים"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "קניות"
|
||||
# sale: "Sale"
|
||||
subscription: "מנויים"
|
||||
# invoices: "Invoices"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "הגדרות" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "ערוך פרופיל"
|
||||
done_editing: "סיים עריכה"
|
||||
profile_for_prefix: "פרופיל ל"
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: ":מחפש"
|
||||
last_updated: "עודכן לאחרונה ב:"
|
||||
contact: "צור קשר"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
next: "הבא"
|
||||
next_city: "עיר?"
|
||||
next_country: "בחר את המדינה שלך."
|
||||
next_name: "שם?"
|
||||
next_short_description: "כתוב תיאור קצר."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
av_espionage: "ריגול" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "כתובת מייל או שם משתמש"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "עברית", englishDescription: "Hebrew",
|
|||
# av_entities_sub_title: "Entities"
|
||||
av_entities_users_url: "משתמשים"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
av_entities_employer_list_url: "רשימת מעסיק"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "אחר"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
multiplayer: "मल्टीप्लेयर" # Not currently shown on home page
|
||||
for_developers: "डेवलपर्स के लिए" # Not currently shown on home page.
|
||||
or_ipad: "या iPad के लिए डाउनलोड करें"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "चरण" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "मानक हिन्दी", englishDe
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
multiplayer: "Többjátékos" # Not currently shown on home page
|
||||
for_developers: "Fejlesztőknek" # Not currently shown on home page.
|
||||
or_ipad: "Vagy töltsd le iPadra"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Játék" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
creating: "Fiók létrehozása"
|
||||
sign_up: "Regisztráció"
|
||||
log_in: "Belépés meglévő fiókkal"
|
||||
social_signup: "De regisztrálhatsz a Facebook-on vagy a G+:-on keresztül is."
|
||||
required: "Csak akkor mehetsz arra, ha már bejelentkeztél."
|
||||
login_switch: "Már van fiókod?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
incomplete: "Hiányos"
|
||||
timed_out: "Kifutottál az időből"
|
||||
failing: "Bukás"
|
||||
action_timeline: "Akció - Idővonal"
|
||||
click_to_select: "Kattints egy egységre, hogy kijelöld!"
|
||||
control_bar_multiplayer: "Többjátékos"
|
||||
control_bar_join_game: "Csatlakozz"
|
||||
reload: "Újratöltés"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
parents_title: "A gyereke programozni tanul majd." # {change}
|
||||
parents_blurb1: "A CodeCombattal a gyereke valódi programozási feladatokon keresztül tanul. Egyszerű utasításokkal kezdenek, aztán további témákba is betekintést kapnak."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "Havonta 9,99 USD-ért, minden héten új kihívások elé állítjuk őket és személyre szóló emailes támogatást nyújtanak enkik profi programozók." # {change}
|
||||
parents_blurb2: "Havonta {{price}} USD-ért, minden héten új kihívások elé állítjuk őket és személyre szóló emailes támogatást nyújtanak enkik profi programozók." # {change}
|
||||
parents_blurb3: "100%-os pénzvisszafizetés garancia: 1-kattintásossal leiratkozhat."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Havi előfizetés"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Ehhez a szinthez elő kell fizetnek."
|
||||
unlock_help_videos: "Végy előfizetést, hogy feloldd az összes videó oktatóanyagot."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Információ Tanároknak"
|
||||
intro_1: "CodeCombat egy online játék, amelyik programozni tanít. A tanulók valódi programnyelven kódolnak."
|
||||
intro_2: "Előzetes tapasztalat nem szükséges!"
|
||||
free_title: "Mennyibe kerül?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "CodeCombat Basic INGYENES! 70-nél is több pálya, amely minden tudást megad." # {change}
|
||||
free_2: "A havidíjas előfizetés hozzáférést biztosít az oktató videókhoz és az extra gyakoroló pályákhoz."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Tanárok ingyenes előfizetést kapnak!" # {change}
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "Lépjen kapcsolatba velünk," # {change}
|
||||
teacher_subs_2: "hogy megkapja az ingyenes havi előfizetést." # {change}
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
sub_includes_title: "Mit tartalmaz az előfizetés?"
|
||||
sub_includes_1: "A 80+ alap pályán kívül az előfizetéssel rendelkező tanulók az alábbi extrákhoz férnek hozzá:" # {change}
|
||||
sub_includes_2: "50+ gyakorló pálya" # {change}
|
||||
sub_includes_3: "Oktató videók"
|
||||
sub_includes_4: "Prémium támogatás emailen"
|
||||
sub_includes_5: "7 új hős egyedi képességekkel" # {change}
|
||||
sub_includes_6: "3500 bónusz drágakő minden hónapban"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
who_for_title: "Kinek való a CodeCombat?"
|
||||
who_for_1: "A CodeCombat-ot 9 évesnél idősebb tanulóknak ajánljuk. Semmilyen programozási előismeret vagy tapasztalat nem szükséges."
|
||||
who_for_2: "Úgy terveztük meg a CodeCombat-ot, hogy fiúk és lányok számára is élvezetes legyen."
|
||||
material_title: "Mennyi anyagot tartalmaz?"
|
||||
material_premium_server: "Körülbelül 22 órányi játékidő a 120+ előfizetőknek járó pályákon, minden héten további 5 új pályával." # {change}
|
||||
material_1: "Körülbelül 8 órányi ingyenes tartalom kiegészítve 14 órányi előfizetőknek járó tartalommal, minden héten további 5 új pályával." # {change}
|
||||
# concepts_title: "What concepts are covered?"
|
||||
how_much_title: "Mennyibe kerül a havi előfizetés?"
|
||||
# how_much_1: "A"
|
||||
how_much_2: "havi előfizetés"
|
||||
how_much_3: "$9.99, ami bármikor lemondható."
|
||||
how_much_4: "Ezen kívül kedvezményeket adunk nagyobb csoportok részére:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
who_for_1: "A CodeCombat-ot 9 évesnél idősebb tanulóknak ajánljuk. Semmilyen programozási előismeret vagy tapasztalat nem szükséges." # {change}
|
||||
who_for_2: "Úgy terveztük meg a CodeCombat-ot, hogy fiúk és lányok számára is élvezetes legyen." # {change}
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "Rendszer-követelmények"
|
||||
sys_requirements_1: "Egy modern web-böngésző. Újabb verziójú Chrome, Firefox, vagy Safari, illetve Internet Explorer 9 vagy újabb."
|
||||
sys_requirements_2: "CodeCombat még nem támogatott iPad-en."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
screenshot_included: "Képernyőkép (screenshot) mellékelve."
|
||||
where_reply: "Milyen címre válaszoljunk?"
|
||||
send: "Visszajelzés küldése"
|
||||
contact_candidate: "Vedd fel a kapcsolatot a jelölttel" # Deprecated
|
||||
recruitment_reminder: "Használd ezt az űrlapot, hogy tudasd a jelöltekkel, szívesen fogadnád őket egy interjúra. Ne feledd, CodeCombat felszámítja az első évi fizetés 15%-át. A díj a munkavállaló alkalmazásakor esedékes, és 90 napig visszafizetendő, ha a munkavállaó nem marad alkalmazásban. Részidőben, távmunkára és szerződéssel alkalmazottak után nem kell fizetni, valamint gyakornokok után sem." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Fiók beállítások"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
saved: "Változtatások elmentve"
|
||||
password_mismatch: "A jelszavak nem egyeznek."
|
||||
password_repeat: "Kérlek ismételd meg a jelszavadat"
|
||||
job_profile: "Munkaköri leírás" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Munkaköri leírásodat a Codecombat jóváhagyta. Munkaadók mindaddig láthatják, amíg meg nem jelölöd inaktívként, vagy négy hétig, ha addig nem kerül megváltoztatásra."
|
||||
job_profile_explanation: "Szió! Töltsd ki ezt és majd kapcsolatba lépünk veled és keresünk neked egy szoftware fejlesztői állást."
|
||||
sample_profile: "Nézz meg egy mintaprofilt!"
|
||||
view_profile: "Nézd meg a profilodat!"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Billentyűparancsok"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
payments: "Befizetések"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Vásárolt"
|
||||
# sale: "Sale"
|
||||
subscription: "Előfizetés"
|
||||
invoices: "Számlák"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "Beállítások" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Szerkeszd meg a profilodat"
|
||||
done_editing: "Szerkesztés kész"
|
||||
profile_for_prefix: "Profil "
|
||||
profile_for_suffix: " számára"
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "Keres:"
|
||||
last_updated: "Legutóbb napra-készre hozva:"
|
||||
contact: "Kapcsolat"
|
||||
active: "Azonnali interjú ajánlatokat keresek"
|
||||
inactive: "Most éppen nem keresek interjú ajánlatokat"
|
||||
complete: "befejezve"
|
||||
next: "Következő"
|
||||
next_city: "Város?"
|
||||
next_country: "válaszd ki az országot."
|
||||
next_name: "Név?"
|
||||
next_short_description: "adj egy rövid leírást."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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: "Város"
|
||||
basics_city_help: "A város, ahol dolgozni akarsz (vagy ahol élsz)"
|
||||
basics_country: "Ország"
|
||||
# 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: "Teljes munkaidőben"
|
||||
basics_looking_for_part_time: "Részmunkaidőben"
|
||||
basics_looking_for_remote: "Távmunkában"
|
||||
# basics_looking_for_contracting: "Contracting"
|
||||
# basics_looking_for_internship: "Internship"
|
||||
# basics_looking_for_help: "What kind of developer position do you want?"
|
||||
name_header: "Add meg a neved"
|
||||
name_anonymous: "Névtelen Fejlesztő"
|
||||
# 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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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: "Munkatapasztalat"
|
||||
# work_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Végzettség"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
projects: "Projektek"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Név"
|
||||
# candidate_location: "Location"
|
||||
candidate_looking_for: "Keres"
|
||||
candidate_role: "Szerep"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
candidate_last_updated: "Legutóbb napra-készre hozva"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "magyar", englishDescription: "Hungarian", t
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Developers" # Not currently shown on home page.
|
||||
or_ipad: "atau download untuk iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Bahasa Indonesia", englishDescription: "Ind
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Per Sviluppatori" # Not currently shown on home page.
|
||||
or_ipad: "O scarica per iPad"
|
||||
hoc_class_code: "Possiedo un Class Code"
|
||||
hoc_enter: "Entra"
|
||||
hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Livelli" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
creating: "Creazione account..."
|
||||
sign_up: "Registrati"
|
||||
log_in: "Accedi con la password"
|
||||
social_signup: "Oppure puoi registrarti con Facebook o Google+:"
|
||||
required: "Effettua l'accesso per proseguire."
|
||||
login_switch: "Hai già un account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
incomplete: "Incompleto"
|
||||
timed_out: "Tempo scaduto"
|
||||
failing: "Fallito"
|
||||
action_timeline: "Barra temporale delle azioni"
|
||||
click_to_select: "Clicca un'unità per selezionarla."
|
||||
control_bar_multiplayer: "Multigiocatore"
|
||||
control_bar_join_game: "Unisciti al gioco"
|
||||
reload: "Ricarica"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
parents_title: "Caro Genitore: Tuo figlio/a sta imparando a programmare. Vuoi continuare ad aiutarlo/a ? "
|
||||
parents_blurb1: "Tuo figlio/a ha giocato a _nLevels__ livelli ed ha imparato le basi della programmazione. Aiutalo/a a coltivare i suoi interessi ed acquistagli un’abbonamento così potrà continuare a giocare."
|
||||
parents_blurb1a: "La programmazione e' una capacita' che indubbiamente sara' utile a tuo figlio da adulto. Nel 2020 una capacita' basilare di programmazione sara' richiesta dal 77% dei lavori e la richiesta a livello mondiale di ingegneri del software e' in continua crescita. Lo sai che la laurea in Informatica e' la piu' pagata sul mercato?"
|
||||
parents_blurb2: "Per $9.99 dollari/mese, tuo figlio ricevera' settimanalmente nuove avventure e un supporto personale via email fornito d aprogrammatori professionisti."
|
||||
parents_blurb2: "Per ${{price}} dollari/mese, tuo figlio ricevera' settimanalmente nuove avventure e un supporto personale via email fornito d aprogrammatori professionisti."
|
||||
parents_blurb3: "Nessun rischio: 100% restituzione dei soldi con un semplice processo di deregistrazione"
|
||||
payment_methods: "Metodi di Pagamento"
|
||||
payment_methods_title: "Metodi di Pagamento Accetati"
|
||||
payment_methods_blurb1: "Attualmente accettiamo come metodi di pagamento la carta di credito e Alipay." # {change}
|
||||
payment_methods_blurb2: "Se necessiti di un forma di pagamento diverso.Per favore contattaci"
|
||||
sale_already_subscribed: "Sei già abbonato!"
|
||||
sale_blurb1: "Risparmia il $21" # {change}
|
||||
sale_blurb2: "rispetto all'abbinamento ordinario di 120$ per l'intero anno!"
|
||||
sale_button: "Saldi!"
|
||||
sale_button_title: "Risparmi il $21 quando compri l'abbonamento per 1 anno" # {change}
|
||||
sale_click_here: "Clicca qui"
|
||||
sale_ends: "Fine"
|
||||
sale_extended: "*Gli abbonamenti in corso verranno estesi per 1 anno."
|
||||
sale_feature_here: "Qui cio' che otterrai:"
|
||||
sale_feature2: "Accesso a 9 nuovi potenti <strong>eroi</strong> con abilita' uniche!"
|
||||
sale_feature4: "<strong>42,000 gemme premio</strong> riconosciute immediatamente!"
|
||||
sale_continue: "Pronto per continuare l'avventura?"
|
||||
sale_limited_time: "Offerta limitata!"
|
||||
sale_new_heroes: "Nuovi eroi!"
|
||||
sale_title: "Saldi di inizio scuola"
|
||||
sale_view_button: "Compra un abbonamento annuale per "
|
||||
sale_button_title: "Risparmi il ${{discount}} quando compri l'abbonamento per 1 anno" # {change}
|
||||
stripe_description: "Sottoscrizione mensile"
|
||||
stripe_description_year_sale: "Abbonamneto annuale (sconto $21)" # {change}
|
||||
stripe_description_year_sale: "Abbonamneto annuale (sconto ${{discount}})" # {change}
|
||||
subscription_required_to_play: "Devi essere abbonato per giocare su questo livello."
|
||||
unlock_help_videos: "Abbonati per accedere a tutti i tutorial video."
|
||||
personal_sub: "Sottoscrizione Personale" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
currently_free_until: "Hai un abbonamento valido fino al"
|
||||
was_free_until: "Hai avuto un abbonamento gratuito fino al "
|
||||
managed_subs: "Gestione Abbonamenti"
|
||||
managed_subs_desc: "Aggiungi un abbonamento per altri giocatori (studenti, bambini, etc.)"
|
||||
managed_subs_desc_2: "I beneficiari devono avere un abbonamento CodeCombat associato con l'email fornito."
|
||||
group_discounts: "Sconto comitiva"
|
||||
group_discounts_1: "Offriamo sconto comitiva anche per abbonamenti in grandi volumi."
|
||||
group_discounts_1st: "Prima sottoscrizione"
|
||||
group_discounts_full: "Prezzo completo"
|
||||
group_discounts_2nd: "Sottoscrizione 2-11"
|
||||
group_discounts_20: "20% disconto"
|
||||
group_discounts_12th: "Sottoscrizione 12+"
|
||||
group_discounts_40: "40% di sconto"
|
||||
subscribing: "Abbonamento..."
|
||||
recipient_emails_placeholder: "Inserisci l'indirizzo email per abbonarti, uno per linea."
|
||||
subscribe_users: "Iscrivere Utenti"
|
||||
users_subscribed: "Utenti iscritti:"
|
||||
no_users_subscribed: "Utente non abbonato, per favore verifica il tuo indirizzo di email."
|
||||
current_recipients: "Destinatari attuali"
|
||||
unsubscribing: "Deregistrazione"
|
||||
subscribe_prepaid: "Clicca su Registrazione per usare un codice pre pagato"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
josh_c_blurb: "Progettista giochi"
|
||||
carlos_title: "Manager Regionale, Brasile"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Informazzione per Professori"
|
||||
intro_1: "CodeCombat è un gioco online che insegna a programmare. Gli studenti scrivono del codice in veri linguaggi di programmazione."
|
||||
intro_2: "Non serve esperienza!"
|
||||
free_title: "Quanto costa?"
|
||||
cost_premium_server: "CodeCombat è gratuito per i primi cinque livelli, dopo i quali costa $9.99 dollari al mese per accedere agli oltre 190 livelli sui nostri esclusivi server specifici per regione."
|
||||
free_1: "Ci sono oltre 110 livelli gratuiti che coprono ogni concetto."
|
||||
free_2: "Un abbonamento mensile consente l'accesso ai video tutorial ed ai livelli di pratica extra."
|
||||
free_3: "Il contenuto di CodeCombat è diviso in"
|
||||
free_4: "corsi"
|
||||
free_5: ". Il primo corso è gratuiro, e circa un'ora di materiale."
|
||||
free_6: "L'accesso ad ulteriori corsi può essere attivato con un'acqusto una-tantum."
|
||||
teacher_subs_title: "Gli insegnanti ottengono una prova gratuita!"
|
||||
teacher_subs_0: "Offriamo prove gratiote agli insegnanti."
|
||||
teacher_subs_1: "Per favore, riempi il nostro"
|
||||
teacher_subs_2: "sondaggio per docenti"
|
||||
teacher_subs_3: "per provare i corsi a pagamento."
|
||||
sub_includes_title: "Cosa include l'abbonamento?"
|
||||
sub_includes_1: "Gli studenti con un abbonamento mensile, hanno accesso, oltre che agli oltre 110+ livelli base, a queste funzioni aggiuntive:"
|
||||
sub_includes_2: "oltre 80 livelli di pratica"
|
||||
sub_includes_3: "Video tutorial"
|
||||
sub_includes_4: "Supporto via mail premium"
|
||||
sub_includes_5: "10 nuovi eroi con uniche caratteristiche da usare"
|
||||
sub_includes_6: "3500 gemme bonus ogni mese"
|
||||
sub_includes_7: "Clan Privati"
|
||||
monitor_progress_title: "Come controllo i progressi dei miei studenti?"
|
||||
monitor_progress_1: "I progressi degli studenti possono essere controllati creando un"
|
||||
monitor_progress_2: "per la tua classe."
|
||||
monitor_progress_3: "Per aggiungere uno studente, inviagli un link per il tuo Clan, che è sulla pagina"
|
||||
monitor_progress_4: "."
|
||||
monitor_progress_5: "Quando accederà, potrai visualizzare un riassunto dei progressi dello studente sulla pagina del tuo Clan."
|
||||
private_clans_1: "I Clan Privati consentono un'ulteriore privacy ed informazioni dettagliate sui progressi di ogni studente."
|
||||
private_clans_2: "Per creare un Clan Privato, spunta 'Rendi il clan privato' quando crei un"
|
||||
private_clans_3: "."
|
||||
who_for_title: "A chi è indirizzato CodeCombat?"
|
||||
who_for_1: "Consigliamo CodeCombat agli studentida 9 anni in su. Non occorre una precedente esperienza in programmazione."
|
||||
who_for_2: "Abbiamo creato CodeCombat perchè possa piacere sia ai ragazzi che alle ragazze."
|
||||
material_title: "Quanto materiale c'è?"
|
||||
material_premium_server: "Circa 50 ore di gioco distribuite su oltre 190 livelli per solo abbonamento, finora."
|
||||
material_1: "Circa 25 ore di contenuto gratuito ed ulteriori 15 ore di contenuti in abbonamento."
|
||||
concepts_title: "Quali concetti sono approfonditi?"
|
||||
how_much_title: "Quanto costa l'abbonamento mensile?"
|
||||
how_much_1: "Un"
|
||||
how_much_2: "abbonamento mensile"
|
||||
how_much_3: "costa $9.99 e può essere annullato in ogni momento."
|
||||
how_much_4: "Inoltre, forniamo sconti per gruppi più grandi:"
|
||||
how_much_5: "Accettiamo pagamenti una-tantum ed abbonamenti annuali per gruppi, come classi o scuole."
|
||||
how_much_6: "per ulteriori dettagli:"
|
||||
who_for_1: "Consigliamo CodeCombat agli studentida 9 anni in su. Non occorre una precedente esperienza in programmazione." # {change}
|
||||
who_for_2: "Abbiamo creato CodeCombat perchè possa piacere sia ai ragazzi che alle ragazze." # {change}
|
||||
more_info_title: "Dove posso trovare ulteriori informaazioni?"
|
||||
more_info_1: "Il nostro"
|
||||
more_info_2: "forum insegnanti"
|
||||
more_info_3: "è un buon luogo in cui conoscere con altri doventi che stanno usando CodeCombat."
|
||||
sys_requirements_title: "Requisiti di sistema"
|
||||
sys_requirements_1: "Un moderno broswer. Chrome, Firefox o Safari vanno bene. Internet Explorer funziona dalla versione 9 in su."
|
||||
sys_requirements_2: "CodeCombat non è ancora supportato su iPad."
|
||||
|
||||
teachers_survey:
|
||||
title: "Sondaggio Insegnanti"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
screenshot_included: "Screenshot incluso."
|
||||
where_reply: "Dove dovremmo risponderti?"
|
||||
send: "Invia feedback"
|
||||
contact_candidate: "Contatta Candidato" # Deprecated
|
||||
recruitment_reminder: "Usa questo form per raggiungere i candidati a cui sei interessato. Ricorda che CodeCombat richiede il 15% dello stipendio del primo anno. Il pagamento è dovuto all'atto dell'assunzione ed è rimborsabile per 90 giorni se il dipendente non resta in azienda. Gli impiegati part-time, removi ed contratto sono gratuiti, essendo interni." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Impostazioni account"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
saved: "Modifiche salvate"
|
||||
password_mismatch: "La password non corrisponde."
|
||||
password_repeat: "Ripeti la tua password."
|
||||
job_profile: "Profilo Lavorativo" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Il tuo profilo lavorativo è stato approvato da CodeCombat. I datori di lavoro saranno in grado di visualizzarlo finchè non lo segnalerai come inattivo o non lo abbandonerai senza modifiche per più di 4 settimane."
|
||||
job_profile_explanation: "Ciao! Riempi questo modulo, e ci metteremo a lavoro per trovarti un lavoro da sviluppatore."
|
||||
sample_profile: "Visualizza un profilo di esempio"
|
||||
view_profile: "Visualizza il tuo profilo"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Scorciatoie da tastiera"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
subs_only: "solo per abbonati"
|
||||
create_clan: "Crea nuovo clan"
|
||||
private_preview: "Anteprima"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Clan pubblici"
|
||||
my_clans: "I miei clan"
|
||||
clan_name: "Nome clan"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
payments: "Pagamenti"
|
||||
prepaid_codes: "Codici prepagati"
|
||||
purchased: "Acquistato"
|
||||
sale: "Offerta"
|
||||
subscription: "Abbonamento"
|
||||
invoices: "Fatture"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
email_settings_url: "tue impostazioni email"
|
||||
email_description_suffix: "o con i link contenuti nei messaggi puoi cambiare le tue preferenze o smettere di riceverli facilmente in qualsiasi momento."
|
||||
cost_title: "Costi"
|
||||
cost_description: "Puoi giocare gratuitamente a tutti i livelli principali di CodeCombat, con un abbonamento di 9.99$/mese per accedere a set di livelli extra e ottenere 3500 gemme al mese. Puoi annullare l'abbonamento con un click, e offriamo una garanzia di rimborso completo."
|
||||
cost_description: "Puoi giocare gratuitamente a tutti i livelli principali di CodeCombat, con un abbonamento di {{price}}$/mese per accedere a set di livelli extra e ottenere {{gems}} gemme al mese. Puoi annullare l'abbonamento con un click, e offriamo una garanzia di rimborso completo."
|
||||
copyrights_title: "Diritti e licenze"
|
||||
contributor_title: "Accordo di licenza per i contributi (CLA)"
|
||||
contributor_description_prefix: "Tutti i contributi, qui sul sito e sulla repository GitHub, sono soggetti al nostro"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
nutshell_title: "In poche parole"
|
||||
nutshell_description: "Qualsiasi risorsa che inseriamo nell'Editor livelli è di libero uso per la creazione dei livelli. Ci riserviamo però il diritto di limitare la distribuzione dei livelli stessi (creati su codecombat.com) che quindi potranno essere a pagamento in futuro, se questo è ciò che finirà per succedere."
|
||||
canonical: "La versione inglese di questo documento è quella definitiva a cui fare fede. Se ci sono discrepanze tra le traduzioni, la versione inglese ha la precedenza."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Premi torneo" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
license: "licenza"
|
||||
oreilly: "ebook a tua scelta"
|
||||
|
||||
account_profile:
|
||||
settings: "Impostazioni" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Modifica profilo"
|
||||
done_editing: "Fine modifica"
|
||||
profile_for_prefix: "Profilo per "
|
||||
profile_for_suffix: ""
|
||||
featured: "In Vetrina"
|
||||
not_featured: "Non in Vetrina"
|
||||
looking_for: "In cerca di:"
|
||||
last_updated: "Ultimo aggiornamento:"
|
||||
contact: "Contatto"
|
||||
active: "In cerca di interviste ora"
|
||||
inactive: "Non in cerca di offerte ora"
|
||||
complete: "completo"
|
||||
next: "Prossimo"
|
||||
next_city: "prossima città"
|
||||
next_country: "scegli la tua nazione."
|
||||
next_name: "nome"
|
||||
next_short_description: "scrivi una breve descrizione"
|
||||
next_long_description: "descrivi la tua posizione che vorresti."
|
||||
next_skills: "elenca almeno cinque competenze."
|
||||
next_work: "riassumi la tua esperienza lavorativa."
|
||||
next_education: "riassumi i tuoi studi."
|
||||
next_projects: "mostra fino a tre progetti in cui hai lavorato."
|
||||
next_links: "aggiungi qualunque link personale o social."
|
||||
next_photo: "aggiungi una foto professionale opzionale."
|
||||
next_active: "impostati aperto alle offerte per essere mostrato nelle ricerche."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Sito Personale"
|
||||
links_header: "Link Personali"
|
||||
links_blurb: "Link a qualunque altro sito o profilo tu voglia mostrare, come il tuo GitHub, LinkedIn, o il tuo blog."
|
||||
links_name: "Nome Link"
|
||||
links_name_help: "A cosa stai linkando?"
|
||||
links_link_blurb: "Link URL"
|
||||
basics_header: "Aggiorna informazioni di base"
|
||||
basics_active: "Aperto alle Offerte"
|
||||
basics_active_help: "Vuoi avere delle offerte d'intervista ora?"
|
||||
basics_job_title: "Titolo Lavorativo Desiderato"
|
||||
basics_job_title_help: "Di che ruolo sei in cerca?"
|
||||
basics_city: "Città"
|
||||
basics_city_help: "Cottà in cui vorresti lavorare (o in cui lavori ora)."
|
||||
basics_country: "Paese"
|
||||
basics_country_help: "Paese in cui ti piacerebbe lavorare (o in cui vivi ora)."
|
||||
basics_visa: "Stato lavorativo in USA"
|
||||
basics_visa_help: "Sei autorizzato a lavorare negli USA, o richiedi una sponsorizzazione per la visa? Se vivi in Canada o Australia, imposta autorizzato.)"
|
||||
basics_looking_for: "Cerco"
|
||||
basics_looking_for_full_time: "Full-time"
|
||||
basics_looking_for_part_time: "Part-time"
|
||||
basics_looking_for_remote: "Remoto"
|
||||
basics_looking_for_contracting: "A contratto"
|
||||
basics_looking_for_internship: "Stagista"
|
||||
basics_looking_for_help: "Che tipo di ruolo da sviluppatore vorresti?"
|
||||
name_header: "Immetti il tuo nome"
|
||||
name_anonymous: "Sviluppatore Anonimo"
|
||||
name_help: "Nomina dei datori di lavoro che vorresti vedere (es.: 'Nick Winter')."
|
||||
short_description_header: "Scrivi una breve descrizione di te stesso"
|
||||
short_description_blurb: "Aggiungi una citazione per aiutare il datore di lavoro a capirti meglio."
|
||||
short_description: "Citazione"
|
||||
short_description_help: "Chi sei, e cosa cerchi? 140 caratteri max."
|
||||
skills_header: "Competenze"
|
||||
skills_help: "Cita comptetenze di programmazione in ordine di conoscenza."
|
||||
long_description_header: "Descrivi la il ruolo che desideri"
|
||||
long_description_blurb: "Racconta ai datodi di lavoro quanto sei bravo e che ruolo vorresti."
|
||||
long_description: "Autodescrizione"
|
||||
long_description_help: "Descriviti ai potenziali datori di lavoro. Sii breve ed arriva al punto. Ti raccomandiamo di sottolineare il tuolo che preferiresti. Markdown è okay, 600 characters max."
|
||||
work_experience: "Esperienza Lavorativa"
|
||||
work_header: "Storia lavorativa"
|
||||
work_years: "Anni di esperienza"
|
||||
work_years_help: "Quanti anni di esperienza lavorativa (retribuita) nello sviluppo software hai?"
|
||||
work_blurb: "Elenca la tua esperienza lavorativa, prima il più recente."
|
||||
work_employer: "Datore di lavoro"
|
||||
work_employer_help: "Nome del datore di lavoro."
|
||||
work_role: "Titolo lavorativo"
|
||||
work_role_help: "Quale era il tuo titolo o ruolo lavorativo?"
|
||||
work_duration: "Durata"
|
||||
work_duration_help: "Per quanto hai lavorato?"
|
||||
work_description: "Descrizione"
|
||||
work_description_help: "Cosa hai fatto lì? (140 caratteri, opzionale)"
|
||||
education: "Educazione"
|
||||
education_header: "Riassumi i tuoi studi"
|
||||
education_blurb: "Elenca i tuoi studi."
|
||||
education_school: "Scuola"
|
||||
education_school_help: "Nome della scuola."
|
||||
education_degree: "Laurea"
|
||||
education_degree_help: "Quale è stata la tua laurea, ed in che ambito di studi?"
|
||||
education_duration: "Date"
|
||||
education_duration_help: "Quando?"
|
||||
education_description: "Descrizione"
|
||||
education_description_help: "Evidenzia tutto della tua esperienza di studi. (140 caratteri; opzionale)"
|
||||
our_notes: "Note di CodeCombat"
|
||||
remarks: "Osservazioni"
|
||||
projects: "Progetti"
|
||||
projects_header: "Aggiungi 3 progetti"
|
||||
projects_header_2: "Progetti (Top 3)"
|
||||
projects_blurb: "Evidenzia i tuoi progetti per stupire i datori di lavoro."
|
||||
project_name: "Nome progetto"
|
||||
project_name_help: "Come si chiamava il progetto?"
|
||||
project_description: "Descrizione"
|
||||
project_description_help: "Descrivi brevemente il progetto."
|
||||
project_picture: "Immagine"
|
||||
project_picture_help: "Carica una immagine che mostri il progetto di almeno 230x115 pixel."
|
||||
project_link: "Link"
|
||||
project_link_help: "Link al progetto."
|
||||
player_code: "Codice Giocatore"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Spiacenti, CodeCombat non assume in questo momento."
|
||||
deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
hire_developers_not_credentials: "Assumi sviluppatori, non credenziali.." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Inizia"
|
||||
already_screened: "Abbiamo praticamente già effettuato lo screening di tutti i nostri candidati"
|
||||
filter_further: ", ma puoi anche filtrare ulteriormente:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizzato US"
|
||||
filter_visa_no: "Non Autorizzato"
|
||||
filter_education_top: "Top School"
|
||||
filter_education_other: "Altri"
|
||||
filter_role_web_developer: "Web Developer"
|
||||
filter_role_software_developer: "Software Developer"
|
||||
filter_role_mobile_developer: "Mobile Developer"
|
||||
filter_experience: "Esperienza"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Neolaureato"
|
||||
filter_experience_student: "Studente College"
|
||||
filter_results: "risultati"
|
||||
start_hiring: "Inizia ad assumere."
|
||||
reasons: "Tre motivi per cui dovresti assumere attraverso noi:"
|
||||
everyone_looking: "Tutti qui sono alla ricerca della loro prossima opportunità."
|
||||
everyone_looking_blurb: "Dimentica il 20% del tasso di risposta di LinkedIn InMail. Tutti quelli che abbiamo in lista su questo sito vogliono trovare il loro nuovo lavoro e risponderanno per un colloquio."
|
||||
weeding: "Mettiti comodo: ti stiamo sposando! (?!)"
|
||||
weeding_blurb: "Ogni giocatore che abbiamo in lista è stato controllato per la sua abilità tecnica. Effettuiamo anche delle chiamate telefoniche per selezionare candidati ed aggiungiamo note sui loro profili per farti guadagnare tempo."
|
||||
pass_screen: "Passeranno il tuo sistema di screening senza alcun dubbio."
|
||||
pass_screen_blurb: "Dai un occhio al codice di ogni candidato prima di contattarlo. Un datore di lavoro ha notato che i nostri candidati passavano i loro colloqui 5 volte più di quelli trovati su Hacker News."
|
||||
make_hiring_easier: "Rendi la mia assunzione più facile, per favore."
|
||||
what: "Cos'è CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
cost: "Quale è la tariffa?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Nome"
|
||||
candidate_location: "Località"
|
||||
candidate_looking_for: "In cerca di"
|
||||
candidate_role: "Ruolo"
|
||||
candidate_top_skills: "Top Skills"
|
||||
candidate_years_experience: "Anni Esp."
|
||||
candidate_last_updated: "Ultimo Aggiornamento"
|
||||
candidate_who: "Chi"
|
||||
featured_developers: "Sviluppatori in Vetrina"
|
||||
other_developers: "Altri Sviluppatori"
|
||||
inactive_developers: "Sviluppatori Inattivi"
|
||||
|
||||
admin:
|
||||
av_espionage: "Spionaggio" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email o nome utente"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Italiano", englishDescription: "Italian", t
|
|||
av_entities_sub_title: "Entità"
|
||||
av_entities_users_url: "Utenti"
|
||||
av_entities_active_instances_url: "Istanze attive"
|
||||
av_entities_employer_list_url: "Lista datore di lavoro"
|
||||
av_entities_candidates_list_url: "Lista Candidati"
|
||||
av_entities_user_code_problems_list_url: "Lista problemi codice utenti"
|
||||
av_other_sub_title: "Altro"
|
||||
av_other_debug_base_url: "Base (per il debug di base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
multiplayer: "マルチプレイヤー" # Not currently shown on home page
|
||||
for_developers: "開発者向け" # Not currently shown on home page.
|
||||
or_ipad: "又はiPadでダウンロード"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "ゲームマップへ" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
creating: "アカウントを作成しています..."
|
||||
sign_up: "アカウント登録"
|
||||
log_in: "パスワードでログイン"
|
||||
social_signup: "あるいはFacebookやGoogle+でログイン:"
|
||||
required: "ログインする必要があります"
|
||||
login_switch: "すでにアカウントをお持ちですか?"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "学校名と市名"
|
||||
optional: "オプション"
|
||||
school_name_placeholder: "エグザンプル高校, なんとか市, 日本"
|
||||
|
||||
recover:
|
||||
recover_account_title: "パスワードを忘れた場合"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
incomplete: "不完全"
|
||||
timed_out: "時間切れ"
|
||||
failing: "失敗中"
|
||||
action_timeline: "アクション・タイムライン"
|
||||
click_to_select: "ユニットを左クリックで選択してください"
|
||||
control_bar_multiplayer: "マルチプレイ"
|
||||
control_bar_join_game: "ゲームに参加する"
|
||||
reload: "リロード"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
josh_c_blurb: "ゲームのデザイン"
|
||||
carlos_title: "地域部長, ブラジル"
|
||||
carlos_blurb: "サラリーマン"
|
||||
maka_title: "顧客主義"
|
||||
maka_blurb: "ストーリーテラー"
|
||||
|
||||
teachers:
|
||||
more_info: "教育関係者へのお知らせ"
|
||||
intro_1: "CodeCombat はプログラミングを教えるオンラインゲームです。生徒は本物のプログラム言語を書きます。"
|
||||
intro_2: "プログラミングの経験は必要ありません!"
|
||||
free_title: "価格について"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "CodeCombat は基本的に無料です!110以上のレベルが無料です。" # {change}
|
||||
free_2: "月々の課金をするとビデオのチュートリアルにアクセスでき、また追加のレベルが楽しめます。"
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "教育関係者は無料のサブスクリプションを得ることができます!" # {change}
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "" # {change}
|
||||
teacher_subs_2: "に連絡して無料の月々のサブスクリプションを得ましょう。" # {change}
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
sub_includes_title: "サブスクリプションの内容について"
|
||||
sub_includes_1: "110以上の基本レベルに加えて、生徒は月々のサブスクリプションを得て次の機能が使えます:" # {change}
|
||||
sub_includes_2: "70以上の練習レベル" # {change}
|
||||
sub_includes_3: "ビデオチュートリアル"
|
||||
sub_includes_4: "メールによるサポート"
|
||||
sub_includes_5: "10人の新しいヒーローとマスターのユニークなスキル" # {change}
|
||||
sub_includes_6: "3500のジェムが月々支給されます"
|
||||
sub_includes_7: "プライベートクラン"
|
||||
monitor_progress_title: "生徒の進捗状況を確認するにはどうすればよいですか?"
|
||||
monitor_progress_1: "生徒の進捗状況を確認するには"
|
||||
monitor_progress_2: "クラスをつくります。"
|
||||
monitor_progress_3: "生徒を追加するには, あなたのクランの招待リンクを送信します, 招待リンクは"
|
||||
monitor_progress_4: "ページ上にあります。"
|
||||
monitor_progress_5: "生徒が参加したら, クランページで生徒の進捗状況の概要が表示されます。"
|
||||
private_clans_1: "プライベートクランは各学生のプライバシーが向上し進捗情報が詳細化しています。"
|
||||
private_clans_2: "プライベートクランを作るには, "
|
||||
private_clans_3: "を作成するとき、'クランをプライベートにする'のチェックボックスをチェックします。"
|
||||
who_for_title: "CodeCombat が必要なひと"
|
||||
who_for_1: "私たちは CodeCombat を9歳以上の生徒にオススメしています。プログラミングの経験は必要ありません。"
|
||||
who_for_2: "私たちは男女問わず遊べるように CodeCombat をデザインしました。"
|
||||
material_title: "どのぐらいコンテンツがありますか?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
material_1: "8時間ほどの無料のコンテンツに加え、サブスクリプションによってさらに14時間ほどプレイすることができ、毎週5つの新しいレベルが追加されています。" # {change}
|
||||
concepts_title: "どのような概念がカバーされているかについて"
|
||||
how_much_title: "月々のサブスクリプションはいくらですか?"
|
||||
how_much_1: ""
|
||||
how_much_2: "月々のサブスクリプションは"
|
||||
how_much_3: "$9.99 で、これはいつでもキャンセルできます。"
|
||||
how_much_4: "さらに、私たちは大きなグループにディスカウントを行っています:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "動作環境"
|
||||
sys_requirements_1: "モダンなブラウザ。最新の Chrome や FireFox, Safari など。Internet Explorer 9 以上。"
|
||||
sys_requirements_2: "CodeCombat はまだ iPad をサポートしていません。"
|
||||
who_for_1: "私たちは CodeCombat を9歳以上の生徒にオススメしています。プログラミングの経験は必要ありません。" # {change}
|
||||
who_for_2: "私たちは男女問わず遊べるように CodeCombat をデザインしました。" # {change}
|
||||
more_info_title: "もっと情報がほしい人"
|
||||
more_info_1: "私たちの"
|
||||
more_info_2: "ティーチャーフォーラム"
|
||||
more_info_3: "でCodeCombatを使っている教育者の仲間とつながりましょう。"
|
||||
|
||||
teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
screenshot_included: "スクリーンショットが含まれています。"
|
||||
where_reply: "何処へ返信すれば宜しいですか?"
|
||||
send: "フィードバックを送信"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "アカウント設定"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
saved: "変更しました"
|
||||
password_mismatch: "パスワードが違います"
|
||||
password_repeat: "もう一度パスワードを入力してください"
|
||||
job_profile: "求職情報" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "CodeCombatは、あなたの求職情報を承りました。無効にする、もしくは4週間の間変更をしなければ雇用者はあなたの求職情報を見ることができなくなります。"
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
sample_profile: "サンプルプロファイルを参照してください"
|
||||
view_profile: "あなたのプロフィールを表示"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "キーボードショートカット"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
subs_only: "課金者限定"
|
||||
create_clan: "新規クラン作成"
|
||||
private_preview: "プレビュー"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "公開クラン"
|
||||
my_clans: "マイ・クラン"
|
||||
clan_name: "クラン名"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1293,7 +1211,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# games_played: "Games played"
|
||||
ratio: "比率 "
|
||||
leaderboard: "リーダーボード"
|
||||
# battle_as: "Battle as "
|
||||
battle_as: "対戦 "
|
||||
summary_your: "あなたの "
|
||||
summary_matches: "戦闘数 - "
|
||||
summary_wins: " 勝利数, "
|
||||
|
@ -1304,7 +1222,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
rank_submitted: "ランキングに送信されました。"
|
||||
rank_failed: "ランキングに送信できませんでした。"
|
||||
rank_being_ranked: "ランキングにのっています"
|
||||
# rank_last_submitted: "submitted "
|
||||
rank_last_submitted: "送信"
|
||||
# help_simulate: "Help simulate games?"
|
||||
# code_being_simulated: "Your new code is being simulated by other players for ranking. This will refresh as new matches come in."
|
||||
# no_ranked_matches_pre: "No ranked matches for the "
|
||||
|
@ -1338,11 +1256,11 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
rules: "ルール"
|
||||
winners: "勝者"
|
||||
league: "リーグ"
|
||||
# red_ai: "Red CPU" # "Red AI Wins", at end of multiplayer match playback
|
||||
# blue_ai: "Blue CPU"
|
||||
# wins: "Wins" # At end of multiplayer match playback
|
||||
# humans: "Red" # Ladder page display team name
|
||||
# ogres: "Blue"
|
||||
red_ai: "レッドCPU" # "Red AI Wins", at end of multiplayer match playback
|
||||
blue_ai: "ブルーCPU"
|
||||
wins: "勝利" # At end of multiplayer match playback
|
||||
humans: "レッド" # Ladder page display team name
|
||||
ogres: "ブルー"
|
||||
|
||||
user:
|
||||
stats: "ステータス"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
profile_for_suffix: "のプロフィール"
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "検索:"
|
||||
last_updated: "最終更新:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "学歴"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
filter_experience_student: "大学生"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "名前"
|
||||
candidate_location: "勤務地"
|
||||
candidate_looking_for: "希望"
|
||||
candidate_role: "職種"
|
||||
candidate_top_skills: "得意分野"
|
||||
candidate_years_experience: "経験年数"
|
||||
candidate_last_updated: "最終更新日時"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "日本語", englishDescription: "Japanese",
|
|||
# av_entities_sub_title: "Entities"
|
||||
av_entities_users_url: "ユーザー"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "その他"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
multiplayer: "멀티플레이어" # Not currently shown on home page
|
||||
for_developers: "개발자용" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "레벨" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
creating: "계정을 생성 중입니다..."
|
||||
sign_up: "등록"
|
||||
log_in: "비밀번호로 로그인"
|
||||
social_signup: "또는 페이스북이나 구글 플러스로 계정을 만들 수 있습니다."
|
||||
required: "진행하기 전에 로그인이 필요합니다."
|
||||
login_switch: "이미 계정이 있으신가요?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
incomplete: "목표 미완료"
|
||||
timed_out: "제한 시간 초과"
|
||||
failing: "다시 한번 더 도전해보세요."
|
||||
action_timeline: "액션 타임라인"
|
||||
click_to_select: "유닛을 선택하기 위해서 유닛을 마우스로 클릭하세요."
|
||||
control_bar_multiplayer: "멀티플레이어"
|
||||
control_bar_join_game: "게임입장"
|
||||
reload: "새로고침"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "의견 보내기"
|
||||
contact_candidate: "지원자에게 연락하기" # Deprecated
|
||||
recruitment_reminder: "인터뷰를 원하는 지원자에게 연락하고자 할 때, 이 양식을 사용해주세요. 코드 컴뱃에게 반드시 첫 해 연봉의 15%를 지급해야합니다. 수수료는 직원을 고용하자마자 즉시 지급되어야 합니다. 한편 90일 이내로 채용이 취소된다면 수수료를 환불받을 수 있습니다. 아르바이트, 재택근무, 계약직은 인턴의 경우와 마찬가지로 수수료가 없습니다." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "계정 설정"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
saved: "변경사항 저장 완료"
|
||||
password_mismatch: "비밀번호가 일치하지 않습니다."
|
||||
password_repeat: "비밀번호를 한번 더 입력해 주세요."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
view_profile: "나의 프로필 보기"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "단축키"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# subs_only: "subscribers only"
|
||||
create_clan: "새로운 클랜 만들기"
|
||||
private_preview: "미리보기"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "공개 클랜들"
|
||||
my_clans: "내가 속한 클랜"
|
||||
clan_name: "클랜 이름"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
email_settings_url: "이메일 설정"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
license: "라이센스"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "설정" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "프로필 수정하기"
|
||||
done_editing: "수정 완료"
|
||||
profile_for_prefix: "프로필 "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "희망 채용형태"
|
||||
last_updated: "최근 업데이트:"
|
||||
contact: "연락하기"
|
||||
active: "구직희망"
|
||||
inactive: "구직희망 안함"
|
||||
complete: "완료"
|
||||
next: "다음으로"
|
||||
next_city: "도시?"
|
||||
next_country: "국가를 선택하세요."
|
||||
next_name: "성명?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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: "블로그"
|
||||
# example_personal_site: "Personal Site"
|
||||
# links_header: "Personal Links"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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: "풀타임"
|
||||
basics_looking_for_part_time: "파트타임"
|
||||
basics_looking_for_remote: "재택근무"
|
||||
basics_looking_for_contracting: "계약직"
|
||||
basics_looking_for_internship: "인턴쉽"
|
||||
# basics_looking_for_help: "What kind of developer position do you want?"
|
||||
name_header: "성명을 기재하여 주십시오."
|
||||
# name_anonymous: "Anonymous Developer"
|
||||
# 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: "당신은 누구고, 어떤 일을 찾고 있나요? 최대 140자까지 작성할 수 있습니다."
|
||||
# skills_header: "Skills"
|
||||
# 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."
|
||||
# long_description: "Self Description"
|
||||
# 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_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "한국어", englishDescription: "Korean", t
|
|||
av_entities_sub_title: "속성들"
|
||||
av_entities_users_url: "유저들"
|
||||
av_entities_active_instances_url: "액티브 인스턴스들"
|
||||
av_entities_employer_list_url: "고용주 리스트"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "다른 사람들"
|
||||
av_other_debug_base_url: "베이스 (base.jade 디버깅)"
|
||||
|
|
|
@ -16,7 +16,7 @@ module.exports =
|
|||
'en-US': { nativeDescription: 'English (US)', englishDescription: 'English (US)' }
|
||||
'en-GB': { nativeDescription: 'English (UK)', englishDescription: 'English (UK)' }
|
||||
'zh-HANS': { nativeDescription: '简体中文', englishDescription: 'Chinese (Simplified)' }
|
||||
'zh-HANT': { nativeDescription: '繁体中文', englishDescription: 'Chinese (Traditional)' }
|
||||
'zh-HANT': { nativeDescription: '繁體中文', englishDescription: 'Chinese (Traditional)' }
|
||||
'ru': { nativeDescription: 'русский', englishDescription: 'Russian' }
|
||||
'es-ES': { nativeDescription: 'español (ES)', englishDescription: 'Spanish (Spain)' }
|
||||
'es-419': { nativeDescription: 'español (América Latina)', englishDescription: 'Spanish (Latin America)' }
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
or_ipad: "Arba atsisiųskite iPad'ui"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Lygiai" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
creating: "Kuriama paskyra..."
|
||||
sign_up: "Užsiregistruoti"
|
||||
log_in: "prisijungti slaptažodžio pagalba"
|
||||
social_signup: "Arba galite prisijungti Facebook arba G+:"
|
||||
required: "PRieš tęsiant kelią turite prisijungti."
|
||||
login_switch: "Jau turite paskyrą?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
incomplete: "Neužbaigta"
|
||||
timed_out: "Laikas baigėsi"
|
||||
failing: "Nesėkmingai"
|
||||
# action_timeline: "Action Timeline"
|
||||
click_to_select: "Spregtelkite ant veikėjo ar padaro, kad jį pažymėtumėte."
|
||||
control_bar_multiplayer: "Žaidimas keliese"
|
||||
control_bar_join_game: "Prisijungti prie žaidimo"
|
||||
reload: "Perkrauti"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Mygtukai"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "lietuvių kalba", englishDescription: "Lith
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
multiplayer: "Повеќе играчи" # Not currently shown on home page
|
||||
for_developers: "За Developer-и" # Not currently shown on home page.
|
||||
or_ipad: "Или симни за iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Нивоа" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
creating: "Сметката се прави..."
|
||||
sign_up: "Направи сметка"
|
||||
log_in: "најави се со лозинка"
|
||||
social_signup: "Или, можеш да се пријавиш преку Facebook или G+:"
|
||||
required: "Мораш да се најавиш за да имаш пристап таму."
|
||||
login_switch: "Веќе имаш сметка?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
incomplete: "Незавршено"
|
||||
timed_out: "Истече времето"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
control_bar_multiplayer: "Повеќе играчи"
|
||||
control_bar_join_game: "Приклучи се во игра"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
parents_title: "Вашето дете ќе научи да програмира." # {change}
|
||||
parents_blurb1: "Со CodeCombat, вашите деца учат преку пишување на вистински програмски код. Почнуваат со учење на едноставни команди, по што се продолжува на понапредни теми."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "За $9.99 американски долари месечно, добиваат нови предизвици секоја недела и лична поддршка преку e-mail, од страна на професионални програмери." # {change}
|
||||
parents_blurb2: "За ${{price}} американски долари месечно, добиваат нови предизвици секоја недела и лична поддршка преку e-mail, од страна на професионални програмери." # {change}
|
||||
parents_blurb3: "Без ризик: 100% гаранција за враќање на парите, лесно откажување на членството со еден клик."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Месечна членарина"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Треба да бидеш зачленет за да го играш ова ниво."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Македонски", englishDescription:
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
multiplayer: "Ramai-Pemain" # Not currently shown on home page
|
||||
for_developers: "Untuk Pengaturcara" # Not currently shown on home page.
|
||||
or_ipad: "Atau muat turun untuk iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Mula" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
creating: "Sedang membuat Akaun..."
|
||||
sign_up: "Daftar"
|
||||
log_in: "Log Masuk"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Hantar Maklumbalas"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
saved: "Pengubahsuian disimpan"
|
||||
password_mismatch: "Kata-laluan tidak sama."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
cost_description: "Buat masa ini, CodeCombat adalah 100% percuma! salah satu daripada tujuan kami adalah untuk membiarkan ia sebegitu, supaya ramai boleh bermain, di mana sahaja mereka berada. Jikalau langit menjadi gelap untuk kami, kami akan mengecaj untuk langganan atau untuk beberapa muatan, tapi kami lebih suka untuk tidak berbuat demikian. Jika kami bernasib baik, kami dapat menanggung syarikat kami dengan:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Hakcipta dan Pemelesenan"
|
||||
contributor_title: "Persetujuan Lesen Penyumbang"
|
||||
contributor_description_prefix: "Kesemua sumbangan, termasuk di dalam laman dan di dalam repositiri GitHub, tertakluk kepada"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profil untuk "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Bahasa Melayu", englishDescription: "Bahasa
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "မြန်မာစကား", englishDes
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
multiplayer: "Flerspiller" # Not currently shown on home page
|
||||
for_developers: "For Utviklere" # Not currently shown on home page.
|
||||
or_ipad: "Eller last ned til iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Spill" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
creating: "Oppretter Konto..."
|
||||
sign_up: "Lag konto"
|
||||
log_in: "logg inn med passord"
|
||||
social_signup: "Eller du kan registrere deg med Facebook eller Google+:"
|
||||
required: "Du må være logget inn for å gå dit."
|
||||
login_switch: "Har du allerede en konto?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
incomplete: "Ufullstendig"
|
||||
timed_out: "Tiden er ute"
|
||||
failing: "Mislykkes"
|
||||
action_timeline: "Hendelsestidslinje"
|
||||
click_to_select: "Klikk på en enhet for å velge den."
|
||||
control_bar_multiplayer: "Flerspiller"
|
||||
control_bar_join_game: "Bli med i spillet"
|
||||
reload: "Tilbakestill"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
parents_title: "Barnet ditt vil lære å kode" # {change}
|
||||
parents_blurb1: "Med CodeCombat vil dine barn lære seg å skrive ekte kode. De begynner med enkle kommandoer og går videre til mer avanserte emner."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "For USD 9.99 pr mnd, vil de få nye utfordringer hver uke og personlig e-poststøtte fra profesjonelle programmerere." # {change}
|
||||
parents_blurb2: "For USD {{price}} pr mnd, vil de få nye utfordringer hver uke og personlig e-poststøtte fra profesjonelle programmerere." # {change}
|
||||
parents_blurb3: "Ingen risiko: 100% pengene tilbake-garanti, kun et klikk for å si opp abonnementet."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Månedlig abonnement"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Du trenger abonnement for å spille dette nivået."
|
||||
unlock_help_videos: "Abonnér for å låse opp alle videoveiledningene."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "Systemkrav"
|
||||
sys_requirements_1: "Siden CodeCombat er et spill, er det mer intensivt for datamaskiner å kjøre jevnt enn opplæringsvideo eller -tekst. Vi har optimert det for å kjøre raskt på alle moderne nettlesere, og på eldre maskiner slik at alle kan spille. Når det er sagt, her følger våre anbefalinger for å gå mest ut av din Hour of Code:" # {change}
|
||||
sys_requirements_2: "Bruk nye versjoner av Chrome eller Firefox." # {change}
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
screenshot_included: "Skjermbilde vedlagt."
|
||||
where_reply: "Hvor skal vi sende svaret?"
|
||||
send: "Send tilbakemelding"
|
||||
contact_candidate: "Kontakt kandidat" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Kontoinnstillinger"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
saved: "Endringer Lagret"
|
||||
password_mismatch: "Passordene er ikke like."
|
||||
password_repeat: "Vennligst gjenta passordet."
|
||||
job_profile: "Jobb Profil" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
sample_profile: "Se en eksempelprofil"
|
||||
view_profile: "Vis Profilen"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Hurtigtaster"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
payments: "Betalinger"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Kjøpt"
|
||||
# sale: "Sale"
|
||||
subscription: "Abonnement"
|
||||
# invoices: "Invoices"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
email_settings_url: "epost-innstillingene dine"
|
||||
email_description_suffix: "eller via linker i epostene vi sender til deg, kan du endre hvilke eposter du ønsker å motta og enkelt avslutte abonnementet når som helst."
|
||||
cost_title: "Pris"
|
||||
cost_description: "For øyeblikket er CodeCombat 100% gratis! Et av hovedmålene våre er å fortsette med det, sånn at flest mulig kan spille, uavhengig av livssituasjon. Hvis ting går dårlig må vi kanskje begynne å ta betalt for abonnement eller annet innhold, men vi vil helst slippe. Med litt flaks vil vi klare å holde selskapet i live med:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Kopirettigheter og lisenser"
|
||||
contributor_title: "Lisensavtale for bidragsytere"
|
||||
contributor_description_prefix: "Alle bidrag, både gjort gjennom brukergrensesnittet og i kodelageret på GitHub, er underlagt vår"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
nutshell_title: "I et nøtteskall"
|
||||
nutshell_description: "Alle ressursene vi har gjort tilgjengelig i Brett-editoren kan fritt brukes til å lage nye Brett. Men vi forbeholder oss rettighetene til å distribuere selve Brettene (som er laget på codecombat.com), slik at vi har muligheten til å kreve betaling for dem i fremtiden, dersom vi ender opp med å gjøre det."
|
||||
canonical: "Den engelske utgaven av dette dokumentet er den definitive og gjeldende utgaven. Hvis det er forskjeller i oversettelsen så er det den engelske utgaven som gjelder."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profil for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
av_espionage: "Spionasje" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Epost eller brukernavn"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Norsk Bokmål", englishDescription: "Norweg
|
|||
av_entities_sub_title: "Entiteter"
|
||||
av_entities_users_url: "Brukere"
|
||||
av_entities_active_instances_url: "Aktive Instanser"
|
||||
av_entities_employer_list_url: "Arbeidsgiverliste"
|
||||
av_entities_candidates_list_url: "Kandidatliste"
|
||||
av_entities_user_code_problems_list_url: "Brukerkode-problem Liste"
|
||||
av_other_sub_title: "Andre"
|
||||
av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Voor ontwikkelaars" # Not currently shown on home page.
|
||||
or_ipad: "Of download voor iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
creating: "Account aanmaken..."
|
||||
sign_up: "Aanmelden"
|
||||
log_in: "inloggen met wachtwoord"
|
||||
social_signup: "Of je kunt je registreren met Facebook of G+:"
|
||||
required: "Je moet eerst inloggen om die richting te kunnen volgen."
|
||||
login_switch: "Heb je al een account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
incomplete: "Onvolledig"
|
||||
timed_out: "De tijd is om"
|
||||
# failing: "Failing"
|
||||
action_timeline: "Actie tijdlijn"
|
||||
click_to_select: "Klik op een eenheid om deze te selecteren."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
reload: "Herlaad"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
parents_title: "Uw kind zal de code leren." # {change}
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info voor Leerkrachten"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Feedback Verzonden"
|
||||
contact_candidate: "Contacteer Kandidaat" # Deprecated
|
||||
recruitment_reminder: "Gebruik dit formulier om kandidaten te contacteren voor wie je een interesse hebt om te interviewen. Vergeet niet dat CodeCombat een honorarium vraagt van 18% op het eerste-jaarssalaris. Dit honorarium moet betaald worden als de kandidaat wordt aangenomen en kon tot na 90 dagen terugbetaald worden als deze ontslagen wordt in deze periode. Deeltijds-, contract- en thuiswerkers worden van dit honorarium vrijgesteld, alsook interims." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Account Instellingen"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
saved: "Aanpassingen Opgeslagen"
|
||||
password_mismatch: "Het wachtwoord komt niet overeen."
|
||||
password_repeat: "Gelieve je wachtwoord te herhalen."
|
||||
job_profile: "Job Profiel" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Jouw job profiel werd goedgekeurd door CodeCombat. Werkgevers zullen het kunnen bekijken totdat je het inactief zet of als er geen verandering in komt voor vier weken."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Sneltoetsen"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
email_settings_url: "jouw e-mail instellingen"
|
||||
email_description_suffix: "of via urls in de emails die wij verzenden, kan je jouw instellingen wijzigen en ten allen tijden uitschrijven."
|
||||
cost_title: "Kosten"
|
||||
cost_description: "Momenteel is CodeCombat 100% gratis! Één van onze doestellingen is om dit zo te houden, opdat zoveel mogelijk mensen kunnen spelen, onafhankelijk van waar je leeft of wie je bent. Als het financieel moeilijker wordt, kan het mogelijk zijn dat we gaan beginnen met abonnementen of een prijs zetten op bepaalde zaken, maar we streven ernaar om dit te voorkomen. Met een beetje geluk zullen we dit voor altijd kunnen garanderen met:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Auteursrechten en licenties"
|
||||
contributor_title: "Licentieovereenkomst voor vrijwilligers"
|
||||
contributor_description_prefix: "Alle bijdragen, zowel op de website als op onze GitHub repository, vallen onder onze"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
nutshell_title: "In een notendop"
|
||||
nutshell_description: "Alle middelen die wij aanbieden in de Level Editor zijn gratis te gebruiken om levels aan te maken. Wij behouden ons echter het recht voor om levels die gemaakt zijn op codecombat.com te beperken, en hier in de toekomst geld voor te vragen, moest dat ooit gebeuren."
|
||||
canonical: "De Engelse versie van dit document is de definitieve en kanonieke versie. Bij verschillen tussen vertalingen heeft de Engelse versie voorrang."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
license: "licentie"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profiel voor "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "Zoekt naar:"
|
||||
last_updated: "Laatst aangepast:"
|
||||
contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
next_country: "Kies je land."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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: "Werk ervaring"
|
||||
# work_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Opleiding"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
education_school: "School"
|
||||
education_school_help: "Naam van je school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
our_notes: "Onze notities"
|
||||
# remarks: "Remarks"
|
||||
projects: "Projecten"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Naam"
|
||||
candidate_location: "Locatie"
|
||||
candidate_looking_for: "Zoekt naar"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Beste vaardigheden"
|
||||
candidate_years_experience: "Jaren ervaring"
|
||||
candidate_last_updated: "Laatst aangepast"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Nederlands (België)", englishDescription:
|
|||
av_entities_sub_title: "Entiteiten"
|
||||
av_entities_users_url: "Gebruikers"
|
||||
av_entities_active_instances_url: "Actieve instanties"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Andere"
|
||||
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
||||
|
|
|
@ -13,14 +13,11 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Voor ontwikkelaars" # Not currently shown on home page.
|
||||
or_ipad: "Of download voor iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
community: "Gemeenschap"
|
||||
# courses: "Courses"
|
||||
courses: "Lessen"
|
||||
editor: "Editor"
|
||||
blog: "Blog"
|
||||
forum: "Forum"
|
||||
|
@ -55,7 +52,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
|
||||
play:
|
||||
play_as: "Speel als " # Ladder page
|
||||
# compete: "Compete!" # Course details page
|
||||
compete: "Compleet!" # Course details page //in English it says 'complete', so translated that instead.
|
||||
spectate: "Toeschouwen" # Ladder page
|
||||
players: "Spelers" # Hover over a level on /play
|
||||
hours_played: "Speeltijd" # Hover over a level on /play
|
||||
|
@ -66,7 +63,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
locked: "Vergrendeld"
|
||||
purchasable: "Te koop" # For a hero you unlocked but haven't purchased
|
||||
available: "Beschikbaar"
|
||||
# skills_granted: "Skills Granted" # Property documentation details
|
||||
skills_granted: "Verleende vaardigheden" # Property documentation details
|
||||
heroes: "Helden" # Tooltip on hero shop button from /play
|
||||
achievements: "Prestaties" # Tooltip on achievement list button from /play
|
||||
account: "Account" # Tooltip on account button from /play
|
||||
|
@ -78,7 +75,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
subscription_required: "Abonnement nodig"
|
||||
anonymous: "Anonieme Speler"
|
||||
level_difficulty: "Moeilijkheidsgraad: "
|
||||
# play_classroom_version: "Play Classroom Version" # Choose a level in campaign version that you also can play in one of your courses
|
||||
play_classroom_version: "Speel de klassikale versie" # Choose a level in campaign version that you also can play in one of your courses
|
||||
campaign_beginner: "Beginnercampagne"
|
||||
awaiting_levels_adventurer_prefix: "We brengen 5 nieuwe levels per week uit." # {change}
|
||||
awaiting_levels_adventurer: "Schrijf je in als Avonturier"
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
creating: "Account aanmaken..."
|
||||
sign_up: "Aanmelden"
|
||||
log_in: "inloggen met wachtwoord"
|
||||
social_signup: "Of je kunt je registreren met Facebook of G+:"
|
||||
required: "Je moet inloggen om daarheen te gaan."
|
||||
login_switch: "Heb je al een account?"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "School naam en stad"
|
||||
optional: "optioneel"
|
||||
school_name_placeholder: "Voorbeeld middelbare school, Amsterdam"
|
||||
|
||||
recover:
|
||||
recover_account_title: "Herstel Account"
|
||||
|
@ -164,13 +160,13 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
date: "Datum"
|
||||
body: "Inhoud"
|
||||
version: "Versie"
|
||||
# pending: "Pending"
|
||||
pending: "In afwachting"
|
||||
accepted: "Geaccepteerd"
|
||||
rejected: "Afgewezen"
|
||||
withdrawn: "Teruggetrokken"
|
||||
# accept: "Accept"
|
||||
# reject: "Reject"
|
||||
# withdraw: "Withdraw"
|
||||
accept: "Accepteer"
|
||||
reject: "Weiger"
|
||||
withdraw: "Intrekken"
|
||||
submitter: "Toevoeger"
|
||||
submitted: "Toegevoegd"
|
||||
commit_msg: "Commit Bericht"
|
||||
|
@ -225,12 +221,12 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
years: "jaren"
|
||||
|
||||
play_level:
|
||||
# completed_level: "Completed Level:"
|
||||
# course: "Course:"
|
||||
completed_level: "Voltooid Level:"
|
||||
course: "Les:"
|
||||
done: "Klaar"
|
||||
# next_level: "Next Level:"
|
||||
# next_game: "Next game"
|
||||
# show_menu: "Show game menu"
|
||||
next_level: "Volgende Level:"
|
||||
next_game: "Volgende spel"
|
||||
show_menu: "Geef spelmenu weer"
|
||||
home: "Home" # Not used any more, will be removed soon.
|
||||
level: "Level" # Like "Level: Dungeons of Kithgard"
|
||||
skip: "Overslaan"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
incomplete: "Incompleet"
|
||||
timed_out: "De tijd is op"
|
||||
failing: "Mislukken"
|
||||
action_timeline: "Actie tijdlijn"
|
||||
click_to_select: "Klik op een eenheid om deze te selecteren."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Meespelen"
|
||||
reload: "Herlaad"
|
||||
|
@ -330,25 +324,25 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
tip_premature_optimization: "vroegtijdig optimaliseren is de wortel van al het kwaad. - Donald Knuth"
|
||||
tip_brute_force: "Wanneer je twijfelt, gebruik brute force. - Ken Thompson"
|
||||
tip_extrapolation: "Er zijn twee soorten mensen: Zij die iets kunnen afleiden van onvolledige gegevens..."
|
||||
# tip_superpower: "Coding is the closest thing we have to a superpower."
|
||||
# tip_control_destiny: "In real open source, you have the right to control your own destiny. - Linus Torvalds"
|
||||
tip_superpower: "Van alle dingen komt programmeren het dichtst in de buurt van een superkracht."
|
||||
tip_control_destiny: "In echte open source, hebt je het recht om je eigen toekomst te bepalen. - Linus Torvalds"
|
||||
tip_no_code: "Geen code is sneller dan geen code."
|
||||
tip_code_never_lies: "Code liegt niet, commentaar soms wel. — Ron Jeffries"
|
||||
tip_reusable_software: "voor code herbruikbaar kan zijn, moet het bruikbaar zijn."
|
||||
# tip_optimization_operator: "Every language has an optimization operator. In most languages that operator is ‘//’"
|
||||
tip_optimization_operator: "Iedere taal heeft een optimalisatie operator. In de meeste talen is die operator ‘//’"
|
||||
tip_lines_of_code: "programmeervoortgang meten met lijnen code, is als vliegtuigbouwvoortgang meten bij gewicht. — Bill Gates"
|
||||
tip_source_code: "Ik wil de wereld veranderen, maar ze geven me de broncode niet."
|
||||
# tip_javascript_java: "Java is to JavaScript what Car is to Carpet. - Chris Heilmann"
|
||||
tip_javascript_java: "Java staat tot JavaScript, als Kar staat tot Karpet. - Chris Heilmann"
|
||||
tip_move_forward: "Wat je ook doet, ga vooruit. - Martin Luther King Jr."
|
||||
tip_google: "Heb je een probleem dat je niet kan oplossen? Googel het!"
|
||||
tip_adding_evil: "Een snufje kwaad toevoegen."
|
||||
tip_hate_computers: "Mensen die denken dat ze de computer haten, haten eigenlijk slechte programmeurs. - Larry Niven"
|
||||
tip_open_source_contribute: "Je kunt helpen CodeCombat te verbeteren!"
|
||||
# tip_recurse: "To iterate is human, to recurse divine. - L. Peter Deutsch"
|
||||
tip_recurse: "Itereren is menselijk, recursiveren is goddelijk. - L. Peter Deutsch"
|
||||
tip_free_your_mind: "You have to let it all go, Neo. Fear, doubt, and disbelief. Free your mind. - Morpheus"
|
||||
tip_strong_opponents: "Zelf de sterkste vijand heeft een zwakheid. - Itachi Uchiha"
|
||||
tip_paper_and_pen: "Voor je begint te programmeren, kan je altijd met pen en papier een plan maken."
|
||||
# tip_solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
tip_solve_then_write: "Los eerst het probleem op. Schrijf dan de code. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "Inventaris"
|
||||
|
@ -363,20 +357,20 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
choose_hero_caption: "Kies held, taal"
|
||||
save_load_caption: "... en bekijk de geschiedenis"
|
||||
options_caption: "Instellingen"
|
||||
# guide_caption: "Docs and tips"
|
||||
guide_caption: "Documenten en tips"
|
||||
multiplayer_caption: "Speel met vrienden!"
|
||||
auth_caption: "Bewaar je voortgang."
|
||||
|
||||
leaderboard:
|
||||
view_other_solutions: "Bekijk Klassement"
|
||||
scores: "Scores"
|
||||
# top_players: "Top Players by"
|
||||
top_players: "Top Spelers per"
|
||||
day: "Vandaag"
|
||||
week: "Deze week"
|
||||
all: "Altijd"
|
||||
time: "tijd"
|
||||
# damage_taken: "Damage Taken"
|
||||
# damage_dealt: "Damage Dealt"
|
||||
damage_taken: "Schade ontvangen"
|
||||
damage_dealt: "Schade uitgedeeld"
|
||||
difficulty: "Moeilijkheidsgraad"
|
||||
gold_collected: "Goud verzameld"
|
||||
|
||||
|
@ -406,14 +400,14 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# price: "x3500 / mo"
|
||||
|
||||
subscribe:
|
||||
# comparison_blurb: "Sharpen your skills with a CodeCombat subscription!"
|
||||
comparison_blurb: "Verbeter je vaardigheden met een abonement op CodeCombat!"
|
||||
feature1: "meer dan 110+ basislevels over 4 werelden"
|
||||
feature2: "10 sterke <strong>nieuwe helden</strong> met unieke vaardigheden!"
|
||||
feature3: "70+ bonuslevels" # {change}
|
||||
# feature4: "<strong>3500 bonus gems</strong> every month!"
|
||||
feature4: "<strong>3500 bonus edelstenen</strong> elke maand!"
|
||||
feature5: "Video cursussen"
|
||||
# feature6: "Premium email support"
|
||||
# feature7: "Private <strong>Clans</strong>"
|
||||
feature6: "Hoogwaardige e-mail ondersteuning"
|
||||
feature7: "Besloten <strong>Clans</strong>"
|
||||
free: "Gratis"
|
||||
month: "maand"
|
||||
must_be_logged: "Je moet eerst ingelogd zijn. Maak een account aan of log in in het menu hierboven."
|
||||
|
@ -438,33 +432,19 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
parents_title: "Uw kind leert programmeren." # {change}
|
||||
parents_blurb1: "Met CodeCombat leert uw kind door echte code te schrijven. Ze beginnen met simpele instructies en naarmate ze verder komen, komen er moeilijkere onderwerpen aan bod."
|
||||
parents_blurb1a: "Programmeren is een essentiële vaardigheid die uw kind als volwassene ongetwijfeld gaat gebruiken. In 2020 is de basis van programmeren nodig bij 77% van de banen en zijn softwareontwikkelaars dringend nodig in de wereld. Wist u dat informatica de hoogstbetaalde universitaire graad is?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
parents_blurb3: "Geen risico's: 100% geld terug garantie, 1-klik uitschrijving."
|
||||
payment_methods: "Betaalmethoden"
|
||||
payment_methods_title: "Geaccepteerde betaalmethoden"
|
||||
payment_methods_blurb1: "Momenteel worden alleen credit cards en Alipay geaccepteerd." # {change}
|
||||
payment_methods_blurb2: "Als u op een andere manier wilt betalen, neem dan alstublieft contact op"
|
||||
sale_already_subscribed: "Je bent al ingeschreven!"
|
||||
sale_blurb1: "bespaar $21" # {change}
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
sale_button: "Koopje!"
|
||||
sale_button_title: "Bespaar $21 bij aankoop van een 1-jaars abonnement" # {change}
|
||||
sale_click_here: "Klik hier"
|
||||
sale_ends: "Eindigt"
|
||||
sale_extended: "*Bestaande abbonementen zullen worden verlengd met 1 jaar."
|
||||
sale_feature_here: "Dit krijg je:"
|
||||
sale_feature2: "Toegang tot 9 sterke <strong>nieuwe helden</strong> met speciale vaardigheden!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
sale_continue: "Klaar voor het avontuur?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
sale_new_heroes: "Nieuwe helden!"
|
||||
# sale_title: "Back to School Sale"
|
||||
sale_view_button: "Koop een 1-jarig abonnement voor"
|
||||
sale_button_title: "Bespaar ${{discount}} bij aankoop van een 1-jaars abonnement" # {change}
|
||||
stripe_description: "Maandelijks abonnement"
|
||||
stripe_description_year_sale: "1-jarig abonnement ($21 korting)" # {change}
|
||||
stripe_description_year_sale: "1-jarig abonnement (${{discount}} korting)" # {change}
|
||||
subscription_required_to_play: "Je hebt een abonnement nodig om dit level te spelen."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
unlock_help_videos: "Abonneer om toegang te krijgen tot alle instructievideos."
|
||||
personal_sub: "Persoonlijk Abonnement" # Accounts Subscription View below
|
||||
# loading_info: "Loading subscription information..."
|
||||
# managed_by: "Managed by"
|
||||
# will_be_cancelled: "Will be cancelled on"
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
group_discounts: "Groepskorting"
|
||||
group_discounts_1: "We bieden groepskortingen aan voor grote groepen."
|
||||
group_discounts_1st: "eerste abonnement"
|
||||
group_discounts_full: "hele prijs"
|
||||
group_discounts_2nd: "Abonnementen 2-11"
|
||||
group_discounts_20: "20% korting"
|
||||
group_discounts_12th: "Abonnementen boven 11"
|
||||
group_discounts_40: "40% korting"
|
||||
subscribing: "Inschrijven..."
|
||||
recipient_emails_placeholder: "Voer emailadres in om in te schrijven, een per regel."
|
||||
subscribe_users: "Gebruikers inschrijven"
|
||||
users_subscribed: "Gebruikers ingschreven:"
|
||||
no_users_subscribed: "Geen gebruikers ingeschreven, Controleer je emailadres nog een keer."
|
||||
current_recipients: "Huidige ontvangers"
|
||||
unsubscribing: "Uitschrijven..." # {change}
|
||||
subscribe_prepaid: "Klik op inschrijven om een prepaidcode te gebruiken."
|
||||
|
@ -502,8 +468,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
javascript_blurb: "De taal van het web. (Niet hetzelfde als Java!)"
|
||||
coffeescript_blurb: "JavaScript, met betere syntax."
|
||||
clojure_blurb: "Lisp, maar modern."
|
||||
# lua_blurb: "Game scripting language."
|
||||
# io_blurb: "Simple but obscure."
|
||||
lua_blurb: "Game scripting taal."
|
||||
io_blurb: "Simpel maar obscuur."
|
||||
status: "Status"
|
||||
hero_type: "Soort"
|
||||
weapons: "Wapens"
|
||||
|
@ -514,16 +480,16 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
health: "Gezondheid"
|
||||
speed: "Snelheid"
|
||||
regeneration: "Herstel"
|
||||
# range: "Range" # As in "attack or visual range"
|
||||
# blocks: "Blocks" # As in "this shield blocks this much damage"
|
||||
range: "Bereik" # As in "attack or visual range"
|
||||
blocks: "Blokkeert" # As in "this shield blocks this much damage"
|
||||
# backstab: "Backstab" # As in "this dagger does this much backstab damage"
|
||||
skills: "Vaardigheden"
|
||||
# attack_1: "Deals"
|
||||
# attack_2: "of listed"
|
||||
# attack_3: "weapon damage."
|
||||
# attack_1: "brengt [x damge] toe" # In Dutch we say 'brings [x damge] to...' Alternative: 'veroorzaakt [x damage] (causes [x damage])
|
||||
# attack_2: "of listed" # what is the context?
|
||||
attack_3: "Wapen schade."
|
||||
# health_1: "Gains"
|
||||
# health_2: "of listed"
|
||||
# health_3: "armor health."
|
||||
health_3: "pantser gezondheid."
|
||||
speed_1: "Beweegt met"
|
||||
speed_2: "meter per seconde."
|
||||
available_for_purchase: "Aanschafbaar" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
||||
|
@ -536,18 +502,18 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
action: "Actie"
|
||||
spell: "toverspreuk"
|
||||
action_name: "naam"
|
||||
# action_cooldown: "Takes"
|
||||
# action_specific_cooldown: "Cooldown"
|
||||
# action_damage: "Damage"
|
||||
# action_range: "Range"
|
||||
action_cooldown: "Duurt" # As in duration
|
||||
action_specific_cooldown: "Afkoeling" # This literally means cooldown/coolingdown. If it needs to include a time element, it should be 'afkoeltijd'.
|
||||
action_damage: "Schade"
|
||||
action_range: "Bereik"
|
||||
action_radius: "Straal"
|
||||
action_duration: "Tijd"
|
||||
example: "Voorbeeld"
|
||||
ex: "bv" # Abbreviation of "example"
|
||||
ex: "bv." # Abbreviation of "example"
|
||||
current_value: "Huidige waarde"
|
||||
default_value: "Standaard waarde"
|
||||
parameters: "Parameters"
|
||||
# returns: "Returns"
|
||||
# returns: "Returns"
|
||||
granted_by: "Verleend door"
|
||||
|
||||
save_load:
|
||||
|
@ -596,98 +562,53 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
michael_blurb: "Systeembeheerder"
|
||||
matt_title: "Programmeur" # {change}
|
||||
matt_blurb: "Fietser"
|
||||
# cat_title: "Chief Artisan"
|
||||
cat_title: "Hoofd Ambachtsman"
|
||||
# cat_blurb: "Airbender"
|
||||
# josh_title: "Game Designer"
|
||||
# josh_blurb: "Floor Is Lava"
|
||||
josh_title: "Game Designer" # In Dutch people would use the english term.
|
||||
josh_blurb: "Vloer Is Lava"
|
||||
jose_title: "Muziek"
|
||||
# jose_blurb: "Taking Off"
|
||||
retrostyle_title: "Illustraties"
|
||||
# retrostyle_blurb: "RetroStyle Games"
|
||||
# rob_title: "Compiler Engineer"
|
||||
# rob_blurb: "Codes things and stuff"
|
||||
# josh_c_title: "Game Designer"
|
||||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
retrostyle_blurb: "RetroStijl Games"
|
||||
rob_title: "Compiler Ontwerper"
|
||||
rob_blurb: "Programmeert dingen en spullen"
|
||||
josh_c_title: "Game Designer"
|
||||
josh_c_blurb: "Ontwikkeld games"
|
||||
carlos_title: "Regio Manager, Brazilië"
|
||||
carlos_blurb: "Selderij Man"
|
||||
maka_title: "Klanten Ombudsman"
|
||||
maka_blurb: "VerhalenVerteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info voor Leerkrachten"
|
||||
intro_1: "CodeCombat is een online spel dat onderwijst in programmeren. Leerlingen schrijven code in echte programmeertalen."
|
||||
intro_2: "Geen ervaring nodig!"
|
||||
free_title: "Hoeveel kost het?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "Er zijn meer dan 110 GRATIS levels, welke alle concepten omvatten."
|
||||
free_2: "Een maandelijkse inschrijving bied toegang tot video tutorials en extra oefenlevels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Leerkrachten krijgen een gratis abonnement!" # {change}
|
||||
teacher_subs_0: "Wij bieden gratis inschrijvingen aan leerkrachten voor evaluatiedoeleinden." # {change}
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
monitor_progress_title: "Hoe bekijk ik de voortgang van de leerlingen?"
|
||||
monitor_progress_1: "De voortgang van leerlingen kunnen worden gevolg door het maken van een"
|
||||
monitor_progress_2: "voor je klas."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
monitor_progress_4: "pagina."
|
||||
monitor_progress_5: "Nadat ze zijn aangesloten, ziet u een samenvatting van de leerlingen op uw Clan's pagina."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Voor wie is CodeCombat?"
|
||||
who_for_1: "We raden CodeCombat aan voor leerlingen vanaf 9 jaar. Er is geen programmeerevaring nodig."
|
||||
who_for_2: "We hebben CodeCombat zo gemaakt dat het leuk is vooi jongens en meiden."
|
||||
material_title: "Hoeveel materiaal is er?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
material_1: "ongeveer 25 uur gratis en 15 uur betaalde inhoud."
|
||||
concepts_title: "Welke onderwerpen worden behandeld?"
|
||||
how_much_title: "Hoeveel kost een maadelijkse inschrijving?"
|
||||
how_much_1: "Een"
|
||||
how_much_2: "maandelijkse inschrijving"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
how_much_4: "Daarnaast bieden we groepskortingen voor grotere groepen:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
how_much_6: "voor meer details."
|
||||
who_for_1: "We raden CodeCombat aan voor leerlingen vanaf 9 jaar. Er is geen programmeerervaring nodig." # {change}
|
||||
who_for_2: "We hebben CodeCombat zo gemaakt dat het leuk is voor jongens en meiden." # {change}
|
||||
more_info_title: "Waar kan ik meer informatie vinden?"
|
||||
more_info_1: "ons"
|
||||
more_info_2: "lerarenforum"
|
||||
more_info_3: "Het is een goede plek om contact te leggen met andere leerkrachten, die CodeCombat gebruiken."
|
||||
sys_requirements_title: "Systeem Requirements"
|
||||
sys_requirements_1: "Een moderne webbrowser. Een nieuwe versie van Chrome, Firefox, of Safari. Internet Explorer 9 of later."
|
||||
sys_requirements_2: "CodeCombat ondersteunt de iPad nog niet."
|
||||
|
||||
teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
title: "Leraren enquête"
|
||||
must_be_logged: "Je moet eerst ingelogd zijn. Maak een account aan of log in in het menu hierboven."
|
||||
retrieving: "Informatie ophalen..."
|
||||
being_reviewed_1: "Je aanvraag voor een gratis proefabonnement wordt" # {change}
|
||||
being_reviewed_2: "beoordeeld."
|
||||
approved_1: "Je aanvraag voor een gratis proefabonnement is" # {change}
|
||||
approved_2: "goedgekeurd." # {change}
|
||||
# approved_4: "You can now enroll your students on the"
|
||||
# approved_5: "courses"
|
||||
# approved_6: "page."
|
||||
approved_4: "U kunt nu uw leerlingen inschrijven voor"
|
||||
approved_5: "lessen"
|
||||
approved_6: "pagina."
|
||||
denied_1: "Uw aanvraag voor een testaccount is" # {change}
|
||||
denied_2: "afgewezen."
|
||||
contact_1: "Neem contact op"
|
||||
contact_2: "als u meer vragen heeft."
|
||||
description_1: "We bieden gratis abbonnementen aan, aan leerkrachten voor evaluatiedoeleinden. Meer informatie kan worden gevonden op onze"
|
||||
# description_1b: "You can find more information on our"
|
||||
description_1b: "U kunt meer informatie vinden op onze"
|
||||
description_2: "leerkrachten"
|
||||
description_3: "pagina."
|
||||
description_4: "Vul alstublieft onze korte vragenlijst in en we zullen u instructies sturen om te beginnen."
|
||||
email: "Emailadres"
|
||||
email: "E-mailadres"
|
||||
school: "schoolnaam"
|
||||
location: "stad of dorp"
|
||||
age_students: "Hoe oud zijn uw leerlingen?"
|
||||
|
@ -696,87 +617,80 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
amount_students: "Hoeveel leerlingen geeft u les?"
|
||||
hear_about: "Hoe hoorde u over CodeCombat?"
|
||||
fill_fields: "Vul alstublieft alle velden in."
|
||||
thanks: "Dank u wel! We verzenden u binnenkort instructies."
|
||||
thanks: "Dank u wel! We verzenden u spoedig instructies."
|
||||
|
||||
versions:
|
||||
save_version_title: "Nieuwe versie opslaan"
|
||||
new_major_version: "Nieuwe hoofd versie"
|
||||
# submitting_patch: "Submitting Patch..."
|
||||
new_major_version: "Nieuwe hoofdversie"
|
||||
submitting_patch: "Aanpassing wordt Ingediend..."
|
||||
cla_prefix: "Om bewerkingen op te slaan, moet je eerst akkoord gaan met onze"
|
||||
cla_url: "CLA"
|
||||
cla_suffix: "."
|
||||
cla_agree: "IK GA AKKOORD"
|
||||
# owner_approve: "An owner will need to approve it before your changes will become visible."
|
||||
owner_approve: "Een eigenaar moet eerst akkoord gaan, daarna worden je aanpassingen zichtbaar."
|
||||
|
||||
contact:
|
||||
contact_us: "Contact opnemen met CodeCombat"
|
||||
welcome: "Goed om van je te horen! Gebruik dit formulier om ons een e-mail te sturen."
|
||||
forum_prefix: "Voor iets publiekelijks, probeer dan "
|
||||
forum_prefix: "Voor algemene zaken, probeer dan "
|
||||
forum_page: "ons forum"
|
||||
forum_suffix: "."
|
||||
faq_prefix: "Er is ook een"
|
||||
faq: "veelgestelde vragen sectie"
|
||||
faq: "veelgestelde vragen afdeling"
|
||||
subscribe_prefix: "Als je hulp nodig hebt om een level te halen, overweeg dan alsjeblieft"
|
||||
subscribe: "abonnee te worden van CodeCombat"
|
||||
subscribe_suffix: ", dan helpen we je graag om je code te verbeteren."
|
||||
subscriber_support: "Omdat je geabonneerd bent op CodeCombat, krijgt je email prioriteit bij het beantwoorden."
|
||||
subscriber_support: "Omdat je geabonneerd bent op CodeCombat, krijgt je e-mail prioriteit bij het beantwoorden."
|
||||
screenshot_included: "Screenshot inbegrepen."
|
||||
where_reply: "Waar moeten we reageren?"
|
||||
send: "Feedback Verzonden"
|
||||
contact_candidate: "Contacteer Kandidaat" # Deprecated
|
||||
recruitment_reminder: "Gebruik dit formulier om kandidaten te contacteren voor wie je een interesse hebt om te interviewen. Vergeet niet dat CodeCombat een honorarium vraagt van 18% op het eerste-jaarssalaris. Dit honorarium moet betaald worden als de kandidaat wordt aangenomen en kon tot na 90 dagen terugbetaald worden als deze ontslagen wordt in deze periode. Deeltijds-, contract- en thuiswerkers worden van dit honorarium vrijgesteld, alsook interims." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Account Instellingen"
|
||||
title: "Accountinstellingen"
|
||||
not_logged_in: "Log in of maak een account aan om je instellingen aan te passen."
|
||||
autosave: "Aanpassingen Automatisch Opgeslagen"
|
||||
me_tab: "Ik"
|
||||
picture_tab: "Afbeelding"
|
||||
delete_account_tab: "Verwijder je Account"
|
||||
wrong_email: "Verkeerd Emailadres"
|
||||
wrong_email: "Verkeerd E-mailadres"
|
||||
wrong_password: "Verkeerd wachtwoord"
|
||||
upload_picture: "Je afbeelding opsturen"
|
||||
delete_this_account: "Verwijder dit account voor altijd"
|
||||
# reset_progress_tab: "Reset All Progress"
|
||||
# reset_your_progress: "Clear all your progress and start over"
|
||||
# god_mode: "God Mode"
|
||||
reset_progress_tab: "Reset Alle Voortgang"
|
||||
reset_your_progress: "Verwijder alle voortgang en start opnieuw"
|
||||
god_mode: "God Modus"
|
||||
password_tab: "Wachtwoord"
|
||||
emails_tab: "Emails"
|
||||
admin: "Administrator"
|
||||
# manage_subscription: "Click here to manage your subscription."
|
||||
emails_tab: "E-mails"
|
||||
admin: "Beheerder"
|
||||
manage_subscription: "Klik hier om je abonnement te beheren."
|
||||
new_password: "Nieuw Wachtwoord"
|
||||
new_password_verify: "Verifieer"
|
||||
type_in_email: "Typ je email in om de verwijdering te bevestigen."
|
||||
# type_in_email_progress: "Type in your email to confirm deleting your progress."
|
||||
new_password_verify: "Controleer" # Controleer means 'check'. Verifieer also means check, but it is very formal. Children wouldn't know what it means.
|
||||
type_in_email: "Typ je e-mail in om de verwijdering te bevestigen."
|
||||
type_in_email_progress: "Vul je e-mail in om te bevestigen dat je jouw voortgang wilt verwijderen."
|
||||
type_in_password: "Typ ook je wachtwoord in."
|
||||
email_subscriptions: "Email Abonnementen"
|
||||
email_subscriptions_none: "Geen Email Abonnementen."
|
||||
email_subscriptions: "E-mail Abonnementen"
|
||||
email_subscriptions_none: "Geen E-mail Abonnementen."
|
||||
email_announcements: "Aankondigingen"
|
||||
email_announcements_description: "Verkrijg emails over het laatste nieuws en de ontwikkelingen bij CodeCombat."
|
||||
email_announcements_description: "Ontvang e-mails over het laatste nieuws en de ontwikkelingen bij CodeCombat."
|
||||
email_notifications: "Notificaties"
|
||||
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 email af."
|
||||
email_any_notes_description: "Zet alle activiteit-meldingen via e-mail uit."
|
||||
email_news: "Nieuws"
|
||||
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"
|
||||
email_recruit_notes_description: "Als je zeer goed speelt, zouden we je wel eens kunnen contacteren om je een (betere) baan aan te bieden."
|
||||
contributor_emails: "Medewerker Klasse e-mails"
|
||||
contribute_prefix: "We zoeken mensen om met ons te komen feesten! Bekijk de "
|
||||
contribute_page: "bijdragepagina"
|
||||
contribute_suffix: " om meer te weten te komen."
|
||||
email_toggle: "Vink alles aan/af"
|
||||
error_saving: "Fout Tijdens Het Opslaan"
|
||||
error_saving: "Fout Tijdens Opslaan"
|
||||
saved: "Aanpassingen Opgeslagen"
|
||||
password_mismatch: "Het wachtwoord komt niet overeen."
|
||||
password_repeat: "Herhaal je wachtwoord."
|
||||
job_profile: "Job Profiel" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Jouw job profiel werd goedgekeurd door CodeCombat. Werkgevers zullen het kunnen bekijken totdat je het inactief zet of als er geen verandering in komt voor vier weken."
|
||||
job_profile_explanation: "Hey! Vul dit in en we zullen je contacteren om je een job als softwareontwikkelaar te helpen vinden."
|
||||
sample_profile: "Bekijk een voorbeeld kandidaat-profiel"
|
||||
view_profile: "Bekijk je eigen kandidaat-profiel"
|
||||
|
||||
keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
keyboard_shortcuts: "Toetsenboord sneltoetsen"
|
||||
space: "Spatie"
|
||||
enter: "Enter"
|
||||
press_enter: "toets enter"
|
||||
|
@ -790,59 +704,60 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# scrub_playback: "Scrub back and forward through time."
|
||||
# single_scrub_playback: "Scrub back and forward through time by a single frame."
|
||||
# scrub_execution: "Scrub through current spell execution."
|
||||
# toggle_debug: "Toggle debug display."
|
||||
# toggle_grid: "Toggle grid overlay."
|
||||
# toggle_pathfinding: "Toggle pathfinding overlay."
|
||||
# beautify: "Beautify your code by standardizing its formatting."
|
||||
# maximize_editor: "Maximize/minimize code editor."
|
||||
toggle_debug: "Toggle debug display." # This already is correct Dutch.
|
||||
toggle_grid: "Toggle rooster weergave."
|
||||
toggle_pathfinding: "Toggle padvind weergave."
|
||||
beautify: "Verfraai je code door de opmaak overal gelijk te maken."
|
||||
maximize_editor: "Maximaliseer/minimaliseer code editor."
|
||||
|
||||
community:
|
||||
main_title: "CodeCombat Gemeenschap"
|
||||
introduction: "`Kijk hieronder hoe je mee kunt doen en kies wat je leuk lijkt. Wek kijken er naar uit om samen te werken!"
|
||||
introduction: "`Kijk hieronder hoe je mee kunt doen en kies wat jouw leuk lijkt. Wij kijken er naar uit om samen te werken!"
|
||||
level_editor_prefix: "Gebruik CodeCombat"
|
||||
level_editor_suffix: "om levels te bekijken en te bewerken. Gebruikers hebben levels gemaakt voor hun klas, vrienden, hackathons, leerlingen en familie. Als een nieuw level maken te moeilijk lijkt, kun je beginnen met het forken van een van onze levels!"
|
||||
# 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."
|
||||
level_editor_suffix: "om levels te bekijken en te bewerken. Gebruikers hebben levels gemaakt voor hun klas, vrienden, hackathons, leerlingen en familie. Als een nieuw level maken te moeilijk lijkt, kun je beginnen met het forken van een van onze levels!"
|
||||
thang_editor_prefix: "We noemen units in dit spel 'thangs'. Gebruik de"
|
||||
thang_editor_suffix: "Om de CodeCombat bron illustraties aan te passen. Om units projectielen te laten gooien, de richting van een animatie aan te passen, een unit's levenspunten aan te passen, of je eigen vector sprites te uploaden."
|
||||
article_editor_prefix: "Zie je een fout in een van onze documenten? Wil je instructies maken voor je eigen creatie? Ga naar de"
|
||||
article_editor_suffix: "en help CodeCombat spelers meer uit hun speeltijd te halen."
|
||||
find_us: "vind ons op de volgende sites:"
|
||||
social_github: "Bekijk al onze code op GitHub"
|
||||
social_blog: "Lees onze blog op Sett"
|
||||
social_discource: "Doe mee met discussies op onze Discourse forum"
|
||||
social_discource: "Doe mee aan discussies op ons Discourse forum"
|
||||
social_facebook: "Like CodeCombat op Facebook"
|
||||
social_twitter: "Volg CodeCombat op Twitter"
|
||||
social_gplus: "Join CodeCombat op Google+"
|
||||
social_hipchat: "Chat met ons in de publieke CodeCombat Slack channel"
|
||||
social_hipchat: "Chat met ons in het openbare CodeCombat Slack channel"
|
||||
contribute_to_the_project: "Help mee met het project"
|
||||
|
||||
clans:
|
||||
# clan: "Clan"
|
||||
# clans: "Clans"
|
||||
# new_name: "New clan name"
|
||||
# new_description: "New clan description"
|
||||
# make_private: "Make clan private"
|
||||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
private_preview: "Preview"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
clan: "Clan"
|
||||
clans: "Clans"
|
||||
new_name: "Nieuwe clan naam"
|
||||
new_description: "Nieuwe clan beschrijving"
|
||||
make_private: "Maak clan besloten"
|
||||
subs_only: "Alleen voor abonnees"
|
||||
create_clan: "Maak Nieuwe Clan"
|
||||
private_preview: "Voorvertoning"
|
||||
private_clans: "Besloten Clans"
|
||||
public_clans: "Openbare Clans"
|
||||
my_clans: "Mijn Clans"
|
||||
clan_name: "Clan Naam"
|
||||
name: "Naam"
|
||||
# chieftain: "Chieftain"
|
||||
chieftain: "Stamhoofd"
|
||||
type: "Type"
|
||||
# edit_clan_name: "Edit Clan Name"
|
||||
# edit_clan_description: "Edit Clan Description"
|
||||
edit_clan_name: "Bewerk Clan Naam"
|
||||
edit_clan_description: "Bewerk Clan Beschrijving"
|
||||
edit_name: "bewerk naam"
|
||||
edit_description: "bewerk beschrijving"
|
||||
private: "(privé)"
|
||||
private: "(besloten)"
|
||||
summary: "Samenvatting"
|
||||
average_level: "Gemiddelde Level"
|
||||
# average_achievements: "Average Achievements"
|
||||
# delete_clan: "Delete Clan"
|
||||
# leave_clan: "Leave Clan"
|
||||
# join_clan: "Join Clan"
|
||||
average_level: "Gemiddeld niveau"
|
||||
average_achievements: "Gemiddelde Prestaties"
|
||||
delete_clan: "Delete Clan"
|
||||
leave_clan: "Verlaat Clan"
|
||||
join_clan: "Ga bij een Clan" # Now it says 'join a clan', like: "click here to join a clan". If the context is more like: join THIS clan. Then the current translation is wrong.
|
||||
invite_1: "Uitnodigen:"
|
||||
# invite_2: "*Invite players to this Clan by sending them this link."
|
||||
invite_2: "*Nodig spelers uit in deze clan door hen deze link te sturen."
|
||||
members: "Leden"
|
||||
progress: "Voortgang"
|
||||
not_started_1: "Niet gestart"
|
||||
|
@ -855,38 +770,38 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
started_2: "Gestart"
|
||||
not_started_2: "Niet gestart"
|
||||
view_solution: "Klik om oplossing te bekijken."
|
||||
# view_attempt: "Click to view attempt."
|
||||
# latest_achievement: "Latest Achievement"
|
||||
view_attempt: "Klik om poging te bekijken."
|
||||
latest_achievement: "Laatst behaalde prestatie"
|
||||
playtime: "Speeltijd"
|
||||
last_played: "Laatst gespeeld"
|
||||
# leagues_explanation: "Play in a league against other clan members in these multiplayer arena instances."
|
||||
# track_concepts1: "Track concepts"
|
||||
track_concepts1: "Traject concepten"
|
||||
# track_concepts2a: "learned by each student"
|
||||
# track_concepts2b: "learned by each member"
|
||||
# track_concepts3a: "Track levels completed for each student"
|
||||
# track_concepts3b: "Track levels completed for each member"
|
||||
# track_concepts4a: "See your students'"
|
||||
# track_concepts4b: "See your members'"
|
||||
# track_concepts5: "solutions"
|
||||
# track_concepts6a: "Sort students by name or progress"
|
||||
# track_concepts6b: "Sort members by name or progress"
|
||||
# track_concepts7: "Requires invitation"
|
||||
# track_concepts8: "to join"
|
||||
# private_require_sub: "Private clans require a subscription to create or join."
|
||||
track_concepts4a: "Zie jouw leerlingen'"
|
||||
track_concepts4b: "Zie jouw deelnemers'"
|
||||
track_concepts5: "Oplossingen"
|
||||
track_concepts6a: "Sorteer leerlingen op naam of voortgang"
|
||||
track_concepts6b: "Sorteer deelnemers op naam of voortgang"
|
||||
track_concepts7: "Vereist een uitnodiging"
|
||||
track_concepts8: "om deel te nemen"
|
||||
private_require_sub: "Om aan besloten clans deel te kunnen nemen is een abonnement vereist."
|
||||
|
||||
courses:
|
||||
course: "Cursus"
|
||||
courses: "cursussen"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "Maak Nieuwe Klas aan"
|
||||
not_enrolled: "Je bent niet ingeschreven voor deze cursus."
|
||||
visit_pref: "Ga naar"
|
||||
visit_suf: "de pagina om in te schrijven."
|
||||
select_class: "Selecteer een vn je klassen"
|
||||
select_class: "Selecteer een van je klassen"
|
||||
unnamed: "Naamloos*"
|
||||
select: "Selecteer"
|
||||
unnamed_class: "Naamloze klas"
|
||||
# edit_settings: "edit class settings"
|
||||
# edit_settings1: "Edit Class Settings"
|
||||
edit_settings: "bewerk klas instellingen"
|
||||
edit_settings1: "Bewerk Klas Instellingen"
|
||||
progress: "klas-voortgang"
|
||||
add_students: "Voeg leerlingen toe"
|
||||
stats: "Statistieken"
|
||||
|
@ -895,8 +810,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
total_time: "Totale speeltijd:"
|
||||
average_levels: "Gemiddeld aantal levels voltooid:"
|
||||
total_levels: "Totaal aantal levels voltooid:"
|
||||
furthest_level: "Hoogste level behaald:"
|
||||
concepts_covered: "Concepten behandeld"
|
||||
furthest_level: "Hoogst behaalde level:"
|
||||
concepts_covered: "Behandelde concepten"
|
||||
students: "leerlingen"
|
||||
students1: "leerlingen"
|
||||
concepts: "Concepten"
|
||||
|
@ -905,11 +820,11 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
play_time: "speeltijd:"
|
||||
completed: "voltooid:"
|
||||
invite_students: "Nodig leerlingen uit voor deze klas."
|
||||
# invite_link_header: "Link to join course"
|
||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
||||
# invite_link_p_2: "Or have us email them directly:"
|
||||
# capacity_used: "Course slots used:"
|
||||
enter_emails: "Voer emailadres van leerlingen in om uit te nodigen, een per regel"
|
||||
invite_link_header: "Link om aan cursus deel te nemen"
|
||||
invite_link_p_1: "Geef deze link aan leerlingen waarvan u wilt dat zij de cursus volgen."
|
||||
invite_link_p_2: "Of laat ons hun direct een e-mail sturen:"
|
||||
capacity_used: "Cursus stoelen gebruikt:"
|
||||
enter_emails: "Voer e-mailadressen van leerlingen in om uit te nodigen, één per regel"
|
||||
send_invites: "Verstuur uitnodigingen"
|
||||
title: "Titel"
|
||||
description: "beschrijving"
|
||||
|
@ -921,39 +836,39 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
select_all_courses: "Selecteer 'Alle cursussen' voor 50% korting!"
|
||||
all_courses: "Alle cursussen"
|
||||
number_students: "Aantal leerlingen"
|
||||
enter_number_students: "Voer het aantal leerlingen in die je voor de klas nodig hebt."
|
||||
enter_number_students: "Voer het aantal leerlingen in dat je voor de klas nodig hebt."
|
||||
name_class: "Geef je klas een naam"
|
||||
displayed_course_page: "Dit wordt getoond op de cursuspagina aan u en uw leerlingen. Het kan later worden veranderd."
|
||||
buy: "Kopen"
|
||||
purchasing_for: "U koopt een licentie voor"
|
||||
creating_for: "U maakt een klas voor"
|
||||
for: "voor" # Like in 'for 30 students'
|
||||
# receive_code: "Afterwards you will receive an unlock code to distribute to your students, which they can use to enroll in your class."
|
||||
receive_code: "Naderhand ontvangt u een ontgrendelcode om uw leerlingen, waarmee zij zich kunnen inschrijven in uw klas."
|
||||
free_trial: "Gratis uitproberen voor leerkrachten!"
|
||||
get_access: "Individueel toegang krijgen voor evaluatiedoeleinden."
|
||||
questions: "Vragen?"
|
||||
teachers_click: "Leerkrachten klik hier"
|
||||
students_click: "Leerlingen klik hier"
|
||||
courses_on_coco: "Cursussen van CodeCombat"
|
||||
designed_to: "Cursussen zijn ontwikkeld om te introduceren in informaticaconcepten met CodeCombat's plezier en interessante omgevingen. CodeCombat levels zijn gesturctureerd rond belangrijke onderwerpen om voorstrevend leren te bemoedigen, gedurende 5 uur."
|
||||
designed_to: "Cursussen zijn ontwikkeld ter introductie van ICT-concepten met CodeCombats leuke en leerzame omgevingen. CodeCombat-levels zijn gesturctureerd rond belangrijke concepten om vooruitstrevend leren te bemoedigen, gedurende 5 uur."
|
||||
more_in_less: "Leer meer in minder tijd"
|
||||
no_experience: "Geen programmeerervaring nodig"
|
||||
easy_monitor: "voortgang leerlingen makkelijk te bekijken"
|
||||
purchase_for_class: "Koop een cursus voor de hele klas. Het is makkelijk je leerlingen in te schrijven!"
|
||||
see_the: "Bekijk de"
|
||||
more_info: "voor meer informatie."
|
||||
choose_course: "Kies je cursus:"
|
||||
choose_course: "Kies uw cursus:"
|
||||
enter_code: "voer een ontgrendelcode in" # {change}
|
||||
enter_code1: "Voer ontgrendelcode in"
|
||||
enroll: "Inschrijven"
|
||||
pick_from_classes: "Kies uit je huidige klas"
|
||||
# enter: "Enter"
|
||||
enter: "Treed toe"
|
||||
or: "Of"
|
||||
topics: "Onderwerpen"
|
||||
hours_content: "uren inhoud:"
|
||||
get_free: "Ontvang een GRATIS cursus"
|
||||
# enroll_paid: "Enroll Students in Paid Courses"
|
||||
# you_have1: "You have"
|
||||
you_have1: "U heeft"
|
||||
# you_have2: "unused paid enrollments"
|
||||
# use_one: "Use 1 paid enrollment for"
|
||||
# use_multiple: "Use paid enrollments for the following students:"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
payments: "Betalingen"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Gekocht"
|
||||
sale: "Verkoop"
|
||||
subscription: "abonnement"
|
||||
invoices: "Facturen"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
email_settings_url: "jouw e-mail instellingen"
|
||||
email_description_suffix: "of via urls in de emails die wij verzenden, kan je jouw instellingen wijzigen en ten allen tijden uitschrijven."
|
||||
cost_title: "Kosten"
|
||||
cost_description: "Momenteel is CodeCombat 100% gratis! Één van onze doestellingen is om dit zo te houden, opdat zoveel mogelijk mensen kunnen spelen, onafhankelijk van waar je leeft of wie je bent. Als het financieel moeilijker wordt, kan het mogelijk zijn dat we gaan beginnen met abonnementen of een prijs zetten op bepaalde zaken, maar we streven ernaar om dit te voorkomen. Met een beetje geluk zullen we dit voor altijd kunnen garanderen met:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Auteursrechten en licenties"
|
||||
contributor_title: "Licentieovereenkomst voor vrijwilligers"
|
||||
contributor_description_prefix: "Alle bijdragen, zowel op de website als op onze GitHub repository, vallen onder onze"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
nutshell_title: "In een notendop"
|
||||
nutshell_description: "Alle middelen die wij aanbieden in de Level Editor zijn gratis te gebruiken om levels aan te maken. Wij behouden ons echter het recht voor om levels die gemaakt zijn op codecombat.com te beperken, en hier in de toekomst geld voor te vragen, moest dat ooit gebeuren."
|
||||
canonical: "De Engelse versie van dit document is de definitieve en kanonieke versie. Bij verschillen tussen vertalingen heeft de Engelse versie voorrang."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Tournamentprijzen" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
license: "licentie"
|
||||
oreilly: "ebook van je keuze"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profiel voor "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "Zoekt naar:"
|
||||
last_updated: "Laatst aangepast:"
|
||||
contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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: "Werk ervaring"
|
||||
# work_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Opleiding"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
our_notes: "Onze notities"
|
||||
# remarks: "Remarks"
|
||||
projects: "Projecten"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Sorry, CodeCombat is werft nu geen personeel."
|
||||
deprecation_warning: "We focussen ons op dit moment op beginnerslevels in plaats van het zoeken naar ervarem ontwikkelaars."
|
||||
hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Naam"
|
||||
candidate_location: "Locatie"
|
||||
candidate_looking_for: "Zoekt naar"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Beste vaardigheden"
|
||||
candidate_years_experience: "Jaren ervaring"
|
||||
candidate_last_updated: "Laatst aangepast"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Nederlands (Nederland)", englishDescription
|
|||
av_entities_sub_title: "Entiteiten"
|
||||
av_entities_users_url: "Gebruikers"
|
||||
av_entities_active_instances_url: "Actieve instanties"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Andere"
|
||||
av_other_debug_base_url: "Base (om base.jade te debuggen)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Norsk Nynorsk", englishDescription: "Norweg
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Dla developerów" # Not currently shown on home page.
|
||||
or_ipad: "Albo ściągnij na swojego iPada"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Poziomy" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
creating: "Tworzenie konta..."
|
||||
sign_up: "Zarejestruj się"
|
||||
log_in: "Zaloguj się używając hasła"
|
||||
social_signup: "lub zaloguj się używając konta Facebook lub G+:"
|
||||
required: "Musisz się zalogować zanim przejdziesz dalej."
|
||||
login_switch: "Masz już konto?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
incomplete: "Niekompletne"
|
||||
timed_out: "Czas minął"
|
||||
failing: "Niepowodzenie"
|
||||
action_timeline: "Oś czasu"
|
||||
click_to_select: "Kliknij jednostkę, by ją zaznaczyć."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Dołącz do gry"
|
||||
reload: "Wczytaj ponownie"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Informacja dla nauczycieli"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# teachers:
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
teachers_survey:
|
||||
title: "Ankieta dla nauczycieli"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
screenshot_included: "Dołączymy zrzuty ekranu."
|
||||
where_reply: "Gdzie mamy odpisać?"
|
||||
send: "Wyślij wiadomość"
|
||||
contact_candidate: "Kontakt z kandydatem" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Ustawienia Konta"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
saved: "Zmiany zapisane"
|
||||
password_mismatch: "Hasła róznią się od siebie"
|
||||
password_repeat: "Powtórz swoje hasło."
|
||||
job_profile: "Profil zatrudnienia" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Twój profil zatrudnienia został zaakceptowany przez CodeCombat. Pracodawcy będą mogli go widzieć dopóki nie oznaczysz go jako nieaktywny lub nie będzie on zmieniany przez 4 tygodnie."
|
||||
job_profile_explanation: "Witaj! Wypełnij to, a będziemy w kontakcie w sprawie znalezienie dla Ciebe pracy twórcy oprogramowania."
|
||||
sample_profile: "Zobacz przykładowy profil"
|
||||
view_profile: "Zobacz swój profil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Skróty klawiszowe"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
subs_only: "tylko subskrybenci"
|
||||
create_clan: "Stwórz nowy klan"
|
||||
private_preview: "Podgląd"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Publiczne klany"
|
||||
my_clans: "Moje klany"
|
||||
clan_name: "Nazwa klanu"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
payments: "Płatności"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Zakupiono"
|
||||
# sale: "Sale"
|
||||
subscription: "Subskrypcje"
|
||||
invoices: "Faktury"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
email_settings_url: "twoje ustawienia e-mail"
|
||||
email_description_suffix: "lub poprzez linki w e-mailach, które wysyłamy, możesz zmienić swoje ustawienia i w prosty sposób wypisać się z subskrypcji w dowolnym momencie."
|
||||
cost_title: "Koszty"
|
||||
cost_description: "W tym momencie CodeCombat jest w stu procentach darmowe! Jednym z naszych głównych celów jest, by utrzymać taki stan rzeczy, aby jak najwięcej ludzi miało dostęp do gry, bez względu na ich zasobność. Jeśli nadejdą gorsze dni, dopuszczamy możliwość wprowadzenia płatnych subskrypcji lub pobierania opłat za część zawartości, ale wolelibyśmy, by tak się nie stało. Przy odrobinie szczęścia, uda nam się podtrzymać obecną sytuację dzięki:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Prawa autorskie i licencje"
|
||||
contributor_title: "Umowa licencyjna dla współtwórców (CLA)"
|
||||
contributor_description_prefix: "Wszyscy współtwórcy, zarówno ci ze strony jak i ci z GitHuba, podlegają naszemu"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
nutshell_title: "W skrócie"
|
||||
nutshell_description: "Wszelkie zasoby, które dostarczamy w Edytorze Poziomów są darmowe w użyciu w jakikolwiek sposób w celu tworzenia poziomów. Jednocześnie, zastrzegamy sobie prawo do ograniczenia rozpowszechniania poziomów (stworzonych przez codecombat.com) jako takich, aby mogła być za nie w przyszłości pobierana opłata, jeśli dojdzie do takiej konieczności."
|
||||
canonical: "Angielska wersja tego dokumentu jest ostateczna, kanoniczną wersją. Jeśli zachodzą jakieś rozbieżności pomiędzy tłumaczeniami, dokument anglojęzyczny ma pierwszeństwo."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
settings: "Ustawienia" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Edytuj Profil"
|
||||
done_editing: "Edycja wykonana"
|
||||
profile_for_prefix: "Profil "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
contact: "Kontakt"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
next: "Nastepny"
|
||||
next_city: "miasto?"
|
||||
next_country: "wybierz kraj."
|
||||
next_name: "imię?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "polski", englishDescription: "Polish", tran
|
|||
av_entities_sub_title: "Podmioty"
|
||||
av_entities_users_url: "Użytkownicy"
|
||||
av_entities_active_instances_url: "Aktywne podmioty"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Inne"
|
||||
av_other_debug_base_url: "Baza (do debuggingu base.jade)"
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
no_ie: "O CodeCombat não roda em versões mais antigas que o Internet Explorer 10. Desculpe!" # Warning that only shows up in IE8 and older
|
||||
no_mobile: "O CodeCombat não foi projetado para dispositivos móveis e pode não funcionar!" # Warning that shows up on mobile devices
|
||||
play: "Jogar" # The big play button that opens up the campaign view.
|
||||
# play_campaign_version: "Play Campaign Version" # Shows up under big play button if you only play /courses
|
||||
play_campaign_version: "Jogar Modo Campanha" # Shows up under big play button if you only play /courses
|
||||
old_browser: "Ops, seu navegador é muito antigo para rodar o CodeCombat. Desculpe!" # Warning that shows up on really old Firefox/Chrome/Safari
|
||||
old_browser_suffix: "Você pode tentar de qualquer forma, mas provavelmente não irá funcionar."
|
||||
ipad_browser: "Más notícias: O CodeCombat não é executado no navegador do iPad. Boas notícias: Nosso app nativo do iPad está esperando a aprovação da Apple."
|
||||
|
@ -13,14 +13,11 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
multiplayer: "Multijogador" # Not currently shown on home page
|
||||
for_developers: "Para Desenvolvedores" # Not currently shown on home page.
|
||||
or_ipad: "Ou baixe para iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Jogar" # The top nav bar entry where players choose which levels to play
|
||||
community: "Comunidade"
|
||||
# courses: "Courses"
|
||||
courses: "Cursos"
|
||||
editor: "Editor"
|
||||
blog: "Blog"
|
||||
forum: "Fórum"
|
||||
|
@ -55,7 +52,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
|
||||
play:
|
||||
play_as: "Jogar Como " # Ladder page
|
||||
# compete: "Compete!" # Course details page
|
||||
compete: "Concorrer!" # Course details page
|
||||
spectate: "Assistir" # Ladder page
|
||||
players: "Jogadores" # Hover over a level on /play
|
||||
hours_played: "Horas jogadas" # Hover over a level on /play
|
||||
|
@ -78,7 +75,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
subscription_required: "Requer assinatura"
|
||||
anonymous: "Jogador Anônimo"
|
||||
level_difficulty: "Dificuldade: "
|
||||
# play_classroom_version: "Play Classroom Version" # Choose a level in campaign version that you also can play in one of your courses
|
||||
play_classroom_version: "Jogue a versão de classe" # Choose a level in campaign version that you also can play in one of your courses
|
||||
campaign_beginner: "Campanha Iniciante"
|
||||
awaiting_levels_adventurer_prefix: "Nós liberamos cinco níveis por semana." # {change}
|
||||
awaiting_levels_adventurer: "Cadastre-se como um aventureiro"
|
||||
|
@ -86,8 +83,8 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
adjust_volume: "Ajuste o volume"
|
||||
campaign_multiplayer: "Arenas Multijogador"
|
||||
campaign_multiplayer_description: "... nas quais você programará cara-a-cara contra outros jogadores."
|
||||
# campaign_old_multiplayer: "(Deprecated) Old Multiplayer Arenas"
|
||||
# campaign_old_multiplayer_description: "Relics of a more civilized age. No simulations are run for these older, hero-less multiplayer arenas."
|
||||
campaign_old_multiplayer: "(Depreciado) Velhas Arenas Multijogador"
|
||||
campaign_old_multiplayer_description: "Reliquias de uma era mais civilizada.Nenhuma simulação roda nessa antiguidade ,arenas multijogador sem heróis."
|
||||
|
||||
share_progress_modal:
|
||||
blurb: "Você está fazendo bastante progresso! Compartilhe com alguém o quanto você já aprendeu com o CodeCombat!" # {change}
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
creating: "Criando uma nova conta..."
|
||||
sign_up: "Criar conta"
|
||||
log_in: "Entre com a senha"
|
||||
social_signup: "Ou, você pode fazer login pelo Facebook ou G+:"
|
||||
required: "Você precisa fazer login antes de ir por esse caminho."
|
||||
login_switch: "Já possui uma conta?"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "Nome da Escola e da cidade"
|
||||
optional: "Opcional"
|
||||
school_name_placeholder: "Escola de exemplo, Cotia, SP"
|
||||
|
||||
recover:
|
||||
recover_account_title: "Recuperar conta"
|
||||
|
@ -225,10 +221,10 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
years: "anos"
|
||||
|
||||
play_level:
|
||||
# completed_level: "Completed Level:"
|
||||
# course: "Course:"
|
||||
completed_level: "Nivel Completo:"
|
||||
course: "Curso:"
|
||||
done: "Pronto"
|
||||
# next_level: "Next Level:"
|
||||
next_level: "Proximo Nivel:"
|
||||
next_game: "Próximo jogo"
|
||||
show_menu: "Mostrar menu do jogo"
|
||||
home: "Início" # Not used any more, will be removed soon.
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
incomplete: "Incompleto"
|
||||
timed_out: "Tempo esgotado"
|
||||
failing: "Falta"
|
||||
action_timeline: "Linha do Tempo das Ações"
|
||||
click_to_select: "Clique em um personagem para selecioná-lo."
|
||||
control_bar_multiplayer: "Multijogador"
|
||||
control_bar_join_game: "Juntar-se a uma partida"
|
||||
reload: "Recarregar"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
parents_title: "Seus filhos estão aprendendo a programar." # {change}
|
||||
parents_blurb1: "Com o CodeCombat, seus filhos aprendem a programar de verdade. Eles começam a aprender comandos simples, e progridem para tópicos avançados."
|
||||
parents_blurb1a: "Programação de computadores é uma habilidade essencial que seu filho com certeza usará quando adulto. Em 2020, conhecimentos basicos de software serão necessários para 77% dos empregos, e engenheiros de software estão em grande demanda ao redor do mundo. Você sabia que CIência da Computação é a formação superior mais bem paga?"
|
||||
parents_blurb2: "Por apenas $9.99 USD/mês, eles recebem novos desafios todo mês e suporte no email pessoal de programadores profissionais." # {change}
|
||||
parents_blurb2: "Por apenas ${{price}} USD/mês, eles recebem novos desafios todo mês e suporte no email pessoal de programadores profissionais." # {change}
|
||||
parents_blurb3: "Sem risco: 100% devolução do dinheiro garantida, basta um simples clique em desinscrever-se."
|
||||
payment_methods: "Formas de pagamento"
|
||||
payment_methods_title: "Formas de pagamento aceitas"
|
||||
payment_methods_blurb1: "Aceitamos cartões de crédito e Alipay no momento." # {change}
|
||||
payment_methods_blurb2: "Se você precisa de outra forma de pagamento, por favor contate"
|
||||
sale_already_subscribed: "Você já está subscrito!"
|
||||
sale_blurb1: "Economize $21" # {change}
|
||||
sale_blurb2: "desconto regular de assinatura por U$120 durante um ano inteiro!"
|
||||
sale_button: "Venda!"
|
||||
sale_button_title: "Economize $21 quando você adquirir a assinatura de 1 ano" # {change}
|
||||
sale_click_here: "Clique Aqui"
|
||||
sale_ends: "Termina"
|
||||
sale_extended: "*Assinaturas existentes serão extendidas por 1 ano."
|
||||
sale_feature_here: "O que está incluso:"
|
||||
sale_feature2: "Acesso a 9 poderosos <strong>novos heróis</strong> com atributos únicos!"
|
||||
sale_feature4: "<strong>42,000 gemas bônus</strong> entregues imediatamente!"
|
||||
sale_continue: "Pronto para continuar a aventura?"
|
||||
sale_limited_time: "Oferta por tempo limitado!"
|
||||
sale_new_heroes: "Novos heróis!"
|
||||
sale_title: "Promoção de volta às aulas"
|
||||
sale_view_button: "Compre uma assinatura de 1 ano por"
|
||||
sale_button_title: "Economize ${{discount}} quando você adquirir a assinatura de 1 ano" # {change}
|
||||
stripe_description: "Inscrição Mensal"
|
||||
stripe_description_year_sale: "Assinatura de 1 Ano ($21 de desconto" # {change}
|
||||
stripe_description_year_sale: "Assinatura de 1 Ano (${{discount}} de desconto" # {change}
|
||||
subscription_required_to_play: "Você precisará se inscrever para jogar este nível."
|
||||
unlock_help_videos: "Inscreva-se para desbloquear todos os vídeos tutoriais."
|
||||
personal_sub: "Inscrição individual" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
currently_free_until: "Sua assinatura gratuita é válida até"
|
||||
was_free_until: "Sua assinatura gratuita expirou em"
|
||||
managed_subs: "Assinaturas gerenciadas"
|
||||
managed_subs_desc: "Adicione assinaturas para outros jogadores (estudantes, crianças, etc)"
|
||||
managed_subs_desc_2: "Destinatários devem ter uma conta CodeCombat associada com o e-mail fornecido"
|
||||
group_discounts: "Descontos para grupos"
|
||||
group_discounts_1: "Nós também oferecemos descontos para grupos para inscrições em grande quantidades."
|
||||
group_discounts_1st: "Primeira assinatura"
|
||||
group_discounts_full: "Preço normal"
|
||||
group_discounts_2nd: "2 a 11 assinaturas"
|
||||
group_discounts_20: "20% de desconto"
|
||||
group_discounts_12th: "Acima de 12 assinaturas"
|
||||
group_discounts_40: "20% de desconto"
|
||||
subscribing: "Assinando..."
|
||||
recipient_emails_placeholder: "Insira o e-mail para assinar, um por linha"
|
||||
subscribe_users: "Inscrever usuários"
|
||||
users_subscribed: "Usuários inscritos"
|
||||
no_users_subscribed: "Nenhum usuário inscrito, por favor verifique os endereços de e-mail"
|
||||
current_recipients: "Destinatários atuais"
|
||||
unsubscribing: "Cancelando assinatura" # {change}
|
||||
subscribe_prepaid: "Clique em Assinar para utilizar um código pré-pago"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
josh_c_blurb: "Desenha jogos"
|
||||
carlos_title: "Gerente Regional, Brasil"
|
||||
carlos_blurb: "O Homem Célere"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Informações para Professores"
|
||||
intro_1: "CodeCombat é um jogo online que ensina programação. Estudantes criam código em linguagens de programação usadas na vida real."
|
||||
intro_2: "Não é necessário ter experiência!"
|
||||
free_title: "Quanto custa?"
|
||||
cost_premium_server: "CodeCombat é gratuito para os primeiros cinco níveis, depois disso custa $9.99 USD por mês para ter acesso aos nossos outros 190+ níveis em nossos servidores exclusivos por países."
|
||||
free_1: "CodeCombat Basic é gratuito! Há mais de 80 níveis gratuitos que cobrem todos os conceitos." # {change}
|
||||
free_2: "Uma assinatura mensal dá acesso aos vídeos tutoriais e mais níveis para praticar."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Professores recebem assinaturas gratuitas!" # {change}
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "Por favor contate" # {change}
|
||||
teacher_subs_2: "para organizar uma assinatura mensal." # {change}
|
||||
teacher_subs_3: "para configurar sua assinatura" # {change}
|
||||
sub_includes_title: "O que está incluído na assinatura?"
|
||||
sub_includes_1: "Além dos mais de 80 níveis básicos, estudantes com uma assinatura mensal têm acesso aos seguintes recursos:" # {change}
|
||||
sub_includes_2: "Mais de 60 níveis para praticar" # {change}
|
||||
sub_includes_3: "Vídeos tutoriais"
|
||||
sub_includes_4: "Suporte premium por email"
|
||||
sub_includes_5: "7 novos heróis com habilidades únicas a serem aprendidas" # {change}
|
||||
sub_includes_6: "3500 gemas bônus todos os meses"
|
||||
sub_includes_7: "Clãs Privados"
|
||||
monitor_progress_title: "Como monitoro o progresso dos estudantes?"
|
||||
monitor_progress_1: "O progresso dos estudantes pode ser monitorado ao criar"
|
||||
monitor_progress_2: "para sua turma."
|
||||
monitor_progress_3: "Para adicionar estudantes, envie-os o link de convite para seu clã, que está na"
|
||||
monitor_progress_4: "página."
|
||||
monitor_progress_5: "Depois que eles se juntarem ao seu Clã, você verá um resumo do progresso dos estudantes na página do seu Clã."
|
||||
private_clans_1: "Clãs privados proporcionam mais pricacidade e informações de progresso detalhadas para cada estudante."
|
||||
private_clans_2: "Para criar um Clã privado, marque a caixa 'Tornar Clã privado' ao criar um"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Para quem é indicado o CodeCombat?"
|
||||
who_for_1: "Nós recomendamos CodeCombat para estudantes a partir de 9 anos de idade. Nenhuma experiência anterior em programação é necessária."
|
||||
who_for_2: "Nós projetamos o CodeCombat para ser atraente à meninos e meninas."
|
||||
material_title: "Quanto material existe?"
|
||||
material_premium_server: "Aproximadamente 40 horas de jogo espalhadas por mais de 180 níveis restritos até agora." # {change}
|
||||
material_1: "Aproximadamente 25 horas de conteúdo livre e 15 horas adicionais de conteúdo restrito."
|
||||
concepts_title: "Que conceitos são abordados?"
|
||||
how_much_title: "Quanto custa uma assinatura mensal?"
|
||||
how_much_1: "Uma"
|
||||
how_much_2: "assinatura mensal"
|
||||
how_much_3: "custa $9.99, e pode ser cancelada a qualquer momento."
|
||||
how_much_4: "Além disso, nós provemos descontos para grupos maiores:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
how_much_6: "para mais detalhes."
|
||||
who_for_1: "Nós recomendamos CodeCombat para estudantes a partir de 9 anos de idade. Nenhuma experiência anterior em programação é necessária." # {change}
|
||||
who_for_2: "Nós projetamos o CodeCombat para ser atraente à meninos e meninas." # {change}
|
||||
more_info_title: "Onde eu posso encontrar mais informações?"
|
||||
more_info_1: "Nosso"
|
||||
more_info_2: "fórum de professores"
|
||||
more_info_3: "é um bom lugar para se conectar com ótimos educadores que utilizam o CodeCombat."
|
||||
sys_requirements_title: "Requisitos de Sistema"
|
||||
sys_requirements_1: "Pelo motivo de CodeCombat ser um jogo, é mais intenso para ser processado em computadores do que tutoriais em vídeo ou escritos. Estamos otimizando para que rode rapidamente em todos navegadores modernos e também em computadores antigos, assim todos podem jogar. Sendo assim, aqui estão as nossas sugestões para tirar o máximo proveito da experiência de CodeCombat:" # {change}
|
||||
sys_requirements_2: "Use versões novas dos navegadores Chrome ou Firefox." # {change}
|
||||
|
||||
teachers_survey:
|
||||
title: "Pesquisa de professor"
|
||||
|
@ -675,17 +596,17 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
being_reviewed_2: "revisada."
|
||||
approved_1: "Sua solicitação de teste grátis de assinatura foi" # {change}
|
||||
approved_2: "aprovada." # {change}
|
||||
# approved_4: "You can now enroll your students on the"
|
||||
# approved_5: "courses"
|
||||
# approved_6: "page."
|
||||
approved_4: "Agora você pode inscrever os seus estudantes na"
|
||||
approved_5: "página"
|
||||
approved_6: "cursos."
|
||||
denied_1: "Sua solicitação de teste grátis de assinatura foi" # {change}
|
||||
denied_2: "negada."
|
||||
contact_1: "Por favor, entre em contato"
|
||||
contact_2: "caso você tenha dúvidas no futuro."
|
||||
description_1: "Nós oferecemos assinaturas grátis à professores para fins de avaliação. Você pode encontrar mais informações na nossa"
|
||||
# description_1b: "You can find more information on our"
|
||||
description_2: "professores"
|
||||
description_3: "página."
|
||||
description_1b: "Você pode achar mais informações na sua "
|
||||
description_2: "página"
|
||||
description_3: "professores."
|
||||
description_4: "Por favor, preencha esta rápida pesquisa e nós o enviaremos as intruções de instalação por email."
|
||||
email: "Endereço de email"
|
||||
school: "Nome da Escola"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
screenshot_included: "Imagem da tela incluída."
|
||||
where_reply: "Onde devemos responder?"
|
||||
send: "Enviar opinião"
|
||||
contact_candidate: "Contactar Candidato" # Deprecated
|
||||
recruitment_reminder: "Utilize esse formulário para entrar em contato com candidatos que você esteja interessado em entrevistar. Lembre-se que o CodeCombat cobra 15% do salário do primeiro ano. A taxa de contratação é cobrada quando da contratação do empregado e é reembolsável por 90 dias, se o empregado não permanece no emprego. Empregados de meio-turno, remotos ou com contrato serão gratuitos como estagiários." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Configurações da Conta"
|
||||
|
@ -743,7 +662,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
password_tab: "Senha"
|
||||
emails_tab: "Emails"
|
||||
admin: "Admin"
|
||||
# manage_subscription: "Click here to manage your subscription."
|
||||
manage_subscription: "Clique a aqui para administrar a sua assinatura."
|
||||
new_password: "Nova Senha"
|
||||
new_password_verify: "Confirmação"
|
||||
type_in_email: "Digite seu e-mail para confirmar a exclusão" # {change}
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
saved: "Alterações Salvas"
|
||||
password_mismatch: "As senhas não estão iguais"
|
||||
password_repeat: "Por favor repita sua senha."
|
||||
job_profile: "Perfil de trabalho" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Seu perfil de trabalho foi aprovado pelo CodeCombat. Empregadores poderão vê-lo até que você o marque como inativo ou caso não seja alterado por quatro semanas."
|
||||
job_profile_explanation: "Olá! Preencha tudo e iremos entrar em contato sobre encontrar um trabalho como desenvolvedor de software."
|
||||
sample_profile: "Veja um perfil de exemplo"
|
||||
view_profile: "Visualizar seu perfil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Atalhos do Teclado"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
subs_only: "Apenas para assinantes"
|
||||
create_clan: "Criar novo clã"
|
||||
private_preview: "Visualizar"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Clãs Públicos"
|
||||
my_clans: "Meus Clãs"
|
||||
clan_name: "Nome do Clã"
|
||||
|
@ -855,7 +770,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
started_2: "Iniciado"
|
||||
not_started_2: "Não Iniciado"
|
||||
view_solution: "Clique para ver a solução."
|
||||
# view_attempt: "Click to view attempt."
|
||||
view_attempt: "Clique para ver a tentativa."
|
||||
latest_achievement: "Última Conquista"
|
||||
playtime: "Tempo de Jogo"
|
||||
last_played: "Último Jogo"
|
||||
|
@ -877,7 +792,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
courses:
|
||||
course: "Curso"
|
||||
courses: "cursos"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "Criar nova classe"
|
||||
not_enrolled: "Você não está matriculado nesse curso."
|
||||
visit_pref: "Por gentileza, visite a"
|
||||
visit_suf: "página para matricular-se."
|
||||
|
@ -899,35 +814,35 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
concepts_covered: "Conceitos Abordados"
|
||||
students: "Estudantes"
|
||||
students1: "estudantes"
|
||||
# concepts: "Concepts"
|
||||
# levels: "levels"
|
||||
# played: "Played"
|
||||
# play_time: "Play time:"
|
||||
# completed: "Completed:"
|
||||
# invite_students: "Invite students to join this class."
|
||||
# invite_link_header: "Link to join course"
|
||||
# invite_link_p_1: "Give this link to students you would like to have join the course."
|
||||
# invite_link_p_2: "Or have us email them directly:"
|
||||
# capacity_used: "Course slots used:"
|
||||
# enter_emails: "Enter student emails to invite, one per line"
|
||||
# send_invites: "Send Invites"
|
||||
# title: "Title"
|
||||
# description: "Description"
|
||||
# creating_class: "Creating class..."
|
||||
# purchasing_course: "Purchasing course..."
|
||||
# buy_course: "Buy Course"
|
||||
# buy_course1: "Buy this course"
|
||||
# create_class: "Create Class"
|
||||
# select_all_courses: "Select 'All Courses' for a 50% discount!"
|
||||
# all_courses: "All Courses"
|
||||
# number_students: "Number of students"
|
||||
# enter_number_students: "Enter the number of students you need for this class."
|
||||
# name_class: "Name your class"
|
||||
# displayed_course_page: "This will be displayed on the course page for you and your students. It can be changed later."
|
||||
# buy: "Buy"
|
||||
# purchasing_for: "You are purchasing a license for"
|
||||
# creating_for: "You are creating a class for"
|
||||
# for: "for" # Like in 'for 30 students'
|
||||
concepts: "Conceitos"
|
||||
levels: "Níveis"
|
||||
played: "Jogado"
|
||||
play_time: "Tempo de jogo:"
|
||||
completed: "Completado:"
|
||||
invite_students: "Convidar estudantes para se juntar a classe."
|
||||
invite_link_header: "Link para se juntar ao curso"
|
||||
invite_link_p_1: "Dê esse link para os estudantes que você queira que se junte ao curso."
|
||||
invite_link_p_2: "Ou mande um e-mail a eles:"
|
||||
capacity_used: "Espaço de curso usado:"
|
||||
enter_emails: "Insira os e-mails dos estudantes , um por linha"
|
||||
send_invites: "Enviar convites"
|
||||
title: "Título"
|
||||
description: "Descrição"
|
||||
creating_class: "Criando classe..."
|
||||
purchasing_course: "Comprando curso..."
|
||||
buy_course: "Comprar curso"
|
||||
buy_course1: "Compre esse curos"
|
||||
create_class: "Criar Classe"
|
||||
select_all_courses: "Selecione 'Todos os Cursos' para ter um desconto de 50%!"
|
||||
all_courses: "Todos os Cursos"
|
||||
number_students: "Número de estudantes"
|
||||
enter_number_students: "Insira o número de estudantes que você precissa para essa classe."
|
||||
name_class: "Nomeie sua Classe"
|
||||
displayed_course_page: "Isso vai ser mostrado na pagina do curso para você e seus estudantes.Pode ser mudado mais tarde."
|
||||
buy: "Comprar"
|
||||
purchasing_for: "Você esta comprando uma licensa para"
|
||||
creating_for: "Você esta criando uma classe para"
|
||||
for: "para" # Like in 'for 30 students'
|
||||
# receive_code: "Afterwards you will receive an unlock code to distribute to your students, which they can use to enroll in your class."
|
||||
# free_trial: "Free trial for teachers!"
|
||||
# get_access: "to get individual access to all courses for evalutaion purposes."
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
payments: "Pagamentos"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Comprado"
|
||||
sale: "Vender"
|
||||
subscription: "Assinatura"
|
||||
invoices: "Faturas"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
email_settings_url: "das suas configurações de email"
|
||||
email_description_suffix: "ou através de links nos emails que enviarmos, você pode trocar as preferências e facilmente se desinscrever a qualquer hora."
|
||||
cost_title: "Custo"
|
||||
cost_description: "Atualmente o CodeCombat é 100% grátis. Um dos nossos principais objetivos é mantê-lo dessa forma, para que, o maior número possível de pessoas possa jogar, independente de seu lugar na vida. Se o céu escurecer, nós poderemos ter que cobrar uma assinatura, ou por algum conteúdo, mas preferimos que não. Com alguma sorte, nós seremos capazes de manter a empresa com:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Direitos Autorais e Licenças"
|
||||
contributor_title: "Contrato de Licença de Colaborador"
|
||||
contributor_description_prefix: "Todos os colaboradores, tanto no nosso site quando no nosso repositório no GitHub estão sujeitos ao nosso"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
nutshell_title: "Em poucas palavras"
|
||||
nutshell_description: "Todos os recursos que oferecemos no Editor de Níveis é livre para usar como quiser para a criação de níveis. Mas nós nos reservamos o direito de restringir a distribuição dos próprios níveis (que são criados em codecombat.com) para que possam ser cobrados no futuro, se é que isso precise acontecer."
|
||||
canonical: "A versão em inglês deste documento é a versão canônica definitiva. Se houver discrepâncias entre traduções, o documento em inglês tem precedência."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Prêmios do Torneio" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
license: "licença"
|
||||
oreilly: "ebook de sua escolha"
|
||||
|
||||
account_profile:
|
||||
settings: "Configurações" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Edite seu perfil"
|
||||
done_editing: "Edição Feita"
|
||||
profile_for_prefix: "Perfil de "
|
||||
profile_for_suffix: ""
|
||||
featured: "Disponível"
|
||||
not_featured: "Não disponível"
|
||||
looking_for: "Procurando por:"
|
||||
last_updated: "Última atualização:"
|
||||
contact: "Contato"
|
||||
active: "Procurando por entrevistas de emprego no momento"
|
||||
inactive: "Não está procurando por oportunidades no momento"
|
||||
complete: "Completo"
|
||||
next: "Próximo"
|
||||
next_city: "Cidade?"
|
||||
next_country: "escolha seu país."
|
||||
next_name: "Nome?"
|
||||
next_short_description: "escreva uma breve descrição."
|
||||
next_long_description: "descreva o tipo de vaga ou cargo desejados."
|
||||
next_skills: "liste pelo menos cinco habilidades."
|
||||
next_work: "descreva seu histórico de trabalho."
|
||||
next_education: "descreva seu percurso acadêmico."
|
||||
next_projects: "mostre até três projetos nos quais você trabalhou."
|
||||
next_links: "adicione links pessoais ou sociais."
|
||||
next_photo: "adicione uma foto profissional (opcional)."
|
||||
next_active: "marque-se como \"aberto a oportunidades\"."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Site Pessoal"
|
||||
links_header: "Links Pessoais"
|
||||
links_blurb: "Adicione links para sites ou perfis que você gostaria de destacar, como seu GitHub, LinkedIn ou seu blog."
|
||||
links_name: "Nome do Link"
|
||||
links_name_help: "Para onde você está linkando?"
|
||||
links_link_blurb: "URL do Link"
|
||||
basics_header: "Atualizar informações básicas"
|
||||
basics_active: "Aberto para Oportunidades"
|
||||
basics_active_help: "Está procurando oportunidades de entrevista agora?"
|
||||
basics_job_title: "Título do Trabalho Desejado"
|
||||
basics_job_title_help: "Qual cargo você está procurando?"
|
||||
basics_city: "Cidade"
|
||||
basics_city_help: "Cidade que você quer trabalhar (ou morar)."
|
||||
basics_country: "País"
|
||||
basics_country_help: "País que você quer trabalhar (ou morar)."
|
||||
basics_visa: "Status de Trabalho nos EUA"
|
||||
basics_visa_help: "Você está autorizado a trabalhar nos EUA ou você precisa de patrocínio para o VISA? (Se você mora no Canadá ou na Austrália, marque como autorizado.)"
|
||||
basics_looking_for: "Procurando por"
|
||||
basics_looking_for_full_time: "Tempo integral"
|
||||
basics_looking_for_part_time: "Meio-turno"
|
||||
basics_looking_for_remote: "Remoto"
|
||||
basics_looking_for_contracting: "Contratando"
|
||||
basics_looking_for_internship: "Estágio"
|
||||
basics_looking_for_help: "Que tipo de cargo de desenvolvendor você procura?"
|
||||
name_header: "Preencha seu nome"
|
||||
name_anonymous: "Desenvolvedor Anônimo"
|
||||
name_help: "Nome que você quer que os empregadores vejam, por exemplo 'Nick Winter'."
|
||||
short_description_header: "Escreva uma breve descrição de si mesmo"
|
||||
short_description_blurb: "Adicione um slogan (frase) que ajudará o empregador a lhe conhecer rapidamente."
|
||||
short_description: "Slogan"
|
||||
short_description_help: "Quem é você e o que você está procurando? Máximo de 140 caracteres."
|
||||
skills_header: "Habilidades"
|
||||
skills_help: "Marque habilidades de desenvolvimento relevantes em ordem de proficiência."
|
||||
long_description_header: "Descreva o cargo desejado"
|
||||
long_description_blurb: "Diga aos empregadores o quão incrível você é e qual cargo você deseja."
|
||||
long_description: "Autodescrição"
|
||||
long_description_help: "Descreva a si mesmo para seu potencial empregador. Mantenha curto e direto. Recomendamos esboçar o cargo que mais lhe interessa. Máximo de 600 caracteres."
|
||||
work_experience: "Experiência de Trabalho"
|
||||
work_header: "Descreva seu histórico de trabalho"
|
||||
work_years: "Anos de Experiência"
|
||||
work_years_help: "Quantos anos de experiência profissional (sendo pago) de desenvolvimento de software você tem?"
|
||||
work_blurb: "Liste experiências relevantes de trabalho. As mais recentes primeiro."
|
||||
work_employer: "Empregador"
|
||||
work_employer_help: "Nome do empregador."
|
||||
work_role: "Título do Emprego"
|
||||
work_role_help: "Qual era a sua função ou cargo no emprego?"
|
||||
work_duration: "Duração"
|
||||
work_duration_help: "Por quanto tempo?"
|
||||
work_description: "Descrição"
|
||||
work_description_help: "O que você fez lá? (140 carac; opcional)"
|
||||
education: "Educação"
|
||||
education_header: "Descreva seu percurso acadêmico"
|
||||
education_blurb: "Liste seu percurso acadêmico."
|
||||
education_school: "Escola"
|
||||
education_school_help: "Nome da sua escola."
|
||||
education_degree: "Grau"
|
||||
education_degree_help: "Qual é o seu grau e área de estudo?"
|
||||
education_duration: "Datas"
|
||||
education_duration_help: "Quando?"
|
||||
education_description: "Descrição"
|
||||
education_description_help: "Destaque qualquer coisa sobre essa experiência acadêmica. (140 carac.; opcional)"
|
||||
our_notes: "Nossas notas"
|
||||
remarks: "Observações"
|
||||
projects: "Projetos"
|
||||
projects_header: "Adicione 3 projetos"
|
||||
projects_header_2: "Projetos (Top 3)"
|
||||
projects_blurb: "Destaque seus projetos para impressionar os empregadores."
|
||||
project_name: "Nome do Projeto"
|
||||
project_name_help: "Como o projeto se chama?"
|
||||
project_description: "Descrição"
|
||||
project_description_help: "Descreva o projeto brevemente."
|
||||
project_picture: "Imagem"
|
||||
project_picture_help: "Envie uma imagem com 230x115px ou maior mostrando o projeto."
|
||||
project_link: "Link"
|
||||
project_link_help: "Link para o projeto."
|
||||
player_code: "Código do Jogador"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Desculpe, o CodeCombat não está recrutando no momento."
|
||||
deprecation_warning: "Estamos nos concentrando em níveis iniciante, em vez de encontrar desenvolvedores especializados no momento."
|
||||
hire_developers_not_credentials: "Contrate desenvolvedores, não referências." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Comece"
|
||||
already_screened: "Nós já selecionamos tecnicamente todos os nossos candidatos"
|
||||
filter_further: ", mas você pode filtrar ainda mais:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado nos EUA"
|
||||
filter_visa_no: "Não autorizado"
|
||||
filter_education_top: "Melhor colégio"
|
||||
filter_education_other: "Outros"
|
||||
filter_role_web_developer: "Desenvolvedor 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: "Recentemente graduado"
|
||||
filter_experience_student: "Estudante universitário"
|
||||
filter_results: "resultados"
|
||||
start_hiring: "Comece a contratar."
|
||||
reasons: "Três razões para você buscar talentos através de nós:"
|
||||
everyone_looking: "Todos aqui estão buscando por sua próxima oportunidade."
|
||||
everyone_looking_blurb: "Esqueça sobre 20% dos índices de resposta do LinkedIn InMail. Todos que listamos neste site querem encontrar sua próxima posição e irão responder por sua solicitação de apresentação."
|
||||
weeding: "Sente-se; nós capinamos por você."
|
||||
weeding_blurb: "Cada jogador que nós listarmos foi devidamente filtrado por suas habilidades técnicas. Nós também fazemos contatos telefônicos para seleção de candidatos e fazemos anotações em seus perfís para economizar o seu tempo."
|
||||
pass_screen: "Eles irão ser exibidos em sua tela técnica."
|
||||
pass_screen_blurb: "Avalie o código de cada candidato antes de contatá-los. Um empregador descobriu que nossos desenvolvedores passaram 5x mais em seu filtro do que contratando através do Hacker News."
|
||||
make_hiring_easier: "Faça minhas contratações mais fáceis, por favor."
|
||||
what: "O que é CodeCombat?"
|
||||
what_blurb: "CodeCombat é um jogo de programação multijogador que roda no navegador. Jogadores escrevem código para controlar suas forças na batalha contra outros desenvolvedores. Nossos jogadores tem experiênciacom todos os grandes stacks tecnológicos."
|
||||
cost: "Quanto nós cobramos?"
|
||||
cost_blurb: "Cobramos 15% do primeiro ano de salário e oferecemos garantia de 100% do dinheiro devolta por 90 dias. Não cobramos pelos candidatos que já estão sendo entrevistados na sua empresa."
|
||||
candidate_name: "Nome"
|
||||
candidate_location: "Localização"
|
||||
candidate_looking_for: "Buscando por"
|
||||
candidate_role: "Papel"
|
||||
candidate_top_skills: "Melhores Habilidades"
|
||||
candidate_years_experience: "Anos de Experiência"
|
||||
candidate_last_updated: "Última Atualização"
|
||||
candidate_who: "Quem"
|
||||
featured_developers: "Desenvolvedores em destaque"
|
||||
other_developers: "Outros Desenvolvedores"
|
||||
inactive_developers: "Desenvolvedores Inativos"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionagem" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email ou username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Português do Brasil", englishDescription:
|
|||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Usuários"
|
||||
av_entities_active_instances_url: "Instâncias Ativas"
|
||||
av_entities_employer_list_url: "Lista de Empregadores"
|
||||
av_entities_candidates_list_url: "Lista de Candidatos"
|
||||
av_entities_user_code_problems_list_url: "Problemas na Lista de Códigos do Usuário"
|
||||
av_other_sub_title: "Outro"
|
||||
av_other_debug_base_url: "Base (para debugar base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
multiplayer: "Multijogador" # Not currently shown on home page
|
||||
for_developers: "Para Programadores" # Not currently shown on home page.
|
||||
or_ipad: "Ou descarrega para iPad"
|
||||
hoc_class_code: "Tenho um Código de Turma"
|
||||
hoc_enter: "Entrar"
|
||||
hoc_title: "Hora do Código?"
|
||||
|
||||
nav:
|
||||
play: "Níveis" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
creating: "A Criar Conta..."
|
||||
sign_up: "Registar"
|
||||
log_in: "iniciar sessão com palavra-passe"
|
||||
social_signup: "Ou podes registar-te através do FB ou do Google+:"
|
||||
required: "Precisas de iniciar sessão antes de prosseguires."
|
||||
login_switch: "Já tens uma conta?"
|
||||
school_name: "Nome e Cidade da Escola"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
incomplete: "Incompletos"
|
||||
timed_out: "Ficaste sem tempo"
|
||||
failing: "A falhar"
|
||||
action_timeline: "Linha do Tempo de Ações"
|
||||
click_to_select: "Clica numa unidade para a selecionares."
|
||||
control_bar_multiplayer: "Multijogador"
|
||||
control_bar_join_game: "Entrar no Jogo"
|
||||
reload: "Recarregar"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
parents_title: "Caro Educador: O seu educando está a aprender a programar. Vai ajudá-lo a continuar?"
|
||||
parents_blurb1: "O seu educando já jogou __nLevels__ níveis e aprendeu as bases da programação. Ajude a desenvolver o interesse dele, comprando-lhe uma subscrição para que ele possa continuar a jogar."
|
||||
parents_blurb1a: "A programação de computadores é uma habilidade fundamental que o seu educando vai usar incontestavelmente quando for adulto. Em 2020, habilidades de programação básicas serão requisitadas por 77% dos empregos e, atualmente, há uma grande procura por engenheiros informáticos no mundo. Sabia que os cursos universitários ligados às Ciências da Computação são os mais bem pagos?"
|
||||
parents_blurb2: "Por $9.99 USD/mês, o seu educando recebe novos desafios todas as semanas e suporte pessoal, via e-mail, de programadores profissionais."
|
||||
parents_blurb2: "Por ${{price}} USD/mês, o seu educando recebe novos desafios todas as semanas e suporte pessoal, via e-mail, de programadores profissionais."
|
||||
parents_blurb3: "Sem Risco: 100% de garantia de devolução do dinheiro, com anulação fácil de 1 clique."
|
||||
payment_methods: "Métodos de Pagamento"
|
||||
payment_methods_title: "Métodos de Pagamento Aceites"
|
||||
payment_methods_blurb1: "Atualmente aceitamos cartões de crédito e Alipay. Também podes enviar $29.97 para nick@codecombat.com com o e-mail da tua conta para adquirires uma subscrição e gemas por três meses ou $99 por um ano."
|
||||
payment_methods_blurb1: "Atualmente aceitamos cartões de crédito e Alipay. Também podes enviar ${{three_month_price}} para nick@codecombat.com com o e-mail da tua conta para adquirires uma subscrição e gemas por três meses ou ${{year_price}} por um ano."
|
||||
payment_methods_blurb2: "Se precisares de uma outra forma de pagamento, por favor contacta"
|
||||
sale_already_subscribed: "Já estás subscrito!"
|
||||
sale_blurb1: "Poupa $21"
|
||||
sale_blurb2: "do preço de uma subscrição anual normal de $120!"
|
||||
sale_button: "Promoção!"
|
||||
sale_button_title: "Poupa $21 ao comprares uma subscrição anual"
|
||||
sale_click_here: "Clica Aqui"
|
||||
sale_ends: "Termina"
|
||||
sale_extended: "*Subscrições existentes serão prolongadas um ano."
|
||||
sale_feature_here: "Aqui está o que vais receber:"
|
||||
sale_feature2: "Acesso a 9 <strong>heróis novos</strong> e poderosos com habilidades únicas!"
|
||||
sale_feature4: "<strong>42,000 gemas de bónus</strong> atribuídas imediatamente!"
|
||||
sale_continue: "Pronto para te continuares a aventurar?"
|
||||
sale_limited_time: "Oferta por tempo limitado!"
|
||||
sale_new_heroes: "Novos heróis!"
|
||||
sale_title: "Promoção de Regresso às Aulas"
|
||||
sale_view_button: "Compra uma subscrição anual por"
|
||||
sale_button_title: "Poupa ${{discount}} ao comprares uma subscrição anual"
|
||||
stripe_description: "Subscrição Mensal"
|
||||
stripe_description_year_sale: "Subscrição Anual ($21 desconto)"
|
||||
stripe_description_year_sale: "Subscrição Anual (${{discount}} desconto)"
|
||||
subscription_required_to_play: "Precisas de uma subscrição para jogares este nível."
|
||||
unlock_help_videos: "Subscreve-te para desbloqueares todos os tutoriais em vídeo."
|
||||
personal_sub: "Subscrição Pessoal" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
currently_free_until: "Atualmente tens uma subscrição até"
|
||||
was_free_until: "Tinhas uma subscrição gratuita até"
|
||||
managed_subs: "Subscrições Geridas"
|
||||
managed_subs_desc: "Adiciona subscrições para outros jogadores (estudantes, crianças, etc.)"
|
||||
managed_subs_desc_2: "Estes jogadores devem ter uma conta do CodeCombat associada ao endereço de e-mail que forneceres."
|
||||
group_discounts: "Descontos de grupo"
|
||||
group_discounts_1: "Também oferecemos descontos de grupo para subscrições em massa."
|
||||
group_discounts_1st: "1ª subscrição"
|
||||
group_discounts_full: "Preço total"
|
||||
group_discounts_2nd: "2ª-11ª subscrições"
|
||||
group_discounts_20: "20% de desconto"
|
||||
group_discounts_12th: "12ª+ subscrições"
|
||||
group_discounts_40: "40% de desconto"
|
||||
subscribing: "A Subscrever..."
|
||||
recipient_emails_placeholder: "Introduz endereços de e-mail para subscrever, um por linha."
|
||||
subscribe_users: "Subscrever Utilizadores"
|
||||
users_subscribed: "Utilizadores subscritos:"
|
||||
no_users_subscribed: "Nenhum utilizador subscrito. Por favor, verifica os endereços de e-mail."
|
||||
current_recipients: "Beneficiários Atuais"
|
||||
unsubscribing: "A Cancelar a Subscrição"
|
||||
subscribe_prepaid: "Clica em Subscrever para usares um código pré-pago"
|
||||
|
@ -605,67 +571,22 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
retrostyle_title: "Ilustração"
|
||||
retrostyle_blurb: "'RetroStyle Games'"
|
||||
rob_title: "Engenheiro de Compilação"
|
||||
rob_blurb: "Programa coisas e mais coisas"
|
||||
rob_blurb: "Programa Muitas Coisas"
|
||||
josh_c_title: "'Designer' de Jogos"
|
||||
josh_c_blurb: "Projeta jogos"
|
||||
josh_c_blurb: "Projeta Jogos"
|
||||
carlos_title: "Gestor Regional, Brasil"
|
||||
carlos_blurb: "Homem do Dinheiro"
|
||||
maka_title: "Defensor dos Clientes"
|
||||
maka_blurb: "Contador de Histórias"
|
||||
|
||||
teachers:
|
||||
more_info: "Mais Informações para Professores"
|
||||
intro_1: "O CodeCombat é um jogo 'online' que ensina programação. Os estudantes escrevem código em linguagens de programação reais."
|
||||
intro_2: "Não é necessário ter experiência!"
|
||||
free_title: "Quanto custa?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "Há 110+ níveis GRATUITOS que abordam cada conceito."
|
||||
free_2: "Uma subscrição mensal dá acesso a tutoriais em vídeo e a níveis extra para praticar."
|
||||
free_3: "O conteúdo do CodeCombat está dividido em"
|
||||
free_4: "cursos"
|
||||
free_5: ". O primeiro curso é gratuito e tem cerca de uma hora de material."
|
||||
free_6: "O acesso aos cursos adicionais pode ser desbloqueado com uma compra de uma só vez."
|
||||
teacher_subs_title: "Os professores recebem uma avaliação gratuita!"
|
||||
teacher_subs_0: "Oferecemos avaliações gratuitas a professores."
|
||||
teacher_subs_1: "Por favor, preenche o nosso"
|
||||
teacher_subs_2: "Inquérito para Professores"
|
||||
teacher_subs_3: "para experimentares os cursos pagos."
|
||||
sub_includes_title: "O que está incluído na subscrição?"
|
||||
sub_includes_1: "Para além dos 110+ níveis básicos, os estudantes com uma subscrição mensal têm acesso às seguintes funcionalidades adicionais:"
|
||||
sub_includes_2: "80+ níveis para praticar"
|
||||
sub_includes_3: "Tutoriais em vídeo"
|
||||
sub_includes_4: "Suporte por e-mail prioritário"
|
||||
sub_includes_5: "10 novos heróis com habilidades únicas para dominar"
|
||||
sub_includes_6: "3500 gemas de bónus todos os meses"
|
||||
sub_includes_7: "Clãs Privados"
|
||||
monitor_progress_title: "Como é que acompanho o progresso dos estudantes?"
|
||||
monitor_progress_1: "O progresso dos estudantes pode ser acompanhado ao criares um"
|
||||
monitor_progress_2: "para a tua turma."
|
||||
monitor_progress_3: "Para adicionares um estudante, envia-lhe a ligação de convite para o teu Clã, a qual podes encontrar através da página dos"
|
||||
monitor_progress_4: ", ao acederes ao teu."
|
||||
monitor_progress_5: "Depois de ele se juntar, verás um resumo do progresso do estudante na tua página do Clã."
|
||||
private_clans_1: "Os Clãs Privados garantem privacidade e informações sobre o progresso de cada estudante superiores."
|
||||
private_clans_2: "Para criares um Clã privado, marca a caixa 'Tornar o clã privado' aquando da criação de um"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Para quem é o CodeCombat?"
|
||||
who_for_1: "Recomendamos o CodeCombat para estudantes com idade superior a 9. Não é necessária nenhuma experiência de programação prévia."
|
||||
who_for_2: "O CodeCombat foi pensado de forma a ser apelativo tanto para rapazes como para raparigas."
|
||||
material_title: "Quanto material há?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
material_1: "Aproximadamente 25 horas de conteúdo gratuito e 15 horas adicionais de conteúdo para subscritores."
|
||||
concepts_title: "Que conceitos são abordados?"
|
||||
how_much_title: "Quanto custa uma subscrição mensal?"
|
||||
how_much_1: "Uma"
|
||||
how_much_2: "subscrição mensal"
|
||||
how_much_3: "custa $9.99 e pode ser cancelada a qualquer momento."
|
||||
how_much_4: "Adicionalmente, oferecemos descontos para grupos maiores:"
|
||||
how_much_5: "Aceitamos compras de uma só vez com desconto e compras de subscrições anuais para grupos, como uma turma ou escola. Por favor, contacta"
|
||||
how_much_6: "para mais detalhes."
|
||||
who_for_1: "Recomendamos o CodeCombat para estudantes com idade superior a 9. Não é necessária nenhuma experiência de programação prévia. O CodeCombat foi pensado de forma a ser apelativo tanto para rapazes como para raparigas."
|
||||
who_for_2: "O nosso sistema de Cursos permite que os professores criem turmas, acompanhem o progresso e atribuam conteúdo adicional aos estudantes através de uma interface dedicada."
|
||||
more_info_title: "Onde posso encontrar mais informação?"
|
||||
more_info_1: "O nosso"
|
||||
more_info_2: "fórum para professores"
|
||||
more_info_3: "é um bom sítio para te ligares a outros professores que também usam o CodeCombat."
|
||||
sys_requirements_title: "Requisitos do Sistema"
|
||||
sys_requirements_1: "Um navegador moderno. As versões mais recentes do Chrome, Firefox ou Safari. Internet Explorer 9 ou mais recente."
|
||||
sys_requirements_2: "O CodeCombat ainda não é suportado em iPad's."
|
||||
|
||||
teachers_survey:
|
||||
title: "Inquérito para Professores"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
screenshot_included: "Captura de ecrã incluída."
|
||||
where_reply: "Para onde devemos enviar a resposta?"
|
||||
send: "Enviar Feedback"
|
||||
contact_candidate: "Contactar Candidato" # Deprecated
|
||||
recruitment_reminder: "Usa este formulário para chegares a candidatos que estejas interessado em entrevistar. Lembra-te que o CodeCombat cobra 15% do salário do primeiro ano. A taxa é cobrada no momento da contratação do empregado e é reembolsável durante 90 dias, no caso de o trabalhador não se manter empregado. A empregados em part-time, no estrangeiro e a contrato não são aplicadas taxas, porque são internos." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Definições da Conta"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
saved: "Alterações Guardadas"
|
||||
password_mismatch: "As palavras-passe não coincidem."
|
||||
password_repeat: "Por favor repete a tua palavra-passe."
|
||||
job_profile: "Perfil de Emprego" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "O teu perfil de emprego foi aprovado pelo CodeCombat. Os empregadores poderão ver-te até que o definas como inativo ou não o tenhas alterado à 4 semanas."
|
||||
job_profile_explanation: "Olá! Preenche isto e entraremos em contacto contigo sobre encontrar um emprego de desenvolvedor de software para ti."
|
||||
sample_profile: "Vê um exemplo de perfil"
|
||||
view_profile: "Vê o Teu Perfil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Atalhos de Teclado"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
subs_only: "apenas para subscritores"
|
||||
create_clan: "Criar um Novo Clã"
|
||||
private_preview: "Pré-visualização"
|
||||
private_clans: "Clãs Privados"
|
||||
public_clans: "Clãs Públicos"
|
||||
my_clans: "Os Meus Clãs"
|
||||
clan_name: "Nome do Clã"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
payments: "Pagamentos"
|
||||
prepaid_codes: "Códigos Pré-pagos"
|
||||
purchased: "Adquirido"
|
||||
sale: "Promoção"
|
||||
subscription: "Subscrição"
|
||||
invoices: "Donativos"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
email_settings_url: "tuas definições de e-mail"
|
||||
email_description_suffix: "ou através de ligações presentes nos e-mails que enviamos, podes mudar as tuas preferências e parar a tua subscrição facilmente, em qualquer momento."
|
||||
cost_title: "Custo"
|
||||
cost_description: "O CodeCombat é gratuito para os níveis fundamentais, com uma subscrição de $9.99 USD/mês para acederes a ramos de níveis extra e 3500 gemas de bónus por mês. Podes cancelar com um clique, e oferecemos uma garantia de 100% de devolução do dinheiro."
|
||||
cost_description: "O CodeCombat é gratuito para os níveis fundamentais, com uma subscrição de ${{price}} USD/mês para acederes a ramos de níveis extra e {{gems}} gemas de bónus por mês. Podes cancelar com um clique, e oferecemos uma garantia de 100% de devolução do dinheiro."
|
||||
copyrights_title: "Direitos Autorais e Licensas"
|
||||
contributor_title: "Contrato de Licença do Contribuinte (CLA)"
|
||||
contributor_description_prefix: "Todas as contribuições, tanto no sítio como no nosso repositório GitHub, estão sujeitas ao nosso"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
nutshell_title: "Resumidamente"
|
||||
nutshell_description: "Qualquer um dos recursos que fornecemos no Editor de Níveis são de uso livre para criares Níveis. Mas reservamos o direito de distribuição restrita dos próprios Níveis (que são criados em codecombat.com) pelo que podemos cobrar por eles no futuro, se for isso que acabar por acontecer."
|
||||
canonical: "A versão Inglesa deste documento é a versão definitiva e soberana. Se houver discrepâncias entre traduções, o documento Inglês prevalece."
|
||||
third_party_title: "Serviços de Terceiros"
|
||||
third_party_description: "O CodeCombat usa os seguintes serviços de terceiros (entre outros):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Prémios do Torneio" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
license: "licença"
|
||||
oreilly: "ebook à tua escolha"
|
||||
|
||||
account_profile:
|
||||
settings: "Definições" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Editar Perfil"
|
||||
done_editing: "Concluir a Edição"
|
||||
profile_for_prefix: "Perfil para "
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "À procura de:"
|
||||
# last_updated: "Last updated:"
|
||||
contact: "Contactar"
|
||||
active: "Estou à procura de ofertas de intrevistas agora"
|
||||
inactive: "Não estou à procura de ofertas neste momento"
|
||||
# complete: "complete"
|
||||
next: "Seguinte"
|
||||
next_city: "cidade?"
|
||||
next_country: "escolhe o teu país."
|
||||
next_name: "nome?"
|
||||
next_short_description: "escreve uma pequena descrição."
|
||||
next_long_description: "descreve a tua posição desejada."
|
||||
next_skills: "lista, pelo menos, 5 habilidades."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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: "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: "Nome da Ligação"
|
||||
links_name_help: "A que é que estás 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: "Cidade"
|
||||
basics_city_help: "Cidade na qual queres trabalhar (ou onde vives agora)."
|
||||
basics_country: "País"
|
||||
basics_country_help: "País no qual queres trabalhar (ou onde vives agora)."
|
||||
# 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: "À 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: "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: "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."
|
||||
# long_description: "Self Description"
|
||||
# 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: "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: "Empregador"
|
||||
work_employer_help: "Nome do teu empregador."
|
||||
work_role: "Título do Emprego"
|
||||
# work_role_help: "What was your job title or role?"
|
||||
work_duration: "Duração"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
work_description: "Descrição"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Educação"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
education_school: "Escola"
|
||||
education_school_help: "Nome da tua escola."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
education_duration_help: "Quando?"
|
||||
education_description: "Descrição"
|
||||
education_description_help: "Destaca algo sobre esta experiência educacional. (140 carateres; opcional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
projects: "Projetos"
|
||||
projects_header: "Adiciona 3 projetos"
|
||||
projects_header_2: "Projetos (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
project_name: "Nome do Projeto"
|
||||
project_name_help: "Qual era o nome do projeto?"
|
||||
project_description: "Descrição"
|
||||
project_description_help: "Descreve o projeto em poucas palavras."
|
||||
project_picture: "Imagem"
|
||||
project_picture_help: "Faz upload de uma imagem 230x115px ou maior que mostre o projeto."
|
||||
project_link: "Ligação"
|
||||
project_link_help: "Ligação para o projeto."
|
||||
player_code: "Código do Jogador"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Desculpa, o CodeCombat não está a recrutar por agora."
|
||||
deprecation_warning: "Atualmente, estamos a focar-nos em níveis para iniciantes, em vez de tentar encontar desenvolvedores peritos."
|
||||
hire_developers_not_credentials: "Não contrates cartas de recomendação, mas sim programadores." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Começar"
|
||||
already_screened: "Nós já selecionamos tecnicamente todos os nossos candidatos"
|
||||
filter_further: ", mas ainda podes filtrar mais:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Autorizado Para Trabalhar Nos EUA"
|
||||
filter_visa_no: "Não Autorizado"
|
||||
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: "Graduado Recentemente"
|
||||
filter_experience_student: "Estudante Universitário"
|
||||
filter_results: "resultados"
|
||||
start_hiring: "Começar a contratar."
|
||||
reasons: "Três razões pelas quais deves contratar através de nós:"
|
||||
everyone_looking: "Aqui todos estão à procura da próxima oportunidade deles."
|
||||
everyone_looking_blurb: "Esquece os cerca de 20% de taxas de resposta do LinkedIn InMail. Todos os que nós listamos neste sítio querem encontrar a nova posição deles e responderão ao teu pedido para uma introdução."
|
||||
weeding: "Relaxa; fizemos a parte mais difícil por ti."
|
||||
weeding_blurb: "Cada jogador que listamos foi sujeito a um teste das habilidades técnicas. Também fazemos testes por telefone para selecionar candidatos e fazer anotações nos perfis deles para te poupar tempo."
|
||||
pass_screen: "Eles passarão o teu teste técnico."
|
||||
pass_screen_blurb: "Revê o código de cada candidato antes de chegares a ele. Um funcionário descobriu que 5x mais programadores nossos passaram o teste técnico deles do que os contratados através do Hacker News."
|
||||
make_hiring_easier: "Torne a minha contratação mais fácil, por favor."
|
||||
what: "O que é o CodeCombat?"
|
||||
what_blurb: "O CodeCombat é um jogo de programação, no navegador e multijogador. Os jogadores escrevem código para controlar as forças deles em batalha contra outros programadores. Os nossos jogadores têm experiência com todos os conceitos tecnológicos principais."
|
||||
cost: "Quanto é que cobramos?"
|
||||
cost_blurb: "Cobramos 15% do salário do primeiro ano e ofereçemos uma garantia de devolução de 100% do dinheiro durante 90 dias. Não cobramos por candidatos que já estejam a ser ativamente entrevistados na tua companhia."
|
||||
candidate_name: "Nome"
|
||||
candidate_location: "Localização"
|
||||
candidate_looking_for: "À Procura de"
|
||||
candidate_role: "Cargo"
|
||||
candidate_top_skills: "Principais Habilidades"
|
||||
candidate_years_experience: "Anos de Experiência"
|
||||
candidate_last_updated: "Última Vez Atualizado"
|
||||
candidate_who: "Quem"
|
||||
featured_developers: "Programadores em Destaque"
|
||||
other_developers: "Outros Programadores"
|
||||
inactive_developers: "Programadores Inativos"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionagem" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "E-mail ou nome de utilizador"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Português (Portugal)", englishDescription:
|
|||
av_entities_sub_title: "Entidades"
|
||||
av_entities_users_url: "Utilizadores"
|
||||
av_entities_active_instances_url: "Activar Instâncias"
|
||||
av_entities_employer_list_url: "Lista de Empregadores"
|
||||
av_entities_candidates_list_url: "Lista de Candidatos"
|
||||
av_entities_user_code_problems_list_url: "Lista de Problemas no Código do Jogador"
|
||||
av_other_sub_title: "Outro"
|
||||
av_other_debug_base_url: "Base (para depurar base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
for_developers: "Pentru Dezvoltatori" # Not currently shown on home page.
|
||||
or_ipad: "Sau descarcă pentru iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Nivele" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
creating: "Se creează contul..."
|
||||
sign_up: "Înscrie-te"
|
||||
log_in: "loghează-te cu parola"
|
||||
social_signup: "Sau, te poți inregistra cu Facebook sau G+:"
|
||||
required: "Trebuie să te înregistrezi înaite să parcurgi acest drum."
|
||||
login_switch: "Ai deja un cont?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
incomplete: "Incomplet"
|
||||
timed_out: "Ai rămas fără timp"
|
||||
failing: "Eşec"
|
||||
action_timeline: "Timeline-ul acțiunii"
|
||||
click_to_select: "Apasă pe o unitate pentru a o selecta."
|
||||
control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Alătură-Te Jocului"
|
||||
reload: "Reîncarca"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
parents_title: "Dragă Părinte: Copilul tău învață programare. Vrei să îl ajuți să continue?"
|
||||
parents_blurb1: "Copilul tău a jucat __nLevels__ nivele și a învățat bazele programări. Ajutăl și cultivă interesul cumpărând un abonament ca să joace în continuare."
|
||||
parents_blurb1a: "Programarea unui computer este o abilitate esențială pe care copilul dumneavoastră o va folosi fără îndoială ca adult. Până in 2020, va fi nevoie de abilități de software de bază de 77% din locurile de muncă, și ingineri software sunt în cerere mare în întreaga lume. Știați că Informatica este gradul universitar cel mai bine plătit?"
|
||||
parents_blurb2: "Pentru $9.99 USD/lună, copilul tău va primi provocări noi în fiecare săptămână și ajutor personal pe e-mail de la programatori profesioniști."
|
||||
parents_blurb2: "Pentru ${{price}} USD/lună, copilul tău va primi provocări noi în fiecare săptămână și ajutor personal pe e-mail de la programatori profesioniști."
|
||||
parents_blurb3: "Fără Riscuri: Garanție 100% bani înapoi, o dezabonare ușoară cu 1-click."
|
||||
payment_methods: "Metode de plată"
|
||||
payment_methods_title: "Metode de plată acceptate"
|
||||
payment_methods_blurb1: "Deocamdată acceptăm numai cărti de credit si Alipay." # {change}
|
||||
payment_methods_blurb2: "Dacă aveți nevoie de o formă alternativă de plată, vă rugăm să ne contactați"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
stripe_description: "Abonament Lunar"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
subscription_required_to_play: "Ai nevoie de abonament ca să joci acest nivel."
|
||||
unlock_help_videos: "Abonează-te pentru deblocarea tuturor tutorialelor video."
|
||||
personal_sub: "Abonament Personal" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
currently_free_until: "Ai un abonament gratuit până pe"
|
||||
was_free_until: "Ai avut un abonament gratuit până pe"
|
||||
managed_subs: "Abonamente Gestionate"
|
||||
managed_subs_desc: "Adaugă abonamente pentru alți jucători (studenți, copii, etc.)"
|
||||
managed_subs_desc_2: "Recipienți trebuie să aibă un cont CodeCombat associat cu adresa e-mail oferită."
|
||||
group_discounts: "Discount pentru Grupuri"
|
||||
group_discounts_1: "De asemenea, oferim reduceri de grup pentru abonamente în vrac."
|
||||
group_discounts_1st: "Primul Abonament"
|
||||
group_discounts_full: "Preț Intreg"
|
||||
group_discounts_2nd: "2-11 abonamente"
|
||||
group_discounts_20: "20% reducere"
|
||||
group_discounts_12th: "12+ abonamente"
|
||||
group_discounts_40: "40% reducere"
|
||||
subscribing: "Te abonăm..."
|
||||
recipient_emails_placeholder: "Introduceți adresa de email ca să vă abonăm, una pe fiecare linie."
|
||||
subscribe_users: "Abonați Userii"
|
||||
users_subscribed: "Useri abonați:"
|
||||
no_users_subscribed: "Nici-un user abonat, verificațî adresele e-mail."
|
||||
current_recipients: "Recipienți curenți"
|
||||
unsubscribing: "Te Dezabonăm..." # {change}
|
||||
subscribe_prepaid: "Dăi Click pe Abonare pentru a folosi un cod prepaid"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info pentru Educatori"
|
||||
intro_1: "CodeCombat este un joc online care te învață programare. Studenți scriu cod în limbaje de programare reale."
|
||||
intro_2: "Nu este nevoie de experiența în domeniu!"
|
||||
free_title: "Cât de mult costă?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "Sunt 80+ de nivele GRATIS ce parcurg fiecare concept în programare." # {change}
|
||||
free_2: "Un abonament lunar oferă acces la tutoriale video si nivele extra pentru practică."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Educatori primesc abonamente gratuite!" # {change}
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "Te rugăm sa completezi"
|
||||
teacher_subs_2: "Chestionarul Educatorului"
|
||||
teacher_subs_3: "pentru a configura abonamentul." # {change}
|
||||
sub_includes_title: "Ce e inclus în abonament?"
|
||||
sub_includes_1: "Pe langă 80+ de nivele de bază, studenții cu un abonament lunar au acces la aceste servicii suplimentare:" # {change}
|
||||
sub_includes_2: "60+ nivele pentru practică" # {change}
|
||||
sub_includes_3: "Tutoriale Video"
|
||||
sub_includes_4: "Suport pe e-mail premium"
|
||||
sub_includes_5: "7 eroi noi cu abilități unice de stăpânit" # {change}
|
||||
sub_includes_6: "3500 de Pietre Prețioase bonus in fiecare lună"
|
||||
sub_includes_7: "Clanuri Private"
|
||||
monitor_progress_title: "Cum monitorizez progresul unui student?"
|
||||
monitor_progress_1: "Progresul poate fi urmărit creând"
|
||||
monitor_progress_2: "pentru clasa ta."
|
||||
monitor_progress_3: "Pentru a adăuga un student, trimite o invitație în Clanul tău, care este pe"
|
||||
monitor_progress_4: "pagină."
|
||||
monitor_progress_5: "După ce se alătură, vei vedea un rezumat cu progresul studentului pe pagina Clanului tău."
|
||||
private_clans_1: "Clanurile Private oferă intimitate si informați despre progres detaliate pentru fiecare student."
|
||||
private_clans_2: "Pentru a crea un Clan privat, verifică caseta \"Fă Clanul Privat\" când creezi un"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Pentru cine este CodeCombat?"
|
||||
who_for_1: "Recomandăm CodeCombat pentru studenți cu vârsta de la 9 ani în sus. Nu este nevoie de experiență de programare."
|
||||
who_for_2: "Am proiectat CodeCombat pentru a atrage atât băieți cat si fete."
|
||||
material_title: "Cât de mult material conține?"
|
||||
material_premium_server: "Aproximativ 30 de ore de gameplay răspândite peste 140+ de nivele pentru abonați, si nivele noi în fiecare săptămână." # {change}
|
||||
material_1: "Aproximativ 10 ore de material gratis si adițional 20 de ore în plus pentru abonați, cu nivele noi în fiecare săptămână." # {change}
|
||||
concepts_title: "Ce concepte sunt parcurse?"
|
||||
how_much_title: "Cât de mult costă un abonament lunar?"
|
||||
how_much_1: "Un"
|
||||
how_much_2: "Abonament Lunar"
|
||||
how_much_3: "costă $9.99, și poate fi anulat oricând."
|
||||
how_much_4: "Adițional, oferim discount-uri pentru grupui mari:"
|
||||
how_much_5: "Acceptăm achiziții unice, si abonamente anuale pentru grupuri, cum ar fi o clasă de elevi, toate cu discount. Contactați-ne"
|
||||
how_much_6: "pentru mai multe detalii."
|
||||
who_for_1: "Recomandăm CodeCombat pentru studenți cu vârsta de la 9 ani în sus. Nu este nevoie de experiență de programare." # {change}
|
||||
who_for_2: "Am proiectat CodeCombat pentru a atrage atât băieți cat si fete." # {change}
|
||||
more_info_title: "Unde găsesc mai multe informații?"
|
||||
more_info_1: ""
|
||||
more_info_2: "Forumul de educatori"
|
||||
more_info_3: "este un loc bun pentru a vă conecta cu colegii educatori ce folosesc CodeCombat."
|
||||
sys_requirements_title: "Cerințe de Sistem"
|
||||
sys_requirements_1: "Un browser modern. Versiuni mai noi de Chrome, Firefox, sau Safari. Internet Explorer 9 sau o versiune mai nouă."
|
||||
sys_requirements_2: "CodeCombat nu funcționează pe iPad încă"
|
||||
|
||||
teachers_survey:
|
||||
title: "Chestionar Educatori"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
screenshot_included: "Screenshot-uri incluse."
|
||||
where_reply: "Unde ar trebui să răspundem?"
|
||||
send: "Trimite Feedback"
|
||||
contact_candidate: "Contacteaza Candidatul" # Deprecated
|
||||
recruitment_reminder: "Folosiți acest formular pentru a ajunge la candidații care va intereseaza pentru interviu. CodeCombat percepe 15% din salariu în primul an. Taxa este datorată la angajare și este rambursabilă pentru 90 de zile în cazul în care salariatul nu rămâne angajat. Cele part time, și angajați cu contract la distanță sunt gratuite, așa cum sunt stagiari." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Setări Cont"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
saved: "Modificări salvate"
|
||||
password_mismatch: "Parola nu se potrivește."
|
||||
password_repeat: "Te rugăm sa repeți parola."
|
||||
job_profile: "Profil Job" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Profilul de job a fost aprobat de CodeCombat Angajatorii pot să il vadă pană îl marchezi ca inactiv sau dacă nu e schimbat timp de 4 săptămâni."
|
||||
job_profile_explanation: "Salut! Completează formularul, și te vom contacta ca să iți gasești un job ca software developer."
|
||||
sample_profile: "Vezi un profil exemplu"
|
||||
view_profile: "Vizualizează Profilul"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Scurtături Keyboard"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
subs_only: "numai abonați"
|
||||
create_clan: "Creează un clan Nou"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Clanuri Publice"
|
||||
my_clans: "Clanurile mele"
|
||||
clan_name: "Numele Clanului"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
payments: "Plăți"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Cumpărate"
|
||||
# sale: "Sale"
|
||||
subscription: "Abonament"
|
||||
invoices: "Invoice-uri"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
email_settings_url: "setările tale de email"
|
||||
email_description_suffix: " sau prin link-urile din email-urile care vi le trimitem, puteți să schimbați preferințele și să vâ dezabonați oricând."
|
||||
cost_title: "Cost"
|
||||
cost_description: "Momentan, CodeCombat este 100% gratis! Unul dintre obiectele noastre principale este să îl menținem așa, astfel încât să poată juca cât mai mulți oameni. Dacă va fi nevoie , s-ar putea să percepem o plată pentru anumite servici, dar am prefera să nu o facem. Cu puțin noroc, vom putea susține compania cu:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Drepturi de autor și licențe"
|
||||
contributor_title: "Acord de licență Contributor"
|
||||
contributor_description_prefix: "Toți contribuitorii, atât pe site cât și pe GitHub-ul nostru, sunt supuși la"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
nutshell_title: "Pe scurt"
|
||||
nutshell_description: "Orice resurse vă punem la dispoziție în Editorul de Nivele puteți folosi liber cum vreți pentru a crea nivele. Dar ne rezervăm dreptul de a rezerva distribuția de nivele în sine (care sunt create pe codecombat.com) astfel încât să se poată percepe o taxă pentru ele pe vitor, dacă se va ajunge la așa ceva."
|
||||
canonical: "Versiunea in engleză a acestui document este cea definitivă, versiunea canonică. Dacă există orice discrepanțe între traduceri, documentul in engleză are prioritate."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Premii Turnee" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
license: "licență"
|
||||
oreilly: "ebook la alegere"
|
||||
|
||||
account_profile:
|
||||
settings: "Setări" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Modifică Profil"
|
||||
done_editing: "Am terminat modificările."
|
||||
profile_for_prefix: "Profil pentru "
|
||||
profile_for_suffix: ""
|
||||
featured: "Recomandate"
|
||||
not_featured: "Nerecomandate"
|
||||
looking_for: "Caută:"
|
||||
last_updated: "Listă updatată:"
|
||||
contact: "Contact"
|
||||
active: "Caut oferte de interviu."
|
||||
inactive: "Nu caut oferte"
|
||||
complete: "complet"
|
||||
next: "Următorul"
|
||||
next_city: "oraș?"
|
||||
next_country: "alege țara."
|
||||
next_name: "nume?"
|
||||
next_short_description: "scrie o scurtă descriere."
|
||||
next_long_description: "descrie poziția dorită."
|
||||
next_skills: "listează cel puțin cinci competențe."
|
||||
next_work: "cronica istoricului dvs. de lucru."
|
||||
next_education: "povesteste-ne de chinurile educaționale"
|
||||
next_projects: "scoate in evidență pana la 3 proiecte la care ai lucrat."
|
||||
next_links: "adăugă orice link-uri personale sau sociale."
|
||||
next_photo: "adăugă o fotografie profesionala opțională."
|
||||
next_active: "indică că esti deschis la oferte ca să apară în căutări."
|
||||
example_blog: "Blog"
|
||||
example_personal_site: "Site Personal"
|
||||
links_header: "Link-uri Personale"
|
||||
links_blurb: "Link către orice alte site-uri sau profiluri pe care doriți să se sublinieze, ca GitHub, LinkedIn, sau blog-ul personal."
|
||||
links_name: "Nume Link"
|
||||
links_name_help: "Către ce faci link?"
|
||||
links_link_blurb: "Link URL"
|
||||
basics_header: "Actualizați informații de bază"
|
||||
basics_active: "Deschis la Oferte"
|
||||
basics_active_help: "Vrei oferte de interviu chiar acum?"
|
||||
basics_job_title: "Titlul jobului dorit"
|
||||
basics_job_title_help: "What role are you looking for?"
|
||||
basics_city: "Oraș"
|
||||
basics_city_help: "Orașul în care vrei să muncești (sau unde locuiești acum)."
|
||||
basics_country: "Țara"
|
||||
basics_country_help: "Țara în care vrei să muncești (sau locuiești acum)."
|
||||
basics_visa: "Stare Muncă in US"
|
||||
basics_visa_help: "Ești autorizat să muncești în US sau ai nevoie de sponsorizare de viză? (Dacă locuești în Canada sau Australia, bifează autorizat.)"
|
||||
basics_looking_for: "Caut"
|
||||
basics_looking_for_full_time: "Full-time"
|
||||
basics_looking_for_part_time: "Part-time"
|
||||
basics_looking_for_remote: "La distanță"
|
||||
basics_looking_for_contracting: "Contractant"
|
||||
basics_looking_for_internship: "Internship"
|
||||
basics_looking_for_help: "Ce fel de poziție ca Dezvoltator vrei?"
|
||||
name_header: "Scrieți numele"
|
||||
name_anonymous: "Dezvoltator Anonim"
|
||||
name_help: "Numele pe care vrei ca angajatori să îl vadă, ex: 'Nick Winter'."
|
||||
short_description_header: "Scrie o descriere scurtă despre tine"
|
||||
short_description_blurb: "Adaugă un slogan ca un angajator să te cunoască mai repede."
|
||||
short_description: "Slogan"
|
||||
short_description_help: "Cine ești, și ce te interesează? 140 charactere max."
|
||||
skills_header: "Aptitudini"
|
||||
skills_help: "Alege aptitudini de dezvoltator relevante în ordinea experienței."
|
||||
long_description_header: "Descrie poziția preferată"
|
||||
long_description_blurb: "Spune-le angajatorilor cat de minunat ești si ce rol vrei."
|
||||
long_description: "Descrierea Ta"
|
||||
long_description_help: "Descrie-te la potențiali angajatori. Să fie scurt si la obiect. Recomandăm să subliniezi poziția care te interesează. Un Markdown savuros este ok; 600 charactere max."
|
||||
work_experience: "Experiența Muncă"
|
||||
work_header: "Istoricul locurilor undei ai muncit"
|
||||
work_years: "Ani de experiență"
|
||||
work_years_help: "Câți ani de experiență profesională (în care ai fost plătit) ca dezvoltator software ai?"
|
||||
work_blurb: "Listează experiența de lucru relevantă, cea mai recentă prima."
|
||||
work_employer: "Angajator"
|
||||
work_employer_help: "Numele angajatorului."
|
||||
work_role: "Titlul Jobului"
|
||||
work_role_help: "Care a fost titlul jobului tău sau rolul?"
|
||||
work_duration: "Durata"
|
||||
work_duration_help: "Cand ai avut acest job?"
|
||||
work_description: "Descriere"
|
||||
work_description_help: "Ce ai făcut acolo? (14 char: opțional) "
|
||||
education: "Educație"
|
||||
education_header: "Povestește-ne chinurile academice"
|
||||
education_blurb: "Listează informații despre educația ta."
|
||||
education_school: "Școală"
|
||||
education_school_help: "Numele Școlii"
|
||||
education_degree: "Grad"
|
||||
education_degree_help: "Care a fost gradul si domeniul de studiu?"
|
||||
education_duration: "Date"
|
||||
education_duration_help: "Când?"
|
||||
education_description: "Descriere"
|
||||
education_description_help: "Evidențiază orice despre experiența ta educațională. (140 char; opțional)"
|
||||
our_notes: "Note CodeCombat"
|
||||
remarks: "Observații"
|
||||
projects: "Proiecte"
|
||||
projects_header: "Adaugă 3 proiecte"
|
||||
projects_header_2: "Proiecte (Top 3)"
|
||||
projects_blurb: "Evidențiază-ți proiectele să impresionezi angajatorii."
|
||||
project_name: "Numele Proiectului"
|
||||
project_name_help: "Cum s-a numit proiectul?"
|
||||
project_description: "Descriere"
|
||||
project_description_help: "Descrie pe scurt proiectul."
|
||||
project_picture: "Poză"
|
||||
project_picture_help: "Uploadează o poză de 230x115px sau mai mare cu proiectul."
|
||||
project_link: "Link"
|
||||
project_link_help: "Link la proiect."
|
||||
player_code: "Codul Jucătorului"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Ne pare rău, CodeCombat nu recrutează acum."
|
||||
deprecation_warning: "Ne axăm pe nivelele pentru începători în loc să găsim dezvoltatori experți deocamdată."
|
||||
hire_developers_not_credentials: "Angajează dezvoltatori, nu scrisori de acreditare." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Începe"
|
||||
already_screened: "Deja am verificat tehnic toți candidați noștri"
|
||||
filter_further: ", dar poți să filtrezi mai departe:"
|
||||
filter_visa: "Viză"
|
||||
filter_visa_yes: "US Autorizat"
|
||||
filter_visa_no: "Neauthorized"
|
||||
filter_education_top: "Top Școală"
|
||||
filter_education_other: "Altele"
|
||||
filter_role_web_developer: "Web Developer"
|
||||
filter_role_software_developer: "Software Developer"
|
||||
filter_role_mobile_developer: "Mobile Developer"
|
||||
filter_experience: "Experiență"
|
||||
filter_experience_senior: "Senior"
|
||||
filter_experience_junior: "Junior"
|
||||
filter_experience_recent_grad: "Grad Recent"
|
||||
filter_experience_student: "Student Facultate"
|
||||
filter_results: "rezultate"
|
||||
start_hiring: "Începe angajările."
|
||||
reasons: "Trei motive pentru care să angajezi prin intermediul nostru:"
|
||||
everyone_looking: "Toți de aici caută următoarea oportunitate."
|
||||
everyone_looking_blurb: "Uită de 20% răspunsuri pe LinkedIn InMail. Toți cei pe care îi listăm pe acest site vor să își găsească următoarea poziție și vor răspunde la cerere cu o introducere. "
|
||||
weeding: "Relaxsează-te; noi ne ocupăm de selecții."
|
||||
weeding_blurb: "Fiecare jucător pe care îl listăm aici i-au fost testate abilitățile tehnice. De asemenea îi selecționăm telefonic și facem notițe despre profilul fiecăruia ca să iți economisim timpul."
|
||||
pass_screen: "O să treacă examenul dvs. tehnic."
|
||||
pass_screen_blurb: "Examinați codul fiecărui candidat înainte să îi contactați. Un angajator a constatat că de 5 ori mai mulți dezvoltatori au trecut examenul tehnic decât cei angajați de pe Hacker News."
|
||||
make_hiring_easier: "Fă angajarea mai ușoară, te rugăm."
|
||||
what: "Ce este CodeCombat?"
|
||||
what_blurb: "CodeCombat este un joc multiplayer în browser ce te învața programare. Jucătorii scriu cod ca să iși controleze forțele împotriva celorlalți Dezvoltatori."
|
||||
cost: "Căt de mult taxăm?"
|
||||
cost_blurb: "Percepem 15% din salariul pe primul an si oferim o garanție 100% bani inapoi pentru 90 de zile. Nu taxăm candidați care sunt în cursul unui interviu la o companie."
|
||||
candidate_name: "Nume"
|
||||
candidate_location: "Locație"
|
||||
candidate_looking_for: "Caută"
|
||||
candidate_role: "Rol"
|
||||
candidate_top_skills: "Top Skills"
|
||||
candidate_years_experience: "Exp Ani"
|
||||
candidate_last_updated: "Ultimul Update"
|
||||
candidate_who: "Cine"
|
||||
featured_developers: "Dezvoltatori Featured"
|
||||
other_developers: "Alți Dezvoltatori"
|
||||
inactive_developers: "Dezvoltatori Inactivi"
|
||||
|
||||
admin:
|
||||
av_espionage: "Spionaj" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Email sau username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "limba română", englishDescription: "Roman
|
|||
av_entities_sub_title: "Entități"
|
||||
av_entities_users_url: "Utilizatori"
|
||||
av_entities_active_instances_url: "Instanțe active"
|
||||
av_entities_employer_list_url: "Lista Angajatoriilor"
|
||||
av_entities_candidates_list_url: "Lista Candidațiilor"
|
||||
av_entities_user_code_problems_list_url: "Listă probleme de cod de utilizator"
|
||||
av_other_sub_title: "Altele"
|
||||
av_other_debug_base_url: "Base (pentru debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
multiplayer: "Мультиплеер" # Not currently shown on home page
|
||||
for_developers: "Разработчикам" # Not currently shown on home page.
|
||||
or_ipad: "Или скачайте на iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Уровни" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
creating: "Создание аккаунта..."
|
||||
sign_up: "Регистрация"
|
||||
log_in: "вход с паролем"
|
||||
social_signup: "Или вы можете зарегистрироваться через Facebook или G+:"
|
||||
required: "Войдите для того, чтобы продолжить."
|
||||
login_switch: "Уже есть аккаунт?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
incomplete: "Не завершено"
|
||||
timed_out: "Время истекло"
|
||||
failing: "Неудача"
|
||||
action_timeline: "График действий"
|
||||
click_to_select: "Выберите персонажа, щёлкнув на нём"
|
||||
control_bar_multiplayer: "Мультиплеер"
|
||||
control_bar_join_game: "Присоединиться"
|
||||
reload: "Перезагрузить"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
parents_title: "Дорогой Родитель, ваш ребенок учится программировать. Вы поможете ему?"
|
||||
parents_blurb1: "Ваш ребенок прошел уже __nLevels__ уровней и выучил основы программирования. Помогите развить их интерес и купите им подписку, чтобы они могли продолжить играть."
|
||||
parents_blurb1a: "Программирование - это существенный навык, который ваш ребенок несомненно будет использовать, когда станет взрослым. В 2020, базовые навыки работы с программным обеспечением будут необходимы для 77% профессий, а программные инженеры пользуются высоким спросом по всему миру. Вы знали, что компьютерная наука - это наиболее оплачиваемая специальность?"
|
||||
parents_blurb2: "За $9.99 USD/месяц ваш ребенок получит новые испытания каждую неделю и персональную поддержку профессиональных программистов через электронную почту."
|
||||
parents_blurb2: "За ${{price}} USD/месяц ваш ребенок получит новые испытания каждую неделю и персональную поддержку профессиональных программистов через электронную почту."
|
||||
parents_blurb3: "Без риска: 100% гарантия возврата денег, возможность отписаться в 1 клик."
|
||||
payment_methods: "Методы оплаты"
|
||||
payment_methods_title: "Принимаемые методы оплаты"
|
||||
payment_methods_blurb1: "На данный момент мы принимаем кредитные карты и Alipay." # {change}
|
||||
payment_methods_blurb2: "Если вам необходим альтернативный способ оплаты, пожалуйста, свяжитесь"
|
||||
sale_already_subscribed: "У вас уже есть подписка!"
|
||||
sale_blurb1: "Скидка $21" # {change}
|
||||
sale_blurb2: "от годовой подписки за $120 на весь год!"
|
||||
sale_button: "Распродажа!"
|
||||
sale_button_title: "Сэкономьте $21 при приобретении годовой подписки" # {change}
|
||||
sale_click_here: "Нажмите сюда"
|
||||
sale_ends: "Заканчивается"
|
||||
sale_extended: "*Текущие подписки будут продлены на год."
|
||||
sale_feature_here: "Вот что вы получите:"
|
||||
sale_feature2: "Доступ к 9 сильным<strong>новым героям</strong>с уникальными умениями!"
|
||||
sale_feature4: "<strong>42,000 бонусных самоцветов</strong> в подарок!"
|
||||
sale_continue: "Готовы продолжить путешествие?"
|
||||
sale_limited_time: "Ограниченное предложение!"
|
||||
sale_new_heroes: "Новые герои!"
|
||||
sale_title: "Назад на школьную распродажу"
|
||||
sale_view_button: "Купи годовую подписку за"
|
||||
sale_button_title: "Сэкономьте ${{discount}} при приобретении годовой подписки" # {change}
|
||||
stripe_description: "Месячная подписка"
|
||||
stripe_description_year_sale: "Годовая подписка ($21 скидка)" # {change}
|
||||
stripe_description_year_sale: "Годовая подписка (${{discount}} скидка)" # {change}
|
||||
subscription_required_to_play: "Чтобы сыграть этот уровень нужна подписка."
|
||||
unlock_help_videos: "Подпишитесь, чтобы разблокировать все обучающие видео."
|
||||
personal_sub: "Личная подписка" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
currently_free_until: "Сейчас вы имеете бесплатную подписку до"
|
||||
was_free_until: "Вы имели бесплатную подписку до"
|
||||
managed_subs: "Управляемые подписки"
|
||||
managed_subs_desc: "Добавьте подписки для других игроков (студенты, дети и т.д.)"
|
||||
managed_subs_desc_2: "Получатели должны иметь аккаунт CodeCombat, связанный с email-адресом, указанным вами."
|
||||
group_discounts: "Групповые скидки"
|
||||
group_discounts_1: "Так же мы предлагаем групповые скидки для нескольких подписок."
|
||||
group_discounts_1st: "1-я подписка"
|
||||
group_discounts_full: "Полная стоимость"
|
||||
group_discounts_2nd: "Подписки со 2-й по 11-ю"
|
||||
group_discounts_20: "20% скидка"
|
||||
group_discounts_12th: "Подписки 12-я и больше"
|
||||
group_discounts_40: "40% скидка"
|
||||
subscribing: "Подписываемся..."
|
||||
recipient_emails_placeholder: "Введите email-адреса для подписки, по одному на каждой линии."
|
||||
subscribe_users: "Подписать пользователей"
|
||||
users_subscribed: "Подписанные пользователи:"
|
||||
no_users_subscribed: "Нет подписанных пользователей. Пожалуйста, проверьте список email-адресов еще раз."
|
||||
current_recipients: "Текущие получатели"
|
||||
unsubscribing: "Отписываемся..." # {change}
|
||||
subscribe_prepaid: "Нажмите 'Подпишись', чтобы использовать предоплаченный код"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Информация для учителей"
|
||||
intro_1: "CodeCombat - это онлайн игра, которая обучает программированию. Ученики пишут код на реальных языках программирования."
|
||||
intro_2: "Опыт не обязателен!"
|
||||
free_title: "Сколько это стоит?"
|
||||
cost_premium_server: "CodeCombat бесплатный в течение первых пяти уровней, после чего он стоит $ 9,99 USD в месяц за доступ к другим нашим 190+ уровням на наших эксклюзивных серверах."
|
||||
free_1: "В наличии более 80 БЕСПЛАТНЫХ уровней, которые покрывают каждый концепт." # {change}
|
||||
free_2: "Месячная подписка предоставляет доступ к видео-урокам и дополнительным уровням."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Учителя получают бесплатные подписки!" # {change}
|
||||
teacher_subs_0: "Мы предлагаем бесплатную подписку для тестирования студентов." # {change}
|
||||
teacher_subs_1: "Пожалуйста, заполните нашу"
|
||||
teacher_subs_2: "Анкету учителя"
|
||||
teacher_subs_3: "для настройки вашей подписки." # {change}
|
||||
sub_includes_title: "Что включено в подписку?"
|
||||
sub_includes_1: "В дополнение к более чем 80 бесплатным уровням ученики с месячной подпиской получат доступ к дополнительным возможностям:" # {change}
|
||||
sub_includes_2: "Более 60 уровней для дополнительной практики" # {change}
|
||||
sub_includes_3: "Видео-уроки"
|
||||
sub_includes_4: "Эксклюзивная поддержка по электронной почте"
|
||||
sub_includes_5: "7 новых героев с уникальными возможностями для оттачивания мастерства" # {change}
|
||||
sub_includes_6: "3500 бонусных самоцветов каждый месяц"
|
||||
sub_includes_7: "Частные Кланы"
|
||||
monitor_progress_title: "Как мне следить за прогрессом студентов?"
|
||||
monitor_progress_1: "Прогресс студентов может быть отследить, создав"
|
||||
monitor_progress_2: "для вашего класса."
|
||||
monitor_progress_3: "Чтобы добавить студентов, отправьте им ссылку-пришлашение в ваш Клан, которую можно найти на"
|
||||
monitor_progress_4: "странице."
|
||||
monitor_progress_5: "После того, как они присоединятся, вы увидите сводку по прогрессам студентов на странице вашего Клана."
|
||||
private_clans_1: "Частные Кланы обеспечивают повышенную конфиденциальность и детальную информацию по прогрессу каждого студента."
|
||||
private_clans_2: "Чтобы создать частный Клан, отметьте флажок 'Сделать клан частным', когда будете создавать"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Для кого предназначен CodeCombat?"
|
||||
who_for_1: "Мы рекомендуем CodeCombat для учеников старше 9 лет. Какой-либо опыт программирования не требуется."
|
||||
who_for_2: "Мы разработали CodeCombat так, чтобы он подходил и мальчикам и девочкам."
|
||||
material_title: "Как много здесь материала?"
|
||||
material_premium_server: "Около 30 часов игрового процесса, распределенного более чем на 140 уровней для подписчиков с добавлением новых уровней каждую неделю." # {change}
|
||||
material_1: "Около 10 часов бесплатного контента и 20 часов дополнительного контента для подписчиков с добавлением новых уровней каждую неделю." # {change}
|
||||
concepts_title: "О каких концептах мы рассказываем?"
|
||||
how_much_title: "Сколько стоит месячная подписка?"
|
||||
how_much_1: "Цена"
|
||||
how_much_2: "месячной подписки"
|
||||
how_much_3: "- $9.99. Подписка может быть отменена в любой момент."
|
||||
how_much_4: "Дополнительно мы предоставляем скидки для больших групп:"
|
||||
how_much_5: "Мы предлагаем скидки для разовых покупок и годовых подписок для групп, таких как класс или школа. Пожалуйста, напишите на"
|
||||
how_much_6: "для получения подробностей."
|
||||
who_for_1: "Мы рекомендуем CodeCombat для учеников старше 9 лет. Какой-либо опыт программирования не требуется." # {change}
|
||||
who_for_2: "Мы разработали CodeCombat так, чтобы он подходил и мальчикам и девочкам." # {change}
|
||||
more_info_title: "Где я могу найти больше информации?"
|
||||
more_info_1: "Наш"
|
||||
more_info_2: "форум учителей"
|
||||
more_info_3: "хорошее место для связи с другими педагогами, уже использующими CodeCombat."
|
||||
sys_requirements_title: "Системные требования"
|
||||
sys_requirements_1: "Современный веб-браузер. Последние версии Chrome, Firefox или Safari. Internet Explorer 9 или новее."
|
||||
sys_requirements_2: "CodeCombat пока не доступен на iPad."
|
||||
|
||||
teachers_survey:
|
||||
title: "Анкета учителя"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
screenshot_included: "Скриншот прилагается."
|
||||
where_reply: "Куда мы должны ответить?"
|
||||
send: "Отправить отзыв"
|
||||
contact_candidate: "Связаться с кандидатом" # Deprecated
|
||||
recruitment_reminder: "Используйте эту форму, чтобы обратиться к кандидатам, если вы заинтересованы в интервью. Помните, что CodeCombat взимает 18% от первого года зарплаты. Плата производится по найму сотрудника и подлежит возмещению в течение 90 дней, если работник не остаётся на рабочем месте. Работники с частичной занятостью, работающие удалённо и по контракту свободны, как стажёры." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Настройки аккаунта"
|
||||
|
@ -737,17 +656,17 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
wrong_password: "Неверный пароль"
|
||||
upload_picture: "Загрузить изображение"
|
||||
delete_this_account: "Удалить этот аккаунт навсегда"
|
||||
# reset_progress_tab: "Reset All Progress"
|
||||
# reset_your_progress: "Clear all your progress and start over"
|
||||
reset_progress_tab: "Сбросить весь прогресс"
|
||||
reset_your_progress: "Сбросить весь прогресс и начать заново"
|
||||
god_mode: "Режим бога"
|
||||
password_tab: "Пароль"
|
||||
emails_tab: "Email-адреса"
|
||||
admin: "Админ"
|
||||
# manage_subscription: "Click here to manage your subscription."
|
||||
manage_subscription: "Нажмите здесь для управления вашей подпиской."
|
||||
new_password: "Новый пароль"
|
||||
new_password_verify: "Подтверждение пароля"
|
||||
type_in_email: "Введите ваш email для подтверждения удаления аккаунта"
|
||||
# type_in_email_progress: "Type in your email to confirm deleting your progress."
|
||||
type_in_email_progress: "Наберите свой email для подтверждения удаления вашего прогресса."
|
||||
type_in_password: "Так же введите ваш пароль" # {change}
|
||||
email_subscriptions: "Email-подписки"
|
||||
email_subscriptions_none: "Нет активных подписок."
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
saved: "Изменения сохранены"
|
||||
password_mismatch: "Пароли не совпадают."
|
||||
password_repeat: "Пожалуйста, повторите пароль."
|
||||
job_profile: "Профиль соискателя" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Ваш профиль соискателя был одобрен CodeCombat. Работодатели смогут видеть его, пока вы не отметите его неактивным или он не будет изменен в течение четырёх недель."
|
||||
job_profile_explanation: "Привет! Заполните это, и мы свяжемся с вами при нахождении работы разработчика программного обеспечения для вас."
|
||||
sample_profile: "Посмотреть пример профиля"
|
||||
view_profile: "Просмотр вашего профиля"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Горячие клавиши"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
subs_only: "только для подписчиков"
|
||||
create_clan: "Создать новый клан"
|
||||
private_preview: "Превью"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Публичные кланы"
|
||||
my_clans: "Мои кланы"
|
||||
clan_name: "Имя клана"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
payments: "Платежи"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Куплено"
|
||||
sale: "Распродажа"
|
||||
subscription: "Подписка"
|
||||
invoices: "Счета"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
email_settings_url: "ваши email настройки"
|
||||
email_description_suffix: "или через ссылки в email-ах, которые мы отправляем, вы можете изменить предпочтения и легко отписаться в любой момент."
|
||||
cost_title: "Стоимость"
|
||||
cost_description: "CodeCombat бесплатен для игры на базовых уровнях, с подпиской за $9.99 USD/месяц вы получите доступ к дополнительным ветвям уровней и 3500 бонусным самоцветам в месяц. Вы можете отказаться в 1 клик, и мы предлагаем 100% гарантию возврата денег."
|
||||
cost_description: "CodeCombat бесплатен для игры на базовых уровнях, с подпиской за ${{price}} USD/месяц вы получите доступ к дополнительным ветвям уровней и {{gems}} бонусным самоцветам в месяц. Вы можете отказаться в 1 клик, и мы предлагаем 100% гарантию возврата денег."
|
||||
copyrights_title: "Авторские права и лицензии"
|
||||
contributor_title: "Лицензионное соглашение соавторов"
|
||||
contributor_description_prefix: "Все вклады, как на сайте, так и на нашем репозитории GitHub, подпадают под наше"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
nutshell_title: "В двух словах"
|
||||
nutshell_description: "Любые ресурсы, которые мы предоставляем в Редакторе уровней можно свободно использовать как вам нравится для создания уровней. Но мы оставляем за собой право ограничивать распространение уровней самих по себе (которые создаются на codecombat.com), чтобы за них могла взиматься плата в будущем, если до этого дойдёт."
|
||||
canonical: "Английская версия этого документа является определяющей и канонической. Если есть какие-либо расхождения между переводами, документ на английском имеет приоритет."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Турнирные призы" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
license: "лицензия"
|
||||
oreilly: "электронная книга на ваш выбор"
|
||||
|
||||
account_profile:
|
||||
settings: "Настройки" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Редактировать профиль"
|
||||
done_editing: "Завершить редактирование"
|
||||
profile_for_prefix: "Профиль для "
|
||||
profile_for_suffix: ""
|
||||
featured: "Включает"
|
||||
not_featured: "Не включает"
|
||||
looking_for: "Ищет:"
|
||||
last_updated: "Последнее обновление:"
|
||||
contact: "Связаться"
|
||||
active: "Ищу предложения работы в настоящее время"
|
||||
inactive: "Не ищу предложений работы в настоящее время"
|
||||
complete: "готово"
|
||||
next: "Далее"
|
||||
next_city: "Город?"
|
||||
next_country: "Выберите вашу страну."
|
||||
next_name: "имя?"
|
||||
next_short_description: "напишите короткое описание."
|
||||
next_long_description: "опишите желаемую позицию"
|
||||
next_skills: "Опишите хотя бы пять своих навыков"
|
||||
next_work: "Опишите ваш опыт работы"
|
||||
next_education: "recount your educational ordeals"
|
||||
next_projects: "Покажите нам три своих проекта"
|
||||
next_links: "добавьте ссылки на личные сайты или соц. сети"
|
||||
next_photo: "добавьте необязательное профессиональное фото"
|
||||
next_active: "пометьте себя как ищущего предложения для отображения поиском."
|
||||
example_blog: "Блог"
|
||||
example_personal_site: "Персональный сайт"
|
||||
links_header: "Персональные ссылки"
|
||||
links_blurb: "Ссылки на другие сайты или профили, которые вы хотите указать Например: Аккаунт на GitHub'е, на LinkedIn'е, или на вашем блоге."
|
||||
links_name: "Название ссылки"
|
||||
links_name_help: "На что вы ссылаетесь?"
|
||||
links_link_blurb: "URL ссылки"
|
||||
basics_header: "Обновить базовую информацию."
|
||||
basics_active: "Ищет предложения"
|
||||
basics_active_help: "Вы хотите поискать предложения прямо сейчас?"
|
||||
basics_job_title: "Предпочитаемая роль в работе"
|
||||
basics_job_title_help: "Какую роль вы хотите?"
|
||||
basics_city: "Город"
|
||||
basics_city_help: "Город, в котором вы живете или хотели ли бы работать."
|
||||
basics_country: "Страна"
|
||||
basics_country_help: "Страна, в которой вы хотите работать (или живете сейчас)."
|
||||
basics_visa: "Статус работы в США"
|
||||
basics_visa_help: "У вас есть разрешение на работу в США, или вам понадобится помощь в получении визы? (Если вы живете в Канаде или Австралии, отметьте \"есть разрешение\".)"
|
||||
basics_looking_for: "Ищу"
|
||||
basics_looking_for_full_time: "Полная занятость"
|
||||
basics_looking_for_part_time: "Частичная занятость"
|
||||
basics_looking_for_remote: "Удаленная работа"
|
||||
basics_looking_for_contracting: "Контракт"
|
||||
basics_looking_for_internship: "Практика"
|
||||
basics_looking_for_help: "Какого рода разработчиком вы хотете быть?"
|
||||
name_header: "Заполните ваше имя"
|
||||
name_anonymous: "Анонимный разработчик"
|
||||
name_help: "Ваше имя для представления работодателям, например, 'Nick Winter'."
|
||||
short_description_header: "Напишите пару строк о себе"
|
||||
short_description_blurb: "Добавьте слоган, чтобы помочь работодателям быстро узнать больше о вас."
|
||||
short_description: "Слоган"
|
||||
short_description_help: "Кто вы и что вы ищите? 140 символов максимум."
|
||||
skills_header: "Навыки"
|
||||
skills_help: "Расположите актуальные навыки разработчика в порядке мастерства."
|
||||
long_description_header: "Опишите вашу желаемую позицию"
|
||||
long_description_blurb: "Расскажите работодателям, как вы круты, и какую роль вы хотите."
|
||||
long_description: "Описание себя"
|
||||
long_description_help: "Опишите себя потенциальным работодателям. Будьте кратки и по существу. Мы рекомендуем исходить из позиции наиболее интересного вам. 600 символов максимум."
|
||||
work_experience: "Опыт работы"
|
||||
work_header: "Опишите ваш опыт работы"
|
||||
work_years: "Годы опыта"
|
||||
work_years_help: "Сколько лет профессионального опыта (с получением денег) разработки ПО вы имеете?"
|
||||
work_blurb: "Напишите ваш рабочий опыт, начиная с последнего времени."
|
||||
work_employer: "Работодатель"
|
||||
work_employer_help: "Наименование вашего работодателя"
|
||||
work_role: "Должность"
|
||||
work_role_help: "Какова была ваша должность или роль?"
|
||||
work_duration: "Продолжительность"
|
||||
work_duration_help: "Как долго вы работали в этой должности?"
|
||||
work_description: "Описание"
|
||||
work_description_help: "Что вы делали? (140 символов; опционально)"
|
||||
education: "Образование"
|
||||
education_header: "Укажите ваше образование"
|
||||
education_blurb: "Список ваших учебных испытаний."
|
||||
education_school: "Учебное заведение"
|
||||
education_school_help: "Наименование учебного заведения."
|
||||
education_degree: "Степень"
|
||||
education_degree_help: "Какова ваша степень и область исследования?"
|
||||
education_duration: "Даты"
|
||||
education_duration_help: "Когда?"
|
||||
education_description: "Описание"
|
||||
education_description_help: "Выделите что-нибудь из этого учебного опыта. (140 символов; опционально)"
|
||||
our_notes: "Наши заметки"
|
||||
remarks: "Замечания"
|
||||
projects: "Проекты"
|
||||
projects_header: "Добавьте 3 проекта"
|
||||
projects_header_2: "Проекты (3 самых лучших)"
|
||||
projects_blurb: "Укажите ваши проекты, чтобы поразить работодателей."
|
||||
project_name: "Название проекта"
|
||||
project_name_help: "Какое у проекта было название?"
|
||||
project_description: "Описание"
|
||||
project_description_help: "Кратко опишите проект."
|
||||
project_picture: "Картинка"
|
||||
project_picture_help: "Загрузите картинку размером 230x115 пикселей или больше, демонстрирующую проект."
|
||||
project_link: "Ссылка"
|
||||
project_link_help: "Ссылка на проект."
|
||||
player_code: "Код игрока"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Извините, в данный момент CodeCombat не набирает новых сотрудников."
|
||||
deprecation_warning: "В настоящее время мы фокусируемся на разработчиков начального уровня нежели опытных."
|
||||
hire_developers_not_credentials: "Нанимаем разработчиков, не данные о них." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Начнем"
|
||||
already_screened: "Мы уже технически просеяли всех наших кандидатов"
|
||||
filter_further: ", но вы можете профильтровать далее:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Разрешение на работу в США"
|
||||
filter_visa_no: "Нет разрешения на работу"
|
||||
filter_education_top: "Высшее образование"
|
||||
filter_education_other: "Другое"
|
||||
filter_role_web_developer: "Веб-разработчик"
|
||||
filter_role_software_developer: "Разработчик ПО"
|
||||
filter_role_mobile_developer: "Разработчик мобильных приложений"
|
||||
filter_experience: "Опыт"
|
||||
filter_experience_senior: "Опытный (Senior)"
|
||||
filter_experience_junior: "Начинающий (Junior)"
|
||||
filter_experience_recent_grad: "Выпускник"
|
||||
filter_experience_student: "Студент"
|
||||
filter_results: "результаты"
|
||||
start_hiring: "Начать наем."
|
||||
reasons: "Три причины, почему вы должны искать работников через нас:"
|
||||
everyone_looking: "Все здесь ищут их следующую возможность."
|
||||
everyone_looking_blurb: "Забудьте о 20% рейтинге откликов через LinkedIn InMail. Каждый в нашем списке хочет найти свое следующее место работы и ответит на ваше приглашение на интервью."
|
||||
weeding: "Расслабьтесь; мы отобрали их для вас.."
|
||||
weeding_blurb: "Каждый игрок в списке был просмотрен на предмет технических способностей. Мы так же ведем телефонные переговоры по выбранным кандидатам и делаем пометки в их профилях, чтобы сэкономить ваше время."
|
||||
pass_screen: "Они пройдут ваш технический отбор."
|
||||
pass_screen_blurb: "Просмотрите код каждого кандидата перед принятием решения. Один работодатель заметил, что количество наших разработчиков, прошедших их технический отбор, в 5 раз превышало число набранных через Hacker News."
|
||||
make_hiring_easier: "Сделайте мой наем сотрудников проще, пожалуйста."
|
||||
what: "Что такое CodeCombat?"
|
||||
what_blurb: "CodeCombat - это многопользовательская браузерная игра про программирование. Игроки пишут код, чтобы контролировать свои войска в битвах против других разработчиков. Наши игроки имеют опыт во всех основных технических областях."
|
||||
cost: "Как много мы просим взамен?"
|
||||
cost_blurb: "Мы просим 15% оплаты за первый год работы и предлагаем 100% гарантию возврата денег в течении 90 дней. Мы не взимаем платы за кандидатов, которые уже были активно проинтервьюированы в вашей компании."
|
||||
candidate_name: "Имя"
|
||||
candidate_location: "Местонахождение"
|
||||
candidate_looking_for: "Ищет"
|
||||
candidate_role: "Роль"
|
||||
candidate_top_skills: "Лучшие навыки"
|
||||
candidate_years_experience: "Лет опыта"
|
||||
candidate_last_updated: "Последнее обновление"
|
||||
candidate_who: "Кто"
|
||||
featured_developers: "Рекомендуемые разработчики"
|
||||
other_developers: "Прочие разработчики"
|
||||
inactive_developers: "Неактивные разработчики"
|
||||
|
||||
admin:
|
||||
av_espionage: "Разведка" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Почта или юзернейм"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "русский", englishDescription: "Russi
|
|||
av_entities_sub_title: "Сущности"
|
||||
av_entities_users_url: "Пользователи"
|
||||
av_entities_active_instances_url: "Активные экземпляры"
|
||||
av_entities_employer_list_url: "Список работодателей"
|
||||
av_entities_candidates_list_url: "Список кандидатов"
|
||||
av_entities_user_code_problems_list_url: "Список проблем с пользовательским кодом"
|
||||
av_other_sub_title: "Другое"
|
||||
av_other_debug_base_url: "База (для отладки base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
multiplayer: "Viac hráčov" # Not currently shown on home page
|
||||
for_developers: "Pre vývojárov" # Not currently shown on home page.
|
||||
or_ipad: "Alebo stiahni pre iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Hraj" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
creating: "Vytvára sa účet..."
|
||||
sign_up: "Registruj sa"
|
||||
log_in: "prihlás sa pomocou hesla"
|
||||
social_signup: "Môžeš sa zaregistrovať aj cez Facebook alebo Google+:"
|
||||
required: "Najskôr sa musíš prihlásiť."
|
||||
login_switch: "Máš už účet ?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
incomplete: "Nekompletné"
|
||||
timed_out: "Čas uplynul"
|
||||
failing: "Zlyhanie"
|
||||
action_timeline: "Časová os"
|
||||
click_to_select: "Vyberte kliknutím."
|
||||
control_bar_multiplayer: "Viac hráčov"
|
||||
control_bar_join_game: "Vstúpiť do hry"
|
||||
reload: "Znova"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Informácie pre učiteľov"
|
||||
intro_1: "CodeCombat je online hra, ktorá učí programovať. Študenti píšu kód v skutočných programovacích jazykoch."
|
||||
intro_2: "Nie sú nutné žiadne predchádzajúce skúsenosti !"
|
||||
free_title: "Koľko to stojí ?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
free_1: "CodeCombat Basic is ZDARMA ! K dispozícii je 70+ úrovní pokrývajúcich každý koncept." # {change}
|
||||
free_2: "Mesačné predplatné poskytuje prístup k videonávodom a k úrovniam na precvičenie navyše."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Pre učiteľov je predplatné zdarma !" # {change}
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
teacher_subs_1: "Napíšte na" # {change}
|
||||
teacher_subs_2: "pre zriadenie mesačného predplatného zdarma." # {change}
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
sub_includes_title: "Čo zahrnuje predplatné ?"
|
||||
sub_includes_1: "Študenti s mesačným predplatným získajú ku 70+ základným úrovniam aj :" # {change}
|
||||
sub_includes_2: "40+ tréningových úrovní" # {change}
|
||||
sub_includes_3: "Video návody"
|
||||
sub_includes_4: "Prémiovú emailovú podporu"
|
||||
sub_includes_5: "7 nových hrdinov s jedinečnými schopnosťami" # {change}
|
||||
sub_includes_6: "3500 bonusových diamantov každý mesiac"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
who_for_title: "Pre koho je určený CodeComabt ?"
|
||||
who_for_1: "CodeCombat odporúčame pre žiakov od 9 rokov. Nie sú nutné žiadne predchádzajúce skúsenosti s programovaním."
|
||||
who_for_2: "CodeCombat sme navrhli tak, aby oslovil chlapcov aj dievčatá."
|
||||
material_title: "Aký je objem učebnej látky ?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
material_1: "Asi 8 hodín bezplatného obsahu a ďalších 14 hodín pre predplatiteľov. 5 nových úrovní každý týždeň." # {change}
|
||||
concepts_title: "Aké pojmy sú pokryté ?"
|
||||
how_much_title: "Koľko stojí mesačné predplatné ?"
|
||||
how_much_1: ""
|
||||
how_much_2: "Mesačné predplatné"
|
||||
how_much_3: ", ktoré môže byť kedykoľvek zrušené, stojí 9.99$."
|
||||
how_much_4: "Zľavy pre väčšie skupiny:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
who_for_1: "CodeCombat odporúčame pre žiakov od 9 rokov. Nie sú nutné žiadne predchádzajúce skúsenosti s programovaním." # {change}
|
||||
who_for_2: "CodeCombat sme navrhli tak, aby oslovil chlapcov aj dievčatá." # {change}
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
sys_requirements_title: "Systémové požiadavky"
|
||||
sys_requirements_1: "Moderný webový prehliadač. Nové verzie prehliadačov Chrome, Firefox alebo Safari. Internet Explorer 9 alebo novší."
|
||||
sys_requirements_2: "CodeCombat nie je zatiaľ podprovaný pre iPad."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Poslať odozvu"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Nastvenia účtu"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
saved: "Zmeny uložené"
|
||||
password_mismatch: "Heslá nesedia."
|
||||
password_repeat: "Zopakuj, prosím, svoje heslo."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "slovenčina", englishDescription: "Slovak",
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "slovenščina", englishDescription: "Sloven
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Нивои" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
creating: "Прављење налога..."
|
||||
sign_up: "Упиши се"
|
||||
log_in: "улогуј се са шифром"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
action_timeline: "Временска линија акције"
|
||||
click_to_select: "Кликни на јединицу да је селектујеш"
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Пошаљи повратну информацију"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Подешавања налога"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
saved: "Измене су сачуване"
|
||||
password_mismatch: "Шифре се не слажу."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Налог за "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "српски", englishDescription: "Serbian
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
multiplayer: "Flera spelare" # Not currently shown on home page
|
||||
for_developers: "För utvecklare" # Not currently shown on home page.
|
||||
or_ipad: "Eller ladda ner till iPad"
|
||||
hoc_class_code: "Jag har en lektionskod"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Spela" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
creating: "Skapar konto..."
|
||||
sign_up: "Skapa konto"
|
||||
log_in: "logga in med lösenord"
|
||||
social_signup: "Eller så kan du logga in genom facebook eller G+:"
|
||||
required: "Du måste logga in innan du kan gå dit"
|
||||
login_switch: "Har du redan ett konto?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
incomplete: "Ej färdig"
|
||||
timed_out: "Slut på tid"
|
||||
failing: "Ingen framgång"
|
||||
action_timeline: "Händelse-tidslinje"
|
||||
click_to_select: "Klicka på en enhet för att välja den."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
control_bar_join_game: "Anslut till spel"
|
||||
reload: "Ladda om"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
josh_c_blurb: "Designar spel"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Info till lärare"
|
||||
intro_1: "CodeCombat är ett onlinespel som lär ut programmering. Eleverna skriver kod i riktiga programspråk."
|
||||
intro_2: "Ingen erfarenhet krävs!"
|
||||
free_title: "Hur mycket kostar det?"
|
||||
cost_premium_server: "CodeCombat har 5 gratisnivåer, efter det kostar det $9.99 USD per månad om du vill ha tillgång till våra mer än 190+ nivåer på våra landsspecifika servrar."
|
||||
free_1: "CodeCombat Basic är GRATIS! Det finns över 80 gratis nivåer som täcker alla koncept." # {change}
|
||||
free_2: "En månadsprenumeration ger tillgång till videogenomgångar och fler övningsnivåer."
|
||||
free_3: "Innehållet i CodeCombat är uppdelat i"
|
||||
free_4: "lektioner"
|
||||
free_5: ". Den första lektionen är gratis och innehåller material för ungefär en timme."
|
||||
free_6: "Ytterligare lektioner kan låsas upp med en engångsbetalning."
|
||||
teacher_subs_title: "Lärare får gratis prenumerationer!" # {change}
|
||||
teacher_subs_0: "Lärare kan testa gratis."
|
||||
teacher_subs_1: "Kontakta" # {change}
|
||||
teacher_subs_2: "för att sätta upp en gratis månadsprenumeration." # {change}
|
||||
teacher_subs_3: "för att gratis testa betallektionerna."
|
||||
sub_includes_title: "Vad ingår i prenumerationen?"
|
||||
sub_includes_1: "Förutom de 80+ grundläggande nivåerna får elever med en månadsprenumeration tillgång till följande:" # {change}
|
||||
sub_includes_2: "60+ övningsnivåer" # {change}
|
||||
sub_includes_3: "Videogenomgångar"
|
||||
sub_includes_4: "Premium mejlsupport"
|
||||
sub_includes_5: "7 nya hjältar med unika färdigheter att bemästra" # {change}
|
||||
sub_includes_6: "3500 bonusädelstenar varje månad"
|
||||
sub_includes_7: "Privata klaner"
|
||||
monitor_progress_title: "Hur kan jag se elevernas framsteg?"
|
||||
monitor_progress_1: "Du kan skapa en"
|
||||
monitor_progress_2: "till din klass."
|
||||
monitor_progress_3: "För att lägga till en elev, skicka en inbjudan till din klan. Finns på den här sidan: "
|
||||
monitor_progress_4: ""
|
||||
monitor_progress_5: "Efter att de anslutit ser du en sammanfattning av elevens framsteg på din klans sida."
|
||||
private_clans_1: "Privata klaner ger ökad integritet och detaljerad framstegsinformation för varje elev."
|
||||
private_clans_2: "För att skapa en privat klan, använd kryssrutan 'Gör klanen privat' när du skapar en"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Vem är CodeCombat för?"
|
||||
who_for_1: "Vi rekommenderar CodeCombat till elever som är minst 9 år. Inga programmeringskunskaper krävs."
|
||||
who_for_2: "Vi har skapat CodeCombat för att locka både pojkar och flickor."
|
||||
material_title: "Hur mycket material finns det?"
|
||||
material_premium_server: "Ungefär 30 timmars speltid över 140+ prenumerantnivåer - än så länge - med nya nivåer varje vecka." # {change}
|
||||
material_1: "Ungefär 10 timmar fritt innehåll och ytterligare 20 timmar prenumerantinnehåll med nya nivåer varje vecka." # {change}
|
||||
concepts_title: "Vilka koncept täcks?"
|
||||
how_much_title: "Hur mycket kostar en månadsprenumeration?"
|
||||
how_much_1: "En"
|
||||
how_much_2: "månadsprenumeration"
|
||||
how_much_3: "kostar $9.99 och kan avbrytas när som helst."
|
||||
how_much_4: "Dessutom ger vi rabatt till större grupper:"
|
||||
how_much_5: "Vi gör engångsköp med avdrag och årliga prenumerationer för grupper, som en klass eller skola. Kontakta"
|
||||
how_much_6: "för mer information."
|
||||
who_for_1: "Vi rekommenderar CodeCombat till elever som är minst 9 år. Inga programmeringskunskaper krävs." # {change}
|
||||
who_for_2: "Vi har skapat CodeCombat för att locka både pojkar och flickor." # {change}
|
||||
more_info_title: "Var kan jag hitta mer information?"
|
||||
more_info_1: "Vårt"
|
||||
more_info_2: "lärarforum"
|
||||
more_info_3: "är ett bra ställe att skapa kontakter med andra lärare som använder CodeCombat."
|
||||
sys_requirements_title: "Systemkrav"
|
||||
sys_requirements_1: "En modern webbläsare. Nyare versioner av Chrome, Firefox, eller Safari. Internet Explorer 9 eller senare."
|
||||
sys_requirements_2: "CodeCombat stöds inte på iPad än."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
screenshot_included: "Inkluderar skärmbild."
|
||||
where_reply: "Vart ska vi skicka svaret?"
|
||||
send: "Skicka Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Kontoinställningar"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
saved: "Ändringar sparade"
|
||||
password_mismatch: "De angivna lösenorden stämmer inte överens."
|
||||
password_repeat: "Upprepa ditt lösenord."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
view_profile: "Visa din profil"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Kortkommandon"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
subs_only: "endast följare"
|
||||
create_clan: "Skapa ny klan"
|
||||
private_preview: "Förhandsgranska"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Publik klan"
|
||||
my_clans: "Mina klaner"
|
||||
clan_name: "Klanens namn"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
payments: "Betalningar"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
subscription: "Prenumeration"
|
||||
invoices: "Fakturor"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
email_settings_url: "dina mejlinställningar"
|
||||
email_description_suffix: "eller genom länkar i mejlen vi skickar kan du ändra dina inställningar och lätt avprenumerera när som helst."
|
||||
cost_title: "Kostnad"
|
||||
cost_description: "För närvarande är CodeCombat 100 % gratis! Ett av våra främsta mål är att behålla det så, så att så många som möjligt kan spela, oavsett plats i livet. Om himlen mörknar, kanske vi behöver ta betalt för prenumerationer eller något innehåll, men helst slipper vi det. Med lite tur lyckas vi hålla liv i företag med:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Upphovsrätt och licenser"
|
||||
contributor_title: "Överenskommelse för bidragarlicens"
|
||||
contributor_description_prefix: "Alla bidrag, både på sajten och på vårt GitHub-repo, faller under vår"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
nutshell_title: "I ett nötskal"
|
||||
nutshell_description: "Alla resurser vi tillhandahåller i nivåredigeraren är gratis att använda som du vill för att skapa nivåer. Men vi reserverar oss rättigheten att begränsa distribution av nivåerna själva (som skapas på codecombat.com) så att de kan tas betalt för i framtiden, om det är så det blir."
|
||||
canonical: "Den engelska versionen av detta dokument är den definitiva, erkända versionen. Om det finns några skillnader mellan översättningar är det det engelska dokumentet som tar företräde."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "Profil för "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Svenska", englishDescription: "Swedish", tr
|
|||
av_entities_sub_title: "Enheter"
|
||||
av_entities_users_url: "Användare"
|
||||
av_entities_active_instances_url: "Aktiva instanser"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Övrigt"
|
||||
av_other_debug_base_url: "Base (för avlusning av base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "เล่น" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
creating: "กำลังสร้างบัญชีใหม่..."
|
||||
sign_up: "สมัคร"
|
||||
log_in: "เข้าสู่ระบบด้วยรหัสผ่าน"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
incomplete: "ไม่สมบูรณ์"
|
||||
timed_out: "หมดเวลา"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
parents_title: "ถึงผู้ปกครอง : ลูกของคนกำลังฝึกเขียนโปรแกรมอยู่ คุณจะช่วยให้เขาเขียนต่อไหม"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
group_discounts_1st: "สมัคร 1 คน"
|
||||
group_discounts_full: "ราคาเต็ม"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
group_discounts_12th: "สมัคร 12 คนขึ้นไป"
|
||||
group_discounts_40: "ลด 40%"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
saved: "เปลี่ยนรหัสผ่าน"
|
||||
password_mismatch: "รหัสผ่านไม่ถูกต้อง"
|
||||
password_repeat: "จงใส่รหัสผ่านอีกครั้ง"
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "ไทย", englishDescription: "Thai", tra
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
multiplayer: "Çoklu-oyuncu Kipi" # Not currently shown on home page
|
||||
for_developers: "Geliştiriciler için" # Not currently shown on home page.
|
||||
or_ipad: "Ya da iPad için indir"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Oyna" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
creating: "Hesap oluşturuluyor..."
|
||||
sign_up: "Kaydol"
|
||||
log_in: "buradan giriş yapabilirsiniz."
|
||||
social_signup: "veya Facebook ya da G+ ile oturum açabilirsiniz:"
|
||||
required: "Buraya gidebilmeniz için oturum açmanız gerekli."
|
||||
login_switch: "Zaten bir hesabın var mı?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
incomplete: "Tamamlanmamış"
|
||||
timed_out: "Süre bitti"
|
||||
failing: "Başarısız"
|
||||
action_timeline: "Eylem Çizelgesi"
|
||||
click_to_select: "Birimi seçmek için üzerine tıklayın."
|
||||
control_bar_multiplayer: "Çoklu Oyuncu"
|
||||
control_bar_join_game: "Oyuna Katıl"
|
||||
reload: "Yeniden Yükle"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Gönder"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Hesap Ayarları"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
saved: "Değişiklikler Kaydedildi"
|
||||
password_mismatch: "Şifreler Uyuşmuyor"
|
||||
password_repeat: "Lütfen şifrenizi yenileyin."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
sample_profile: "Örnek bir profil gör"
|
||||
view_profile: "Kendi Profilinize Bakın"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Klavye Kısayolları"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
payments: "Ödemeler"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
purchased: "Ödendi"
|
||||
sale: "İndirim"
|
||||
subscription: "Üyelik"
|
||||
invoices: "Faturalar"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
email_settings_url: "eposta ayarları sayfasından,"
|
||||
email_description_suffix: "ister size gönderdiğimiz epostadaki linklerden, tercihlerinizi değiştirebilir ve aboneliğinizi anında iptal edebilirsiniz."
|
||||
cost_title: "Ücret"
|
||||
cost_description: "Şu anda CodeCombat tamamıyla ücretsiz! Esas amaçlarımızdan biri bu şekilde devam etmek, bu sayede hayattaki konumu fark etmeksizin olabildiğince çok insan oynayarak kodlamayı öğrenebilir. Eğer koşullar olumsuz yönde değişirse, abonelik veya bazı içerikler için belirli ücretler talep edilebilir, ama bunu tercih etmeyiz. Temennimiz şudur ki, şirketi şu biçimde sürdürmeye devam edebiliriz:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Telif Hakları ve Lisanslar"
|
||||
contributor_title: "Katılımcı Lisans Sözleşmesi"
|
||||
contributor_description_prefix: "GitHub ve siteye yapılan tüm katılımlar, devam etmeden önce kabul etmeniz gereken"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
nutshell_title: "Özetle"
|
||||
nutshell_description: "Seviye editöründe sağladığımız tüm içerik, seviye düzenleme sırasında kullanmanız için uygundur. Fakat ileride bu öğelerin kullanımını kısıtlama hakkını saklı tutmaktayız."
|
||||
canonical: "Belirleyici, hukuki nitelikte olan, bu dökümanın İngilizce sürümüdür. Çeviriler arasında tutarsızlık olması halinde İngilizce dökümanda yer alan hüküm dikkate alınacaktır."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
profile_for_suffix: " Kullanıcısının Profili"
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Türkçe", englishDescription: "Turkish", t
|
|||
av_entities_sub_title: "Ortaklıklar"
|
||||
av_entities_users_url: "Kullanıcılar"
|
||||
av_entities_active_instances_url: "Aktif Örnekler"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Başka"
|
||||
av_other_debug_base_url: "Temel (base.jade hata kontrolü)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
multiplayer: "Командна гра" # Not currently shown on home page
|
||||
for_developers: "Для розробників" # Not currently shown on home page.
|
||||
or_ipad: "Або завантажте на iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Грати" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
creating: "Створення екаунту..."
|
||||
sign_up: "Реєстрація"
|
||||
log_in: "вхід з паролем"
|
||||
social_signup: "Або Ви можете створити акаунт через Facebook чи G+:"
|
||||
required: "Ця дія потребує входу."
|
||||
login_switch: "Уже маєте екаунт?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
incomplete: "Незавершено"
|
||||
timed_out: "Час очікування минув"
|
||||
failing: "Невдало"
|
||||
action_timeline: "Лінія часу"
|
||||
click_to_select: "Клікніть на підрозділ, аби вибрати його."
|
||||
control_bar_multiplayer: "Мультиплеєр"
|
||||
control_bar_join_game: "Приєднатись до гри"
|
||||
reload: "Перезавантажити "
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
parents_title: "Дорога мамо/батьку, ваша дитина вчиться програмувати. Чи допоможите ви їй продовжити цю спрову?"
|
||||
parents_blurb1: "Ваша дитина уже завершила __nLevels__ рівнів та вивчила базові речі. Допоможіть культивувати її інтерес та придбайте їй абонемент аби вона могла продовжити грати."
|
||||
parents_blurb1a: "Коп'ютерне програмування є необхідними вмінням, що ваша дитина беззаперечно використовуватиме у дорослому віці. До 2020 року 77% професій потребуватимуть базових навичок у програмному забезпечені, а програмісти надзвичайно потрібні у всьому світі. Чи знали ви, що Комп'ютерні Науки - це найбільш високооплачувана університетьська спеціальність?"
|
||||
parents_blurb2: "За 9.99$ на місяць, вона отримуватиме нові завдання щотижня та персональні листи підтримки від професійних програмістів." # {change}
|
||||
parents_blurb2: "За {{price}}$ на місяць, вона отримуватиме нові завдання щотижня та персональні листи підтримки від професійних програмістів." # {change}
|
||||
parents_blurb3: "Жодного ризику: 100% гарантія повернення грошей, легке скасування абонементу одним кліком."
|
||||
payment_methods: "Платіжні методи"
|
||||
payment_methods_title: "Платіжні методи, що приймаються"
|
||||
payment_methods_blurb1: "Наразі ми приймаємо кредитні картки та Alpiay." # {change}
|
||||
payment_methods_blurb2: "Якщо Вам необхідно використати інший спосіб оплати, будь ласка, зв'яжіться з нами."
|
||||
sale_already_subscribed: "Ви вже підписалися!"
|
||||
sale_blurb1: "Зекономте $21" # {change}
|
||||
sale_blurb2: "від звичайної ціни у 120$ на рік!"
|
||||
sale_button: "Розпродаж!"
|
||||
sale_button_title: "Збережіть $21 при покупці абонементу на 1 рік" # {change}
|
||||
sale_click_here: "Натисніть тут"
|
||||
sale_ends: "Kінець"
|
||||
sale_extended: "*Існуючі підписки буде продовжено на 1 рік."
|
||||
sale_feature_here: "Ось те, що ви отримаєте:"
|
||||
sale_feature2: "Доступ до 9 потужних <strong>нових героїв</strong> з унікальними вміннями!"
|
||||
sale_feature4: "Миттєве отримання <strong> 42000 бонусних самоцвітів</strong>!"
|
||||
sale_continue: "Готовий продовжити пригоди?"
|
||||
sale_limited_time: "Обмежена пропозиція!"
|
||||
sale_new_heroes: "Нові герої!"
|
||||
sale_title: "Дошкільні знижки"
|
||||
sale_view_button: "Купити 1 рік підписки на"
|
||||
sale_button_title: "Збережіть ${{discount}} при покупці абонементу на 1 рік" # {change}
|
||||
stripe_description: "Щомісячний абонемент"
|
||||
stripe_description_year_sale: "1 рік підписки ($21 знижка)" # {change}
|
||||
stripe_description_year_sale: "1 рік підписки (${{discount}} знижка)" # {change}
|
||||
subscription_required_to_play: "Аби грати в цьому рівні потрібен абонемент."
|
||||
unlock_help_videos: "Підпишіться, щоб відкрити усі навчальні відео."
|
||||
personal_sub: "Особистий абонемент" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
currently_free_until: "Зараз у Вас безкоштовний абонемент до "
|
||||
was_free_until: "У Вас був безкоштовний абонемент до "
|
||||
managed_subs: "Керовані абонементи"
|
||||
managed_subs_desc: "Додати абонементи для інших гравців (учнів, дітей тощо)"
|
||||
managed_subs_desc_2: "Одержувачі повинні мати обліковий запис CodeCombat, пов'язаний з вказаною Вами адресою електронної пошти."
|
||||
group_discounts: "Групові знижки"
|
||||
group_discounts_1: "Ми також пропонуємо знижки для пакетних передплат."
|
||||
group_discounts_1st: "1-ий абонемент"
|
||||
group_discounts_full: "Повна ціна"
|
||||
group_discounts_2nd: "2-11 абонементи"
|
||||
group_discounts_20: "Знижка 20%"
|
||||
group_discounts_12th: "Абонементи від 12-го"
|
||||
group_discounts_40: "Знижка 40%"
|
||||
subscribing: "Передплата..."
|
||||
recipient_emails_placeholder: "Введіть ел. адреси для передплати, по одній в рядку."
|
||||
subscribe_users: "Підписати користувачів"
|
||||
users_subscribed: "Підписані користувачі:"
|
||||
no_users_subscribed: "Користувачі не підписані, будь ласка, перевірте Ваші ел. адреси."
|
||||
current_recipients: "Поточні отримувачі"
|
||||
unsubscribing: "Триває скасування підписки..."
|
||||
subscribe_prepaid: "Натисніть Підписатися щоб використовувати передплачені коди"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "Додаткова інформація для вчителів"
|
||||
intro_1: "CodeCombat - це онлайн гра, що вчить програмуванню. Студенти пишуть код на реальних мовах програмування."
|
||||
intro_2: "Досвід не потрібен!"
|
||||
free_title: "Скільки це коштує?"
|
||||
cost_premium_server: "CodeCombat безкоштовний протягом перших п'яти рівнів, після чого він коштуватиму 9,99$ на місяць за доступ до інших наших 190+ рівнів на наших ексклюзивних серверах."
|
||||
free_1: "Є 110+ БЕЗКОШТОВНИХ рівнів, які охоплюють всі поняття."
|
||||
free_2: "Місячний абонемент надає доступ до відео-уроків і додаткових рівнів практики."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "Вчителі отримують безкоштовні підписки!" # {change}
|
||||
teacher_subs_0: "Ми пропонуємо безкоштовну передплату для тестування студентів." # {change}
|
||||
teacher_subs_1: "Будь ласка, заповніть "
|
||||
teacher_subs_2: "Анкету Вчителя"
|
||||
teacher_subs_3: "щоб налаштувати підписку." # {change}
|
||||
sub_includes_title: "Що входить у підписку?"
|
||||
sub_includes_1: "На додаток до 110+ основних рівнів, студенти з щомісячною підпискою отримають доступ до цих додаткових функцій:"
|
||||
sub_includes_2: "80+ рівнів практики"
|
||||
sub_includes_3: "Відео-уроки"
|
||||
sub_includes_4: "Преміум-підтримка електронною поштою"
|
||||
sub_includes_5: "10 нових героїв з унікальними вміннями якими можна оволодіти"
|
||||
sub_includes_6: "3500 бонусних самоцвітів кожен місяць"
|
||||
sub_includes_7: "Приватні клани"
|
||||
monitor_progress_title: "Як мені стежити за прогресом студентів?"
|
||||
monitor_progress_1: "Прогрес студентів можна відстежувати, створивши"
|
||||
monitor_progress_2: "для вашого класу."
|
||||
monitor_progress_3: "Щоб додати студентів, надішліть їм посилання-запрошення в ваш Клан, яке можна знайти на"
|
||||
monitor_progress_4: "сторінці."
|
||||
monitor_progress_5: "Після того, як вони приєднаються, ви побачите зведення по прогрес студентів на сторінці вашого Клану."
|
||||
private_clans_1: "Приватні Клани забезпечують підвищену конфіденційність і детальну інформацію про прогрес кожного студента."
|
||||
private_clans_2: "Щоб створити приватний Клан, відзначте прапорець 'Зробити клан приватним', коли будете створювати"
|
||||
private_clans_3: "."
|
||||
who_for_title: "Для кого призначений CodeCombat?"
|
||||
who_for_1: "Ми рекомендуємо CodeCombat для учнів старше 9 років. Попередній досвід програмування не потрібен."
|
||||
who_for_2: "Ми розробили CodeCombat так, щоб він підходив і хлопчикам і дівчаткам."
|
||||
material_title: "Як багато тут матеріалу?"
|
||||
material_premium_server: "Близько 50 годин ігрового процесу, розподіленого більш ніж на 190 рівнів для передплатників."
|
||||
material_1: "Приблизно 25 годин безкоштовного контенту і додаткові 15 годин контенту для передплатників."
|
||||
concepts_title: "Про які концепти ми розповідаємо?"
|
||||
how_much_title: "Скільки коштує місячний абонемент?"
|
||||
how_much_1: ""
|
||||
how_much_2: "Місячний абонемент"
|
||||
how_much_3: "коштує 9.99$, та може бути скасованим будь-коли."
|
||||
how_much_4: "Крім цього, ми надаємо знижки для великих груп:"
|
||||
how_much_5: "Ми надаємо знижку на разові закупівлі та річну передплату для груп, як-от клас або школа. Будь ласка, зв'яжіться з нами"
|
||||
how_much_6: "для отримання більш детальної інформації."
|
||||
who_for_1: "Ми рекомендуємо CodeCombat для учнів старше 9 років. Попередній досвід програмування не потрібен." # {change}
|
||||
who_for_2: "Ми розробили CodeCombat так, щоб він підходив і хлопчикам і дівчаткам." # {change}
|
||||
more_info_title: "Де я можу знайти більше інформації?"
|
||||
more_info_1: "Наш"
|
||||
more_info_2: "вчительський форум"
|
||||
more_info_3: "є гарним місцем для спілкування із колегами-педагогами, котрі використовують CodeCombat."
|
||||
sys_requirements_title: "Системні вимоги"
|
||||
sys_requirements_1: "Сучасний веб-переглядач. Остання версія Chrome, Firefox або Safari. Internet Explorer 9 та вище."
|
||||
sys_requirements_2: "CodeCombat наразі не підтримується на iPad."
|
||||
|
||||
teachers_survey:
|
||||
title: "Анкета вчителя"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
screenshot_included: "Приєднано зняток."
|
||||
where_reply: "Куди ми повинні відповісти?"
|
||||
send: "Надіслати відгук"
|
||||
contact_candidate: "Сконтактуватися з кандидатом" # Deprecated
|
||||
recruitment_reminder: "Використовуйте цю форму, щоб перейти до кандидатів, з котрими Ви б хотіли провести співбесіду. Пам'ятайте, що CodeCombat знімає 18% ЗП за перший рік. Плата проводиться за наймом співробітника і підлягає відшкодуванню протягом 90 днів якщо працівник не залишить роботу. Часткова зайнятість, дистанційна робота та наймані працівники не оплачуються, так само як інтерни." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Налаштування акаунта"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
saved: "Зміни збережено"
|
||||
password_mismatch: "Паролі не збігаються."
|
||||
password_repeat: "Будь ласка, повторіть пароль."
|
||||
job_profile: "Робочий профіль" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "Ваш робочий профіль буде затверджено CodeCombat. Роботодавці зможуть бачити його, якщо він буде відмічений як активний або він не зазнає змін протягом 4 тижнів."
|
||||
job_profile_explanation: "Привіт! Заповніть це і ми зв'яжемось з Вами, знайшовши для Вас роботу розробника ПЗ."
|
||||
sample_profile: "Дивитися зразок профілю"
|
||||
view_profile: "Переглянути Ваш профіль"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Клавіатурні скорочення"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
subs_only: "лише для підписників"
|
||||
create_clan: "Створити новий клан"
|
||||
private_preview: "Прев'ю"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "Публічні клани"
|
||||
my_clans: "Мої клани"
|
||||
clan_name: "Назва клану"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
payments: "Платежі"
|
||||
prepaid_codes: "Передплачені коди"
|
||||
purchased: "Придбано"
|
||||
sale: "Розпродаж"
|
||||
subscription: "Підписка"
|
||||
invoices: "Рахунки"
|
||||
service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
email_settings_url: "налаштування Вашого email"
|
||||
email_description_suffix: "або через посилання в повідомленнях, котрі ми присилаємо, Ви можете змінити свої уподобання і легко відмовитись від підписки в будь-який час."
|
||||
cost_title: "Вартість"
|
||||
cost_description: "На даний час, CodeCombat є безкоштовним на усі 100%! Однією з наших цілей є рухатись у цьому ж напрямку, так що у цю гру можуть грати так багато людей, наскільки це можливо, незалежно від місця проживання. Якщо настануть важкі часи, ми будемо змушені стягувати плату за певний контент, але ми б не хотіли цього. Якщо пощастить, ми зможемо підтримувати компанію разом з:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "Авторські права та ліцензії"
|
||||
contributor_title: "Авторська ліцензійна згода"
|
||||
contributor_description_prefix: "Усі права, як на сайті так і у нашому сховищі GitHub, є у відповідності з нашими"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
nutshell_title: "Коротко"
|
||||
nutshell_description: "Будь-які ресурси, котрі ми надаємо в редакторі рівнів, є безкоштовними для використання за Вашим бажанням для створення рівнів. Але ми залишаємо за собою право обмежувати розповсюдження самих рівнів (котрі були створені на codecombat.com), тому в майбутньому за них може стягуватися плата, якщо в кінцевому результаті таке станеться."
|
||||
canonical: "Англомовна версія цього документа є остаточною та канонічною версією. Якщо є будь-які невідповідності в перекладі, англійська версія документа є пріоритетною."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Нагороди за турнір" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
license: "ліцензія"
|
||||
oreilly: "електронна книга на ваш вибір"
|
||||
|
||||
account_profile:
|
||||
settings: "Налаштування" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "Редагувати профіль"
|
||||
done_editing: "Завершити редагування"
|
||||
profile_for_prefix: "Профіль для "
|
||||
profile_for_suffix: ""
|
||||
featured: "Включає"
|
||||
not_featured: "Не включає"
|
||||
looking_for: "Шукає:"
|
||||
last_updated: "Останнє оновлення:"
|
||||
contact: "Сконтактуватись"
|
||||
active: "Шукаю пропозиції роботи в даний час"
|
||||
inactive: "Не шукаю пропозицій роботи в даний час"
|
||||
complete: "Готово"
|
||||
next: "Далі"
|
||||
next_city: "місто?"
|
||||
next_country: "виберіть вашу країну."
|
||||
next_name: "ім'я?"
|
||||
next_short_description: "напишіть короткий опис."
|
||||
next_long_description: "опишіть бажану позицію."
|
||||
next_skills: "опишіть щонайменше п'ять своїх навичок."
|
||||
next_work: "опишіть ваш досвід роботи."
|
||||
next_education: "розкажіть про вашу освіту."
|
||||
next_projects: "опишіть нам три проекта над якими ви працювали."
|
||||
next_links: "додайте посилання на особисту сторінку або соц. мережі."
|
||||
next_photo: "додайте необов’язкове професійне фото."
|
||||
next_active: "відзначте що Ви у пошуках пропозицій, щобвідображатися у пошуку."
|
||||
example_blog: "Блог"
|
||||
example_personal_site: "Персональний сайт"
|
||||
links_header: "Особисті Посилання"
|
||||
links_blurb: "Посилання на інші сторінки або профілі, які б ви хотіли вказати. Наприклад: аккаунт на GitHub'і, LinkedIn, або ваш блог. "
|
||||
links_name: "Назва посилання"
|
||||
links_name_help: "На що Ви посилаєтесь?"
|
||||
links_link_blurb: "URL посилання"
|
||||
basics_header: "Поновити базову інформацію"
|
||||
basics_active: "У пошуках пропозицій"
|
||||
basics_active_help: "Шукати пропозиціі прямо зараз?"
|
||||
basics_job_title: "Бажана позиція у роботі"
|
||||
basics_job_title_help: "Яку роль Ви шукаєте?"
|
||||
basics_city: "Місто"
|
||||
basics_city_help: "Місто, в якому б Ви хотіли працювати (або зараз проживаєте)."
|
||||
basics_country: "Країна"
|
||||
basics_country_help: "Країна, в якій Ви хотіли б працювати (або зараз живете)."
|
||||
basics_visa: "Робочий статус у США"
|
||||
basics_visa_help: "У Вас є право на роботу у США чи Вам потрібна допомога з отриманням візи? (Якщо проживаєте у Канаді чи Австралії, вкажіть, як перше.)"
|
||||
basics_looking_for: "Шукаю"
|
||||
basics_looking_for_full_time: "Повна"
|
||||
basics_looking_for_part_time: "Часткова"
|
||||
basics_looking_for_remote: "Віддалена"
|
||||
basics_looking_for_contracting: "За контрактом"
|
||||
basics_looking_for_internship: "Стажування"
|
||||
basics_looking_for_help: "Яку посаду розробника Ви б хотіли?"
|
||||
name_header: "Введіть своє ім'я"
|
||||
name_anonymous: "Анонімний розробник"
|
||||
name_help: "Ім'я, яке Ви хочете повідомити своїм роботодавців, напр., 'Nick Winter'."
|
||||
short_description_header: "Коротко розкажіть про себе"
|
||||
short_description_blurb: "Додайте слоган, за яким роботодавець швидко складе уявлення про Вас."
|
||||
short_description: "Слоган"
|
||||
short_description_help: "Хто Ви і чого шукаєте? Макс. 140 символів."
|
||||
skills_header: "Навички"
|
||||
skills_help: "Вкажіть відповідні розробницькі навички за досвідченістю."
|
||||
long_description_header: "Опишіть бажану посаду"
|
||||
long_description_blurb: "Розкажіть роботодавцям, які Ви чудові і яку роль для себе хочете."
|
||||
long_description: "Представлення"
|
||||
long_description_help: "Опишіть себе потенційним роботодавцям. Коротко і по суті. Рекомендуємо підкреслити позицію, яка найбільше Вас цікавить. Допустима доречна розмітка, макс. 600 символів."
|
||||
work_experience: "Досвід роботи"
|
||||
work_header: "Вкажіть хроніку своєї історії роботи"
|
||||
work_years: "Роки досвіду"
|
||||
work_years_help: "Скільки у Вас років досвіду професійної розробки програмного забезпечення (з отриманням платні)?"
|
||||
work_blurb: "Список відповідного досвіду роботи, від най свіжішого."
|
||||
work_employer: "Роботодавець"
|
||||
work_employer_help: "Ім'я Вашого роботодавця."
|
||||
work_role: "Назва посади"
|
||||
work_role_help: "Як називалась Ваша посада чи роль?"
|
||||
work_duration: "Тривалість"
|
||||
work_duration_help: "Як довго ви працювали на цій посаді?"
|
||||
work_description: "Опис"
|
||||
work_description_help: "Що Ви там робили? (140 символів; необов'язково)"
|
||||
education: "Освіта"
|
||||
education_header: "Вкажіть вашу освіту"
|
||||
education_blurb: "Перелік ваших навчальних випробувань"
|
||||
education_school: "Школа"
|
||||
education_school_help: "Найменування навчального закладу."
|
||||
education_degree: "Ступінь"
|
||||
education_degree_help: "Яка ваша ступінь і область дослідження?"
|
||||
education_duration: "Дати"
|
||||
education_duration_help: "Коли?"
|
||||
education_description: "Опис"
|
||||
education_description_help: "Виділіть що-небудь з цього навчального досвіду. (140 символів; опціонально)"
|
||||
our_notes: "Наші примітки"
|
||||
remarks: "Примітки"
|
||||
projects: "Роботи"
|
||||
projects_header: "Додайте 3 проекти"
|
||||
projects_header_2: "Проекти (3 найкращих)"
|
||||
projects_blurb: "Вкажіть ваші проекти, щоб вразити роботодавців."
|
||||
project_name: "Назва проекту"
|
||||
project_name_help: "Яка у проекта була назва?"
|
||||
project_description: "Опис"
|
||||
project_description_help: "Коротко опишіть проект."
|
||||
project_picture: "Зображення"
|
||||
project_picture_help: "Завантажте зображення розміром 230x115 пікселів або більше, що демонструє проект."
|
||||
project_link: "Посилання"
|
||||
project_link_help: "Посилання на проект."
|
||||
player_code: "Код гравця"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "Вибачте, зараз CodeCombat не пропонує роботу."
|
||||
deprecation_warning: "Наразі ми зосередилися на рівнях для новачків замість пошуків розробників-експертів."
|
||||
hire_developers_not_credentials: "Наймаємо розробників, а не рекомендаційні листи." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Почнемо"
|
||||
already_screened: "Ми вже технічно просіяли всіх наших кандидатів"
|
||||
filter_further: ", але ви можете профільтрувати далі:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "Дозвіл на роботу в США"
|
||||
filter_visa_no: "Немає дозволу на роботу"
|
||||
filter_education_top: "Вища освіта"
|
||||
filter_education_other: "Інше"
|
||||
filter_role_web_developer: "веб-розробник"
|
||||
filter_role_software_developer: "розробник програм"
|
||||
filter_role_mobile_developer: "розробник додатків для мобільних"
|
||||
filter_experience: "Досвід"
|
||||
filter_experience_senior: "Досвідчений (Senior)"
|
||||
filter_experience_junior: "Початківець (Junior)"
|
||||
filter_experience_recent_grad: "Випускник"
|
||||
filter_experience_student: "Студент коледжу"
|
||||
filter_results: "результати"
|
||||
start_hiring: "Почати найм."
|
||||
reasons: "Три причини, чому ви повинні шукати працівників через нас:"
|
||||
everyone_looking: "Всі тут шукають їх наступну можливість."
|
||||
everyone_looking_blurb: "Забудьте про 20% рейтинг відгуків через LinkedIn InMail. Кожен в нашому списку хоче знайти своє наступне місце роботи і відповість на ваше запрошення на інтерв'ю."
|
||||
weeding: "Розслабтеся; ми відібрали їх для вас."
|
||||
weeding_blurb: "Кожен гравець у списку був переглянутий на предмет технічних здібностей. Ми так само ведемо телефонні переговори за обраними кандидатам і робимо позначки в їх профілях, щоб заощадити ваш час."
|
||||
pass_screen: "Вони пройдуть ваш технічний відбір."
|
||||
pass_screen_blurb: "Перегляньте код кожного кандидата перед прийняттям рішення. Один роботодавець зауважив, що кількість наших розробників, що пройшли їх технічний відбір, в 5 разів перевищувало число набраних через Hacker News."
|
||||
make_hiring_easier: "Зробіть наймання співробітників простіше, будь ласка."
|
||||
what: "Що таке CodeCombat?"
|
||||
what_blurb: "CodeCombat - це багатокористувальницька браузерна гра про програмування. Гравці пишуть код, щоб контролювати свої війська у битвах проти інших розробників. Наші гравці мають досвід у всіх основних технічних областях."
|
||||
cost: "Як багато ми просимо натомість?"
|
||||
cost_blurb: "Ми просимо 15% оплати за перший рік роботи і пропонуємо 100% гарантію повернення грошей на протязі 90 днів. Ми не стягуємо плати за кандидатів, які вже були активно проінтерв'ювали у вашій компанії."
|
||||
candidate_name: "Ім'я"
|
||||
candidate_location: "Розташування"
|
||||
candidate_looking_for: "Шукає"
|
||||
candidate_role: "Роль"
|
||||
candidate_top_skills: "Найкращі навички"
|
||||
candidate_years_experience: "років досвіду"
|
||||
candidate_last_updated: "Останнє оновлення"
|
||||
candidate_who: "Хто"
|
||||
featured_developers: "Рекомендовані розробники"
|
||||
other_developers: "Інші розробники"
|
||||
inactive_developers: "Неактивні розробники"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "Користвач або email"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
|||
av_entities_sub_title: "Організації"
|
||||
av_entities_users_url: "Учасники"
|
||||
av_entities_active_instances_url: "Активні вимоги"
|
||||
av_entities_employer_list_url: "Список робітників"
|
||||
av_entities_candidates_list_url: "Список кандидатів"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "Інші"
|
||||
av_other_debug_base_url: "Основне (для налагодження base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "اُردُو", englishDescription: "Urdu",
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "O'zbekcha", englishDescription: "Uzbek", tr
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
multiplayer: "Nhiều người chơi" # Not currently shown on home page
|
||||
for_developers: "Dành cho nhà phát triển" # Not currently shown on home page.
|
||||
or_ipad: "Hoặc tải phiên bản dành cho iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "Chơi" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
creating: "Tạo tài khoản..."
|
||||
sign_up: "Đăng ký"
|
||||
log_in: "đăng nhập với mật khẩu"
|
||||
social_signup: "Hoặc bạn có thể đăng kí qua Facebook hoặc G+:"
|
||||
required: "Bạn cần phải đăng nhập trước khi đi bạn có thể đi hướng đó."
|
||||
login_switch: "Bạn đã có tài khoản rồi ?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
incomplete: "Chưa hoàn thành"
|
||||
timed_out: "Hết giờ"
|
||||
failing: "Đang thua"
|
||||
# action_timeline: "Action Timeline"
|
||||
click_to_select: "Kích vào mục tiêu để chọn nó."
|
||||
control_bar_multiplayer: "Nhiều người chơi"
|
||||
control_bar_join_game: "Tham gia"
|
||||
reload: "Tải lại"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
parents_title: "Con của bạn sẽ học cách viết code (lập trình)." # {change}
|
||||
parents_blurb1: "Với CodeCombat, con của bạn sẽ có thể học lập trình bằng việc viết những dòng code thật sự. Con bạn sẽ bắt đầu bằng việc học những lệnh cơ bản, và sau đó sẽ từ từ tìm hiểu về các vấn đề phức tạp hơn."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
parents_blurb2: "Chỉ với $9.99 USD một tháng, con của bạn sẽ nhận được những thử thách mới mỗi tháng và sẽ nhận được sự hỗ trợ từ các lập trình viên chuyên nghiệp qua email." # {change}
|
||||
parents_blurb2: "Chỉ với ${{price}} USD một tháng, con của bạn sẽ nhận được những thử thách mới mỗi tháng và sẽ nhận được sự hỗ trợ từ các lập trình viên chuyên nghiệp qua email." # {change}
|
||||
parents_blurb3: "Không hề có rủi ro: Nếu bạn không hài lòng bạn có thể nhận lại 100% số tiền mình bỏ ra chỉ với 1 cú nhấp chuốt."
|
||||
payment_methods: "Những phương thức thanh toán"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
who_for_title: "CodeCombat dành cho ai ?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
sys_requirements_2: "Hãy sử dụng phiên bản mới nhất của Chrome hoặc Firefox." # {change}
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "Gởi phản hồi"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "Cài đặt Tài khoản"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
saved: "Thay đổi được lưu"
|
||||
password_mismatch: "Mật khẩu không khớp."
|
||||
password_repeat: "Hãy nhập lại mật khẩu của bạn một lần nữa."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "Các phím tắt"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# subs_only: "subscribers only"
|
||||
create_clan: "Tạo một clan mới"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "Các giải thưởng của cuộc thi" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
done_editing: "Đã chỉnh sửa xong"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
contact: "Liên lạc"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
complete: "Hoàn tất"
|
||||
next: "Tiếp"
|
||||
next_city: "Thành phố?"
|
||||
next_country: "Chọn đất nước của bạn."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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: "Trang cá nhân"
|
||||
links_header: "Đường truyền cá nhân"
|
||||
# links_blurb: "Link any other sites or profiles you want to highlight, like your GitHub, your LinkedIn, or your blog."
|
||||
links_name: "Tên đường truyền"
|
||||
# links_name_help: "What are you linking to?"
|
||||
# links_link_blurb: "Link URL"
|
||||
# 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: "Thành phố"
|
||||
# basics_city_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_contracting: "Contracting"
|
||||
basics_looking_for_internship: "Thực tập"
|
||||
# basics_looking_for_help: "What kind of developer position do you want?"
|
||||
name_header: "Điền tên của bạn"
|
||||
# name_anonymous: "Anonymous Developer"
|
||||
# name_help: "Name you want employers to see, like 'Nick Winter'."
|
||||
short_description_header: "Hãy viết một bản giới thiệu ngắn gọn về bạn"
|
||||
# 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: "Những kĩ năng"
|
||||
# skills_help: "Tag relevant developer skills in order of proficiency."
|
||||
long_description_header: "Mô tả công việc mà bạn muốn làm"
|
||||
# long_description_blurb: "Tell employers how awesome you are and what role you want."
|
||||
# long_description: "Self Description"
|
||||
# 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: "Kinh Nghiệm làm việc"
|
||||
# work_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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: "Nghề nghiệp"
|
||||
# work_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "Trình độ học vấn"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
education_school: "Trường"
|
||||
# education_school_help: "Name of your school."
|
||||
education_degree: "Bằng cấp"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
education_duration: "Ngày"
|
||||
education_duration_help: "Khi nào?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
project_description: "Mô tả"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
project_picture: "Hình Ảnh"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "Bắt Đầu"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# filter_education_top: "Top School"
|
||||
filter_education_other: "Khác"
|
||||
filter_role_web_developer: "Nhà phát triển web"
|
||||
filter_role_software_developer: "Nhà phát triển phần mềm"
|
||||
filter_role_mobile_developer: "Nhà phát triển phần ứng dụng di động"
|
||||
filter_experience: "Kinh Nghiệm"
|
||||
# filter_experience_senior: "Senior"
|
||||
# filter_experience_junior: "Junior"
|
||||
# filter_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
what: "CodeCombat là gì?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "Tên"
|
||||
candidate_location: "Địa điểm"
|
||||
candidate_looking_for: "Đang tìm kiếm"
|
||||
candidate_role: "Vai trò"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
candidate_years_experience: "Năm kinh nghiệm"
|
||||
candidate_last_updated: "Lần cuối cập nhật"
|
||||
candidate_who: "Người nào"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "Tiếng Việt", englishDescription: "Vietn
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
multiplayer: "多人游戏" # Not currently shown on home page
|
||||
for_developers: "适合开发者" # Not currently shown on home page.
|
||||
or_ipad: "或下载iPad版本"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "关卡选择" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
creating: "账户创建中……"
|
||||
sign_up: "注册"
|
||||
log_in: "登录"
|
||||
social_signup: "或者,您可以通过Facebook或Google+注册:"
|
||||
required: "在做这件事情之前您必须先注册。"
|
||||
login_switch: "已经注册过账户?"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "就读学校及所在城市"
|
||||
optional: "选填"
|
||||
school_name_placeholder: "范例: XX中学, 上海"
|
||||
|
||||
recover:
|
||||
recover_account_title: "找回账户"
|
||||
|
@ -225,10 +221,10 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
years: "年"
|
||||
|
||||
play_level:
|
||||
# completed_level: "Completed Level:"
|
||||
# course: "Course:"
|
||||
completed_level: "完成关卡:"
|
||||
course: "课程:"
|
||||
done: "完成"
|
||||
# next_level: "Next Level:"
|
||||
next_level: "下一个关卡:"
|
||||
next_game: "下一场游戏"
|
||||
show_menu: "显示游戏菜单"
|
||||
home: "主页" # Not used any more, will be removed soon.
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
incomplete: "未完成"
|
||||
timed_out: "运行超时"
|
||||
failing: "失败"
|
||||
action_timeline: "行动时间轴"
|
||||
click_to_select: "点击选择一个单元。"
|
||||
control_bar_multiplayer: "多人游戏"
|
||||
control_bar_join_game: "加入游戏"
|
||||
reload: "重载"
|
||||
|
@ -348,7 +342,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
tip_free_your_mind: "丢掉一切私心杂念,丢掉害怕、疑问和拒信,解放您的思想。 - Morpheus《黑客帝国》"
|
||||
tip_strong_opponents: "即使是最强大的对手也是有弱点的。- 宇智波鼬《火影忍者》"
|
||||
tip_paper_and_pen: "在您开始编程之前,您可以随时用一张纸和一支笔提前规划。"
|
||||
# tip_solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
tip_solve_then_write: "要先想清楚问题如何解决, 再进行编码的动作. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "道具箱"
|
||||
|
@ -409,7 +403,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
comparison_blurb: "亲,订阅CodeCombat,大力的提升您的技能!"
|
||||
feature1: "110+ 基本关卡(4个世界)"
|
||||
feature2: "10 个强大 <strong>英雄</strong>以及各式非凡技能!"
|
||||
feature3: "70+ 奖励关卡" # {change}
|
||||
feature3: "80+ 奖励关卡"
|
||||
feature4: "每月享有3500额外宝石"
|
||||
feature5: "视频教学"
|
||||
feature6: "专业邮件支援"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
parents_title: "亲爱的家长: 您的孩子将要学习编程。您会支持孩子发展吗?"
|
||||
parents_blurb1: "您的孩子已经玩了 __nLevels__ 关,并且学习了编程基础。请您为了培养他们的兴趣而给他们订阅,他们能继续玩下去。"
|
||||
parents_blurb1a: "不用怀疑计算机编程能力将是您的孩子作为一个成年人的基本技能。到2020年,77%的工作将会需要编码能力,并且软件工程师将在世界各地成为高需求职业。您要知道计算机科学是收入最高的大学学位。"
|
||||
parents_blurb2: "每月支付9.99美元,他们每周都会有新的挑战,并且通过电子邮件获得专业程序员的指导。"
|
||||
parents_blurb2: "每月支付{{price}}美元,他们每周都会有新的挑战,并且通过电子邮件获得专业程序员的指导。"
|
||||
parents_blurb3: "无风险承诺:100%退款,一键取消订阅。"
|
||||
payment_methods: "付费方式"
|
||||
payment_methods_title: "可接受的付款方式"
|
||||
payment_methods_blurb1: "我们现有的付费方式有信用卡和支付宝" # {change}
|
||||
payment_methods_blurb2: "如果您想用其他付费方式,请联系我们"
|
||||
sale_already_subscribed: "您已经订阅!"
|
||||
sale_blurb1: "和正常一年的订阅价格 $120 相比" # {change}
|
||||
sale_blurb2: "年费订阅能节省 $21!"
|
||||
sale_button: "促销"
|
||||
sale_button_title: "年费订阅能节省 $21 的费用" # {change}
|
||||
sale_click_here: "点击这里"
|
||||
sale_ends: "结束"
|
||||
sale_extended: "*已订阅用户会续期一年。"
|
||||
sale_feature_here: "你将会获得这些:"
|
||||
sale_feature2: "可以使用 10 个强大的 <strong>新英雄</strong> 和各种技能!"
|
||||
sale_feature4: "立即取得 <strong>42,000 个额外的宝石</strong>!"
|
||||
sale_continue: "准备好继续探险吗?"
|
||||
sale_limited_time: "限时优惠!"
|
||||
sale_new_heroes: "新英雄!"
|
||||
sale_title: "开学促销"
|
||||
sale_view_button: "购买年费订阅:"
|
||||
sale_button_title: "年费订阅能节省 ${{discount}} 的费用"
|
||||
stripe_description: "每月订阅"
|
||||
stripe_description_year_sale: "年费订阅 (优惠 $21)" # {change}
|
||||
stripe_description_year_sale: "年费订阅 (优惠 ${{discount}})" # {change}
|
||||
subscription_required_to_play: "订阅后才可开始本关"
|
||||
unlock_help_videos: "订阅后才可以解锁视频教学哦!"
|
||||
personal_sub: "个人订阅" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
currently_free_until: "您目前有一个订阅,直到"
|
||||
was_free_until: "您有过一个免费订阅,直到"
|
||||
managed_subs: "管理订阅"
|
||||
managed_subs_desc: "为其他玩家(学生、儿童等)添加订阅。"
|
||||
managed_subs_desc_2: "收件人必须有一个与您提供的电子邮件地址相关联的CodeCombat帐户。"
|
||||
group_discounts: "团购价"
|
||||
group_discounts_1: "我们还为批量订阅提供团购价"
|
||||
group_discounts_1st: "1个订阅"
|
||||
group_discounts_full: "全价"
|
||||
group_discounts_2nd: "2-11个订阅"
|
||||
group_discounts_20: "八折"
|
||||
group_discounts_12th: "12+个订阅"
|
||||
group_discounts_40: "六折"
|
||||
subscribing: "订阅中..."
|
||||
recipient_emails_placeholder: "请输入电子邮件地址来订阅,每行一个。"
|
||||
subscribe_users: "订阅用户"
|
||||
users_subscribed: "用户订阅:"
|
||||
no_users_subscribed: "没有用户订阅,请仔细检查您的电子邮件地址。"
|
||||
current_recipients: "当前收件人"
|
||||
unsubscribing: "取消订阅中..." # {change}
|
||||
subscribe_prepaid: "点击订阅来使用预付费代码"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
josh_c_blurb: "设计游戏"
|
||||
carlos_title: "地区经理, 巴西"
|
||||
carlos_blurb: "食草男"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "教师的说明"
|
||||
intro_1: "CodeCombat 是一个教编程的网上游戏。学生会用编程语言写代码。"
|
||||
intro_2: "无需经验!"
|
||||
free_title: "要多少钱?"
|
||||
cost_premium_server: "CodeCombat的前5个关卡是免费的,在这之后需花费每月9.99美元来访问我们架设专属服务器上的190多个关卡。"
|
||||
free_1: "有110多个覆盖了所有理论的免费关卡。"
|
||||
free_2: "包月订阅可以访问视频教程和额外的练习关卡。"
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "教师可免费订阅!" # {change}
|
||||
teacher_subs_0: "我们可为教师提供用于评估的免费订阅。" # {change}
|
||||
teacher_subs_1: "请填写我们的"
|
||||
teacher_subs_2: "教师调查"
|
||||
teacher_subs_3: "建立您的订阅。" # {change}
|
||||
sub_includes_title: "订阅里包含了什么内容?"
|
||||
sub_includes_1: "除了110+个基础关卡,学生包月订阅还可以使用这些附加功能:"
|
||||
sub_includes_2: "超过70个练习关卡" # {change}
|
||||
sub_includes_3: "视频教学"
|
||||
sub_includes_4: "优质的电子邮件支持"
|
||||
sub_includes_5: "10个具有独特技能的新英雄"
|
||||
sub_includes_6: "每月享有3500额外宝石"
|
||||
sub_includes_7: "私人部落"
|
||||
monitor_progress_title: "我要如何查看学生的进度?"
|
||||
monitor_progress_1: "要查看学生的进度,可以通过建立一个"
|
||||
monitor_progress_2: "在您的课程。"
|
||||
monitor_progress_3: "为了添加一个学生,可以给他们发送一个您的部落的邀请链接,这个在"
|
||||
monitor_progress_4: "页面。"
|
||||
monitor_progress_5: "当他们加入之后,您可以在您的部落页面看到这些学生的进度汇总。"
|
||||
private_clans_1: "私人部落为每个学生增加了隐私和详细的进度信息。"
|
||||
private_clans_2: "为了添加一个私人部落,可以勾选'私人部落'选择框,在您建立一个"
|
||||
private_clans_3: "。"
|
||||
who_for_title: "谁是CodeCombat的使用对象呢?"
|
||||
who_for_1: "我们建议让9岁及以上的学生使用CodeCombat。无需任何编程经验。"
|
||||
who_for_2: "我们设计CodeCombat来吸引男生女生。"
|
||||
material_title: "这里有多少素材呢?"
|
||||
material_premium_server: "约40小时的游戏时间和目前为止超过170个的订阅关卡。" # {change}
|
||||
material_1: "大约25个小时的免费内容和额外的15个小时的订阅内容。"
|
||||
concepts_title: "包括了哪些理论知识?"
|
||||
how_much_title: "每月的订阅费用是多少?"
|
||||
how_much_1: ""
|
||||
how_much_2: "每月订阅"
|
||||
how_much_3: "每月9.99美元,并可随时取消订阅。"
|
||||
how_much_4: "另外,团体购买者将享受折扣优惠:"
|
||||
how_much_5: "我们接受一次性的打折购买以及每年订阅的团体,比如班级或者学校。请联系"
|
||||
how_much_6: "来获取详情。"
|
||||
who_for_1: "我们建议让9岁及以上的学生使用CodeCombat。无需任何编程经验。" # {change}
|
||||
who_for_2: "我们设计CodeCombat来吸引男生女生。" # {change}
|
||||
more_info_title: "我可以在哪里找到更多信息?"
|
||||
more_info_1: "我们的"
|
||||
more_info_2: "教师论坛"
|
||||
more_info_3: "是个与其他使用CodeCombat的教育工作者联系的良好平台。"
|
||||
sys_requirements_title: "系统需求"
|
||||
sys_requirements_1: "一个现代的浏览器。需要更新的 Chrome, Firefox, Safari 或者 Internet Explorer 9 以上版本。"
|
||||
sys_requirements_2: "CodeCombat 暂时还不支持 iPad 。"
|
||||
|
||||
teachers_survey:
|
||||
title: "教师调查"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
screenshot_included: "包含截屏"
|
||||
where_reply: "我们应该回复谁?"
|
||||
send: "反馈意见"
|
||||
contact_candidate: "联系参选人" # Deprecated
|
||||
recruitment_reminder: "用这张表格来联系您希望面试的求职者。但请记住如果您雇佣了他,CodeCombat会收取这位员工第一年工资的15%作为佣金。佣金需在雇佣此员工时就付清并且在之后的90天内如果此员工离职会100%退款。兼职,远程办公员工,合同工以及实习生都可免除此费用。" # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "账户设置"
|
||||
|
@ -743,7 +662,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
password_tab: "密码"
|
||||
emails_tab: "邮件"
|
||||
admin: "管理"
|
||||
# manage_subscription: "Click here to manage your subscription."
|
||||
manage_subscription: "点此管理您的订阅"
|
||||
new_password: "新密码"
|
||||
new_password_verify: "再次输入密码"
|
||||
type_in_email: "输入您的邮箱地址"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
saved: "更改已保存"
|
||||
password_mismatch: "密码不匹配。"
|
||||
password_repeat: "请重新键入密码。"
|
||||
job_profile: "工作经历" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "您填写的工作经历将由CodeCombat认证。 雇主将看到这些信息,除非您将它设置为不启用状态或者连续四周没有更新。"
|
||||
job_profile_explanation: "您好! 请填写下列信息, 我们将使用它帮您寻找一份软件开发的工作。"
|
||||
sample_profile: "查看示例"
|
||||
view_profile: "浏览个人信息"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "快捷键"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
subs_only: "只限订阅"
|
||||
create_clan: "创建新的部落"
|
||||
private_preview: "预览"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "公开部落"
|
||||
my_clans: "我的部落"
|
||||
clan_name: "部落名字"
|
||||
|
@ -855,7 +770,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
started_2: "已开始"
|
||||
not_started_2: "还没开始"
|
||||
view_solution: "点击查阅答案。"
|
||||
# view_attempt: "Click to view attempt."
|
||||
view_attempt: "点击查阅解题的尝试"
|
||||
latest_achievement: "最新成就"
|
||||
playtime: "游戏时间"
|
||||
last_played: "最后玩了"
|
||||
|
@ -877,7 +792,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
courses:
|
||||
course: "课程"
|
||||
courses: "课程"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "建立新的课堂"
|
||||
not_enrolled: "您还没有报名参加本课程。"
|
||||
visit_pref: "请到这个"
|
||||
visit_suf: "网页注册。"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
payments: "支付方式"
|
||||
prepaid_codes: "预付费码"
|
||||
purchased: "已购买"
|
||||
sale: "促销"
|
||||
subscription: "订阅"
|
||||
invoices: "票据"
|
||||
service_apple: "设备:苹果"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
email_settings_url: "您的电子邮件设置"
|
||||
email_description_suffix: "或者我们发送的邮件中的链接,您可以随时更改您的偏好设置或者随时取消订阅。"
|
||||
cost_title: "花费"
|
||||
cost_description: "目前来说,CodeCombat是完全免费的!我们的主要目标之一也是保持目前这种方式,让尽可能多的人玩得更好,不论是否是生活中。如果情况糟糕,我们可能会对某些内容采取订阅收费,但我们宁愿不那么做。运气好的话,我们可以维持公司,通过:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "版权与许可"
|
||||
contributor_title: "贡献者许可协议"
|
||||
contributor_description_prefix: "所有对本网站或是GitHub代码库的贡献都依照我们的"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
nutshell_title: "简而言之"
|
||||
nutshell_description: "我们在关卡编辑器里公开的任何资源,您都可以在制作关卡时随意使用,但我们保留限制在CodeCombat.com 之上创建的关卡本身传播的权利,因为我们以后可能决定为它们收费。"
|
||||
canonical: "这篇说明的英文版本是权威版本。如果各个翻译版本之间有任何冲突,请以英文版为准。"
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "竞标赛奖项" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
license: "许可证"
|
||||
oreilly: "您选择的电子书"
|
||||
|
||||
account_profile:
|
||||
settings: "设置" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "编辑资料"
|
||||
done_editing: "完成编辑"
|
||||
profile_for_prefix: "关于他的基本资料:"
|
||||
profile_for_suffix: ""
|
||||
featured: "被推荐"
|
||||
not_featured: "未入选"
|
||||
looking_for: "寻找"
|
||||
last_updated: "最后一次更新:"
|
||||
contact: "联系"
|
||||
active: "正在寻求面试机会"
|
||||
inactive: "目前没有在寻找新的工作机会"
|
||||
complete: "完成"
|
||||
next: "下一步"
|
||||
next_city: "城市?"
|
||||
next_country: "选择您所处的国家"
|
||||
next_name: "名字?"
|
||||
next_short_description: "简短描述您自己。"
|
||||
next_long_description: "描述一下您希望找到何种工作。"
|
||||
next_skills: "列出至少五个技能。"
|
||||
next_work: "您的过往工作经验"
|
||||
next_education: "教育经历"
|
||||
next_projects: "展示您曾经参与过的至多3个项目。"
|
||||
next_links: "添加任何个人网站或社交媒体链接。"
|
||||
next_photo: "添加一张职业的照片(可选)。"
|
||||
next_active: "将自己标记为正在寻求工作机会以使自己的名字出现在搜索结果中。"
|
||||
example_blog: "您的博客"
|
||||
example_personal_site: "个人主页"
|
||||
links_header: "个人网站链接"
|
||||
links_blurb: "链接任何您希望展示的网站或介绍,例如您的Github,您的LinkedIn,或是您的博客。"
|
||||
links_name: "链接名称"
|
||||
links_name_help: "您希望链接到什么?"
|
||||
links_link_blurb: "链接的URL"
|
||||
basics_header: "更新基本信息"
|
||||
basics_active: "接受工作邀请"
|
||||
basics_active_help: "希望现在就接到面试邀请?"
|
||||
basics_job_title: "期望职位"
|
||||
basics_job_title_help: "您希望在工作中扮演何种角色?"
|
||||
basics_city: "城市"
|
||||
basics_city_help: "您希望在哪座城市工作(或现在居住在哪座城市)。"
|
||||
basics_country: "国家"
|
||||
basics_country_help: "您希望在哪个国家工作(或现在居住在哪个国家)。"
|
||||
basics_visa: "美国工作签证状态"
|
||||
basics_visa_help: "您是否有权在美国合法地工作,或者您是否需要公司资助办理美国工作签证?"
|
||||
basics_looking_for: "寻找"
|
||||
basics_looking_for_full_time: "全职"
|
||||
basics_looking_for_part_time: "兼职"
|
||||
basics_looking_for_remote: "远程工作"
|
||||
basics_looking_for_contracting: "合同制工作"
|
||||
basics_looking_for_internship: "实习"
|
||||
basics_looking_for_help: "您希望找到哪种开发者职位?"
|
||||
name_header: "请填写您的姓名"
|
||||
name_anonymous: "匿名开发者"
|
||||
name_help: "您希望雇主看到的名字,例如‘Nick Winter'。"
|
||||
short_description_header: "写一段简短的自我介绍"
|
||||
short_description_blurb: "在此添加一段简介让雇主一眼就发现您是否是他们正在寻找的开发者。"
|
||||
short_description: "简短介绍"
|
||||
short_description_help: "您是谁,您在寻求什么?请勿超过140个字符。"
|
||||
skills_header: "技能"
|
||||
skills_help: "按照熟练程度列出您所掌握的与开发有关的技能。"
|
||||
long_description_header: "详细描述您所期望的职位"
|
||||
long_description_blurb: "告诉我们您的优点与您感兴趣的职位"
|
||||
long_description: "描述"
|
||||
long_description_help: "向潜在的雇主描述您自己。尽量简明扼要。我们建议您列出您最感兴趣的职位。请勿超过600个字符。"
|
||||
work_experience: "工作经验"
|
||||
work_header: "按时间顺序列出您的工作经历"
|
||||
work_years: "工作年限"
|
||||
work_years_help: "您有多少年职业的(有正常收入)软件开发经验?"
|
||||
work_blurb: "列出相关的工作经验,从最近的开始。"
|
||||
work_employer: "雇主"
|
||||
work_employer_help: "您雇主的名字。"
|
||||
work_role: "职称"
|
||||
work_role_help: "您的职称是什么或者说您扮演何种角色?"
|
||||
work_duration: "起止时间"
|
||||
work_duration_help: "您在什么时间段在职?"
|
||||
work_description: "描述"
|
||||
work_description_help: "您在那里主要的工作是什么?(140个字符;选填)"
|
||||
education: "教育程度"
|
||||
education_header: "列出您的教育经历。"
|
||||
education_blurb: "列出您在校学习的经历。"
|
||||
education_school: "学校"
|
||||
education_school_help: "您就读的学校的名字。"
|
||||
education_degree: "学位"
|
||||
education_degree_help: "您的学位以及您学习的方向是什么?"
|
||||
education_duration: "时间"
|
||||
education_duration_help: "什么时候?"
|
||||
education_description: "描述"
|
||||
education_description_help: "说说任何与您的教育经历相关的东西。(140个字符;选填)"
|
||||
our_notes: "CodeCombat的评注"
|
||||
remarks: "评价"
|
||||
projects: "项目"
|
||||
projects_header: "添加3个项目"
|
||||
projects_header_2: "项目(前3个)"
|
||||
projects_blurb: "展示您所参加的可以让雇主感到惊叹的项目。"
|
||||
project_name: "项目名称"
|
||||
project_name_help: "项目被称作什么?"
|
||||
project_description: "描述"
|
||||
project_description_help: "简短的介绍一下这个项目。"
|
||||
project_picture: "图片"
|
||||
project_picture_help: "上传一张230x115像素或更大的图片来展示这个项目。"
|
||||
project_link: "链接"
|
||||
project_link_help: "项目的链接。"
|
||||
player_code: "玩家代码"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "抱歉,CodeCombat现不招聘雇员。"
|
||||
deprecation_warning: "我们现在只专注在初学者等级的开发,暂时还不需要雇用天才级开发人员。"
|
||||
hire_developers_not_credentials: "我们只招聘开发人员,不招聘证书。" # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "入门"
|
||||
already_screened: "我们已经筛选过所有应征者了"
|
||||
filter_further: ", 但是您也可以进一步筛选:"
|
||||
filter_visa: "Visa"
|
||||
filter_visa_yes: "US认证"
|
||||
filter_visa_no: "未认证"
|
||||
filter_education_top: "顶尖学校"
|
||||
filter_education_other: "其他"
|
||||
filter_role_web_developer: "网页开发者"
|
||||
filter_role_software_developer: "软件开发者"
|
||||
filter_role_mobile_developer: "移动开发者"
|
||||
filter_experience: "经验"
|
||||
filter_experience_senior: "上级"
|
||||
filter_experience_junior: "初级"
|
||||
filter_experience_recent_grad: "刚毕业"
|
||||
filter_experience_student: "学院生"
|
||||
filter_results: "成绩"
|
||||
start_hiring: "开始招聘。"
|
||||
reasons: "三个您该通过我们招聘的理由:"
|
||||
everyone_looking: "每一个来这里的人是为了找寻他们的下一个机会。"
|
||||
everyone_looking_blurb: "忘了那20%的LinkedIn InMain回复率。每一个被我们列入这个站点的人希望找到他们的下一个位置以及将会回应您要求自我介绍的请求。"
|
||||
weeding: "坐下吧!我们已经为您将不必要的都去除了。"
|
||||
weeding_blurb: "每一位被我们列举的玩家都已经通过筛选,他们都有非凡的技能。我们也通过电话进行筛选以选择应征者及记下他们的资料来节省您的时间。"
|
||||
pass_screen: "他们一定会通过您的技术能力测试的!"
|
||||
pass_screen_blurb: "看过他们的代码后才做出决定。有个雇主发现比起直接从Hacker News招聘,更多应征者通过他的技术能力测试。"
|
||||
make_hiring_easier: "请让我的招聘变得容易。"
|
||||
what: "什么是CodeCombat?"
|
||||
what_blurb: "CodeCombat是一个多人浏览器编程游戏。玩家编写代码控制他们的力量来跟其他开发人员战斗。我们的玩家有技术上的各个经验。"
|
||||
cost: "我们的收费多少?"
|
||||
cost_blurb: "我们只收取第一年薪资的15%并在前90天提供100%退款保障。我们不对那些已经参与贵公司面试的应征者收费。"
|
||||
candidate_name: "姓名"
|
||||
candidate_location: "地点"
|
||||
candidate_looking_for: "寻找"
|
||||
candidate_role: "角色"
|
||||
candidate_top_skills: "高级技能"
|
||||
candidate_years_experience: "多年工作经验"
|
||||
candidate_last_updated: "最后一次更新"
|
||||
candidate_who: "谁?"
|
||||
featured_developers: "主要开发者"
|
||||
other_developers: "其他开发者"
|
||||
inactive_developers: "不活跃的开发者"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "邮箱或用户名"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "简体中文", englishDescription: "Chinese
|
|||
av_entities_sub_title: "实体"
|
||||
av_entities_users_url: "用户"
|
||||
av_entities_active_instances_url: "活动实例"
|
||||
av_entities_employer_list_url: "雇主列表"
|
||||
av_entities_candidates_list_url: "应征者列表"
|
||||
av_entities_user_code_problems_list_url: "用户代码问题列表"
|
||||
av_other_sub_title: "其他"
|
||||
av_other_debug_base_url: "Base(用于调试 base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
multiplayer: "多人連線" # Not currently shown on home page
|
||||
for_developers: "開發者專區" # Not currently shown on home page.
|
||||
or_ipad: "或下載 iPad 版"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "返回地圖" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,12 +112,11 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
creating: "帳號建立中..."
|
||||
sign_up: "註冊"
|
||||
log_in: "登入"
|
||||
social_signup: "您也可以使用G+或Facebook帳號註冊:"
|
||||
required: "在這麼做之前必須先登入。"
|
||||
login_switch: "已經有申請帳號了嗎?"
|
||||
# school_name: "School Name and City"
|
||||
# optional: "optional"
|
||||
# school_name_placeholder: "Example High School, Springfield, IL"
|
||||
school_name: "就讀學校及所在城市"
|
||||
optional: "選填"
|
||||
school_name_placeholder: "範例: XX中學, 台北"
|
||||
|
||||
recover:
|
||||
recover_account_title: "復原帳號"
|
||||
|
@ -225,10 +221,10 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
years: "年"
|
||||
|
||||
play_level:
|
||||
# completed_level: "Completed Level:"
|
||||
# course: "Course:"
|
||||
completed_level: "完成關卡:"
|
||||
course: "課程:"
|
||||
done: "完成"
|
||||
# next_level: "Next Level:"
|
||||
next_level: "下一個關卡:"
|
||||
next_game: "下一個遊戲"
|
||||
show_menu: "顯示遊戲菜單"
|
||||
home: "首頁" # Not used any more, will be removed soon.
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
incomplete: "未完成"
|
||||
timed_out: "時間用盡"
|
||||
failing: "失敗"
|
||||
action_timeline: "行動時間軸"
|
||||
click_to_select: "點擊選擇一個單元。"
|
||||
control_bar_multiplayer: "多人遊戲"
|
||||
control_bar_join_game: "加入遊戲"
|
||||
reload: "重新載入"
|
||||
|
@ -348,7 +342,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
tip_free_your_mind: "放下一切私心雜念,丟棄害怕、疑問和拒信,解放您的思維。 - 莫菲斯《駭客任務》"
|
||||
tip_strong_opponents: "即使是最强大的對手也有弱点的。 - 宇智波鼬《火影忍者》"
|
||||
tip_paper_and_pen: "在您開始編碼之前,您可以隨時用一張紙和一支筆作計劃。"
|
||||
# tip_solve_then_write: "First, solve the problem. Then, write the code. - John Johnson"
|
||||
tip_solve_then_write: "要先想清楚問題如何解決, 再進行編碼的動作. - John Johnson"
|
||||
|
||||
game_menu:
|
||||
inventory_tab: "倉庫"
|
||||
|
@ -409,7 +403,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
comparison_blurb: "訂閱 CodeCombat 來磨練您的技巧!"
|
||||
feature1: "110 個以上的基本關卡散佈在4張地圖中"
|
||||
feature2: "10 個強壯的<strong>新英雄</strong>並每隻都有不同技巧!"
|
||||
feature3: "70 個以上的額外關卡" # {change}
|
||||
feature3: "80 個以上的額外關卡"
|
||||
feature4: "每個月<strong>3500顆額外寶石</strong>!"
|
||||
feature5: "視頻教學"
|
||||
feature6: "頂級信箱支援"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
parents_title: "親愛的家長: 您的孩子將要學習編程. 您會支持孩子發展嗎?"
|
||||
parents_blurb1: "您的孩子已經玩了 __nLevels__ 關,並且學習了編程基礎。請您為了培養他們的興趣而給他們訂閱,他們能繼續玩下去。"
|
||||
parents_blurb1a: "不要懷疑計算機編程能力將是您的孩子作為一個成年人的基本技能。到2020年,77%的工作將會需要編碼能力,並且軟件工程師將在世界各地成為高需求職業。您知道要計算機科學是收入最高的大學學位。"
|
||||
parents_blurb2: "每月支付 $9.99 美金, 他們每週獲得新挑戰以及使用信件取得專業程式員的幫助。"
|
||||
parents_blurb2: "每月支付 ${{price}} 美金, 他們每週獲得新挑戰以及使用信件取得專業程式員的幫助。"
|
||||
parents_blurb3: "沒有風險: 保證 100% 退費, 一步取消訂閱。"
|
||||
payment_methods: "付費方法"
|
||||
payment_methods_title: "可接受的付款方式"
|
||||
payment_methods_blurb1: "我們現有的付費方式有信用卡和支付寶" # {change}
|
||||
payment_methods_blurb2: "如果您想用其他付費方式,請聯繫我們"
|
||||
sale_already_subscribed: "您已經訂閱!"
|
||||
sale_blurb1: "和正常一年的訂閱價格 $120 相比" # {change}
|
||||
sale_blurb2: "年費訂閱能節省 $21!"
|
||||
sale_button: "促銷!"
|
||||
sale_button_title: "年費訂閱能節省 $21 的費用" # {change}
|
||||
sale_click_here: "點擊這裡"
|
||||
sale_ends: "結束"
|
||||
sale_extended: "*已訂閱用戶會續期一年。"
|
||||
sale_feature_here: "你將會獲得這些:"
|
||||
sale_feature2: "可以使用10 個強大的<strong>新英雄</strong> 和各種技能!"
|
||||
sale_feature4: "立即取得<strong>42,000 個額外的寶石</strong>!"
|
||||
sale_continue: "準備好繼續探險嗎?"
|
||||
sale_limited_time: "限時優惠!"
|
||||
sale_new_heroes: "新英雄!"
|
||||
sale_title: "開學促銷"
|
||||
sale_view_button: "購買年費訂閱:"
|
||||
sale_button_title: "年費訂閱能節省 ${{discount}} 的費用"
|
||||
stripe_description: "每月訂閱"
|
||||
stripe_description_year_sale: "年費訂閱 ($21 優惠)" # {change}
|
||||
stripe_description_year_sale: "年費訂閱 (${{discount}} 優惠)" # {change}
|
||||
subscription_required_to_play: "您將需要訂閱來開啟這關。"
|
||||
unlock_help_videos: "訂閱來解開所有鎖住得教學影片。"
|
||||
personal_sub: "個人訂閱" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
currently_free_until: "您目前有一個訂閱,直到"
|
||||
was_free_until: "您有過一個免費訂閱,直到"
|
||||
managed_subs: "管理訂閱"
|
||||
managed_subs_desc: "為其他玩家(學生、兒童等)添加訂閱。"
|
||||
managed_subs_desc_2: "收件人必須有一個與您提供的電子郵件地址相關聯的codecombat帳戶。."
|
||||
group_discounts: "團購價"
|
||||
group_discounts_1: "我們還為批量訂閱提供團購價"
|
||||
group_discounts_1st: "1個訂閱"
|
||||
group_discounts_full: "全價"
|
||||
group_discounts_2nd: "2-11個訂閱"
|
||||
group_discounts_20: "八折"
|
||||
group_discounts_12th: "12+個訂閱"
|
||||
group_discounts_40: "六折"
|
||||
subscribing: "訂閱中・・・"
|
||||
recipient_emails_placeholder: "請輸入電子郵件地址來訂閱,每行一個。"
|
||||
subscribe_users: "訂閱用戶"
|
||||
users_subscribed: "用戶訂閱:"
|
||||
no_users_subscribed: "沒有用戶訂閱,請仔細檢查您的電子郵件地址。"
|
||||
current_recipients: "當前收件人"
|
||||
unsubscribing: "取消訂閱中・・・" # {change}
|
||||
subscribe_prepaid: "點擊訂閱來使用預付代碼"
|
||||
|
@ -525,7 +491,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
health_2: "例表"
|
||||
health_3: "裝備血量。"
|
||||
speed_1: "移動速度"
|
||||
speed_2: "米每秒。"
|
||||
speed_2: "公尺每秒。"
|
||||
available_for_purchase: "可以購買" # Shows up when you have unlocked, but not purchased, a hero in the hero store
|
||||
level_to_unlock: "解鎖關卡:" # Label for which level you have to beat to unlock a particular hero (click a locked hero in the store to see)
|
||||
restricted_to_certain_heroes: "特定英雄才可遊玩此關卡。"
|
||||
|
@ -604,68 +570,23 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
jose_blurb: "放輕鬆"
|
||||
retrostyle_title: "插畫師"
|
||||
retrostyle_blurb: "復古風格的遊戲"
|
||||
# rob_title: "Compiler Engineer"
|
||||
# rob_blurb: "Codes things and stuff"
|
||||
# josh_c_title: "Game Designer"
|
||||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
rob_title: "編譯工程師"
|
||||
rob_blurb: "編寫一些的代碼"
|
||||
josh_c_title: "遊戲設計師"
|
||||
josh_c_blurb: "設計遊戲"
|
||||
carlos_title: "區經理 - 巴西"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
teachers:
|
||||
more_info: "致教師的說明"
|
||||
intro_1: "CodeCombat 是一個教編程的網上游戲。學生會用編程語言寫代碼。"
|
||||
intro_2: "無需經驗!"
|
||||
free_title: "要多少錢?"
|
||||
cost_premium_server: "CodeCombat的前5個關卡在中國是免費的,在這之後需花費每月9.99美元來訪問我們架設在中國專屬服務器上的190多個關卡。"
|
||||
free_1: "有110多個覆蓋了所有理論的免費關卡。"
|
||||
free_2: "包月訂閱可以訪問視頻教程和額外的練習關卡。"
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
teacher_subs_title: "教師可免費訂閱!" # {change}
|
||||
teacher_subs_0: "我們可為教師提供用於評估的免費訂閱。" # {change}
|
||||
teacher_subs_1: "請聯繫"
|
||||
teacher_subs_2: "教師調查"
|
||||
teacher_subs_3: "建立您的訂閱。" # {change}
|
||||
sub_includes_title: "訂閱裡包含了什麼內容?"
|
||||
sub_includes_1: "除了110+個基礎關卡,學生包月訂閱還可以使用這些附加功能:"
|
||||
sub_includes_2: "超過70個練習關卡" # {change}
|
||||
sub_includes_3: "視頻教學"
|
||||
sub_includes_4: "獨特的電子郵件支援"
|
||||
sub_includes_5: "10个具有独特技能的新英雄"
|
||||
sub_includes_6: "每月享有3500額外寶石"
|
||||
sub_includes_7: "私人部落"
|
||||
monitor_progress_title: "我要如何查看學生的進度?"
|
||||
monitor_progress_1: "要查看學生的進度,可以通過建立一個"
|
||||
monitor_progress_2: "在你的課程。"
|
||||
monitor_progress_3: "添加一個學生,可以透過發送一個你的部落邀請鏈接給他們,這個在"
|
||||
monitor_progress_4: "頁面。"
|
||||
monitor_progress_5: "當他們加入之後,你可以在你的部落頁面看到這些學生的進度匯總。"
|
||||
private_clans_1: "私人部落提升了每個學生的隱私和詳細的進度信息。"
|
||||
private_clans_2: "為了添加一個私人部落,可以勾選“私人部落”選擇框,在你建立一個"
|
||||
private_clans_3: "."
|
||||
who_for_title: "誰是CodeCombat的使用對象呢?"
|
||||
who_for_1: "我們建議讓9歲及以上的學生使用CodeCombat。無需任何編程經驗。"
|
||||
who_for_2: "我們設計CodeCombat來吸引男生女生。"
|
||||
material_title: "這裡有多少素材呢?"
|
||||
material_premium_server: "約40小時的遊戲時間和目前為止超過170個的訂閱關卡。" # {change}
|
||||
material_1: "大約25個小時的免費內容和額外的15個小時的訂閱內容。"
|
||||
concepts_title: "包括了哪些理論知識?"
|
||||
how_much_title: "每月的訂閱費用是多少?"
|
||||
how_much_1: ""
|
||||
how_much_2: "每月訂閱"
|
||||
how_much_3: "每月9.99美元,並可隨時取消訂閱。"
|
||||
how_much_4: "另外,團體購買者將享受折扣優惠:"
|
||||
how_much_5: "我們接受一次性的打折購買以及每年訂閱的團體,比如班級或者學校。請聯繫"
|
||||
how_much_6: "來獲取詳情。"
|
||||
who_for_1: "我們建議讓9歲及以上的學生使用CodeCombat。無需任何編程經驗。" # {change}
|
||||
who_for_2: "我們設計CodeCombat來吸引男生女生。" # {change}
|
||||
more_info_title: "我可以在哪裡找到更多信息?"
|
||||
more_info_1: "我們的"
|
||||
more_info_2: "教師論壇"
|
||||
more_info_3: "是個與其他使用CodeCombat的教育工作者聯繫的良好平台。"
|
||||
sys_requirements_title: "系統要求"
|
||||
sys_requirements_1: "一個現代的瀏覽器。 需要更新的Chrome,Firefox、Safari或者Internet Explorer 9 以上版本。" # {change}
|
||||
sys_requirements_2: "CodeCombat 暫時還不支持 iPad。" # {change}
|
||||
|
||||
teachers_survey:
|
||||
title: "教師調查"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
screenshot_included: "包含螢幕截圖."
|
||||
where_reply: "我們回覆到?"
|
||||
send: "意見反饋"
|
||||
contact_candidate: "聯繫候選人員" # Deprecated
|
||||
recruitment_reminder: "使用這張表格來聯繫您有興趣的求職者. 記得CodeCombat將收取員工第一年薪水的15%當作佣金. 佣金須在僱用時就必須付清並且之後的90天內如果員工離職則可退款. 兼職, 遠端工作, 契約員工和實習生都可免除費用." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "帳號設定"
|
||||
|
@ -737,17 +656,17 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
wrong_password: "密碼錯誤"
|
||||
upload_picture: "上傳圖片"
|
||||
delete_this_account: "永久性的刪除帳戶"
|
||||
# reset_progress_tab: "Reset All Progress"
|
||||
# reset_your_progress: "Clear all your progress and start over"
|
||||
reset_progress_tab: "重置所有進度"
|
||||
reset_your_progress: "清除您的所有進度並重新開始"
|
||||
god_mode: "上帝模式"
|
||||
password_tab: "密碼"
|
||||
emails_tab: "郵件"
|
||||
admin: "管理員"
|
||||
# manage_subscription: "Click here to manage your subscription."
|
||||
manage_subscription: "點此管理您的訂閱"
|
||||
new_password: "新密碼"
|
||||
new_password_verify: "確認密碼"
|
||||
type_in_email: "輸入您的Email來確認刪除"
|
||||
# type_in_email_progress: "Type in your email to confirm deleting your progress."
|
||||
type_in_email_progress: "輸入您的Email, 確認您真的要刪除進度"
|
||||
type_in_password: "還有輸入您的密碼。"
|
||||
email_subscriptions: "訂閱"
|
||||
email_subscriptions_none: "無Email訂閱"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
saved: "修改已儲存"
|
||||
password_mismatch: "密碼不正確。"
|
||||
password_repeat: "請重複輸入您的密碼。"
|
||||
job_profile: "工作經歷" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "您的工作經歷已被CodeCombat驗證. 僱主將可以隨意瀏覽直到您設定為不啟動狀態或者已經四周沒有改變"
|
||||
job_profile_explanation: "Hi! 請填寫下列資訊, 我們將使用它幫您媒合一份開發工作."
|
||||
sample_profile: "觀看範例基本資料"
|
||||
view_profile: "瀏覽您的基本資料"
|
||||
|
||||
keyboard_shortcuts:
|
||||
keyboard_shortcuts: "鍵盤快捷鍵"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
subs_only: "只限訂閱"
|
||||
create_clan: "創建新的部落"
|
||||
private_preview: "預覽"
|
||||
# private_clans: "Private Clans"
|
||||
public_clans: "公共部落"
|
||||
my_clans: "我的部落"
|
||||
clan_name: "部落名字"
|
||||
|
@ -855,29 +770,29 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
started_2: "已開始"
|
||||
not_started_2: "尚未開始"
|
||||
view_solution: "點擊查閱答案。"
|
||||
# view_attempt: "Click to view attempt."
|
||||
view_attempt: "點擊查閱解題的嘗試"
|
||||
latest_achievement: "最新成就"
|
||||
playtime: "遊戲時間"
|
||||
last_played: "最後玩了"
|
||||
leagues_explanation: "在部落裡與其他成員組成聯盟一起參加下面的多人競技場。"
|
||||
# track_concepts1: "Track concepts"
|
||||
# track_concepts2a: "learned by each student"
|
||||
# track_concepts2b: "learned by each member"
|
||||
# track_concepts3a: "Track levels completed for each student"
|
||||
# track_concepts3b: "Track levels completed for each member"
|
||||
# track_concepts4a: "See your students'"
|
||||
# track_concepts4b: "See your members'"
|
||||
# track_concepts5: "solutions"
|
||||
# track_concepts6a: "Sort students by name or progress"
|
||||
# track_concepts6b: "Sort members by name or progress"
|
||||
# track_concepts7: "Requires invitation"
|
||||
# track_concepts8: "to join"
|
||||
track_concepts2a: "由每位學生學習"
|
||||
track_concepts2b: "由每位成員學習"
|
||||
track_concepts3a: "查看每位同學達到的等級"
|
||||
track_concepts3b: "查看每位成員達到的等級"
|
||||
track_concepts4a: "查看你的學生"
|
||||
track_concepts4b: "查看你的成員"
|
||||
track_concepts5: "解決方案"
|
||||
track_concepts6a: "按姓名或進度排序學生"
|
||||
track_concepts6b: "按姓名或進度排序成員"
|
||||
track_concepts7: "需要邀請"
|
||||
track_concepts8: "來加入"
|
||||
# private_require_sub: "Private clans require a subscription to create or join."
|
||||
|
||||
courses:
|
||||
course: "課程"
|
||||
courses: "課程"
|
||||
# create_new_class: "Create New Class"
|
||||
create_new_class: "建立新的課堂"
|
||||
not_enrolled: "您没有註冊這一節課。"
|
||||
visit_pref: "請到這個"
|
||||
visit_suf: "網頁註冊。"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
payments: "付款"
|
||||
prepaid_codes: "充值碼"
|
||||
purchased: "已購買"
|
||||
sale: "促銷"
|
||||
subscription: "訂閱"
|
||||
invoices: "收據"
|
||||
service_apple: "設備: Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
email_settings_url: " 在您的郵件設定 "
|
||||
email_description_suffix: "或在我們送出的信件上都有留著我們的聯結, 您可以更改您的喜好並且輕易的隨時取消訂閱。"
|
||||
cost_title: "花費"
|
||||
cost_description: "CodeCombat在核心的關卡是全部免費, 但只要花費一個月$9.99美金來訂閱, 您將在每個月取得額外的關卡和3500顆寶石。 您可以輕易地取消訂閱並且保證取得100%的退費。"
|
||||
cost_description: "CodeCombat在核心的關卡是全部免費, 但只要花費一個月${{price}}美金來訂閱, 您將在每個月取得額外的關卡和{{gems}}顆寶石。 您可以輕易地取消訂閱並且保證取得100%的退費。"
|
||||
copyrights_title: "版權和許可"
|
||||
contributor_title: "貢獻者許可協議"
|
||||
contributor_description_prefix: "所有在本網站或是 GitHub 代碼庫上的貢獻都依照我們的"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
nutshell_title: "簡而言之"
|
||||
nutshell_description: "我们在關卡编辑器里公開的任何資源, 您都可以在製作關卡時隨意使用, 但我们保留在 codecombat.com 之上創建的關卡本身傳播的權利, 因为我们往後可能決定以它們收費."
|
||||
canonical: "我們宣告這篇說明的英文版本是權威版本。 如果各個翻譯版本之間有任何衝突, 以英文版為準。"
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
ladder_prizes:
|
||||
title: "錦標賽獎項" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
license: "許可證"
|
||||
oreilly: "您選擇的電子書"
|
||||
|
||||
account_profile:
|
||||
settings: "設定" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
edit_profile: "編輯基本資料"
|
||||
done_editing: "完成編輯"
|
||||
profile_for_prefix: "關於"
|
||||
profile_for_suffix: "的基本資料"
|
||||
featured: "被推薦"
|
||||
not_featured: "未獲選"
|
||||
looking_for: "尋找:"
|
||||
last_updated: "最後更新:"
|
||||
contact: "聯繫"
|
||||
active: "目前尋找面試機會"
|
||||
inactive: "目前沒有在尋找面試機會"
|
||||
complete: "完成"
|
||||
next: "下一步"
|
||||
next_city: "城市?"
|
||||
next_country: "選擇您所居住的國家."
|
||||
next_name: "姓名?"
|
||||
next_short_description: "簡短的敘述您自己."
|
||||
next_long_description: "描述您所需要的位置."
|
||||
next_skills: "列出至少五項技能."
|
||||
next_work: "您的過往經歷."
|
||||
next_education: "教育經歷."
|
||||
next_projects: "至少展示三項您所參與的專案."
|
||||
next_links: "增加任何個人或社群的聯結."
|
||||
next_photo: "增加一張專業的照片(可選)."
|
||||
next_active: "將自己標記正在尋求工作機會以使自己的名字出現在搜索中."
|
||||
example_blog: "部落格"
|
||||
example_personal_site: "個人網站"
|
||||
links_header: "個人聯結"
|
||||
links_blurb: "聯結任何您想凸顯的網站或介紹, 例如:聯結您的GitHub, 您的LinkedIn, 您的部落格."
|
||||
links_name: "聯結名稱"
|
||||
links_name_help: "您想聯結到?"
|
||||
links_link_blurb: "聯結網址"
|
||||
basics_header: "更新基本的資訊"
|
||||
basics_active: "接受工作邀請"
|
||||
basics_active_help: "目前想要獲得面試機會?"
|
||||
basics_job_title: "期望職位"
|
||||
basics_job_title_help: "您正在尋找怎樣的職位?"
|
||||
basics_city: "城市"
|
||||
basics_city_help: "您想工作的城市(或者現在居住地)."
|
||||
basics_country: "國家"
|
||||
basics_country_help: "您想工作的國家(或者現在居住地)."
|
||||
basics_visa: "美國工作簽證狀態"
|
||||
basics_visa_help: "您是否在美國可以合法工作, 或者您需要公司資助簽證? (如果您住在Canada或Australia, 標注可以合法工作.)"
|
||||
basics_looking_for: "尋找"
|
||||
basics_looking_for_full_time: "全職"
|
||||
basics_looking_for_part_time: "兼職"
|
||||
basics_looking_for_remote: "遠端工作"
|
||||
basics_looking_for_contracting: "約娉工作"
|
||||
basics_looking_for_internship: "實習"
|
||||
basics_looking_for_help: "您想要哪種的開發者職位?"
|
||||
name_header: "填寫您的姓名"
|
||||
name_anonymous: "匿名開發者"
|
||||
name_help: "您希望僱主看到的姓名, 例如: 'Nick Winter'."
|
||||
short_description_header: "簡短的敘述您自己"
|
||||
short_description_blurb: "增加一則簡短介紹來幫助僱主快速的認識您."
|
||||
short_description: "簡短介紹"
|
||||
short_description_help: "您是誰, 您正在尋找啥? 最多 140 字."
|
||||
skills_header: "技能"
|
||||
skills_help: "按照熟練程度列出您所擁有的相關開發技能."
|
||||
long_description_header: "描述您所希望的位置"
|
||||
long_description_blurb: "告訴僱主您有多棒和您所希望扮演的角色."
|
||||
long_description: "自我描述"
|
||||
long_description_help: "向潛在僱主描述您自己. 保持簡短並且直指核心. 我們建議您列出最有興趣的職位; 最多600字."
|
||||
work_experience: "工作經歷"
|
||||
work_header: "按時間順序列出經歷"
|
||||
work_years: "工作時間(年)"
|
||||
work_years_help: "您擁有多少年的專業開發軟體的經驗(被支薪)?"
|
||||
work_blurb: "列出您的相關工作經驗, 最近的優先."
|
||||
work_employer: "僱主"
|
||||
work_employer_help: "您僱主的姓名."
|
||||
work_role: "職稱"
|
||||
work_role_help: "您的職稱或者角色是?"
|
||||
work_duration: "起止時間"
|
||||
work_duration_help: "您的在職時間是?"
|
||||
work_description: "描述"
|
||||
work_description_help: "您在那是在做啥? (140 字; 可選)"
|
||||
education: "教育"
|
||||
education_header: "列出您的教育經歷"
|
||||
education_blurb: "列出您在學校的經歷."
|
||||
education_school: "學校"
|
||||
education_school_help: "學校名稱."
|
||||
education_degree: "學位"
|
||||
education_degree_help: "您的學位以及專業是?"
|
||||
education_duration: "日期"
|
||||
education_duration_help: "何時?"
|
||||
education_description: "描述"
|
||||
education_description_help: "凸顯任何有關這個教育經歷的地方. (140 字; 可選)"
|
||||
our_notes: "CodeCombat的筆記"
|
||||
remarks: "標記"
|
||||
projects: "專案"
|
||||
projects_header: "增加3個專案"
|
||||
projects_header_2: "專案(前3個)"
|
||||
projects_blurb: "展示您的專案以求驚豔僱主."
|
||||
project_name: "專案名稱"
|
||||
project_name_help: "那個專案被稱為什麼?"
|
||||
project_description: "描述"
|
||||
project_description_help: "簡短描述專案."
|
||||
project_picture: "照片"
|
||||
project_picture_help: "上傳一張230x115px或更大的照片以顯示那份專案."
|
||||
project_link: "聯結"
|
||||
project_link_help: "專案的聯結."
|
||||
player_code: "玩家代碼"
|
||||
|
||||
employers:
|
||||
deprecation_warning_title: "抱歉, CodeCombat現在並沒有在徵才."
|
||||
deprecation_warning: "我們暫且主要專注在找到初級有潛力的開發者而非高級的開發者."
|
||||
hire_developers_not_credentials: "僱用真正的開發者, 而非一張證書." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
get_started: "開始"
|
||||
already_screened: "我們已經技術上考核過我們所有的候選人"
|
||||
filter_further: ", 但是您還是可以更加嚴苛的過濾:"
|
||||
filter_visa: "簽證"
|
||||
filter_visa_yes: "美國授權"
|
||||
filter_visa_no: "不被授權"
|
||||
filter_education_top: "頂尖學校"
|
||||
filter_education_other: "其他"
|
||||
filter_role_web_developer: "網頁開發者"
|
||||
filter_role_software_developer: "軟體開發者"
|
||||
filter_role_mobile_developer: "移動開發者"
|
||||
filter_experience: "經驗"
|
||||
filter_experience_senior: "初級的"
|
||||
filter_experience_junior: "高級的"
|
||||
filter_experience_recent_grad: "剛畢業"
|
||||
filter_experience_student: "大學學生"
|
||||
filter_results: "結果"
|
||||
start_hiring: "開始徵才."
|
||||
reasons: "三個您應該透過我們徵才的理由:"
|
||||
everyone_looking: "在這的每個人都在尋找各自的下一個機會."
|
||||
everyone_looking_blurb: "不要再理會LinkedIn的20%郵件回復率. 我們列在這網站上的每個人都想要找到各自的下一個位置並且都將回復您以求得機會."
|
||||
weeding: "仔細聽好; 我們已經幫您做了過濾."
|
||||
weeding_blurb: "每位我們列出來的玩家已經考核過技術能力. 我們也對候選人執行電話訪談並且在他們的基本資料上留下記錄,以求節省您的時間."
|
||||
pass_screen: "他們將通過您的技術能力考核."
|
||||
pass_screen_blurb: "在聯絡前先檢視每位候選人的程式碼. 一位僱主發現我們列出的候選人能通過考核的人數是借由Hacker News的5倍."
|
||||
make_hiring_easier: "請促使我們的僱用流程簡單點."
|
||||
what: "CodeCombat是啥?"
|
||||
what_blurb: "CodeCombat是個跑在瀏覽器上的多人編程遊戲. 玩家通過編寫程式碼來控制在戰場上的角色來擊潰其它玩家的角色. 我們的玩家有著全部主要的技術經驗."
|
||||
cost: "我們收取多少費用?"
|
||||
cost_blurb: "我們將收取員工第一年薪水的15%當作佣金. 佣金須在僱用時就必須付清並且之後的90天內如果員工離職則可退款. 我們不對已經參與貴公司面試的候選人收費."
|
||||
candidate_name: "姓名"
|
||||
candidate_location: "地點"
|
||||
candidate_looking_for: "尋找"
|
||||
candidate_role: "角色"
|
||||
candidate_top_skills: "高級技能"
|
||||
candidate_years_experience: "多年工作經驗"
|
||||
candidate_last_updated: "最後一次更新"
|
||||
candidate_who: "誰"
|
||||
featured_developers: "主要開發者"
|
||||
other_developers: "其他開發者"
|
||||
inactive_developers: "不活躍的開發者"
|
||||
|
||||
admin:
|
||||
av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
av_espionage_placeholder: "信箱或用戶名"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "繁體中文", englishDescription: "Chinese
|
|||
av_entities_sub_title: "商業個體"
|
||||
av_entities_users_url: "使用者"
|
||||
av_entities_active_instances_url: "有效實例"
|
||||
av_entities_employer_list_url: "員工列表"
|
||||
av_entities_candidates_list_url: "候選人列表"
|
||||
av_entities_user_code_problems_list_url: "用戶代碼問題列表"
|
||||
av_other_sub_title: "其他"
|
||||
av_other_debug_base_url: "Base (用於測試 base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# multiplayer: "Multiplayer" # Not currently shown on home page
|
||||
# for_developers: "For Developers" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
# nav:
|
||||
# play: "Levels" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# creating: "Creating Account..."
|
||||
# sign_up: "Sign Up"
|
||||
# log_in: "log in with password"
|
||||
# social_signup: "Or, you can sign up through Facebook or G+:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
# action_timeline: "Action Timeline"
|
||||
# click_to_select: "Click on a unit to select it."
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
# send: "Send Feedback"
|
||||
# contact_candidate: "Contact Candidate" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
# account_settings:
|
||||
# title: "Account Settings"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# saved: "Changes Saved"
|
||||
# password_mismatch: "Password does not match."
|
||||
# password_repeat: "Please repeat your password."
|
||||
# job_profile: "Job Profile" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
# job_profile_approved: "Your job profile has been approved by CodeCombat. Employers will be able to see it until you either mark it inactive or it has not been changed for four weeks."
|
||||
# job_profile_explanation: "Hi! Fill this out, and we will get in touch about finding you a software developer job."
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# email_settings_url: "your email settings"
|
||||
# email_description_suffix: "or through links in the emails we send, you can change your preferences and easily unsubscribe at any time."
|
||||
# cost_title: "Cost"
|
||||
# cost_description: "CodeCombat is free to play for all of its core levels, with a $9.99 USD/mo subscription for access to extra level branches and 3500 bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
# copyrights_title: "Copyrights and Licenses"
|
||||
# contributor_title: "Contributor License Agreement"
|
||||
# contributor_description_prefix: "All contributions, both on the site and on our GitHub repository, are subject to our"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# nutshell_title: "In a Nutshell"
|
||||
# nutshell_description: "Any resources we provide in the Level Editor are free to use as you like for creating Levels. But we reserve the right to restrict distribution of the Levels themselves (that are created on codecombat.com) so that they may be charged for in the future, if that's what ends up happening."
|
||||
# canonical: "The English version of this document is the definitive, canonical version. If there are any discrepancies between translations, the English document takes precedence."
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
# account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
# profile_for_prefix: "Profile for "
|
||||
# profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
# looking_for: "Looking for:"
|
||||
# last_updated: "Last updated:"
|
||||
# contact: "Contact"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
# education: "Education"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
# projects: "Projects"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
# employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
# candidate_name: "Name"
|
||||
# candidate_location: "Location"
|
||||
# candidate_looking_for: "Looking For"
|
||||
# candidate_role: "Role"
|
||||
# candidate_top_skills: "Top Skills"
|
||||
# candidate_years_experience: "Yrs Exp"
|
||||
# candidate_last_updated: "Last Updated"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
# admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "吴语", englishDescription: "Wuu (Simplifi
|
|||
# av_entities_sub_title: "Entities"
|
||||
# av_entities_users_url: "Users"
|
||||
# av_entities_active_instances_url: "Active Instances"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
# av_other_sub_title: "Other"
|
||||
# av_other_debug_base_url: "Base (for debugging base.jade)"
|
||||
|
|
|
@ -13,9 +13,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
multiplayer: "聚隊打遊戲" # Not currently shown on home page
|
||||
for_developers: "適合開發個人" # Not currently shown on home page.
|
||||
# or_ipad: "Or download for iPad"
|
||||
# hoc_class_code: "I Have a Class Code"
|
||||
# hoc_enter: "Enter"
|
||||
# hoc_title: "Hour of Code?"
|
||||
|
||||
nav:
|
||||
play: "遊戲開來" # The top nav bar entry where players choose which levels to play
|
||||
|
@ -115,7 +112,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
creating: "徠搭做賬號……"
|
||||
sign_up: "註冊"
|
||||
log_in: "登進"
|
||||
social_signup: "要勿,爾好用Facebook搭G+註冊:"
|
||||
# required: "You need to log in before you can go that way."
|
||||
# login_switch: "Already have an account?"
|
||||
# school_name: "School Name and City"
|
||||
|
@ -244,8 +240,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# incomplete: "Incomplete"
|
||||
# timed_out: "Ran out of time"
|
||||
# failing: "Failing"
|
||||
action_timeline: "行動時間橛"
|
||||
click_to_select: "點選一個單位。"
|
||||
# control_bar_multiplayer: "Multiplayer"
|
||||
# control_bar_join_game: "Join Game"
|
||||
# reload: "Reload"
|
||||
|
@ -438,30 +432,16 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# parents_title: "Dear Parent: Your child is learning to code. Will you help them continue?"
|
||||
# parents_blurb1: "Your child has played __nLevels__ levels and learned programming basics. Help cultivate their interest and buy them a subscription so they can keep playing."
|
||||
# parents_blurb1a: "Computer programming is an essential skill that your child will undoubtedly use as an adult. By 2020, basic software skills will be needed by 77% of jobs, and software engineers are in high demand across the world. Did you know that Computer Science is the highest-paid university degree?"
|
||||
# parents_blurb2: "For $9.99 USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb2: "For ${{price}} USD/mo, your child will get new challenges every week and personal email support from professional programmers."
|
||||
# parents_blurb3: "No Risk: 100% money back guarantee, easy 1-click unsubscribe."
|
||||
# payment_methods: "Payment Methods"
|
||||
# payment_methods_title: "Accepted Payment Methods"
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal 29.97 USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or $99 for a year."
|
||||
# payment_methods_blurb1: "We currently accept credit cards and Alipay. You can also PayPal {{three_month_price}} USD to nick@codecombat.com with your account email in the memo to purchase three months' subscription and gems, or ${{year_price}} for a year."
|
||||
# payment_methods_blurb2: "If you require an alternate form of payment, please contact"
|
||||
# sale_already_subscribed: "You're already subscribed!"
|
||||
# sale_blurb1: "Save $21"
|
||||
# sale_blurb2: "off regular subscription price of $120 for a whole year!"
|
||||
# sale_button: "Sale!"
|
||||
# sale_button_title: "Save $21 when you purchase a 1 year subscription"
|
||||
# sale_click_here: "Click Here"
|
||||
# sale_ends: "Ends"
|
||||
# sale_extended: "*Existing subscriptions will be extended by 1 year."
|
||||
# sale_feature_here: "Here's what you'll get:"
|
||||
# sale_feature2: "Access to 9 powerful <strong>new heroes</strong> with unique skills!"
|
||||
# sale_feature4: "<strong>42,000 bonus gems</strong> awarded immediately!"
|
||||
# sale_continue: "Ready to continue adventuring?"
|
||||
# sale_limited_time: "Limited time offer!"
|
||||
# sale_new_heroes: "New heroes!"
|
||||
# sale_title: "Back to School Sale"
|
||||
# sale_view_button: "Buy 1 year subscription for"
|
||||
# stripe_description: "Monthly Subscription"
|
||||
# stripe_description_year_sale: "1 Year Subscription ($21 discount)"
|
||||
# stripe_description_year_sale: "1 Year Subscription (${{discount}} discount)"
|
||||
# subscription_required_to_play: "You'll need a subscription to play this level."
|
||||
# unlock_help_videos: "Subscribe to unlock all video tutorials."
|
||||
# personal_sub: "Personal Subscription" # Accounts Subscription View below
|
||||
|
@ -472,21 +452,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# currently_free_until: "You currently have a subscription until"
|
||||
# was_free_until: "You had a free subscription until"
|
||||
# managed_subs: "Managed Subscriptions"
|
||||
# managed_subs_desc: "Add subscriptions for other players (students, children, etc.)"
|
||||
# managed_subs_desc_2: "Recipients must have a CodeCombat account associated with the email address you provide."
|
||||
# group_discounts: "Group discounts"
|
||||
# group_discounts_1: "We also offer group discounts for bulk subscriptions."
|
||||
# group_discounts_1st: "1st subscription"
|
||||
# group_discounts_full: "Full price"
|
||||
# group_discounts_2nd: "Subscriptions 2-11"
|
||||
# group_discounts_20: "20% off"
|
||||
# group_discounts_12th: "Subscriptions 12+"
|
||||
# group_discounts_40: "40% off"
|
||||
# subscribing: "Subscribing..."
|
||||
# recipient_emails_placeholder: "Enter email address to subscribe, one per line."
|
||||
# subscribe_users: "Subscribe Users"
|
||||
# users_subscribed: "Users subscribed:"
|
||||
# no_users_subscribed: "No users subscribed, please double check your email addresses."
|
||||
# current_recipients: "Current Recipients"
|
||||
# unsubscribing: "Unsubscribing"
|
||||
# subscribe_prepaid: "Click Subscribe to use prepaid code"
|
||||
|
@ -610,62 +576,17 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# josh_c_blurb: "Designs games"
|
||||
# carlos_title: "Region Manager, Brazil"
|
||||
# carlos_blurb: "Celery Man"
|
||||
# maka_title: "Customer Advocate"
|
||||
# maka_blurb: "Storyteller"
|
||||
|
||||
# teachers:
|
||||
# more_info: "More Info for Teachers"
|
||||
# intro_1: "CodeCombat is an online game that teaches programming. Students write code in real programming languages."
|
||||
# intro_2: "No experience required!"
|
||||
# free_title: "How much does it cost?"
|
||||
# cost_premium_server: "CodeCombat is free for the first five levels, after which it costs $9.99 USD per month for access to our other 190+ levels on our exclusive country-specific servers."
|
||||
# free_1: "There are 110+ FREE levels which cover every concept."
|
||||
# free_2: "A monthly subscription provides access to video tutorials and extra practice levels."
|
||||
# free_3: "The CodeCombat content is divided into"
|
||||
# free_4: "courses"
|
||||
# free_5: ". The first course is free, and about an hour of material."
|
||||
# free_6: "Access to the additional courses can be unlocked with a one-time purchase."
|
||||
# teacher_subs_title: "Teachers get a free trial!"
|
||||
# teacher_subs_0: "We offer free trials to teachers."
|
||||
# teacher_subs_1: "Please fill out our"
|
||||
# teacher_subs_2: "Teacher Survey"
|
||||
# teacher_subs_3: "to try out the paid courses."
|
||||
# sub_includes_title: "What is included in the subscription?"
|
||||
# sub_includes_1: "In addition to the 110+ basic levels, students with a monthly subscription get access to these additional features:"
|
||||
# sub_includes_2: "80+ practice levels"
|
||||
# sub_includes_3: "Video tutorials"
|
||||
# sub_includes_4: "Premium email support"
|
||||
# sub_includes_5: "10 new heroes with unique skills to master"
|
||||
# sub_includes_6: "3500 bonus gems every month"
|
||||
# sub_includes_7: "Private Clans"
|
||||
# monitor_progress_title: "How do I monitor student progress?"
|
||||
# monitor_progress_1: "Student progress can be monitored by creating a"
|
||||
# monitor_progress_2: "for your class."
|
||||
# monitor_progress_3: "To add a student, send them the invite link for your Clan, which is on the"
|
||||
# monitor_progress_4: "page."
|
||||
# monitor_progress_5: "After they join, you will see a summary of the student's progress on your Clan's page."
|
||||
# private_clans_1: "Private Clans provide increased privacy and detailed progress information for each student."
|
||||
# private_clans_2: "To create a private Clan, check the 'Make clan private' checkbox when creating a"
|
||||
# private_clans_3: "."
|
||||
# who_for_title: "Who is CodeCombat for?"
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed."
|
||||
# who_for_2: "We've designed CodeCombat to appeal to both boys and girls."
|
||||
# material_title: "How much material is there?"
|
||||
# material_premium_server: "Approximately 50 hours of gameplay spread over 190+ subscriber-only levels so far."
|
||||
# material_1: "Approximately 25 hours of free content and an additional 15 hours of subscriber content."
|
||||
# concepts_title: "What concepts are covered?"
|
||||
# how_much_title: "How much does a monthly subscription cost?"
|
||||
# how_much_1: "A"
|
||||
# how_much_2: "monthly subscription"
|
||||
# how_much_3: "costs $9.99, and can be cancelled anytime."
|
||||
# how_much_4: "Additionally, we provide discounts for larger groups:"
|
||||
# how_much_5: "We accept discounted one-time purchases and yearly subscription purchases for groups, such as a class or school. Please contact"
|
||||
# how_much_6: "for more details."
|
||||
# who_for_1: "We recommend CodeCombat for students aged 9 and up. No prior programming experience is needed. We've designed CodeCombat to appeal to both boys and girls."
|
||||
# who_for_2: "Our Courses system allows teachers to set up classrooms, track progress and assign additional content to students through a dedicated interface."
|
||||
# more_info_title: "Where can I find more information?"
|
||||
# more_info_1: "Our"
|
||||
# more_info_2: "teachers forum"
|
||||
# more_info_3: "is a good place to connect with fellow educators who are using CodeCombat."
|
||||
# sys_requirements_title: "System Requirements"
|
||||
# sys_requirements_1: "A modern web browser. Newer versions of Chrome, Firefox, or Safari. Internet Explorer 9 or later."
|
||||
# sys_requirements_2: "CodeCombat is not supported on iPad yet."
|
||||
|
||||
# teachers_survey:
|
||||
# title: "Teacher Survey"
|
||||
|
@ -723,8 +644,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# screenshot_included: "Screenshot included."
|
||||
# where_reply: "Where should we reply?"
|
||||
send: "提出意見"
|
||||
contact_candidate: "搭參選人聯繫" # Deprecated
|
||||
# recruitment_reminder: "Use this form to reach out to candidates you are interested in interviewing. Remember that CodeCombat charges 15% of first-year salary. The fee is due upon hiring the employee and is refundable for 90 days if the employee does not remain employed. Part time, remote, and contract employees are free, as are interns." # Deprecated
|
||||
|
||||
account_settings:
|
||||
title: "賬號設定"
|
||||
|
@ -769,11 +688,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
saved: "保存起來哉"
|
||||
password_mismatch: "密碼弗合。"
|
||||
# password_repeat: "Please repeat your password."
|
||||
job_profile: "工作經歷" # Rest of this section (the job profile stuff and wizard stuff) is deprecated
|
||||
job_profile_approved: "爾填個工作經歷會讓CodeCombat來確認. 僱主會望着箇許訊息,除非爾畀渠調成望弗着狀態要勿粘牢四個星期朆改動。"
|
||||
job_profile_explanation: "爾好!填箇許訊息,我裏會用渠幫爾尋一份軟件開發個工作。"
|
||||
# sample_profile: "See a sample profile"
|
||||
# view_profile: "View Your Profile"
|
||||
|
||||
# keyboard_shortcuts:
|
||||
# keyboard_shortcuts: "Keyboard Shortcuts"
|
||||
|
@ -824,6 +738,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# subs_only: "subscribers only"
|
||||
# create_clan: "Create New Clan"
|
||||
# private_preview: "Preview"
|
||||
# private_clans: "Private Clans"
|
||||
# public_clans: "Public Clans"
|
||||
# my_clans: "My Clans"
|
||||
# clan_name: "Clan Name"
|
||||
|
@ -1079,10 +994,13 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# additional_resources_1_mid: "Course 1 Teacher's Guide"
|
||||
# additional_resources_1_suff: "explanations and solutions to each level."
|
||||
# additional_resources_2_pref: "Complete our"
|
||||
# additional_resources_2_suff: "to get 15 more hours of content for FREE for 2 months."
|
||||
# additional_resources_2_suff: "to get 15 more hours of content! For a limited time, enroll as many students as you want in our three paid courses."
|
||||
# additional_resources_3_pref: "Visit our"
|
||||
# additional_resources_3_mid: "Teacher Forums"
|
||||
# additional_resources_3_suff: "to connect to fellow educators who are using CodeCombat."
|
||||
# additional_resources_4_pref: "Check out our"
|
||||
# additional_resources_4_mid: "Schools Page"
|
||||
# additional_resources_4_suff: "to learn more about CodeCombat's classroom offerings."
|
||||
# your_classes: "Your Classes"
|
||||
# no_classes: "No classes yet!"
|
||||
# create_new_class1: "create new class"
|
||||
|
@ -1376,7 +1294,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# payments: "Payments"
|
||||
# prepaid_codes: "Prepaid Codes"
|
||||
# purchased: "Purchased"
|
||||
# sale: "Sale"
|
||||
# subscription: "Subscription"
|
||||
# invoices: "Invoices"
|
||||
# service_apple: "Apple"
|
||||
|
@ -1566,7 +1483,7 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
email_settings_url: "設定爾個電子郵箱"
|
||||
email_description_suffix: "要勿我裏發畀爾個信裏向有鏈接,爾随低2都好改偏向設定要勿取消訂閱。"
|
||||
cost_title: "花銷"
|
||||
cost_description: "目前來講,CodeCombat 是全個免費個!我裏個大目標之一也是保持目前箇種方式,讓越多越好個人攪功還好,弗管是弗是生活裏向。空把天黯落來,我裏嘸數會畀訂一許內容收費,不過我裏能可弗馨妝。運道好個話,我裏好開公司,通過:"
|
||||
# cost_description_a: "CodeCombat is free to play for all of its core levels, with a ${{price}} USD/mo subscription for access to extra level branches and {{gems}} bonus gems per month. You can cancel with a click, and we offer a 100% money-back guarantee."
|
||||
copyrights_title: "版權搭許可"
|
||||
contributor_title: "貢獻者許可協議"
|
||||
contributor_description_prefix: "所有對本網站要勿 GitHub 代碼庫個努力都照我裏個"
|
||||
|
@ -1601,6 +1518,8 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
nutshell_title: "省講佩是"
|
||||
nutshell_description: "我裏徠關編寫器裏公開個所有資源,做關到都候爾用,不過我裏保留限制 codecombat.com 上向所造各關傳播個權利,因爲我裏轉日嘸數畀箇許關數收鈔票。"
|
||||
canonical: "箇篇講明個英文版是權威版本。空是各許翻譯版本對弗牢,照英文版裏講個算數。"
|
||||
# third_party_title: "Third Party Services"
|
||||
# third_party_description: "CodeCombat uses the following third party services (among others):"
|
||||
|
||||
# ladder_prizes:
|
||||
# title: "Tournament Prizes" # This section was for an old tournament and doesn't need new translations now.
|
||||
|
@ -1622,157 +1541,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
# license: "license"
|
||||
# oreilly: "ebook of your choice"
|
||||
|
||||
account_profile:
|
||||
# settings: "Settings" # We are not actively recruiting right now, so there's no need to add new translations for this section.
|
||||
# edit_profile: "Edit Profile"
|
||||
# done_editing: "Done Editing"
|
||||
profile_for_prefix: "有關渠個基本訊息:"
|
||||
profile_for_suffix: ""
|
||||
# featured: "Featured"
|
||||
# not_featured: "Not Featured"
|
||||
looking_for: "尋"
|
||||
last_updated: "塌爛遍改動:"
|
||||
contact: "聯繫"
|
||||
# active: "Looking for interview offers now"
|
||||
# inactive: "Not looking for offers right now"
|
||||
# complete: "complete"
|
||||
# next: "Next"
|
||||
# next_city: "city?"
|
||||
# next_country: "pick your country."
|
||||
# next_name: "name?"
|
||||
# next_short_description: "write a short description."
|
||||
# next_long_description: "describe your desired position."
|
||||
# next_skills: "list at least five skills."
|
||||
# next_work: "chronicle your work history."
|
||||
# next_education: "recount your educational ordeals."
|
||||
# next_projects: "show off up to three projects you've worked on."
|
||||
# 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"
|
||||
# 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"
|
||||
# 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_help: "City you want to work in (or live in now)."
|
||||
# basics_country: "Country"
|
||||
# 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_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_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_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."
|
||||
# long_description: "Self Description"
|
||||
# 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_header: "Chronicle your work history"
|
||||
# work_years: "Years of Experience"
|
||||
# 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_role_help: "What was your job title or role?"
|
||||
# work_duration: "Duration"
|
||||
# work_duration_help: "When did you hold this gig?"
|
||||
# work_description: "Description"
|
||||
# work_description_help: "What did you do there? (140 chars; optional)"
|
||||
education: "教育程度"
|
||||
# education_header: "Recount your academic ordeals"
|
||||
# education_blurb: "List your academic ordeals."
|
||||
# education_school: "School"
|
||||
# education_school_help: "Name of your school."
|
||||
# education_degree: "Degree"
|
||||
# education_degree_help: "What was your degree and field of study?"
|
||||
# education_duration: "Dates"
|
||||
# education_duration_help: "When?"
|
||||
# education_description: "Description"
|
||||
# education_description_help: "Highlight anything about this educational experience. (140 chars; optional)"
|
||||
# our_notes: "CodeCombat's Notes"
|
||||
# remarks: "Remarks"
|
||||
projects: "項目"
|
||||
# projects_header: "Add 3 projects"
|
||||
# projects_header_2: "Projects (Top 3)"
|
||||
# projects_blurb: "Highlight your projects to amaze employers."
|
||||
# project_name: "Project Name"
|
||||
# project_name_help: "What was the project called?"
|
||||
# project_description: "Description"
|
||||
# project_description_help: "Briefly describe the project."
|
||||
# project_picture: "Picture"
|
||||
# project_picture_help: "Upload a 230x115px or larger image showing off the project."
|
||||
# project_link: "Link"
|
||||
# project_link_help: "Link to the project."
|
||||
# player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
# deprecation_warning_title: "Sorry, CodeCombat is not recruiting right now."
|
||||
# deprecation_warning: "We are focusing on beginner levels instead of finding expert developers for the time being."
|
||||
# hire_developers_not_credentials: "Hire developers, not credentials." # We are not actively recruiting right now, so there's no need to add new translations for the rest of this section.
|
||||
# get_started: "Get Started"
|
||||
# already_screened: "We've already technically screened all our candidates"
|
||||
# filter_further: ", but you can also filter further:"
|
||||
# filter_visa: "Visa"
|
||||
# filter_visa_yes: "US Authorized"
|
||||
# filter_visa_no: "Not Authorized"
|
||||
# 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_experience_recent_grad: "Recent Grad"
|
||||
# filter_experience_student: "College Student"
|
||||
# filter_results: "results"
|
||||
# start_hiring: "Start hiring."
|
||||
# reasons: "Three reasons you should hire through us:"
|
||||
# everyone_looking: "Everyone here is looking for their next opportunity."
|
||||
# everyone_looking_blurb: "Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction."
|
||||
# weeding: "Sit back; we've done the weeding for you."
|
||||
# weeding_blurb: "Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time."
|
||||
# pass_screen: "They will pass your technical screen."
|
||||
# pass_screen_blurb: "Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News."
|
||||
# make_hiring_easier: "Make my hiring easier, please."
|
||||
# what: "What is CodeCombat?"
|
||||
# what_blurb: "CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. Our players have experience with all major tech stacks."
|
||||
# cost: "How much do we charge?"
|
||||
# cost_blurb: "We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company."
|
||||
candidate_name: "名字"
|
||||
candidate_location: "地址"
|
||||
candidate_looking_for: "尋"
|
||||
candidate_role: "角色"
|
||||
candidate_top_skills: "高級技能"
|
||||
candidate_years_experience: "多年工作經驗"
|
||||
candidate_last_updated: "塌爛遍改動"
|
||||
# candidate_who: "Who"
|
||||
# featured_developers: "Featured Developers"
|
||||
# other_developers: "Other Developers"
|
||||
# inactive_developers: "Inactive Developers"
|
||||
|
||||
admin:
|
||||
# av_espionage: "Espionage" # Really not important to translate /admin controls.
|
||||
# av_espionage_placeholder: "Email or username"
|
||||
|
@ -1783,8 +1551,6 @@ module.exports = nativeDescription: "吳語", englishDescription: "Wuu (Traditio
|
|||
av_entities_sub_title: "實體"
|
||||
av_entities_users_url: "用戶"
|
||||
av_entities_active_instances_url: "活動樣品"
|
||||
# av_entities_employer_list_url: "Employer List"
|
||||
# av_entities_candidates_list_url: "Candidate List"
|
||||
# av_entities_user_code_problems_list_url: "User Code Problems List"
|
||||
av_other_sub_title: "別樣"
|
||||
av_other_debug_base_url: "Base(用來調試 base.jade)"
|
||||
|
|
|
@ -104,31 +104,28 @@ module.exports = class Level extends CocoModel
|
|||
if isHero and placeholderComponent = placeholders[defaultThangComponent.original]
|
||||
placeholdersUsed[placeholderComponent.original] = true
|
||||
placeholderConfig = placeholderComponent.config ? {}
|
||||
levelThangComponent.config ?= {}
|
||||
config = levelThangComponent.config
|
||||
if placeholderConfig.pos # Pull in Physical pos x and y
|
||||
levelThangComponent.config ?= {}
|
||||
levelThangComponent.config.pos ?= {}
|
||||
levelThangComponent.config.pos.x = placeholderConfig.pos.x
|
||||
levelThangComponent.config.pos.y = placeholderConfig.pos.y
|
||||
levelThangComponent.config.rotation = placeholderConfig.rotation
|
||||
config.pos ?= {}
|
||||
config.pos.x = placeholderConfig.pos.x
|
||||
config.pos.y = placeholderConfig.pos.y
|
||||
config.rotation = placeholderConfig.rotation
|
||||
else if placeholderConfig.team # Pull in Allied team
|
||||
levelThangComponent.config ?= {}
|
||||
levelThangComponent.config.team = placeholderConfig.team
|
||||
config.team = placeholderConfig.team
|
||||
else if placeholderConfig.significantProperty # For levels where we cheat on what counts as an enemy
|
||||
levelThangComponent.config ?= {}
|
||||
levelThangComponent.config.significantProperty = placeholderConfig.significantProperty
|
||||
config.significantProperty = placeholderConfig.significantProperty
|
||||
else if placeholderConfig.programmableMethods
|
||||
# Take the ThangType default Programmable and merge level-specific Component config into it
|
||||
copy = $.extend true, {}, placeholderConfig
|
||||
programmableProperties = levelThangComponent.config?.programmableProperties ? []
|
||||
programmableProperties = config?.programmableProperties ? []
|
||||
copy.programmableProperties = _.union programmableProperties, copy.programmableProperties ? []
|
||||
levelThangComponent.config = _.merge copy, levelThangComponent.config
|
||||
levelThangComponent.config = config = _.merge copy, config
|
||||
else if placeholderConfig.extraHUDProperties
|
||||
levelThangComponent.config ?= {}
|
||||
levelThangComponent.config.extraHUDProperties = _.union(levelThangComponent.config.extraHUDProperties ? [], placeholderConfig.extraHUDProperties)
|
||||
config.extraHUDProperties = _.union(config.extraHUDProperties ? [], placeholderConfig.extraHUDProperties)
|
||||
else if placeholderConfig.voiceRange # Pull in voiceRange
|
||||
levelThangComponent.config ?= {}
|
||||
levelThangComponent.config.voiceRange = placeholderConfig.voiceRange
|
||||
levelThangComponent.config.cooldown = placeholderConfig.cooldown
|
||||
config.voiceRange = placeholderConfig.voiceRange
|
||||
config.cooldown = placeholderConfig.cooldown
|
||||
|
||||
if isHero
|
||||
if equips = _.find levelThang.components, {original: LevelComponent.EquipsID}
|
||||
|
|
6
app/models/Mandate.coffee
Normal file
|
@ -0,0 +1,6 @@
|
|||
CocoModel = require './CocoModel'
|
||||
|
||||
module.exports = class MandateModel extends CocoModel
|
||||
@className: 'Mandate'
|
||||
@schema: require 'schemas/models/mandate.schema'
|
||||
urlRoot: '/db/mandates'
|
6
app/models/Product.coffee
Normal file
|
@ -0,0 +1,6 @@
|
|||
CocoModel = require './CocoModel'
|
||||
|
||||
module.exports = class ProductModel extends CocoModel
|
||||
@className: 'Product'
|
||||
@schema: require 'schemas/models/product.schema'
|
||||
urlRoot: '/db/products'
|
|
@ -473,7 +473,7 @@ module.exports = class ThangType extends CocoModel
|
|||
name: name, display: display, matchedShortName: matchedShortName
|
||||
|
||||
isSilhouettedItem: ->
|
||||
return console.error "Trying to determine whether #{@get('name')} should be a silhouetted item, but it has no gem cost." unless @get('gems') or @get('tier')
|
||||
return console.error "Trying to determine whether #{@get('name')} should be a silhouetted item, but it has no gem cost." unless @get('gems')? or @get('tier')?
|
||||
console.info "Add (or make sure you have fetched) a tier for #{@get('name')} to more accurately determine whether it is silhouetted." unless @get('tier')?
|
||||
tier = @get 'tier'
|
||||
if tier?
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
CocoModel = require './CocoModel'
|
||||
|
||||
module.exports = class UserRemark extends CocoModel
|
||||
@className: 'UserRemark'
|
||||
@schema: require 'schemas/models/user_remark'
|
||||
urlRoot: '/db/user.remark'
|
18
app/schemas/models/mandate.schema.coffee
Normal file
|
@ -0,0 +1,18 @@
|
|||
c = require './../schemas'
|
||||
|
||||
module.exports = MandateSchema = {
|
||||
type: 'object'
|
||||
additionalProperties: false
|
||||
default:
|
||||
simulationThroughputRatio: 1
|
||||
properties: {
|
||||
simulationThroughputRatio:
|
||||
name: 'Simulation Throughput Ratio'
|
||||
description: '0-1 fraction of requests for a match to simulate that should be granted.'
|
||||
type: 'number'
|
||||
minimum: 0
|
||||
maximum: 1
|
||||
}
|
||||
}
|
||||
|
||||
c.extendBasicProperties MandateSchema, 'Mandate'
|
13
app/schemas/models/product.schema.coffee
Normal file
|
@ -0,0 +1,13 @@
|
|||
c = require './../schemas'
|
||||
|
||||
module.exports = ProductSchema = {
|
||||
type: 'object'
|
||||
additionalProperties: false
|
||||
properties: {
|
||||
name: { type: 'string' }
|
||||
amount: { type: 'integer', description: 'Cost in cents' }
|
||||
gems: { type: 'integer', description: 'Number of gems awarded' }
|
||||
}
|
||||
}
|
||||
|
||||
c.extendBasicProperties ProductSchema, 'Product'
|
|
@ -53,7 +53,7 @@ _.extend UserSchema.properties,
|
|||
iosIdentifierForVendor: c.shortString({format: 'hidden'})
|
||||
firstName: c.shortString({title: 'First Name'})
|
||||
lastName: c.shortString({title: 'Last Name'})
|
||||
gender: {type: 'string', 'enum': ['male', 'female', 'secret', 'trans']}
|
||||
gender: {type: 'string'} # , 'enum': ['male', 'female', 'secret', 'trans', 'other']
|
||||
ageRange: {type: 'string'} # 'enum': ['0-13', '14-17', '18-24', '25-34', '35-44', '45-100']
|
||||
password: {type: 'string', maxLength: 256, minLength: 2, title: 'Password'}
|
||||
passwordReset: {type: 'string'}
|
||||
|
@ -117,7 +117,7 @@ _.extend UserSchema.properties,
|
|||
colorConfig: c.object {additionalProperties: c.colorConfig()}
|
||||
|
||||
aceConfig: c.object { default: { language: 'python', keyBindings: 'default', invisibles: false, indentGuides: false, behaviors: false, liveCompletion: true }},
|
||||
language: {type: 'string', 'enum': ['python', 'javascript', 'coffeescript', 'clojure', 'lua', 'io']}
|
||||
language: {type: 'string', 'enum': ['python', 'javascript', 'coffeescript', 'clojure', 'lua', 'java', 'io']}
|
||||
keyBindings: {type: 'string', 'enum': ['default', 'vim', 'emacs']}
|
||||
invisibles: {type: 'boolean' }
|
||||
indentGuides: {type: 'boolean' }
|
||||
|
@ -127,6 +127,7 @@ _.extend UserSchema.properties,
|
|||
simulatedBy: {type: 'integer', minimum: 0 }
|
||||
simulatedFor: {type: 'integer', minimum: 0 }
|
||||
|
||||
# Deprecated. TODO: Figure out how to remove.
|
||||
jobProfile: c.object {title: 'Job Profile', default: { active: false, lookingFor: 'Full-time', jobTitle: 'Software Developer', city: 'Defaultsville, CA', country: 'USA', skills: ['javascript'], shortDescription: 'Programmer seeking to build great software.', longDescription: '* I write great code.\n* You need great code?\n* Great!' }},
|
||||
lookingFor: {title: 'Looking For', type: 'string', enum: ['Full-time', 'Part-time', 'Remote', 'Contracting', 'Internship'], description: 'What kind of developer position do you want?'}
|
||||
jobTitle: {type: 'string', maxLength: 50, title: 'Desired Job Title', description: 'What role are you looking for? Ex.: "Full Stack Engineer", "Front-End Developer", "iOS Developer"' }
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
c = require './../schemas'
|
||||
|
||||
# Deprecated. TODO: Remove
|
||||
|
||||
UserRemarkSchema = c.object {
|
||||
title: 'Remark'
|
||||
description: 'Remarks on a user, point of contact, tasks.'
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
#subscription-sale-view
|
||||
.above-blurb
|
||||
margin: 0 16% 0 16%
|
||||
.center
|
||||
text-align: center
|
||||
.feature-description
|
||||
font-size: 16px
|
||||
.sale-blurb
|
||||
font-size: 22px
|
||||
.sale-ends
|
||||
position: relative
|
||||
left: 0px
|
||||
top: 50px
|
||||
font-size: 18px
|
||||
line-height: 18px
|
||||
background-color: red
|
||||
color: white
|
||||
margin: 0 7px
|
||||
border-radius: 3px
|
||||
padding: 6px
|
||||
width: 200px
|
||||
text-align: center
|
||||
-ms-transform: rotate(330deg) /* IE 9 */
|
||||
-moz-transform: rotate(330deg) /* Firefox */
|
||||
-webkit-transform: rotate(330deg) /* Safari and Chrome */
|
||||
-o-transform: rotate(330deg) /* Opera */
|
||||
.sub-extended
|
||||
font-size: 12px
|
||||
#pay-button
|
||||
font-size: 18px
|
|
@ -218,7 +218,7 @@ $user-achievements-scale: 0.8
|
|||
cursor: pointer
|
||||
|
||||
.popup
|
||||
left: 600px
|
||||
left: -600px
|
||||
|
||||
.user-level
|
||||
background-image: url("/images/achievements/level-bg.png")
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
#teacher-courses-view
|
||||
margin-bottom: 50px
|
||||
|
||||
#activate-licenses-btn
|
||||
margin-left: 10px
|
||||
|
||||
.active-courses
|
||||
font-size: 12px
|
||||
font-weight: bold
|
||||
margin: 18px 0px 4px 0px
|
||||
text-transform: uppercase
|
||||
|
||||
.class-count
|
||||
|
@ -24,13 +28,21 @@
|
|||
padding: 6px
|
||||
background-color: #AAEA6E
|
||||
|
||||
.active-course-container
|
||||
tr
|
||||
margin-top: 30px
|
||||
td
|
||||
vertical-align: baseline
|
||||
|
||||
.course-enrolled
|
||||
font-size: 12px
|
||||
font-weight: bold
|
||||
margin-left: 40px
|
||||
|
||||
.course-name
|
||||
font-size: 18px
|
||||
font-weight: bold
|
||||
line-height: 30px
|
||||
|
||||
.divider
|
||||
border-bottom: 1px solid black
|
||||
|
|
12
app/styles/editor/thangTasksView.sass
Normal file
|
@ -0,0 +1,12 @@
|
|||
#thang-tasks-view
|
||||
#thangTable
|
||||
width: 100%
|
||||
|
||||
.tasksTable
|
||||
width: 100%
|
||||
|
||||
.tasks
|
||||
width: 87.5%
|
||||
|
||||
.taskOwner
|
||||
width: 12.5%
|
|
@ -1,263 +0,0 @@
|
|||
#employers-view
|
||||
.deprecation-warning
|
||||
text-align: center
|
||||
margin-bottom: 50px
|
||||
|
||||
.deprecated
|
||||
cursor: default
|
||||
opacity: 0.25
|
||||
|
||||
.artisanal-claim
|
||||
background: transparent url(/images/pages/employer/artisanal_claim.png) no-repeat center
|
||||
margin-bottom: 5px
|
||||
height: 24px
|
||||
|
||||
.employer-button
|
||||
background: #fce232 /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #fce232 0%, #ea8e2b 100%)
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fce232), color-stop(100%,#ea8e2b))
|
||||
background: -webkit-linear-gradient(top, #fce232 0%,#ea8e2b 100%)
|
||||
background: -o-linear-gradient(top, #fce232 0%,#ea8e2b 100%)
|
||||
background: -ms-linear-gradient(top, #fce232 0%,#ea8e2b 100%)
|
||||
background: linear-gradient(to bottom, #fce232 0%,#ea8e2b 100%)
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fce232', endColorstr='#ea8e2b',GradientType=0 )
|
||||
vertical-align: text-bottom
|
||||
margin-left: 30px
|
||||
|
||||
#filter-column
|
||||
margin-left: 0px
|
||||
padding-right: 0
|
||||
|
||||
#candidates-column
|
||||
padding-left: 5px
|
||||
padding-right: 5px
|
||||
|
||||
//filter panels
|
||||
#filter
|
||||
border: 2px solid #CBCBCB
|
||||
margin-bottom: 10px
|
||||
.panel-heading
|
||||
background-color: #D9D9D9
|
||||
cursor: pointer
|
||||
border-top-left-radius: 0px
|
||||
border-top-right-radius: 0px
|
||||
#folder-icon
|
||||
margin-right: 5px
|
||||
color: #919191
|
||||
.panel-body
|
||||
background-color: #D9D9D9
|
||||
border-top-left-radius: 0px
|
||||
border-top-right-radius: 0px
|
||||
padding: 5px 10px 10px 10px
|
||||
.panel
|
||||
border: 1px red
|
||||
border-radius: 0px
|
||||
|
||||
#filters
|
||||
margin-bottom: 10px
|
||||
.filter_section
|
||||
min-width: 25%
|
||||
margin-right: 10px
|
||||
display: inline-block
|
||||
vertical-align: top
|
||||
|
||||
h4
|
||||
margin-bottom: 5px
|
||||
|
||||
label
|
||||
display: block
|
||||
font-weight: normal
|
||||
margin-bottom: 0
|
||||
cursor: pointer
|
||||
input
|
||||
margin-right: 5px
|
||||
#saved-filter-table
|
||||
display: none
|
||||
width: 100%
|
||||
tbody
|
||||
tr:nth-child(even)
|
||||
background-color: #CBCBCB
|
||||
margin-bottom: 20px
|
||||
.deletion-row
|
||||
text-align: center
|
||||
.get-started-button
|
||||
vertical-align: text-bottom
|
||||
margin-left: 10px
|
||||
|
||||
#filter-button, #create-alert-button
|
||||
float: right
|
||||
|
||||
#login-link, #logout-link
|
||||
position: absolute
|
||||
right: 10px
|
||||
top: -25px
|
||||
color: black
|
||||
display: inline-block
|
||||
:visited
|
||||
color: black
|
||||
#logout-link:hover
|
||||
cursor: pointer
|
||||
|
||||
#tagline, .hiring-call-to-action
|
||||
width: 100%
|
||||
text-align: center
|
||||
display: inline-block
|
||||
margin-top: 20px
|
||||
h1, h2, h3
|
||||
display: inline-block
|
||||
button
|
||||
display: inline-block
|
||||
h1, h2, h3, h4
|
||||
font-family: Arial, Helvetica, sans-serif
|
||||
color: #333333
|
||||
#tagline
|
||||
margin-bottom: 20px
|
||||
|
||||
.see-candidates-header
|
||||
margin: 30px
|
||||
text-align: center
|
||||
|
||||
#see-candidates
|
||||
cursor: pointer
|
||||
|
||||
.reasons
|
||||
height: 275px
|
||||
margin-bottom: 25px
|
||||
width: 100%
|
||||
|
||||
.information_row
|
||||
height: 150px
|
||||
padding-right: 15px
|
||||
|
||||
.reason
|
||||
width: 33%
|
||||
padding-left: 3%
|
||||
height: 150px
|
||||
display: inline-block
|
||||
vertical-align: top
|
||||
.employer_icon
|
||||
display: block
|
||||
width: 125px
|
||||
margin: 0px auto
|
||||
|
||||
.reason_long
|
||||
width: 50%
|
||||
padding-left: 3%
|
||||
display: inline-block
|
||||
.employer_icon
|
||||
display: inline-block
|
||||
width: 25%
|
||||
max-width: 125px
|
||||
vertical-align: text-bottom
|
||||
.reason_text
|
||||
display: inline-block
|
||||
width: 75%
|
||||
#bottom_row
|
||||
height: auto
|
||||
#candidate-table
|
||||
background-color: #E7E7E7
|
||||
table
|
||||
cursor: pointer
|
||||
width: 96%
|
||||
margin-left: 2%
|
||||
margin-right: 2%
|
||||
margin-bottom: 30px
|
||||
.tag_column, .location_column, .education_column, .work_column
|
||||
width: 33%
|
||||
display: inline-block
|
||||
img
|
||||
margin-right: 5px
|
||||
vertical-align: top
|
||||
tr
|
||||
.candidate-picture
|
||||
background-color: transparent
|
||||
background-size: cover
|
||||
background-repeat: no-repeat
|
||||
background-position: center
|
||||
width: 75px
|
||||
height: 75px
|
||||
border-radius: 5px
|
||||
overflow: hidden
|
||||
margin-right: 10px
|
||||
&.anonymous
|
||||
background-size: contain
|
||||
|
||||
.candidate-description
|
||||
width: 100%
|
||||
vertical-align: bottom
|
||||
div
|
||||
text-overflow: ellipsis
|
||||
overflow: hidden
|
||||
height: 17px
|
||||
|
||||
td.candidate-description
|
||||
padding-bottom: 5px
|
||||
td.candidate-name-cell
|
||||
padding-top: 15px
|
||||
padding-bottom: 5px
|
||||
font-size: 18px
|
||||
|
||||
.border_row
|
||||
border-bottom: 1px solid #d3d3d3
|
||||
vertical-align: bottom
|
||||
td
|
||||
padding-top: 5px
|
||||
padding-bottom: 15px
|
||||
|
||||
.teaser-profiles #candidate-table table
|
||||
.tag_column, .location_column, .education_column, .work_column
|
||||
width: 25%
|
||||
tr
|
||||
.candidate-description
|
||||
padding-top: 15px
|
||||
.candidate-picture
|
||||
width: 50px
|
||||
height: 50px
|
||||
|
||||
#results
|
||||
display: inline-block
|
||||
.tablesorter
|
||||
//img
|
||||
// display: none
|
||||
|
||||
.tablesorter-header
|
||||
cursor: pointer
|
||||
&:hover
|
||||
color: black
|
||||
|
||||
&:first-child
|
||||
// Make sure that "Developer #56" doesn't wrap onto second row
|
||||
min-width: 110px
|
||||
|
||||
.tablesorter-headerAsc
|
||||
background-color: #cfc
|
||||
|
||||
.tablesorter-headerDesc
|
||||
background-color: #ccf
|
||||
|
||||
tr
|
||||
cursor: pointer
|
||||
|
||||
tr.expired
|
||||
opacity: 0.5
|
||||
|
||||
code
|
||||
background-color: rgb(220, 220, 220)
|
||||
color: #555
|
||||
margin: 2px 0
|
||||
display: inline-block
|
||||
text-transform: lowercase
|
||||
|
||||
td:nth-child(3) select
|
||||
min-width: 100px
|
||||
td:nth-child(6) select
|
||||
min-width: 50px
|
||||
td:nth-child(7) select
|
||||
min-width: 100px
|
||||
|
||||
#employers-view, #profile-view.viewed-by-employer
|
||||
#outer-content-wrapper, #intermediate-content-wrapper, #inner-content-wrapper
|
||||
background: #B4B4B4
|
||||
|
||||
.main-content-area
|
||||
background-color: #EAEAEA
|