Skip to content

Commit 01b5d89

Browse files
Crowdin translations (translation-batch-1610993249) (#17348)
* New Crowdin translations by Github Action * Revert broken translated files to English * fix mistranslated type * fix mistranslated dates * fix liquid operator * revert broken to english * revert broken translations to english * revert broken translations to english * fix broken liquid tag 😭 * fix tags Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
1 parent fa3e832 commit 01b5d89

File tree

5,268 files changed

+136179
-7959
lines changed

Some content is hidden

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

5,268 files changed

+136179
-7959
lines changed

translations/de-DE/content/actions/creating-actions/about-actions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ redirect_from:
1010
versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
13+
type: 'overview'
1314
---
1415

1516
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/creating-actions/creating-a-composite-run-steps-action.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ product: '{% data reusables.gated-features.actions %}'
55
versions:
66
free-pro-team: '*'
77
enterprise-server: '>=2.22'
8+
type: 'tutorial'
89
---
910

1011
{% data reusables.actions.enterprise-beta %}
@@ -93,7 +94,7 @@ Before you begin, you'll create a {% data variables.product.product_name %} repo
9394
git push
9495
```
9596

96-
1. From your terminal, add a tag. This example uses a tag called `v1`. For more information, see "[About actions](/actions/creating-actions/about-actions#using-release-management-for-actions)."
97+
1. From your terminal, add a tag. This example uses a tag called `v1`. Weitere Informationen finden Sie unter „[Informationen zu Aktionen](/actions/creating-actions/about-actions#using-release-management-for-actions)“.
9798

9899
```shell
99100
git tag -a -m "Description of this release" v1

translations/de-DE/content/actions/creating-actions/creating-a-docker-container-action.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ redirect_from:
1010
versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
13+
type: 'tutorial'
1314
---
1415

1516
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ redirect_from:
1010
versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
13+
type: 'tutorial'
1314
---
1415

1516
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/creating-actions/dockerfile-support-for-github-actions.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ redirect_from:
88
versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
11+
type: 'reference'
1112
---
1213

1314
{% data reusables.actions.enterprise-beta %}
@@ -60,14 +61,14 @@ ENTRYPOINT ["sh", "-c", "echo $GITHUB_SHA"]
6061
Um `args` aus der Metadaten-Datei der Aktion an einen Docker Container zu übergeben, der die _exec_-Form im `ENTRYPOINT` verwendet, empfehlen wir, ein Shell-Skript namens `entrypoint.sh` zu erstellen und dieses von der `ENTRYPOINT`-Anweisung aus anrufen:
6162

6263
##### Beispiel *Dockerfile*
63-
```
64-
# Container-Image, das Deinen Code ausführt
64+
```
65+
# Container image that runs your code
6566
FROM debian:9.5-slim
6667
67-
# Kopiert Deine Code-Datei aus Deinem Aktions-Repository in den Dateisystem-Pfad `/` des Containers
68+
# Copies your code file from your action repository to the filesystem path `/` of the container
6869
COPY entrypoint.sh /entrypoint.sh
6970
70-
# Ruft `entrypoint.sh` wenn der Docker-Container hochfaehrt
71+
# Executes `entrypoint.sh` when the Docker container starts up
7172
ENTRYPOINT ["/entrypoint.sh"]
7273
```
7374

@@ -78,14 +79,14 @@ Mit dem obigen Dockerfile-Beispiel sendet {% data variables.product.product_name
7879
``` sh
7980
#!/bin/sh
8081

81-
# `$*` erweitert die in einem `array` gelieferten `args` individuell
82-
# oder teilt einen String `args` an Whitespaces in Teil-Strings auf.
82+
# `$*` expands the `args` supplied in an `array` individually
83+
# or splits `args` in a string separated by whitespace.
8384
sh -c "echo $*"
8485
```
8586

8687
Dein Code muss ausführbar sein. Stelle sicher, dass die Datei `entrypoint.sh` die Berechtigunge `execute` hat, bevor Du sie in einem Workflow verwendest. Du kannst die Berechtigung von Deinem Terminal aus mit diesem Befehl ändern:
8788
``` sh
88-
chmod +x entrypoint.sh
89+
chmod +x entrypoint.sh
8990
```
9091

9192
Wenn ein `ENTRYPOINT`-Shell-Skript nicht ausführbar ist, erhältst Du einen Fehler, der ungefähr so aussieht:

translations/de-DE/content/actions/creating-actions/metadata-syntax-for-github-actions.md

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ redirect_from:
1111
versions:
1212
free-pro-team: '*'
1313
enterprise-server: '>=2.22'
14+
type: 'reference'
1415
---
1516

1617
{% data reusables.actions.enterprise-beta %}
@@ -103,16 +104,16 @@ outputs:
103104

104105
{% raw %}
105106
```yaml
106-
Outputs:
107-
Zufallszahl:
108-
Beschreibung: "Zufallszahl"
109-
Wert:{{ steps.random-number-generator.outputs.random-id }}
110-
läuft:
111-
mit: "composite"
112-
Schritten:
113-
- id: zuzufälliger Zahlengenerator
114-
ausführen: echo "::set-output name=random-id::'(echo $RANDOM)"
115-
Shell: bash
107+
outputs:
108+
random-number:
109+
description: "Random number"
110+
value: ${{ steps.random-number-generator.outputs.random-id }}
111+
runs:
112+
using: "composite"
113+
steps:
114+
- id: random-number-generator
115+
run: echo "::set-output name=random-id::$(echo $RANDOM)"
116+
shell: bash
116117
```
117118
{% endraw %}
118119

@@ -211,22 +212,22 @@ In diesem Beispiel läuft `cleanup.js` nur auf Linux-basierten Runnern:
211212

212213
{% raw %}
213214
```yaml
214-
läuft:
215-
mit: "composite"
216-
Schritte:
217-
- ausführen:{{ github.action_path }}/test/script.sh
218-
Shell: bash
215+
runs:
216+
using: "composite"
217+
steps:
218+
- run: ${{ github.action_path }}/test/script.sh
219+
shell: bash
219220
```
220221
{% endraw %}
221222

222223
Alternatively, you can use `$GITHUB_ACTION_PATH`:
223224

224225
```yaml
225-
läuft:
226-
verwenden: "composite"
227-
Schritte:
228-
- ausführen: $GITHUB_ACTION_PATH/script.sh
229-
Shell: bash
226+
runs:
227+
using: "composite"
228+
steps:
229+
- run: $GITHUB_ACTION_PATH/script.sh
230+
shell: bash
230231
```
231232

232233
For more information, see "[`github context`](/actions/reference/context-and-expression-syntax-for-github-actions#github-context)".
@@ -258,17 +259,17 @@ For more information, see "[`github context`](/actions/reference/context-and-exp
258259
#### Beispiel für die Nutzung eines Dockerfiles in Deinem Repository
259260

260261
```yaml
261-
runs:
262+
runs:
262263
using: 'docker'
263264
image: 'Dockerfile'
264265
```
265266

266267
#### Beispiel zur Nutzung des öffentlichen Docker-Registry-Containers
267268

268269
```yaml
269-
läuft:
270-
mit: 'docker'
271-
Image: 'docker://debian:stretch-slim'
270+
runs:
271+
using: 'docker'
272+
image: 'docker://debian:stretch-slim'
272273
```
273274

274275
#### `runs.using`

translations/de-DE/content/actions/creating-actions/publishing-actions-in-github-marketplace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ redirect_from:
88
- /actions/building-actions/publishing-actions-in-github-marketplace
99
versions:
1010
free-pro-team: '*'
11+
type: 'how_to'
1112
---
1213

1314
You must accept the terms of service to publish actions in {% data variables.product.prodname_marketplace %}.

translations/de-DE/content/actions/creating-actions/setting-exit-codes-for-actions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ redirect_from:
88
versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
11+
type: 'how_to'
1112
---
1213

1314
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/about-continuous-integration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ redirect_from:
1010
versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
13+
type: 'overview'
1314
---
1415

1516
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/about-packaging-with-github-actions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ redirect_from:
88
versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
11+
type: 'overview'
1112
---
1213

1314
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/about-service-containers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ redirect_from:
88
versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
11+
type: 'overview'
1112
---
1213

1314
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/building-and-testing-java-with-ant.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ redirect_from:
77
versions:
88
free-pro-team: '*'
99
enterprise-server: '>=2.22'
10+
type: 'tutorial'
1011
---
1112

1213
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/building-and-testing-java-with-gradle.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ redirect_from:
77
versions:
88
free-pro-team: '*'
99
enterprise-server: '>=2.22'
10+
type: 'tutorial'
1011
---
1112

1213
{% data reusables.actions.enterprise-beta %}

translations/de-DE/content/actions/guides/building-and-testing-java-with-maven.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ redirect_from:
77
versions:
88
free-pro-team: '*'
99
enterprise-server: '>=2.22'
10+
type: 'tutorial'
1011
---
1112

1213
{% data reusables.actions.enterprise-beta %}

0 commit comments

Comments
 (0)