Skip to content

Commit 9fdc335

Browse files
ss-odigital-teams
andauthored
New Crowdin translations by Github Action (#703)
Co-authored-by: digital-teams[bot] <[email protected]>
1 parent e6ea5b8 commit 9fdc335

File tree

140 files changed

+502
-612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+502
-612
lines changed

i18n/de/docusaurus-plugin-content-docs-community/current/01_intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 1
55
image: img/logo/320x320.png
66
keywords:
77
- documentation
8-
- commmunity
8+
- community
99
- zsh-lovers
1010
- gallery
1111
---

i18n/de/docusaurus-plugin-content-docs-community/current/02_zsh_plugin_standard.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Historically, Zsh plugins were first defined by Oh My Zsh. They provide a way to
1818

1919
At a simple level, a plugin:
2020

21-
1. Has its directory added to `$fpath` ([Zsh documentation: #Autoloading-Functions][]). This is being done either by a plugin manager or by the plugin itself (see [5th section](#run-on-unload-call) for more information).
21+
1. Has its directory added to `$fpath` ([Zsh documentation: #Autoloading-Functions][autoloading-functions]). This is being done either by a plugin manager or by the plugin itself (see [5th section](#run-on-unload-call) for more information).
2222

2323
2. Has it's first `*.plugin.zsh` file sourced (or `*.zsh`, `init.zsh`, `*.sh`, these are non-standard).
2424

@@ -101,15 +101,15 @@ Despite that, the current-standard plugins have their main directory added to `$
101101

102102
```shell showLineNumbers
103103
if [[ ${zsh_loaded_plugins[-1]} != */kalc && -z ${fpath[(r)${0:h}/functions]} ]] {
104-
fpath+=( "${0:h}/functions" )
104+
fpath+=( "${0:h}/functions" )
105105
}
106106
```
107107
108108
or, via use of the `PMSPEC` [parameter](#pmspec):
109109
110110
```shell showLineNumbers
111111
if [[ $PMSPEC != *f* ]] {
112-
fpath+=( "${0:h}/functions" )
112+
fpath+=( "${0:h}/functions" )
113113
}
114114
```
115115
@@ -137,7 +137,7 @@ The runnable should be put into the directory with a `+x` access right assigned.
137137
138138
```shell showLineNumbers
139139
if [[ $PMSPEC != *b* ]] {
140-
path+=( "${0:h}/bin" )
140+
path+=( "${0:h}/bin" )
141141
}
142142
```
143143
@@ -219,7 +219,7 @@ The second item allows a plugin to e.g. set up `$fpath`, knowing that plugin man
219219
220220
```shell showLineNumbers
221221
if [[ ${zsh_loaded_plugins[-1]} != */kalc && -z ${fpath[(r)${0:h}]} ]] {
222-
fpath+=( "${0:h}" )
222+
fpath+=( "${0:h}" )
223223
}
224224
```
225225
@@ -285,7 +285,7 @@ The contents of the parameter describing a fully-compliant plugin manager should
285285
286286
```shell showLineNumbers
287287
if [[ $PMSPEC != *f* ]] {
288-
fpath+=( "${0:h}/functions" )
288+
fpath+=( "${0:h}/functions" )
289289
}
290290
```
291291
@@ -391,7 +391,7 @@ Their use is naturally limited to the functions called from the main function of
391391
392392
The recommendation is the purely subjective opinion of the author.
393393
394-
It can evolve – if you have any remarks, don’t hesitate to [fill them][].
394+
It can evolve – if you have any remarks, don’t hesitate to [fill-them][].
395395
396396
## The problems solved by the proposition
397397
@@ -515,8 +515,8 @@ Following the [Standard Plugins Hash](#standard-plugins-hash) section, the plugi
515515
[GitHub search loaded]: https://github.com/search?q=if+%22zsh_loaded_plugins%22&type=Code
516516
[agkozak/zhooks is using]: https://github.com/agkozak/zhooks/blob/628e1e3b8373bf31c26cb154f71c16ebe9d13b51/zhooks.plugin.zsh#L75-L82
517517
[tj/git-extras]: https://github.com/tj/git-extras
518-
[fill them]: https://github.com/z-shell/zw/issues/new
518+
[fill-them]: https://github.com/z-shell/zw/issues/new
519519
[zsh-workers post]: https://www.zsh.org/mla/workers/2011/msg01050.html
520-
[Zsh documentation: #Autoloading-Functions]: http://zsh.sourceforge.net/Doc/Release/Functions.html#Autoloading-Functions
520+
[autoloading-functions]: http://zsh.sourceforge.net/Doc/Release/Functions.html#Autoloading-Functions
521521
[Zsh documentation: #Special-Widgets]: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Special-Widgets
522522
[Zsh documentation: #Hook-Functions]: http://zsh.sourceforge.net/Doc/Release/Functions.html#Hook-Functions

i18n/de/docusaurus-plugin-content-docs-community/current/03_zsh_native_scripting_handbook.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@ var=abcd; print ${${${(M)var:#abc}:+is abc}:-not abc} ▶ not abc
165165
166166
A one-line "if var = x, then …, else …". Again, can spare a great amount of boring code that makes a 10-line function a 20-line one.
167167
168-
[#built-in-regular-expressions-engine]
169-
170168
### Using built-in regular expressions engine
171169
172170
```shell

i18n/de/docusaurus-plugin-content-docs/current/getting_started/01_installation.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: '⚡️ Installation'
2+
title: "⚡️ Installation"
33
sidebar_position: 1
44
image: img/logo/320x320.png
55
description: Installation Guide
@@ -9,7 +9,7 @@ keywords:
99
- installation
1010
---
1111

12-
## <i class="fas fa-spinner fa-spin"></i> Quick setup
12+
## <i class="fas fa-spinner fa-spin"></i> Quick setup {#quick-setup}
1313

1414
```shell title="~/.zshrc"
1515
source <(curl -sL https://git.io/zi-loader); zzinit
@@ -69,7 +69,7 @@ fi
6969

7070
:::tip
7171

72-
The loader can be manually fetched from available [links](#loader) to any location on the system, and sourced from `.zshrc` or as shown in the [quick-setup](#-quick-setup).
72+
The loader can be manually fetched from available [links](#loader) to any location on the system, and sourced from `.zshrc` or as shown in the [quick-setup](#quick-setup).
7373

7474
:::
7575

@@ -199,25 +199,25 @@ typeset -g ZI_MOD_DEBUG=1
199199

200200
### Installer
201201

202-
| Service | URL |
203-
|:-------------- | ------------------------------------------------------------------------- |
204-
| [Redirect][1]: | <https://get.zshell.dev> |
205-
| [IPFS][2] | <https://ipfs.zshell.dev/sh/install.sh> |
206-
| [Direct][5]: | <https://raw.githubusercontent.com/z-shell/zi-src/main/lib/sh/install.sh> |
202+
| Service | URL |
203+
|:-------------------------- | ------------------------------------------------------------------------- |
204+
| [Redirect][get.zshell.dev] | <https://get.zshell.dev> |
205+
| [IPFS][ipfs.io] | <https://ipfs.zshell.dev/sh/install.sh> |
206+
| [Direct][direct-install] | <https://raw.githubusercontent.com/z-shell/zi-src/main/lib/sh/install.sh> |
207207

208208
### Loader
209209

210-
| Service | URL |
211-
|:-------------- | ------------------------------------------------------------------------ |
212-
| [Redirect][3]: | <https://init.zshell.dev> |
213-
| [IPFS][2] | <https://ipfs.zshell.dev/zsh/init.zsh> |
214-
| [Direct][4]: | <https://raw.githubusercontent.com/z-shell/zi-src/main/lib/zsh/init.zsh> |
215-
216-
[1]: https://get.zshell.dev
217-
[2]: https://ipfs.io
218-
[3]: https://init.zshell.dev
219-
[4]: https://raw.githubusercontent.com/z-shell/zi-src/main/lib/zsh/init.zsh
220-
[5]: https://raw.githubusercontent.com/z-shell/zi-src/main/lib/sh/install.sh
210+
| Service | URL |
211+
|:--------------------------- | ------------------------------------------------------------------------ |
212+
| [Redirect][init.zshell.dev] | <https://init.zshell.dev> |
213+
| [IPFS][ipfs.io] | <https://ipfs.zshell.dev/zsh/init.zsh> |
214+
| [Direct][direct-init] | <https://raw.githubusercontent.com/z-shell/zi-src/main/lib/zsh/init.zsh> |
215+
216+
[get.zshell.dev]: https://get.zshell.dev
217+
[ipfs.io]: https://ipfs.io
218+
[init.zshell.dev]: https://init.zshell.dev
219+
[direct-init]: https://raw.githubusercontent.com/z-shell/zi-src/main/lib/zsh/init.zsh
220+
[direct-install]: https://raw.githubusercontent.com/z-shell/zi-src/main/lib/sh/install.sh
221221
[6]: https://github.com/z-shell/zi/issues/new/choose
222222
[7]: https://github.com/orgs/z-shell/discussions/new
223223
[8]: https://digitalclouds.crowdin.com/z-shell

i18n/de/docusaurus-plugin-content-docs/current/getting_started/02_overview.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: '☑️ General Overview'
2+
title: "☑️ General Overview"
33
image: img/logo/320x320.png
44
description: Overview of use cases with ZI
55
keywords:
@@ -354,7 +354,7 @@ zi ice wait'!' lucid nocd \
354354
zi load robobenklein/zinc
355355
```
356356

357-
The exclamation mark in `atload'!…'` is to track the functions allowing the plugin to be unloaded, as described [here][11]. It might be useful for the multi-prompt setup described next.
357+
The exclamation mark in `atload'!…'` is to track the functions allowing the plugin to be unloaded, as described [here](/docs/guides/syntax/ice#atclone-atpull-atinit-atload). It might be useful for the multi-prompt setup described next.
358358

359359
### Summary of turbo mode
360360

@@ -399,11 +399,11 @@ Tracking causes a slight slowdown, however, this doesn’t influence Zsh startup
399399

400400
:::tip
401401

402-
See: [multiple prompts][15] for more information. It contains more real-world examples of a multi-prompt setup, which is being close to what the author uses in his setup.
402+
See: [multiple prompts](/docs/guides/customization#multiple-prompts) for more information. It contains more real-world examples of a multi-prompt setup, which is being close to what the author uses in his setup.
403403

404404
:::
405405

406-
This is [powerlevel10k][18], [pure][17], [starship][16] sample:
406+
This is [powerlevel10k](https://github.com/romkatv/powerlevel10k), [pure](https://github.com/sindresorhus/pure), [starship](https://github.com/starship/starship) sample:
407407

408408
Load powerlevel10k theme.
409409

@@ -459,7 +459,7 @@ zi update --plugins
459459
zi update --snipets
460460
```
461461

462-
Update specific plugin. Default is GitHub but can specify any with ice [from'…'][2]:
462+
Update specific plugin. Default is GitHub but can specify any with ice [from'…'](/search?q=from):
463463

464464
```shell
465465
zi update <user>/<repo>
@@ -544,20 +544,12 @@ zi ice as"program" make'!' \
544544
zi light direnv/direnv
545545
```
546546

547-
If you are interested to try out more then check out the [playground repository][19] where users have uploaded the `~/.zshrc` and other ZI configurations. Feel free to [submit][20] your `~/.zshrc` there if it contains ZI commands.
547+
If you are interested to try out more then check out the [playground repository](https://github.com/z-shell/playground) where users have uploaded the `~/.zshrc` and other ZI configurations. Feel free to [submit](https://github.com/z-shell/playground/issues/new?template=request-to-add-zshrc-to-the-zi-configs-repo.md) your `~/.zshrc` there if it contains ZI commands.
548548

549549
Additional examples: [collection][10].
550550

551551
[1]: /search?q=ice+modifiers
552552

553553
[1]: /search?q=ice+modifiers
554-
[2]: /search?q=from
555554
[10]: /community/gallery/collection
556-
[11]: /docs/guides/syntax/ice#-atclone-atpull-atinit-atload
557555
[12]: /community/zsh_plugin_standard#use-of-add-zsh-hook-to-install-hooks
558-
[15]: /docs/guides/customization#-multiple-prompts
559-
[16]: https://github.com/starship/starship
560-
[17]: https://github.com/sindresorhus/pure
561-
[18]: https://github.com/romkatv/powerlevel10k
562-
[19]: https://github.com/z-shell/playground
563-
[20]: https://github.com/z-shell/playground/issues/new?template=request-to-add-zshrc-to-the-zi-configs-repo.md

i18n/de/docusaurus-plugin-content-docs/current/getting_started/03_migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: '♻️ Migration'
2+
title: "♻️ Migration"
33
image: img/logo/320x320.png
44
description: Migration guide
55
keywords:

i18n/de/docusaurus-plugin-content-docs/current/guides/01_commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: commands
3-
title: '🛠 Commands'
3+
title: "🛠 Commands"
44
sidebar_position: 1
55
image: img/logo/320x320.png
66
description: ZI commands & functions

i18n/de/docusaurus-plugin-content-docs/current/guides/02_customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: customization
3-
title: '🏗 Preferences & Configuration'
3+
title: "🏗 Preferences & Configuration"
44
sidebar_position: 2
55
image: img/logo/320x320.png
66
description: User Preferences & Configuration

i18n/de/docusaurus-plugin-content-docs/current/guides/03_benchmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: benchmark
3-
title: '⏲ Benchmarking'
3+
title: "⏲ Benchmarking"
44
sidebar_position: 3
55
image: img/logo/320x320.png
66
description: Benchmarking, Profiling & Statistics

i18n/de/docusaurus-plugin-content-docs/current/guides/syntax/01_common.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The `Makefile` with 2 tasks, can use:
3535

3636
:::info
3737

38-
[$ZPFX][8] is provided by ZI, it is set to `~/.zi/polaris` by default. However, it can be changed by specifying: `$ZPFX=` target.
38+
[$ZPFX][zpfx] is provided by ZI, it is set to `~/.zi/polaris` by default. However, it can be changed by specifying: `$ZPFX=` target.
3939

4040
:::
4141

@@ -55,7 +55,7 @@ zi light vim/vim
5555
| `make` | Run `make` after `atclone'…'` and `atpull'…'` (note: `make'!'` will execute before them). |
5656
| `pick'src/vim'` | Set executable flag on `src/vim`, hint that `src/` should be added to `$PATH`. |
5757

58-
The same but with **installation** (`make install`) under [$ZPFX][8] by default:
58+
The same but with **installation** (`make install`) under [$ZPFX][zpfx] by default:
5959

6060
```shell showLineNumbers
6161
zi ice as'program' atclone'rm -f src/auto/config.cache; \
@@ -209,6 +209,6 @@ The original motivation behind the standard syntax was: to utilize the syntax hi
209209
[4]: /search?q=exclamation+mark
210210
[5]: https://github.com/direnv/direnv
211211
[6]: https://github.com/direnv/direnv/releases/
212-
[8]: /docs/guides/customization#$ZPFX
212+
[zpfx]: /docs/guides/customization#$ZPFX
213213
[9]: /docs/getting_started/overview
214214
[11]: https://github.com/z-shell/zi-vim-syntax

0 commit comments

Comments
 (0)