From ee6641901fc83ff3d8b4c96afaf42978993fb8cb Mon Sep 17 00:00:00 2001 From: Zhicheng WANG Date: Sat, 13 Jun 2020 08:38:28 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=BF=AE=E6=94=B9=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E6=98=BE=E7=A4=BA=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/src/app/app.component.ts | 4 ++-- aio/src/app/custom-elements/api/api-list.component.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/src/app/app.component.ts b/aio/src/app/app.component.ts index 2b9ef93bd3..47accb02c8 100644 --- a/aio/src/app/app.component.ts +++ b/aio/src/app/app.component.ts @@ -160,8 +160,8 @@ export class AppComponent implements OnInit { ]).subscribe(([versionInfo, versions]) => { // TODO(pbd): consider whether we can lookup the stable and next versions from the internet const computedVersions: NavigationNode[] = [ - { title: 'next', url: 'https://next.angular.io/' }, - { title: 'stable', url: 'https://angular.cn/' }, + { title: '英文最新版', url: 'https://next.angular.io/' }, + { title: '同步翻译版', url: 'https://angular.cn/' }, ]; if (this.deployment.mode === 'archive') { computedVersions.push({ title: `v${versionInfo.major}` }); diff --git a/aio/src/app/custom-elements/api/api-list.component.ts b/aio/src/app/custom-elements/api/api-list.component.ts index da797ec7a3..1c9679c2ed 100644 --- a/aio/src/app/custom-elements/api/api-list.component.ts +++ b/aio/src/app/custom-elements/api/api-list.component.ts @@ -57,7 +57,7 @@ export class ApiListComponent implements OnInit { statuses: Option[] = [ { value: 'all', title: '全部' }, - { value: 'stable', title: 'Stable'}, + { value: 'stable', title: '稳定'}, { value: 'deprecated', title: '弃用' }, { value: 'security-risk', title: '安全风险' } ];