chore(i18n,client): processed translations (#45083)

This commit is contained in:
camperbot
2022-02-13 09:14:51 +05:30
committed by GitHub
parent a7fca04d93
commit dbef7a3464
14 changed files with 147 additions and 84 deletions

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "關係型數據庫",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"對於這些課程,你將使用真正的開發者工具和軟件,包括 VS CodePostgreSQL Linux / Unix 命令行,來完成交互式教程和構建項目。",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "瀏覽我們的其他免費認證\n我們建議你按順序學習",
"courses": "課程",
"steps": "步驟",
"expand": "Expand courses",
"collapse": "Collapse courses",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Legacy Courses",
"legacy-desc": "These courses are no longer part of the certification path, but are still available for you to further your learning.",
"viewing-upcoming-change": "You are looking at a beta page. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "訪問下一個挑戰",
"ask-later": "稍後問我",
"start-coding": "開始編碼!",
"go-to-settings": "Go to settings to claim your certification"
"go-to-settings": "Go to settings to claim your certification",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "免費學習編程",
@ -294,7 +296,13 @@
},
"help-translate": "我們仍然在翻譯以下證書。",
"help-translate-link": "幫助我們翻譯。",
"project-preview-title": "下面是你將構建的項目的預覽"
"project-preview-title": "下面是你將構建的項目的預覽",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "支持我們的非營利組織",
@ -449,7 +457,7 @@
"magnifier": "放大鏡"
},
"aria": {
"fcc-logo": "freeCodeCamp 徽標",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "答案",
"linkedin": "鏈接到 {{username}} 的 LinkedIn",
"github": "鏈接到 {{username}} 的 GitHub",
@ -512,7 +520,8 @@
"create-token-err": "嘗試創建令牌時出錯",
"delete-token-err": "嘗試刪除令牌時出錯",
"token-created": "你已成功創建了一個新令牌。",
"token-deleted": "你的令牌已被刪除。"
"token-deleted": "你的令牌已被刪除。",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "字符數最多爲 288 個,你還可以輸入 {{charsLeft}} 個字符",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "关系型数据库",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"对于这些课程,你将使用真正的开发者工具和软件,包括 VS CodePostgreSQL Linux / Unix 命令行,来完成交互式教程和构建项目。",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "浏览我们的其他免费认证\n我们建议你按顺序学习",
"courses": "课程",
"steps": "步骤",
"expand": "Expand courses",
"collapse": "Collapse courses",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Legacy Courses",
"legacy-desc": "These courses are no longer part of the certification path, but are still available for you to further your learning.",
"viewing-upcoming-change": "You are looking at a beta page. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "访问下一个挑战",
"ask-later": "稍后问我",
"start-coding": "开始编码!",
"go-to-settings": "Go to settings to claim your certification"
"go-to-settings": "Go to settings to claim your certification",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "免费学习编程",
@ -294,7 +296,13 @@
},
"help-translate": "我们仍然在翻译以下证书。",
"help-translate-link": "帮助我们翻译。",
"project-preview-title": "下面是你将构建的项目的预览"
"project-preview-title": "下面是你将构建的项目的预览",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "支持我们的非营利组织",
@ -449,7 +457,7 @@
"magnifier": "放大镜"
},
"aria": {
"fcc-logo": "freeCodeCamp 徽标",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "答案",
"linkedin": "链接到 {{username}} 的 LinkedIn",
"github": "链接到 {{username}} 的 GitHub",
@ -512,7 +520,8 @@
"create-token-err": "尝试创建令牌时出错",
"delete-token-err": "尝试删除令牌时出错",
"token-created": "你已成功创建了一个新令牌。",
"token-deleted": "你的令牌已被删除。"
"token-deleted": "你的令牌已被删除。",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "字符数最多为 288 个,你还可以输入 {{charsLeft}} 个字符",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "Bases de Datos Relacionales",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"Para estos cursos, utilizarás herramientas y software de desarrollador reales, incluyendo VS Code, PostgreSQL y la línea de comandos de Linux / Unix para completar tutoriales interactivos y crear proyectos.",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "Navega por nuestras otras certificaciones gratuitas\n(recomendamos hacerlo en orden)",
"courses": "Cursos",
"steps": "Steps",
"expand": "Expand courses",
"collapse": "Collapse courses",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Legacy Courses",
"legacy-desc": "These courses are no longer part of the certification path, but are still available for you to further your learning.",
"viewing-upcoming-change": "You are looking at a beta page. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "Ir al próximo desafío",
"ask-later": "Pregúntame luego",
"start-coding": "¡Empieza a programar!",
"go-to-settings": "Go to settings to claim your certification"
"go-to-settings": "Go to settings to claim your certification",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "Aprende a programar gratis.",
@ -294,7 +296,13 @@
},
"help-translate": "Todavía estamos traduciendo las siguientes certificaciones.",
"help-translate-link": "Ayúdanos a traducir.",
"project-preview-title": "Aquí hay una vista previa de lo que construirás"
"project-preview-title": "Aquí hay una vista previa de lo que construirás",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "Apoya a nuestra organización sin fines de lucro",
@ -449,7 +457,7 @@
"magnifier": "lupa"
},
"aria": {
"fcc-logo": "Logo de freeCodeCamp",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "Respuesta",
"linkedin": "Enlace al LinkedIn de {{username}}",
"github": "Enlace al GitHub de {{username}}",
@ -512,7 +520,8 @@
"create-token-err": "Ocurrió un error al intentar crear un token",
"delete-token-err": "Ocurrió un error al intentar eliminar tu token",
"token-created": "Has creado con éxito un nuevo token.",
"token-deleted": "Tu token ha sido eliminado."
"token-deleted": "Tu token ha sido eliminado.",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "Hay un límite máximo de 288 caracteres, te quedan {{charsLeft}}",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "Database relazionali",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"Per questi corsi, utilizzerai strumenti e software per veri sviluppatori tra cui VS Code, PostgreSQL, e la riga di comando Linux / Unix per completare i tutorial interattivi e costruire progetti.",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "Sfoglia le altre nostre certificazioni gratuite\n(consigliamo di seguirle in ordine)",
"courses": "Corsi",
"steps": "Passaggi",
"expand": "Expand courses",
"collapse": "Collapse courses",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Legacy Courses",
"legacy-desc": "These courses are no longer part of the certification path, but are still available for you to further your learning.",
"viewing-upcoming-change": "You are looking at a beta page. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "Vai alla prossima sfida",
"ask-later": "Chiedimelo più tardi",
"start-coding": "Start coding!",
"go-to-settings": "Go to settings to claim your certification"
"go-to-settings": "Go to settings to claim your certification",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "Impara a programmare — gratis.",
@ -294,7 +296,13 @@
},
"help-translate": "Stiamo ancora traducendo le seguenti certificazioni.",
"help-translate-link": "Aiutaci con le traduzioni...",
"project-preview-title": "Here's a preview of what you will build"
"project-preview-title": "Here's a preview of what you will build",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "Supporta il nostro no profit",
@ -449,7 +457,7 @@
"magnifier": "lente d'ingrandimento"
},
"aria": {
"fcc-logo": "Logo freeCodeCamp",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "Risposta",
"linkedin": "Link al LinkedIn di {{username}}",
"github": "Link al GitHub di {{username}}",
@ -512,7 +520,8 @@
"create-token-err": "An error occurred trying to create a token",
"delete-token-err": "An error occurred trying to delete your token",
"token-created": "You have successfully created a new token.",
"token-deleted": "Your token has been deleted."
"token-deleted": "Your token has been deleted.",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "C'è un limite massimo di 288 caratteri, hai {{charsLeft}} rimanenti",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "リレーショナルデータベース",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"このコースでは、VS CodePostgreSQL、そして Linux / Unix コマンドラインを含む本格的な開発者ツールとソフトウェアを使用して、インタラクティブなチュートリアルを完了し、プロジェクトを構築します。",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "他の無料の認定講座を閲覧する\n(順番に受講することをお勧めします)",
"courses": "コース",
"steps": "ステップ",
"expand": "コースを展開",
"collapse": "コースを閉じる",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "レガシーコース",
"legacy-desc": "現在、これらのコースは認定講座の一部ではありませんが、あなたの学習をより深めるために利用可能です。",
"viewing-upcoming-change": "ベータ版のページを閲覧中です。 ",

View File

@ -64,7 +64,9 @@
"go-to-next": "次のチャレンジに進む",
"ask-later": "後で",
"start-coding": "コーディングを始めましょう!",
"go-to-settings": "設定へ移動して認定証を取得"
"go-to-settings": "設定へ移動して認定証を取得",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "プログラミングを無料で学ぶ。",
@ -294,7 +296,13 @@
},
"help-translate": "以下の認定講座は現在翻訳中です。",
"help-translate-link": "翻訳にご協力ください。",
"project-preview-title": "あなたが作るもののプレビューはこちらです。"
"project-preview-title": "あなたが作るもののプレビューはこちらです。",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "非営利団体を支援する",
@ -449,7 +457,7 @@
"magnifier": "虫眼鏡"
},
"aria": {
"fcc-logo": "freeCodeCamp のロゴ",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "回答",
"linkedin": "{{username}} さんの LinkedIn へのリンク",
"github": "{{username}} さんの GitHub へのリンク",
@ -512,7 +520,8 @@
"create-token-err": "トークンの作成中にエラーが発生しました",
"delete-token-err": "トークンの削除中にエラーが発生しました",
"token-created": "無事に新しいトークンを作成しました。",
"token-deleted": "トークンが削除されました。"
"token-deleted": "トークンが削除されました。",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "上限は 288 文字です。残り {{charsLeft}} 文字です。",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "Bancos de dados relacionais",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"Para estes cursos, você usará ferramentas e software reais de desenvolvedor, incluindo o VS Code, PostgreSQL e a linha de comando do Linux/Unix para completar tutoriais interativos e criar projetos.",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "Navegue por nossas outras certificações gratuitas\n(recomendamos fazer isto em sequência)",
"courses": "Cursos",
"steps": "Passos",
"expand": "Expandir cursos",
"collapse": "Recolher cursos",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Cursos anteriores",
"legacy-desc": "Estes cursos não fazem mais parte do caminho de certificação, mas ainda estão disponíveis para você continuar aprendendo.",
"viewing-upcoming-change": "Você está vendo uma página em estágio beta. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "Ir para o próximo desafio",
"ask-later": "Pergunte-me depois",
"start-coding": "Comece a programar!",
"go-to-settings": "Vá para as configurações para solicitar sua certificação"
"go-to-settings": "Vá para as configurações para solicitar sua certificação",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "Aprenda a programar — de graça.",
@ -294,7 +296,13 @@
},
"help-translate": "Ainda estamos traduzindo as certificações a seguir.",
"help-translate-link": "Ajude-nos a traduzir.",
"project-preview-title": "Aqui está uma prévia do que você vai criar"
"project-preview-title": "Aqui está uma prévia do que você vai criar",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "Dê seu apoio à nossa organização sem fins lucrativos",
@ -449,7 +457,7 @@
"magnifier": "lupa"
},
"aria": {
"fcc-logo": "Logotipo do freeCodeCamp",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "Resposta",
"linkedin": "Link para o LinkedIn de {{username}}",
"github": "Link para o GitHub de {{username}}",
@ -512,7 +520,8 @@
"create-token-err": "Ocorreu um erro ao tentar criar um token",
"delete-token-err": "Ocorreu um erro ao tentar excluir seu token",
"token-created": "Você criou com sucesso um novo token.",
"token-deleted": "Seu token foi excluído."
"token-deleted": "Seu token foi excluído.",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "Há um limite máximo de 288 caracteres, você tem {{charsLeft}} restante(s)",

View File

@ -428,7 +428,7 @@
"relational-databases": {
"title": "Реляційна база даних",
"intro": [
"For these courses, you will use real developer tools and software including VS Code, PostgreSQL, and the Linux / Unix command line to complete interactive tutorials and build projects.",
"Для цих курсів ви будете використовувати реальні інструменти розробника та програмне забезпечення, включаючи VS-код, PostgreSQL, і командний рядок Linux / Unix для завершення інтерактивних уроків і створення проєктів.",
"These courses start off with basic Bash commands. Using the terminal, you will learn everything from navigating and manipulating a file system, scripting in Bash, all the way to advanced usage.",
"Next, you will learn how to create and work with relational databases using PostgreSQL, a database management system, and SQL, the language of these databases.",
"Finally, you will learn Git, the version control system, an essential tool of every developer."
@ -499,35 +499,35 @@
"learn-git-by-building-an-sql-reference-object": {
"title": "Learn Git by Building and SQL Reference Object",
"intro": [
"Git is a version control system that keep track of all the changes you make to your codebase",
"Git is a version control system that keeps track of all the changes you make to your codebase.",
"In this 240 lesson course, you will learn how Git keeps track of your code by creating an object containing commonly used SQL commands."
]
},
"learn-nano-by-building-a-castle": {
"title": "Learn Nano by Building a Castle",
"intro": [
"Nano is a program that allow you to edit files right in the terminal.",
"Nano is a program that allows you to edit files right in the terminal.",
"In this 40 lesson course, you will learn how to edit files in the terminal with Nano while building a castle."
]
},
"learn-relational-databases-by-building-a-mario-database": {
"title": "Learn Relational Databases by Building a Mario Database",
"intro": [
"Relational Databases organize data into tables that are linked together through relationships.",
"Relational databases organize data into tables that are linked together through relationships.",
"In this 165 lesson course, you will learn the basics of relational databases by creating a PostgreSQL database filled with video game characters."
]
},
"learn-sql-by-building-a-student-database-part-1": {
"title": "Learn SQL by Building a Student Database: Part 1",
"intro": [
"SQL, or Structured Query Language, is the language for communicating with Relational Databases.",
"SQL, or Structured Query Language, is the language for communicating with relational databases.",
"In this 140 lesson course, you will create a Bash script that uses SQL to enter information about your computer science students into PostgreSQL."
]
},
"learn-sql-by-building-a-student-database-part-2": {
"title": "Learn SQL by Building a Student Database: Part 2",
"intro": [
"SQL Join commands are used to combine information from multiple tables in a Relational Database",
"SQL join commands are used to combine information from multiple tables in a relational database",
"In this 140 lesson course, you will complete your student database while diving deeper into SQL commands."
]
}
@ -776,8 +776,8 @@
"browse-other": "Перегляньте інші безплатні сертифікати\n(ми рекомендуємо робити це послідовно)",
"courses": "Курси",
"steps": "Кроки",
"expand": "Expand courses",
"collapse": "Collapse courses",
"expand": "Expand course",
"collapse": "Collapse course",
"legacy-header": "Legacy Courses",
"legacy-desc": "These courses are no longer part of the certification path, but are still available for you to further your learning.",
"viewing-upcoming-change": "You are looking at a beta page. ",

View File

@ -64,7 +64,9 @@
"go-to-next": "Перейти до наступного завдання",
"ask-later": "Запитати пізніше",
"start-coding": "Start coding!",
"go-to-settings": "Go to settings to claim your certification"
"go-to-settings": "Go to settings to claim your certification",
"click-start-course": "Click here to start the course",
"click-start-project": "Click here to start the project"
},
"landing": {
"big-heading-1": "Вчіться програмувати — це безкоштовно.",
@ -294,7 +296,13 @@
},
"help-translate": "Ми все ще перекладаємо такі сертифікати.",
"help-translate-link": "Допоможіть нам з перекладом.",
"project-preview-title": "Here's a preview of what you will build"
"project-preview-title": "Here's a preview of what you will build",
"github-required": "A <0>GitHub</0> account is required to run the project. You will need to create one if you haven't already.",
"step-1": "Step 1: Complete the project",
"step-2": "Step 2: Submit your code",
"submit-public-url": "When you have completed the project, save all the required files into a public repository and submit the URL to it below.",
"complete-both-steps": "Complete both steps below to finish the challenge.",
"runs-in-vm": "The project runs in a virtual machine, complete the user stories described in there and get all the tests to pass to finish step 1."
},
"donate": {
"title": "Підтримати нашу некомерційну організацію",
@ -449,7 +457,7 @@
"magnifier": "лупа"
},
"aria": {
"fcc-logo": "Логотип freeCodeCamp ",
"fcc-curriculum": "freeCodeCamp Curriculum",
"answer": "Відповідь",
"linkedin": "Посилання на сторінку LinkedIn {{username}}",
"github": "Посилання на сторінку GitHub {{username}}",
@ -512,7 +520,8 @@
"create-token-err": "An error occurred trying to create a token",
"delete-token-err": "An error occurred trying to delete your token",
"token-created": "You have successfully created a new token.",
"token-deleted": "Your token has been deleted."
"token-deleted": "Your token has been deleted.",
"complete-project-first": "You must complete the project first."
},
"validation": {
"max-characters": "Максимальний розмір — 288 символів, у вас залишилося {{charsLeft}}",