mirror of
https://github.com/go-task/task.git
synced 2025-11-27 22:38:20 +02:00
CHANGELOG entry + Small adjustments to #1058
This commit is contained in:
12
.github/workflows/sync-translated-documents.yml
vendored
12
.github/workflows/sync-translated-documents.yml
vendored
@@ -24,9 +24,11 @@ jobs:
|
|||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v4
|
uses: peter-evans/create-pull-request@v4
|
||||||
with:
|
with:
|
||||||
commit-message: "docs: sync translated documents"
|
commit-message: "Website: Sync translations"
|
||||||
title: "docs: sync translated documents"
|
title: "Website: Sync translations"
|
||||||
body: "- [x] Sync translated documents"
|
body: Synchonizing translations with Crowdin
|
||||||
branch: feature/auto-sync-translated-documents
|
branch: chore/sync-translations
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
draft: true
|
author: task-bot <106601941+task-bot@users.noreply.github.com>
|
||||||
|
labels: translation
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- The website was integrated with [Crowdin](https://crowdin.com/project/taskfile)
|
||||||
|
to allow the community to contribute with translations!
|
||||||
|
[Chinese](https://taskfile.dev/zh-Hans/) is the first language available
|
||||||
|
([#1057](https://github.com/go-task/task/issues/1057), [#1058](https://github.com/go-task/task/pull/1058) by @misitebao).
|
||||||
- Added task location data to the `--json` flag output ([#1056](https://github.com/go-task/task/pull/1056) by @pd93)
|
- Added task location data to the `--json` flag output ([#1056](https://github.com/go-task/task/pull/1056) by @pd93)
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
- Change the name of the file generated by `task --init` from `Taskfile.yaml`
|
- Change the name of the file generated by `task --init` from `Taskfile.yaml`
|
||||||
to `Taskfile.yml`
|
to `Taskfile.yml`
|
||||||
([#1062](https://github.com/go-task/task/pull/1062) by @misitebao).
|
([#1062](https://github.com/go-task/task/pull/1062) by @misitebao).
|
||||||
@@ -13,7 +14,6 @@
|
|||||||
(`{{splitArgs "foo bar 'foo bar baz'"}}`) to ensure string is splitted as
|
(`{{splitArgs "foo bar 'foo bar baz'"}}`) to ensure string is splitted as
|
||||||
arguments not whitespaces
|
arguments not whitespaces
|
||||||
([#1040](https://github.com/go-task/task/issues/1040), [#1059](https://github.com/go-task/task/pull/1059) by @dhanusaputra).
|
([#1040](https://github.com/go-task/task/issues/1040), [#1059](https://github.com/go-task/task/pull/1059) by @dhanusaputra).
|
||||||
- Added task location data to the `--json` flag output ([#1056](https://github.com/go-task/task/pull/1056) by @pd93)
|
|
||||||
|
|
||||||
## v3.22.0 - 2023-03-10
|
## v3.22.0 - 2023-03-10
|
||||||
|
|
||||||
|
|||||||
@@ -28,8 +28,12 @@ tasks:
|
|||||||
preview:
|
preview:
|
||||||
desc: Preview Website
|
desc: Preview Website
|
||||||
deps: [build]
|
deps: [build]
|
||||||
|
aliases: [serve]
|
||||||
|
vars:
|
||||||
|
HOST: '{{default "localhost" .HOST}}'
|
||||||
|
PORT: '{{default "3001" .PORT}}'
|
||||||
cmds:
|
cmds:
|
||||||
- npx docusaurus serve
|
- npx docusaurus serve --no-open --host={{.HOST}} --port={{.PORT}}
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
desc: Clean temp directories
|
desc: Clean temp directories
|
||||||
|
|||||||
21
docs/docs/translate.md
Normal file
21
docs/docs/translate.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
slug: /translate/
|
||||||
|
sidebar_position: 13
|
||||||
|
---
|
||||||
|
|
||||||
|
# Translate
|
||||||
|
|
||||||
|
Want to help us translate this documentation? In this document we explain how.
|
||||||
|
|
||||||
|
Do NOT edit translated markdown files directly on the GitHub repository!
|
||||||
|
We use [Crowdin][crowdin] to allow contributors on work on translations.
|
||||||
|
The repository is periodically updated with progress from Crowdin.
|
||||||
|
|
||||||
|
If you want to have access to the Crowdin project to be able to suggest
|
||||||
|
translations, please ask for access on the
|
||||||
|
[#translations channel on our Discord server][discord].
|
||||||
|
If a given language is not being shown to Crowdin yet, just ask and we can
|
||||||
|
configure it.
|
||||||
|
|
||||||
|
[crowdin]: https://crowdin.com/project/taskfile
|
||||||
|
[discord]: https://discord.gg/6TY36E39UK
|
||||||
@@ -110,13 +110,13 @@ const config = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'localeDropdown',
|
type: 'localeDropdown',
|
||||||
position: 'left'
|
position: 'left',
|
||||||
// dropdownItemsAfter: [
|
dropdownItemsAfter: [
|
||||||
// {
|
{
|
||||||
// to: '/',
|
to: '/translate/',
|
||||||
// label: 'Help Us Translate ❤'
|
label: 'Help Us Translate'
|
||||||
// }
|
}
|
||||||
// ]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
href: GITHUB_URL,
|
href: GITHUB_URL,
|
||||||
|
|||||||
Reference in New Issue
Block a user