Skip to content

Commit f9bebc9

Browse files
authoredFeb 6, 2021
docs(i18n): New Crowdin updates (starship#2219)
1 parent edb17bc commit f9bebc9

File tree

51 files changed

+1309
-119
lines changed

Some content is hidden

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

51 files changed

+1309
-119
lines changed
 

‎docs/ar-SA/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,16 @@ description: Starship is the minimal, blazing fast, and extremely customizable p
110110

111111
eval $(starship init ion)
112112
```
113+
114+
#### Elvish
115+
116+
::: warning Only elvish v0.15 or higher is supported. :::
117+
118+
Add the following to the end of `~/.elvish/rc.elv`:
119+
120+
```sh
121+
# ~/.elvish/rc.elv
122+
123+
eval (starship init elvish)
124+
```
125+

‎docs/ar-SA/config/README.md

+40-1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ $ruby\
209209
$rust\
210210
$swift\
211211
$terraform\
212+
$vagrant\
212213
$zig\
213214
$nix_shell\
214215
$conda\
@@ -371,6 +372,8 @@ The character will tell you whether the last command was successful or not. It c
371372

372373
By default it only changes color. If you also want to change it's shape take a look at [this example](#with-custom-error-shape).
373374

375+
::: warning `error_symbol` is not supported on elvish shell. :::
376+
374377
### Options
375378

376379
| Option | Default | Description |
@@ -2156,6 +2159,8 @@ This module is disabled by default. To enable it, set `disabled` to `false` in y
21562159

21572160
:::
21582161

2162+
::: warning This module is not supported on elvish shell. :::
2163+
21592164
### Options
21602165

21612166
| Option | Default | Description |
@@ -2195,7 +2200,7 @@ This module is disabled by default. To enable it, set `disabled` to `false` in y
21952200
[status]
21962201
style = "bg:blue"
21972202
symbol = "🔴"
2198-
format = '[\[$symbol $status_common_meaning$status_signal_name$status_maybe_int\]]($style) '
2203+
format = '[\[$symbol $common_meaning$signal_name$maybe_int\]]($style) '
21992204
map_symbol = true
22002205
disabled = false
22012206

@@ -2382,6 +2387,40 @@ disabled = false
23822387
show_always = true
23832388
```
23842389

2390+
## Vagrant
2391+
2392+
The `vagrant` module shows the currently installed version of Vagrant. The module will be shown if any of the following conditions are met:
2393+
2394+
- The current directory contains a `Vagrantfile` file
2395+
2396+
### Options
2397+
2398+
| Option | Default | Description |
2399+
| ---------- | ------------------------------------ | --------------------------------------------------- |
2400+
| `format` | `"via [$symbol($version )]($style)"` | The format for the module. |
2401+
| `symbol` | `"⍱ "` | A format string representing the symbol of Vagrant. |
2402+
| `style` | `"cyan bold"` | The style for the module. |
2403+
| `disabled` | `false` | Disables the `Vagrant` module. |
2404+
2405+
### Variables
2406+
2407+
| Variable | Example | Description |
2408+
| --------- | ---------------- | ------------------------------------ |
2409+
| version | `Vagrant 2.2.10` | The version of `Vagrant` |
2410+
| symbol | | Mirrors the value of option `symbol` |
2411+
| style\* | | Mirrors the value of option `style` |
2412+
2413+
\*: This variable can only be used as a part of a style string
2414+
2415+
### Example
2416+
2417+
```toml
2418+
# ~/.config/starship.toml
2419+
2420+
[vagrant]
2421+
format = "via [⍱ $version](bold white) "
2422+
```
2423+
23852424
## Zig
23862425

23872426
The `zig` module shows the currently installed version of Zig. The module will be shown if any of the following conditions are met:

0 commit comments

Comments
 (0)
Please sign in to comment.