feat: (WIP) translate some nav menus
This commit is contained in:
parent
323010a135
commit
4c57f76ce6
|
@ -2,51 +2,51 @@
|
||||||
"TopBar": [
|
"TopBar": [
|
||||||
{
|
{
|
||||||
"url": "features",
|
"url": "features",
|
||||||
"title": "Features"
|
"title": "特性"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "docs",
|
"url": "docs",
|
||||||
"title": "Docs",
|
"title": "文档",
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "resources",
|
"url": "resources",
|
||||||
"title": "Resources"
|
"title": "资源"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"url": "events",
|
"url": "events",
|
||||||
"title": "Events"
|
"title": "会议"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"SideNav": [
|
"SideNav": [
|
||||||
{
|
{
|
||||||
"url": "docs",
|
"url": "docs",
|
||||||
"title": "Docs",
|
"title": "文档",
|
||||||
"tooltip": "Angular Documentation",
|
"tooltip": "Angular 开发文档",
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Getting started",
|
"title": "快速起步",
|
||||||
"tooltip": "A gentle introduction to Angular.",
|
"tooltip": "A gentle introduction to Angular.",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"url": "guide/learning-angular",
|
"url": "guide/learning-angular",
|
||||||
"title": "Learning Angular",
|
"title": "学习 Angular",
|
||||||
"tooltip": "A suggested path through the documentation for Angular newcomers."
|
"tooltip": "为 Angular 新手推荐的学习路径"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"url": "guide/quickstart",
|
"url": "guide/quickstart",
|
||||||
"title": "Basic Quickstart",
|
"title": "基本版快速起步",
|
||||||
"tooltip": "A quick look at an Angular app without tooling."
|
"tooltip": "如何不借助工具开始一个 Angular 项目"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"url": "guide/cli-quickstart",
|
"url": "guide/cli-quickstart",
|
||||||
"title": "CLI Quickstart",
|
"title": "CLI 快速起步",
|
||||||
"tooltip": "A quick look at an Angular app built with the Angular CLI."
|
"tooltip": "使用 CLI 快速开始一个 Angular 项目"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -57,13 +57,13 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
"url": "guide/architecture",
|
"url": "guide/architecture",
|
||||||
"title": "Architecture",
|
"title": "架构",
|
||||||
"tooltip": "The basic building blocks of Angular applications."
|
"tooltip": "Angular 应用的基本构造块"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"url": "guide/appmodule",
|
"url": "guide/appmodule",
|
||||||
"title": "The root AppModule",
|
"title": "根模块",
|
||||||
"tooltip": "Tell Angular how to construct and bootstrap the app in the root \"AppModule\"."
|
"tooltip": "Tell Angular how to construct and bootstrap the app in the root \"AppModule\"."
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "yarn check-env && ng",
|
"ng": "yarn check-env && ng",
|
||||||
"setup": "yarn && yarn boilerplate:remove && yarn boilerplate:add",
|
"setup": "yarn && yarn boilerplate:remove && yarn boilerplate:add",
|
||||||
"start": "yarn check-env && ng serve",
|
"start": "ng serve -p 0 --open",
|
||||||
"build": "yarn generate-plunkers && yarn docs && ng build -prod -sm",
|
"build": "yarn generate-plunkers && yarn docs && ng build -prod -sm",
|
||||||
"lint": "yarn check-env && yarn docs-lint && ng lint",
|
"lint": "yarn check-env && yarn docs-lint && ng lint",
|
||||||
"test": "yarn check-env && ng test --sourcemap=false",
|
"test": "yarn check-env && ng test --sourcemap=false",
|
||||||
|
|
Loading…
Reference in New Issue