diff --git a/index.html b/index.html index 0ba9363f740ae..53f735fa576af 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,7 @@ + diff --git a/package.json b/package.json index f47311c7868b8..d38de0b49086a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "crawlab-ui", - "version": "0.6.2-2", + "version": "0.6.2-3", "private": false, "author": { "name": "Marvin Zhang", diff --git a/src/i18n/lang/en/global.ts b/src/i18n/lang/en/global.ts index 4051355a101dd..08d4f99fa9850 100644 --- a/src/i18n/lang/en/global.ts +++ b/src/i18n/lang/en/global.ts @@ -10,6 +10,8 @@ const global: LGlobal = { upgrade: { pro: 'Upgrade to Pro Edition', }, + docs: 'Docs', + github: 'GitHub', }; export default global; diff --git a/src/i18n/lang/zh/global.ts b/src/i18n/lang/zh/global.ts index 7127e4c2dbabf..818768d877187 100644 --- a/src/i18n/lang/zh/global.ts +++ b/src/i18n/lang/zh/global.ts @@ -10,6 +10,8 @@ const global: LGlobal = { upgrade: { pro: '升级到专业版', }, + docs: '文档', + github: 'GitHub', }; export default global; diff --git a/src/interfaces/i18n/global.d.ts b/src/interfaces/i18n/global.d.ts index a283030e70ed5..c0a5efe87ae30 100644 --- a/src/interfaces/i18n/global.d.ts +++ b/src/interfaces/i18n/global.d.ts @@ -11,5 +11,7 @@ export declare global { upgrade: { pro: string; }; + docs: string; + github: string; } } diff --git a/src/layouts/components/Header.vue b/src/layouts/components/Header.vue index bab510b8185b7..4785201ac2c79 100644 --- a/src/layouts/components/Header.vue +++ b/src/layouts/components/Header.vue @@ -4,15 +4,35 @@