1
0
mirror of https://github.com/go-task/task.git synced 2025-12-01 22:52:02 +02:00

Website: Link to the Chinese translation

Closes #921
This commit is contained in:
Andrey Nering
2022-11-26 18:16:38 -03:00
parent d1850e8fd2
commit 45ab4dc718
5 changed files with 48 additions and 5 deletions

View File

@@ -1,13 +1,15 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const {
GITHUB_URL,
TWITTER_URL,
DISCORD_URL,
CHINESE_URL
} = require('./constants');
const lightCodeTheme = require('./src/themes/prismLight');
const darkCodeTheme = require('./src/themes/prismDark');
const GITHUB_URL = 'https://github.com/go-task/task';
const TWITTER_URL = 'https://twitter.com/taskfiledev';
const DISCORD_URL = 'https://discord.gg/6TY36E39UK';
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Task',
@@ -153,6 +155,15 @@ const config = {
href: 'https://opencollective.com/task'
}
]
},
{
title: 'Translations',
items: [
{
label: 'Chinese',
href: CHINESE_URL
}
]
}
]
},