chore: sync translations (#1440)

This commit is contained in:
task-bot
2024-01-10 22:19:58 -03:00
committed by GitHub
parent 33f90a8c16
commit f108fdd580
127 changed files with 4273 additions and 2313 deletions

View File

@@ -15,14 +15,15 @@ In order to allow Task to evolve quickly, we roll out breaking changes to minor
You can view a full list of active experiments in the "Experiments" section of the sidebar.
You can enable an experimental feature by:
## Enabling Experiments
You can enable an experimental feature by doing one of the following:
1. Using the relevant environment variable in front of a task command. For example, `TASK_X_{FEATURE}=1 task {my-task}`. This is intended for one-off invocations of Task to test out experimental features.
1. Using the relevant environment variable in your "dotfiles" (e.g. `.bashrc`, `.zshrc` etc.). This is intended for permanently enabling experimental features in your environment.
1. Creating a `.env` file in the same directory as your root Taskfile that contains the relevant environment variables. e.g.
1. Creating a `.env` file in the same directory as your root Taskfile that contains the relevant environment variables. This allows you to enable an experimental feature at a project level. For example:
```shell
# .env
```shell title=".env"
TASK_X_FEATURE=1
```