summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2021-04-08 11:52:32 -0400
committerGitHub <noreply@github.com>2021-04-08 11:52:32 -0400
commit7a0046ed58803bc81008c7fbf1a37ef00ccfb7f2 (patch)
treeea9530b9e05888b727700e424efb5b34d15dd119
parent8af677c8117beb52e0c419eff1ed5d0102c86ae3 (diff)
docs(i18n): New Crowdin updates (#2559)
-rw-r--r--docs/ar-SA/faq/README.md2
-rw-r--r--docs/ckb-IR/faq/README.md2
-rw-r--r--docs/de-DE/README.md2
-rw-r--r--docs/de-DE/advanced-config/README.md4
-rw-r--r--docs/de-DE/config/README.md176
-rw-r--r--docs/de-DE/faq/README.md4
-rw-r--r--docs/de-DE/presets/README.md2
-rw-r--r--docs/es-ES/README.md4
-rw-r--r--docs/es-ES/advanced-config/README.md4
-rw-r--r--docs/es-ES/config/README.md208
-rw-r--r--docs/es-ES/faq/README.md4
-rw-r--r--docs/es-ES/guide/README.md2
-rw-r--r--docs/es-ES/installing/README.md2
-rw-r--r--docs/fr-FR/README.md2
-rw-r--r--docs/fr-FR/config/README.md232
-rw-r--r--docs/fr-FR/faq/README.md22
-rw-r--r--docs/fr-FR/installing/README.md6
-rw-r--r--docs/it-IT/README.md2
-rw-r--r--docs/it-IT/faq/README.md20
-rw-r--r--docs/ja-JP/README.md4
-rw-r--r--docs/ja-JP/config/README.md289
-rw-r--r--docs/ja-JP/faq/README.md2
-rw-r--r--docs/ko-KR/README.md2
-rw-r--r--docs/ko-KR/faq/README.md2
-rw-r--r--docs/ko-KR/guide/README.md18
-rw-r--r--docs/nl-NL/faq/README.md2
-rw-r--r--docs/pl-PL/faq/README.md2
-rw-r--r--docs/pt-BR/README.md2
-rw-r--r--docs/pt-BR/config/README.md2
-rw-r--r--docs/pt-BR/faq/README.md2
-rw-r--r--docs/pt-PT/faq/README.md2
-rw-r--r--docs/ru-RU/README.md2
-rw-r--r--docs/ru-RU/config/README.md284
-rw-r--r--docs/ru-RU/faq/README.md4
-rw-r--r--docs/tr-TR/faq/README.md2
-rw-r--r--docs/vi-VN/README.md2
-rw-r--r--docs/vi-VN/config/README.md278
-rw-r--r--docs/vi-VN/faq/README.md4
-rw-r--r--docs/vi-VN/installing/README.md12
-rw-r--r--docs/zh-CN/README.md2
-rw-r--r--docs/zh-CN/config/README.md172
-rw-r--r--docs/zh-CN/faq/README.md4
-rw-r--r--docs/zh-TW/README.md2
-rw-r--r--docs/zh-TW/config/README.md158
-rw-r--r--docs/zh-TW/faq/README.md2
-rw-r--r--docs/zh-TW/guide/README.md14
46 files changed, 986 insertions, 985 deletions
diff --git a/docs/ar-SA/faq/README.md b/docs/ar-SA/faq/README.md
index f5c949629..fa6c98003 100644
--- a/docs/ar-SA/faq/README.md
+++ b/docs/ar-SA/faq/README.md
@@ -92,5 +92,5 @@ If Starship was installed using the `curl | bash` script, the following command
```sh
# Locate and delete the starship binary
-bash -c 'rm "$(which starship)"'
+sh -c 'rm "$(which starship)"'
```
diff --git a/docs/ckb-IR/faq/README.md b/docs/ckb-IR/faq/README.md
index f5c949629..fa6c98003 100644
--- a/docs/ckb-IR/faq/README.md
+++ b/docs/ckb-IR/faq/README.md
@@ -92,5 +92,5 @@ If Starship was installed using the `curl | bash` script, the following command
```sh
# Locate and delete the starship binary
-bash -c 'rm "$(which starship)"'
+sh -c 'rm "$(which starship)"'
```
diff --git a/docs/de-DE/README.md b/docs/de-DE/README.md
index ea1a421b2..884344b14 100644
--- a/docs/de-DE/README.md
+++ b/docs/de-DE/README.md
@@ -45,7 +45,7 @@ description: Starship ist eine minimale, super schnelle, und extrem anpassbare P
#### Installation mithilfe eines Paket-Managers
- With [Homebrew](https://brew.sh/):
+ Mit [Homebrew](https://brew.sh/):
```sh
brew install starship
diff --git a/docs/de-DE/advanced-config/README.md b/docs/de-DE/advanced-config/README.md
index d18551021..10424faa0 100644
--- a/docs/de-DE/advanced-config/README.md
+++ b/docs/de-DE/advanced-config/README.md
@@ -57,9 +57,9 @@ Füge dies in `Zsh` zum `precmd_functions`-Array hinzu:
precmd_functions+=(set_win_title)
```
-If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zshrc`) to make it permanent.
+Wenn Sie das Resultat für gut empfinden, fügen Sie diese Zeilen zu ihrer Shell Konfigurationsdatei hinzu (`~/.bashrc` oder `~/.zshrc`) um das Ergebnis permanent zu machen.
-For example, if you want to display your current directory in your terminal tab title, add the following snippet to your `~/.bashrc` or `~/.zshrc`:
+Zum Beispiel, wenn sie ihr aktuelles Verzeichnis als Terminal Title anzeigen wollen, fügen Sie folgenden Code-Schnipsel zu ihrer `~/.bashrc` oder `~/.zshrc` hinzu:
```bash
function set_win_title(){
diff --git a/docs/de-DE/config/README.md b/docs/de-DE/config/README.md
index 216ef4d30..8e0dbc18b 100644
--- a/docs/de-DE/config/README.md
+++ b/docs/de-DE/config/README.md
@@ -305,7 +305,7 @@ symbol = "🅰 "
## Akkustand
-The `battery` module shows how charged the device's battery is and its current charging status. The module is only visible when the device's battery is below 10%.
+Das `battery` Modul zeigt, wie hoch der Akku des Geräts geladen ist und den aktuellen Ladestatus. Das Modul ist nur sichtbar, wenn der Akku des Geräts unter 10% geladen ist.
### Optionen
@@ -333,7 +333,7 @@ discharging_symbol = "💀 "
### Anzeige des Akkustandes
-The `display` configuration option is used to define when the battery indicator should be shown (threshold) and what it looks like (style). If no `display` is provided. Die Standardwerte sind folgende:
+Die `display` Konfiguration "threshold" stellt ein ab wann die Akkuanzeige eingeblendet wird. Mit "style" wird das Erscheinungsbild festgelegt. Wenn `display` nicht angegeben ist. Die Standardwerte sind folgende:
```toml
[[battery.display]]
@@ -343,7 +343,7 @@ style = "bold red"
#### Optionen
-The `display` option is an array of the following table.
+Die `display`-Option beinhaltet ein Array mit den folgenden Werten.
| Option | Beschreibung |
| ----------- | ------------------------------------------------------- |
@@ -367,9 +367,9 @@ style = "bold yellow"
## Zeichen
-The `character` module shows a character (usually an arrow) beside where the text is entered in your terminal.
+Das `character` Modul zeigt ein Zeichen ( meistens einen Pfeil "❯") vor der Texteingabe an.
-The character will tell you whether the last command was successful or not. It can do this in two ways:
+Das Zeichen zeigt an ob der letzte Befehl erfolgreich war, oder einen Fehler erzeugt hat. It can do this in two ways:
- changing color (`red`/`green`)
- changing shape (`❯`/`✖`)
@@ -456,15 +456,15 @@ The `cmake` module shows the currently installed version of CMake. By default th
## Befehlsdauer
-The `cmd_duration` module shows how long the last command took to execute. The module will be shown only if the command took longer than two seconds, or the `min_time` config value, if it exists.
+Das `cmd_duration` Modul zeigt an wie lange der letzte Befehl ausgeführt wurde. Das Modul wird nur angezeigt wenn der letzte Befehl länger als zwei Sekunden ausgeführt wurde. Mit der `min_time` Option kann die Zeit eingestellt werden ab der `cmd_duration` angezeigt wird.
-::: warning Do not hook the DEBUG trap in Bash
+::: warning Nicht die DEBUG-trap in der Bash hooken
-If you are running Starship in `bash`, do not hook the `DEBUG` trap after running `eval $(starship init $0)`, or this module **will** break.
+Ist `bash` die Konsole der Wahl, dann nicht die `DEBUG`-trap nach der Ausführung von `eval $(starship init $0)` hooken, andernfalls **wird** dieses Modul unweigerlich untergehen.
:::
-Bash users who need preexec-like functionality can use [rcaloras's bash_preexec framework](https://github.com/rcaloras/bash-preexec). Simply define the arrays `preexec_functions` and `precmd_functions` before running `eval $(starship init $0)`, and then proceed as normal.
+Bash Nutzer, die eine "preexec" ähnliche Funktion benötigen, können [rcaloras bash_preexec Framework](https://github.com/rcaloras/bash-preexec) verwenden. Definieren Sie einfach die Arrays `preexec_functions` und `precmd_functions` bevor sie `eval $(starship init $0)` ausführen, und fahren Sie dann wie gewohnt fort.
### Optionen
@@ -478,7 +478,7 @@ Bash users who need preexec-like functionality can use [rcaloras's bash_preexec
| `show_notifications` | `false` | Show desktop notifications when command completes. |
| `min_time_to_notify` | `45_000` | Shortest duration for notification (in milliseconds). |
-::: tip
+::: Tipp
Showing desktop notifications requires starship to be built with `rust-notify` support. You check if your starship supports notifications by running `STARSHIP_LOG=debug starship module cmd_duration -d 60000` when `show_notifications` is set to `true`.
@@ -505,11 +505,11 @@ format = "underwent [$duration](bold yellow)"
## Conda
-The `conda` module shows the current conda environment, if `$CONDA_DEFAULT_ENV` is set.
+Das `conda`-Modul zeigt dessen aktuelle Umgebung an, sofern `$CONDA_DEFAULT_ENV` gesetzt ist.
-::: tip
+::: Tipp
-This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False`.
+Hinweis: Dies unterdrückt nicht conda's eigenen Prompt-Modifikator, sie können jedoch conda mit `conda config --set changeps1 False` konfigurieren, um die Ausgabe von conda selbst auszuschalten.
:::
@@ -587,7 +587,7 @@ The `dart` module shows the currently installed version of Dart. By default the
- The current directory contains a file with `.dart` extension
- The current directory contains a `.dart_tool` directory
-- The current directory contains a `pubspec.yaml`, `pubspec.yml` or `pubspec.lock` file
+- Das aktuelle Verzeichnis enthält `pubspec.yaml`, `pubspec.yml` oder `pubspec.lock`
### Optionen
@@ -622,7 +622,7 @@ format = "via [🔰 $version](bold red) "
## Verzeichnis
-The `directory` module shows the path to your current directory, truncated to three parent folders. Your directory will also be truncated to the root of the git repo that you're currently in.
+Das `directory` -Modul zeigt den Pfad zu Ihrem aktuellen Verzeichnis an, abgeschnitten auf drei übergeordnete Ordner. Your directory will also be truncated to the root of the git repo that you're currently in.
When using the fish style pwd option, instead of hiding the path that is truncated, you will see a shortened name of each directory based on the number you enable for the option.
@@ -643,7 +643,7 @@ For example, given `~/Dev/Nix/nixpkgs/pkgs` where `nixpkgs` is the repo root, an
| `home_symbol` | `"~"` | The symbol indicating home directory. |
<details>
-<summary>This module has a few advanced configuration options that control how the directory is displayed.</summary>
+<summary>Dieses Modul hat einige erweiterte Konfigurationsoptionen, welche die Darstellung von Verzeichnissen steuern.</summary>
| Advanced Option | Standardwert | Beschreibung |
| --------------------------- | ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -751,7 +751,7 @@ The module will also show the Target Framework Moniker (<https://docs.microsoft.
| `detect_files` | `["global.json", "project.json", "Directory.Build.props", "Directory.Build.targets", "Packages.props"]` | Which filenames should trigger this module. |
| `detect_folders` | `[]` | Which folders should trigger this modules. |
| `style` | `"bold blue"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `dotnet` module. |
+| `disabled` | `false` | Deaktiviert das `dotnet`-Modul. |
### Variables
@@ -991,7 +991,7 @@ asia-northeast1 = "an1"
## Git-Branch
-The `git_branch` module shows the active branch of the repo in your current directory.
+Das `git_branch`-Modul zeigt den aktiven Git-Branch des Repositories im aktuellen Verzeichnis an.
### Optionen
@@ -1189,7 +1189,7 @@ behind = "⇣${count}"
## Golang
-The `golang` module shows the currently installed version of Golang. By default the module will be shown if any of the following conditions are met:
+Das `golang`-Modul zeigt die aktuell installierte Version von Golang. By default the module will be shown if any of the following conditions are met:
- Das aktuelle Verzeichnis enthält eine `go.mod`-Datei
- Das aktuelle Verzeichnis enthält eine `go.sum`-Datei
@@ -1210,7 +1210,7 @@ The `golang` module shows the currently installed version of Golang. By default
| `detect_files` | `["go.mod", "go.sum", "glide.yaml", "Gopkg.yml", "Gopkg.lock", ".go-version"]` | Which filenames should trigger this module. |
| `detect_folders` | `["Godeps"]` | Which folders should trigger this module. |
| `style` | `"bold cyan"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `golang` module. |
+| `disabled` | `false` | Deaktiviert das `golang`-Modul. |
### Variables
@@ -1271,7 +1271,7 @@ format = "via [⎈ $version](bold white) "
## Hostname
-The `hostname` module shows the system hostname.
+Das `hostname`-Modul zeigt den Hostnamen des Systems an.
### Optionen
@@ -1306,7 +1306,7 @@ disabled = false
## Java
-The `java` module shows the currently installed version of Java. By default the module will be shown if any of the following conditions are met:
+Das `java` Modul zeigt die derzeit installierte Version von Java an. By default the module will be shown if any of the following conditions are met:
- The current directory contains a `pom.xml`, `build.gradle.kts`, `build.sbt`, `.java-version`, `.deps.edn`, `project.clj`, or `build.boot` file
- The current directory contains a file with the `.java`, `.class`, `.gradle`, `.jar`, `.clj`, or `.cljc` extension
@@ -1321,7 +1321,7 @@ The `java` module shows the currently installed version of Java. By default the
| `detect_folders` | `[]` | Which folders should trigger this modules. |
| `symbol` | `"☕ "` | A format string representing the symbol of Java |
| `style` | `"red dimmed"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `java` module. |
+| `disabled` | `false` | Deaktiviert das `Java`-Modul. |
### Variables
@@ -1471,9 +1471,9 @@ kotlin_binary = "kotlinc"
Displays the current Kubernetes context name and, if set, the namespace from the kubeconfig file. The namespace needs to be set in the kubeconfig file, this can be done via `kubectl config set-context starship-cluster --namespace astronaut`. If the `$KUBECONFIG` env var is set the module will use that if not it will use the `~/.kube/config`.
-::: tip
+::: Tipp
-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file.
+Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren.
:::
@@ -1512,7 +1512,7 @@ disabled = false
## Zeilenumbruch
-The `line_break` module separates the prompt into two lines.
+Das `line_break`-Modul unterteilt den Prompt in zwei Zeilen.
### Optionen
@@ -1571,13 +1571,13 @@ format = "via [🌕 $version](bold blue) "
## Speicherauslastung
-The `memory_usage` module shows current system memory and swap usage.
+Das `memory_usage` Modul zeigt den aktuellen Systemspeicher und die swap-Nutzung an.
-By default the swap usage is displayed if the total system swap is non-zero.
+Standardmäßig wird die swap-Nutzung angezeigt, wenn der gesamte System-swap nicht Null ist.
-::: tip
+::: Tipp
-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file.
+Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren.
:::
@@ -1695,7 +1695,7 @@ symbol = "🎣 "
## Nix-Shell
-The `nix_shell` module shows the nix-shell environment. The module will be shown when inside a nix-shell environment.
+Das `nix_shell`-Modul zeigt die nix-shell Umgebung an. Das Modul wird angezeigt, wenn es sich in einer nix-Shell-Umgebung befindet.
### Optionen
@@ -1733,7 +1733,7 @@ format = 'via [☃️ $state( \($name\))](bold blue) '
## NodeJS
-The `nodejs` module shows the currently installed version of NodeJS. By default the module will be shown if any of the following conditions are met:
+Das `nodejs`-Modul zeigt die aktuell installierte Version von NodeJS. By default the module will be shown if any of the following conditions are met:
- Das aktuelle Verzeichnis enthält eine `package.json`-Datei
- The current directory contains a `.node-version` file
@@ -1751,7 +1751,7 @@ The `nodejs` module shows the currently installed version of NodeJS. By default
| `detect_files` | `["package.json", ".node-version"]` | Which filenames should trigger this module. |
| `detect_folders` | `["node_modules"]` | Which folders should trigger this module. |
| `style` | `"bold green"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `nodejs` module. |
+| `disabled` | `false` | Deaktiviert das `nodejs`-Modul. |
| `not_capable_style` | `bold red` | The style for the module when an engines property in `package.json` does not match the NodeJS version. |
### Variables
@@ -1856,7 +1856,7 @@ symbol = "☁️ "
## Paketversion
-The `package` module is shown when the current directory is the repository for a package, and shows its current version. The module currently supports `npm`, `cargo`, `poetry`, `composer`, `gradle`, `julia`, `mix` and `helm` packages.
+Das `Package` Modul wird angezeigt, wenn das aktuelle Verzeichnis das Repository für ein Paket ist, und zeigt dessen aktuelle Version an. The module currently supports `npm`, `cargo`, `poetry`, `composer`, `gradle`, `julia`, `mix` and `helm` packages.
- **npm** – Die `npm` Paketversion wird aus dem `package.json` gelesen, das sich im aktuellen Verzeichnis befindet
- **Cargo** – Die `Cargo` Paketversion wird aus dem `Cargo.toml` gelesen, das sich im aktuellen Verzeichnis befindet
@@ -1941,7 +1941,7 @@ format = "via [🦪 $version]($style) "
## PHP
-The `php` module shows the currently installed version of PHP. By default the module will be shown if any of the following conditions are met:
+Das `php`-Modul zeigt die aktuell installierte Version von PHP. By default the module will be shown if any of the following conditions are met:
- Das aktuelle Verzeichnis enthält eine `composer.json`-Datei
- The current directory contains a `.php-version` file
@@ -1957,7 +1957,7 @@ The `php` module shows the currently installed version of PHP. By default the mo
| `detect_files` | `["composer.json", ".php-version"]` | Which filenames should trigger this module. |
| `detect_folders` | `[]` | Which folders should trigger this module. |
| `style` | `"147 bold"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `php` module. |
+| `disabled` | `false` | Deaktiviert das `php`-Modul. |
### Variables
@@ -2025,13 +2025,13 @@ If `pyenv_version_name` is set to `true`, it will display the pyenv version name
By default the module will be shown if any of the following conditions are met:
- Das aktuelle Verzeichnis enthält eine `.python-version`-Datei
-- The current directory contains a `Pipfile` file
+- Das aktuelle Verzeichnis enthält eine `Pipfile`-Datei
- The current directory contains a `__init__.py` file
-- The current directory contains a `pyproject.toml` file
-- The current directory contains a `requirements.txt` file
-- The current directory contains a `setup.py` file
-- The current directory contains a `tox.ini` file
-- The current directory contains a file with the `.py` extension.
+- Das aktuelle Verzeichnis enthält eine `pyproject.toml`-Datei
+- Das aktuelle Verzeichnis enthält eine `requirements.txt`-Datei
+- Das aktuelle Verzeichnis enthält eine `setup.py`-Datei
+- Das aktuelle Verzeichnis enthält eine `tox.ini`-Datei
+- Das aktuelle Verzeichnis enthält eine Datei mit der `.py`-Erweiterung.
- Ein virtualenv ist momentan aktiv
### Optionen
@@ -2047,9 +2047,9 @@ By default the module will be shown if any of the following conditions are met:
| `detect_extensions` | `[".py"]` | Which extensions should trigger this module |
| `detect_files` | `[".python-version", "Pipfile", "__init__.py", "pyproject.toml", "requirements.txt", "setup.py", "tox.ini"]` | Which filenames should trigger this module |
| `detect_folders` | `[]` | Which folders should trigger this module |
-| `disabled` | `false` | Disables the `python` module. |
+| `disabled` | `false` | Deaktiviert das `python`-Modul. |
-::: tip
+::: Tipp
The `python_binary` variable accepts either a string or a list of strings. Starship will try executing each binary until it gets a result. Note you can only change the binary that Starship executes to get the version of Python not the arguments that are used.
@@ -2095,7 +2095,7 @@ detect_extensions = []
## Ruby
-By default the `ruby` module shows the currently installed version of Ruby. The module will be shown if any of the following conditions are met:
+By default the `ruby` module shows the currently installed version of Ruby. Das Modul wird gezeigt, wenn mindestens einer der folgenden Punkte erfüllt ist:
- Das aktuelle Verzeichnis enthält eine `Gemfile`-Datei
- The current directory contains a `.ruby-version` file
@@ -2111,7 +2111,7 @@ By default the `ruby` module shows the currently installed version of Ruby. The
| `detect_files` | `["Gemfile", ".ruby-version"]` | Which filenames should trigger this module. |
| `detect_folders` | `[]` | Which folders should trigger this module. |
| `style` | `"bold red"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `ruby` module. |
+| `disabled` | `false` | Deaktiviert das `ruby`-Modul. |
### Variables
@@ -2134,7 +2134,7 @@ symbol = "🔺 "
## Rust
-By default the `rust` module shows the currently installed version of Rust. The module will be shown if any of the following conditions are met:
+By default the `rust` module shows the currently installed version of Rust. Das Modul wird gezeigt, wenn mindestens einer der folgenden Punkte erfüllt ist:
- Das aktuelle Verzeichnis enthält eine `Cargo.toml`-Datei
- Das aktuelle Verzeichnis enthält eine Datei mit der `.rs`-Erweiterung
@@ -2149,7 +2149,7 @@ By default the `rust` module shows the currently installed version of Rust. The
| `detect_files` | `["Cargo.toml"]` | Which filenames should trigger this module. |
| `detect_folders` | `[]` | Which folders should trigger this module. |
| `style` | `"bold red"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `rust` module. |
+| `disabled` | `false` | Deaktiviert das `rust`-Modul. |
### Variables
@@ -2213,9 +2213,9 @@ symbol = "🌟 "
The `shell` module shows an indicator for currently used shell.
-::: tip
+::: Tipp
-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file.
+Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren.
:::
@@ -2322,9 +2322,9 @@ format = '[📦 \[$env\]]($style) '
The `status` module displays the exit code of the previous command. The module will be shown only if the exit code is not `0`.
-::: tip
+::: Tipp
-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file.
+Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren.
:::
@@ -2377,7 +2377,7 @@ disabled = false
## Swift
-By default the `swift` module shows the currently installed version of Swift. The module will be shown if any of the following conditions are met:
+By default the `swift` module shows the currently installed version of Swift. Das Modul wird gezeigt, wenn mindestens einer der folgenden Punkte erfüllt ist:
- The current directory contains a `Package.swift` file
- The current directory contains a file with the `.swift` extension
@@ -2415,9 +2415,9 @@ format = "via [🏎 $version](red bold)"
## Terraform
-The `terraform` module shows the currently selected terraform workspace and version.
+Das `Terraform` Modul zeigt den aktuell ausgewählten terraform Arbeitsbereich und die Version an.
-::: tip
+::: Tipp
By default the terraform version is not shown, since this is slow for current versions of terraform when a lot of plugins are in use. If you still want to enable it, [follow the example shown below](#with-version).
@@ -2425,7 +2425,7 @@ By default the terraform version is not shown, since this is slow for current ve
By default the module will be shown if any of the following conditions are met:
-- The current directory contains a `.terraform` folder
+- Das aktuelle Verzeichnis enthält eine `.terraform`-Datei
- Current directory contains a file with the `.tf` or `.hcl` extensions
### Optionen
@@ -2438,7 +2438,7 @@ By default the module will be shown if any of the following conditions are met:
| `detect_files` | `[]` | Which filenames should trigger this module. |
| `detect_folders` | `[".terraform"]` | Which folders should trigger this module. |
| `style` | `"bold 105"` | Stil für dieses Modul. |
-| `disabled` | `false` | Disables the `terraform` module. |
+| `disabled` | `false` | Deaktiviert das `terraform` Modul. |
### Variables
@@ -2473,33 +2473,33 @@ format = "[🏎💨 $workspace]($style) "
## Zeit
-The `time` module shows the current **local** time. The `format` configuration value is used by the [`chrono`](https://crates.io/crates/chrono) crate to control how the time is displayed. Take a look [at the chrono strftime docs](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) to see what options are available.
+Das `time` Modul zeigt die aktuelle **lokale** Zeit an. Der `format` Wert wird von der crate [`chrono`](https://crates.io/crates/chrono) benutzt um die Zeit zu formatieren. Schau dir [die chrono strftime Dokumentation](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) an, um die möglichen Optionen zu sehen.
-::: tip
+::: Tipp
-This module is disabled by default. To enable it, set `disabled` to `false` in your configuration file.
+Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `disabled` auf `false` um es zu aktivieren.
:::
### Optionen
-| Option | Standardwert | Beschreibung |
-| ----------------- | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |