Skip to content

Commit 63a7abd

Browse files
committed
New Crowdin translations by Github Action
1 parent e2094c1 commit 63a7abd

3,124 files changed

Lines changed: 68604 additions & 11302 deletions

File tree

Some content is hidden

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
1313
github-ae: '*'
14-
type: overview
14+
type: 'übersicht'
1515
topics:
16-
- Action development
17-
- Fundamentals
16+
- 'Action development'
17+
- 'Fundamentals'
1818
---
1919

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
1111
github-ae: '*'
12-
type: reference
12+
type: 'Referenz'
1313
---
1414

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

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Metadaten-Syntax für GitHub-Aktionen
33
shortTitle: Metadaten-Syntax
4-
intro: 'Du kannst Aktionen erstellen, um Aufgaben in Ihrem Repository zu erledigen. Für Aktionen ist eine Metadaten-Datei erforderlich, welche die YAML-Syntax verwendet.'
4+
intro: Du kannst Aktionen erstellen, um Aufgaben in Ihrem Repository zu erledigen. Für Aktionen ist eine Metadaten-Datei erforderlich, welche die YAML-Syntax verwendet.
55
product: '{% data reusables.gated-features.actions %}'
66
redirect_from:
77
- /articles/metadata-syntax-for-github-actions
@@ -12,7 +12,7 @@ versions:
1212
free-pro-team: '*'
1313
enterprise-server: '>=2.22'
1414
github-ae: '*'
15-
type: reference
15+
type: 'Referenz'
1616
---
1717

1818
{% data reusables.actions.enterprise-beta %}
@@ -58,7 +58,7 @@ inputs:
5858
5959
Wenn Du eine Eingabe für eine Aktion in einer Workflow-Datei angibst oder einen Standardeingabewert verwendest, erstellt {% data variables.product.prodname_dotcom %} eine Umgebungsvariable für die Eingabe mit dem Namen `INPUT_<NAME_DER_VARIABLEN>`. Die erstellte Umgebungsvariable wandelt Eingabenamen in Großbuchstaben um und ersetzt Leerzeichen durch `_`-Zeichen.
6060

61-
Wenn beispielsweise ein Workflow die Eingaben „numOctocats“ und „octocatEyeColor“ definiert hat, kann der Aktionscode die Werte für die Eingaben mithilfe der Umgebungsvariablen `INPUT_NUMOCTOCATS` and `INPUT_OCTOCATEYECOLOR` lesen.
61+
For example, if a workflow defined the `numOctocats` and `octocatEyeColor` inputs, the action code could read the values of the inputs using the `INPUT_NUMOCTOCATS` and `INPUT_OCTOCATEYECOLOR` environment variables.
6262

6363
#### `inputs.<input_id>`
6464

@@ -76,6 +76,10 @@ Wenn beispielsweise ein Workflow die Eingaben „numOctocats“ und „octocatEy
7676

7777
**Optional**: Ein `String`, der den Standardwert darstellt. Der Standardwert wird verwendet, wenn ein Eingabeparameter in einer Workflow-Datei nicht angegeben ist.
7878

79+
#### `inputs.<input_id>.deprecationMessage`
80+
81+
**Optional** If the input parameter is used, this `string` is logged as a warning message. You can use this warning to notify users that the input is deprecated and mention any alternatives.
82+
7983
### `outputs`
8084

8185
**Optional**: Ausgabeparameter erlauben Dir, Daten zu deklarieren, die eine Aktion setzt. Aktionen, die in einem Workflow später ausgeführt werden, können die Ausgabedaten der zuvor ausgeführten Aktionen verwenden. Wenn beispielsweise eine Aktion vorliegt, die zwei Eingaben addiert hat (x + y = z), kann die Aktion die Summe (z) für andere Aktionen ausgeben, damit sie als Eingabe verwendet wird.

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

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ redirect_from:
1010
versions:
1111
free-pro-team: '*'
1212
enterprise-server: '>=2.22'
13+
github-ae: '*'
1314
type: 'overview'
15+
topics:
16+
- 'CI'
17+
- 'CD'
1418
---
1519

1620
{% data reusables.actions.enterprise-beta %}
1721
{% data reusables.actions.enterprise-github-hosted-runners %}
22+
{% data reusables.actions.ae-beta %}
1823

1924
### Informationen zur fortlaufenden Integration
2025

@@ -26,7 +31,9 @@ Zum Erstellen und Testen des Codes ist ein Server erforderlich. Sie können Aktu
2631

2732
### Informationen zur kontinuierlichen Integration mit {% data variables.product.prodname_actions %}
2833

29-
CI mit {% data variables.product.prodname_actions %} bietet Workflows, die den Code in Ihrem Repository erstellen und Ihre Tests ausführen können. Workflows können auf {% data variables.product.prodname_dotcom %}gehosteten virtuellen Maschinen oder auf Computern ausgeführt werden, die Sie selbst hosten. For more information, see "[Virtual environments for {% data variables.product.prodname_dotcom %}-hosted runners](/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners)" and "[About self-hosted runners](/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners)."
34+
{% if currentVersion == "github-ae@latest" %}CI using {% data variables.product.prodname_actions %} offers workflows that can build the code in your repository and run your tests. Workflows can run on virtual machines hosted by {% data variables.product.prodname_dotcom %}. For more information, see "[About {% data variables.actions.hosted_runner %}s](/actions/using-github-hosted-runners/about-ae-hosted-runners)."
35+
{% else %} CI using {% data variables.product.prodname_actions %} offers workflows that can build the code in your repository and run your tests. Workflows können auf {% data variables.product.prodname_dotcom %}gehosteten virtuellen Maschinen oder auf Computern ausgeführt werden, die Sie selbst hosten. For more information, see "[Virtual environments for {% data variables.product.prodname_dotcom %}-hosted runners](/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners)" and "[About self-hosted runners](/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners)."
36+
{% endif %}
3037

3138
Sie können Ihren CI-Workflow so konfigurieren, dass er ausgeführt wird, wenn ein {% data variables.product.product_name %} Ereignis auftritt (z. B. wenn neuer Code an Ihr Repository übertragen wird), nach einem festgelegten Zeitplan oder wenn ein externes Ereignis mithilfe des Repository-Dispatch-Webhooks auftritt.
3239

@@ -46,6 +53,26 @@ Eine Definition von gebräuchliche Begriffe finden Sie unter "[Kernkonzepte für
4653

4754
Browse the complete list of CI workflow templates offered by {% data variables.product.product_name %} in the {% if currentVersion == "free-pro-team@latest" %}[actions/starter-workflows](https://github.com/actions/starter-workflows/tree/main/ci) repository{% else %} `actions/starter-workflows` repository on {% data variables.product.product_location %}{% endif %}.
4855

56+
### Skipping workflow runs
57+
58+
If you want to temporarily prevent a workflow from being triggered, you can add a skip instruction to the commit message. Workflows that would otherwise be triggered `on: push` or `on: pull_request`, won't be triggered if you add any any of the following strings to the commit message in a push, or the HEAD commit of a pull request:
59+
60+
* `[skip ci]`
61+
* `[ci skip]`
62+
* `[no ci]`
63+
* `[skip actions]`
64+
* `[actions skip]`
65+
66+
Alternatively, you can end the commit message with two empty lines followed by either `skip-checks: true` or `skip-checks:true`.
67+
68+
You won't be able to merge the pull request if your repository is configured to require specific checks to pass first. To allow the pull request to be merged you can push a new commit to the pull request without the skip instruction in the commit message.
69+
70+
{% note %}
71+
72+
**Note:** Skip instructions only apply to the `push` and `pull_request` events. For example, adding `[skip ci]` to a commit message won't stop a workflow that's triggered `on: pull_request_target` from running.
73+
74+
{% endnote %}
75+
4976
### Benachrichtigungen für Workflow-Läufe
5077

5178
{% data reusables.repositories.workflow-notifications %}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
1111
github-ae: '*'
12-
type: overview
12+
type: 'übersicht'
1313
topics:
14-
- Pakete erstellen
14+
- 'Pakete erstellen'
1515
---
1616

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ versions:
99
free-pro-team: '*'
1010
enterprise-server: '>=2.22'
1111
github-ae: '*'
12-
type: overview
12+
type: 'übersicht'
1313
topics:
14-
- Containers
15-
- Docker
14+
- 'Containers'
15+
- 'Docker'
1616
---
1717

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

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

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ jobs:
5858
5959
steps:
6060
- uses: actions/checkout@v2
61-
- name: Set up JDK 1.8
62-
uses: actions/setup-java@v1
61+
- name: Set up JDK 11
62+
uses: actions/setup-java@v2
6363
with:
64-
java-version: 1.8
64+
java-version: '11'
65+
distribution: 'adopt'
6566
- name: Build with Ant
6667
run: ant -noinput -buildfile build.xml
6768
```
@@ -70,7 +71,7 @@ jobs:
7071
Dieser Workflow führt die folgenden Schritte aus:
7172

7273
1. Der Schritt `checkout` lädt eine Kopie Deines Repositorys auf den Runner herunter.
73-
2. Der Schritt `setup-java` konfiguriert das Java 1.8 JDK.
74+
2. The `setup-java` step configures the Java 11 JDK by Adoptium.
7475
3. Der Schritt „Build with Ant“ (mittels Ant bauen) führt das standardmäßige „Target“ (Ziel) in Deiner `build.xml` im nicht-interaktiven Modus aus.
7576

7677
Die Standard-Workflow-Vorlagen sind ausgezeichnete Ausgangspunkte beim Erstellen des Build- und Testworkflows, und Du kannst die Vorlage an die Anforderungen Deines Projekts anpassen.
@@ -91,9 +92,10 @@ Wenn Du zum Bauen Deines Projekts andere Befehle verwenden oder ein anderes Ziel
9192
```yaml{:copy}
9293
steps:
9394
- uses: actions/checkout@v2
94-
- uses: actions/setup-java@v1
95+
- uses: actions/setup-java@v2
9596
with:
96-
java-version: 1.8
97+
java-version: '11'
98+
distribution: 'adopt'
9799
- name: Run the Ant jar target
98100
run: ant -noinput -buildfile build-ci.xml jar
99101
```
@@ -109,7 +111,11 @@ Ant erstellt normalerweise Ausgabedateien wie JARs, EARs oder WARs im Verzeichni
109111
```yaml{:copy}
110112
steps:
111113
- uses: actions/checkout@v2
112-
- uses: actions/setup-java@v1
114+
- uses: actions/setup-java@v2
115+
with:
116+
java-version: '11'
117+
distribution: 'adopt'
118+
113119
- run: ant -noinput -buildfile build.xml
114120
- uses: actions/upload-artifact@v2
115121
with:

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

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ jobs:
5858
5959
steps:
6060
- uses: actions/checkout@v2
61-
- name: Set up JDK 1.8
62-
uses: actions/setup-java@v1
61+
- name: Set up JDK 11
62+
uses: actions/setup-java@v2
6363
with:
64-
java-version: 1.8
64+
java-version: '11'
65+
distribution: 'adopt'
6566
- name: Build with Gradle
6667
run: ./gradlew build
6768
```
@@ -70,7 +71,7 @@ jobs:
7071
Dieser Workflow führt die folgenden Schritte aus:
7172

7273
1. Der Schritt `checkout` lädt eine Kopie Deines Repositorys auf den Runner herunter.
73-
2. Der Schritt `setup-java` konfiguriert das Java 1.8 JDK.
74+
2. The `setup-java` step configures the Java 11 JDK by Adoptium.
7475
3. Der Schritt "Build with Gradle" führt das Wrapper-Skript `gradlew` aus, um sicherzustellen, dass dein Code gebaut, Tests bestanden und ein Paket erstellt werden kann.
7576

7677
Die Standard-Workflow-Vorlagen sind ausgezeichnete Ausgangspunkte beim Erstellen des Build- und Testworkflows, und Du kannst die Vorlage an die Anforderungen Deines Projekts anpassen.
@@ -91,9 +92,10 @@ Wenn Du zum Bauen Deines Projekts andere Befehle verwenden oder einen anderen Ta
9192
```yaml{:copy}
9293
steps:
9394
- uses: actions/checkout@v2
94-
- uses: actions/setup-java@v1
95+
- uses: actions/setup-java@v2
9596
with:
96-
java-version: 1.8
97+
java-version: '11'
98+
distribution: 'adopt'
9799
- name: Run the Gradle package task
98100
run: ./gradlew -b ci.gradle package
99101
```
@@ -107,10 +109,11 @@ When using {% data variables.product.prodname_dotcom %}-hosted runners, you can
107109
```yaml{:copy}
108110
steps:
109111
- uses: actions/checkout@v2
110-
- name: Set up JDK 1.8
111-
uses: actions/setup-java@v1
112+
- name: Set up JDK 11
113+
uses: actions/setup-java@v2
112114
with:
113-
java-version: 1.8
115+
java-version: '11'
116+
distribution: 'adopt'
114117
- name: Cache Gradle packages
115118
uses: actions/cache@v2
116119
with:
@@ -143,7 +146,11 @@ Gradle erstellt normalerweise Ausgabedateien wie JARs, EARs oder WARs im Verzeic
143146
```yaml{:copy}
144147
steps:
145148
- uses: actions/checkout@v2
146-
- uses: actions/setup-java@v1
149+
- uses: actions/setup-java@v2
150+
with:
151+
java-version: '11'
152+
distribution: 'adopt'
153+
147154
- run: ./gradlew build
148155
- uses: actions/upload-artifact@v2
149156
with:

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

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ jobs:
5858
5959
steps:
6060
- uses: actions/checkout@v2
61-
- name: Set up JDK 1.8
62-
uses: actions/setup-java@v1
61+
- name: Set up JDK 11
62+
uses: actions/setup-java@v2
6363
with:
64-
java-version: 1.8
64+
java-version: '11'
65+
distribution: 'adopt'
6566
- name: Build with Maven
6667
run: mvn --batch-mode --update-snapshots verify
6768
```
@@ -70,7 +71,7 @@ jobs:
7071
Dieser Workflow führt die folgenden Schritte aus:
7172

7273
1. Der Schritt `checkout` lädt eine Kopie Deines Repositorys auf den Runner herunter.
73-
2. Der Schritt `setup-java` konfiguriert das Java 1.8 JDK.
74+
2. The `setup-java` step configures the Java 11 JDK by Adoptium.
7475
3. Der Schritt "Build with Maven" führt das Maven-„Target“ (Ziel) `package` im nicht-interaktiven Modus aus, um sicherzustellen, dass der Code gebaut, Tests bestanden und ein Paket erstellt werden kann.
7576

7677
Die Standard-Workflow-Vorlagen sind ausgezeichnete Ausgangspunkte beim Erstellen des Build- und Testworkflows, und Du kannst die Vorlage an die Anforderungen Deines Projekts anpassen.
@@ -91,9 +92,10 @@ Wenn Du zum Bauen Deines Projekts andere Befehle verwenden oder ein anderes Ziel
9192
```yaml{:copy}
9293
steps:
9394
- uses: actions/checkout@v2
94-
- uses: actions/setup-java@v1
95+
- uses: actions/setup-java@v2
9596
with:
96-
java-version: 1.8
97+
java-version: '11'
98+
distribution: 'adopt'
9799
- name: Run the Maven verify phase
98100
run: mvn --batch-mode --update-snapshots verify
99101
```
@@ -107,10 +109,11 @@ When using {% data variables.product.prodname_dotcom %}-hosted runners, you can
107109
```yaml{:copy}
108110
steps:
109111
- uses: actions/checkout@v2
110-
- name: Set up JDK 1.8
111-
uses: actions/setup-java@v1
112+
- name: Set up JDK 11
113+
uses: actions/setup-java@v2
112114
with:
113-
java-version: 1.8
115+
java-version: '11'
116+
distribution: 'adopt'
114117
- name: Cache Maven packages
115118
uses: actions/cache@v2
116119
with:
@@ -134,7 +137,10 @@ Maven erstellt normalerweise Ausgabedateien wie JARs, EARs oder WARs im Verzeich
134137
```yaml{:copy}
135138
steps:
136139
- uses: actions/checkout@v2
137-
- uses: actions/setup-java@v1
140+
- uses: actions/setup-java@v2
141+
with:
142+
java-version: '11'
143+
distribution: 'adopt'
138144
- run: mvn --batch-mode --update-snapshots verify
139145
- run: mkdir staging && cp target/*.jar staging
140146
- uses: actions/upload-artifact@v2

translations/de-DE/content/actions/guides/building-and-testing-net.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
dotnet-version: [ '2.2.103', '3.0', '3.1.x' ]
47+
dotnet-version: ['3.0', '3.1.x', '5.0.x' ]
4848

4949
steps:
5050
- uses: actions/checkout@v2
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
strategy:
8383
matrix:
84-
dotnet: [ '2.2.103', '3.0', '3.1.x' ]
84+
dotnet: [ '3.0', '3.1.x', '5.0.x' ]
8585
8686
steps:
8787
- uses: actions/checkout@v2
@@ -201,7 +201,7 @@ jobs:
201201
runs-on: ubuntu-latest
202202
strategy:
203203
matrix:
204-
dotnet-version: [ '2.2.103', '3.0', '3.1.x' ]
204+
dotnet-version: [ '3.0', '3.1.x', '5.0.x' ]
205205
206206
steps:
207207
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)