1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-12-24 11:05:27 +00:00

New translations README.md (German)

This commit is contained in:
Matan Kushner 2023-09-16 15:58:45 +01:00
parent af641932f2
commit cbe05dc780

View File

@ -2143,14 +2143,15 @@ Das `hostname`-Modul zeigt den Hostnamen des Systems an.
### Optionen ### Optionen
| Option | Standartwert | Beschreibung | | Option | Standartwert | Beschreibung |
| ------------ | -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | | ----------------- | -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| `ssh_only` | `true` | Zeigt den Hostnamen nur, wenn via SSH-Sitzung verbunden. | | `ssh_only` | `true` | Zeigt den Hostnamen nur, wenn via SSH-Sitzung verbunden. |
| `ssh_symbol` | `'🌐 '` | A format string representing the symbol when connected to SSH session. | | `ssh_symbol` | `'🌐 '` | A format string representing the symbol when connected to SSH session. |
| `trim_at` | `'.'` | String that the hostname is cut off at, after the first match. `'.'` will stop after the first dot. `''` will disable any truncation | | `trim_at` | `'.'` | String that the hostname is cut off at, after the first match. `'.'` will stop after the first dot. `''` will disable any truncation. |
| `format` | `'[$ssh_symbol$hostname]($style) in '` | Das Format für das Modul. | | `detect_env_vars` | `[]` | Which environment variable(s) should trigger this module. |
| `style` | `'bold dimmed green'` | Stil für dieses Modul. | | `format` | `'[$ssh_symbol$hostname]($style) in '` | Das Format für das Modul. |
| `disabled` | `false` | Deaktiviert das `hostname`-Modul. | | `style` | `'bold dimmed green'` | Stil für dieses Modul. |
| `disabled` | `false` | Disables the `hostname` module. |
### Variables ### Variables
@ -2162,7 +2163,9 @@ Das `hostname`-Modul zeigt den Hostnamen des Systems an.
*: This variable can only be used as a part of a style string *: This variable can only be used as a part of a style string
### Beispiel ### Beispiele
#### Always show the hostname
```toml ```toml
# ~/.config/starship.toml # ~/.config/starship.toml
@ -2174,6 +2177,17 @@ trim_at = '.companyname.com'
disabled = false disabled = false
``` ```
#### Hide the hostname in remote tmux sessions
```toml
# ~/.config/starship.toml
[hostname]
ssh_only = false
detect_env_vars = ['!TMUX', 'SSH_CONNECTION']
disabled = false
```
## Java ## Java
The `java` module shows the currently installed version of [Java](https://www.oracle.com/java/). By default the module will be shown if any of the following conditions are met: The `java` module shows the currently installed version of [Java](https://www.oracle.com/java/). By default the module will be shown if any of the following conditions are met: