Skip to content

Commit ae52407

Browse files
Update translations (#857)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c0cb353 commit ae52407

146 files changed

Lines changed: 20004 additions & 2357 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.

docs/de/docs/hello_nextflow/00_orientation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<span class="ai-translation-notice">:material-information-outline:{ .ai-translation-notice-icon } KI-gestützte Übersetzung - [mehr erfahren & Verbesserungen vorschlagen](https://github.com/nextflow-io/training/blob/master/TRANSLATING.md)</span>
44

55
<div class="video-wrapper">
6-
<iframe width="560" height="315" src="https://www.youtube.com/embed/PIjOdFaYwWA?si=nyLvwhrSB2m1NPc5&amp;list=PLPZ8WHdZGxmWKozQuzr27jyMGqp9kElVK&amp;cc_load_policy=1&amp;cc_lang_pref=de" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
6+
<iframe width="560" height="315" src="https://www.youtube.com/embed/PIjOdFaYwWA?si=gZxlXgkVxuLEzOsC" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
77
</div>
88

99
/// caption

docs/de/docs/hello_nextflow/02_hello_channels.md

Lines changed: 122 additions & 122 deletions
Large diffs are not rendered by default.

docs/de/docs/hello_nextflow/03_hello_workflow.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Jetzt müssen wir Nextflow sagen, dass es den Process, den wir gerade definiert
164164

165165
Nimm im Workflow-Block die folgende Codeänderung vor:
166166

167-
=== "Nachher"
167+
=== "Danach"
168168

169169
```groovy title="hello-workflow.nf" linenums="44" hl_lines="10-11"
170170
workflow {
@@ -219,7 +219,7 @@ Also ist die Ausgabe des `sayHello`-Process ein Kanal namens `sayHello.out`, den
219219

220220
Nimm im Workflow-Block die folgende Codeänderung vor:
221221

222-
=== "Nachher"
222+
=== "Danach"
223223

224224
```groovy title="hello-workflow.nf" linenums="53" hl_lines="2"
225225
// Die Begrüßung in Großbuchstaben umwandeln
@@ -243,7 +243,7 @@ Zum Schluss aktualisieren wir die Workflow-Ausgaben, um auch die Ergebnisse des
243243

244244
Nimm im `workflow`-Block die folgende Codeänderung vor:
245245

246-
=== "Nachher"
246+
=== "Danach"
247247

248248
```groovy title="hello-workflow.nf" linenums="56" hl_lines="3"
249249
publish:
@@ -266,7 +266,7 @@ Die Logik ist dieselbe wie zuvor.
266266

267267
Nimm im `output`-Block die folgende Codeänderung vor:
268268

269-
=== "Nachher"
269+
=== "Danach"
270270

271271
```groovy title="hello-workflow.nf" linenums="61" hl_lines="6-9"
272272
output {
@@ -449,7 +449,7 @@ Das entspricht einem Eingabeslot; nennen wir ihn der Einfachheit halber `input_f
449449

450450
Nimm im Process-Block die folgende Codeänderung vor:
451451

452-
=== "Nachher"
452+
=== "Danach"
453453

454454
```groovy title="hello-workflow.nf" linenums="42" hl_lines="2"
455455
input:
@@ -476,7 +476,7 @@ Glücklicherweise macht Nextflow das gerne für uns, wenn wir einfach `cat ${inp
476476

477477
Nimm im Process-Block die folgende Codeänderung vor:
478478

479-
=== "Nachher"
479+
=== "Danach"
480480

481481
```groovy title="hello-workflow.nf" linenums="54" hl_lines="3"
482482
script:
@@ -515,7 +515,7 @@ Das ist auch ein Kanal, genannt `convertToUpper.out`.
515515

516516
Nimm im Workflow-Block die folgende Codeänderung vor:
517517

518-
=== "Nachher"
518+
=== "Danach"
519519

520520
```groovy title="hello-workflow.nf" linenums="75" hl_lines="4 5"
521521
// Die Begrüßung in Großbuchstaben umwandeln
@@ -593,7 +593,7 @@ Wir können das direkt in den `collectGreetings()`-Process-Aufruf einstecken.
593593

594594
Nimm im Workflow-Block die folgende Codeänderung vor:
595595

596-
=== "Nachher"
596+
=== "Danach"
597597

598598
```groovy title="hello-workflow.nf" linenums="73" hl_lines="2"
599599
// Alle Begrüßungen in einer Datei sammeln
@@ -613,7 +613,7 @@ Nimm im Workflow-Block die folgende Codeänderung vor:
613613

614614
Lass uns auch ein paar `view()`-Anweisungen einfügen, um die Zustände des Kanal-Inhalts vor und nach zu visualisieren.
615615

616-
=== "Nachher"
616+
=== "Danach"
617617

618618
```groovy title="hello-workflow.nf" linenums="73" hl_lines="4-6"
619619
// Alle Begrüßungen in einer Datei sammeln
@@ -694,7 +694,7 @@ Diesmal haben wir alle drei Begrüßungen in der endgültigen Ausgabedatei. Erfo
694694

695695
Bevor du zum nächsten Abschnitt übergehst, empfehlen wir, die `view()`-Anweisungen zu löschen, um die Konsolenausgabe nicht zu überladen.
696696

697-
=== "Nachher"
697+
=== "Danach"
698698

699699
```groovy title="hello-workflow.nf" linenums="73"
700700
// Alle Begrüßungen in einer Datei sammeln
@@ -726,7 +726,7 @@ Zur Wiederholung, das ist, was du bisher erstellt hast:
726726

727727
### Wie geht es weiter?
728728

729-
Lerne, wie du zusätzliche Parameter an einen Process übergibst.
729+
Lerne, wie du mehr als eine Eingabe an einen Process übergibst.
730730

731731
---
732732

@@ -754,7 +754,7 @@ Nennen wir diese `batch_name`.
754754

755755
Nimm im Process-Block die folgende Codeänderung vor:
756756

757-
=== "Nachher"
757+
=== "Danach"
758758

759759
```groovy title="hello-workflow.nf" linenums="42" hl_lines="3"
760760
input:
@@ -780,7 +780,7 @@ Wir können die Variable auf dieselbe Weise in den Ausgabedateinamen einfügen,
780780

781781
Nimm im Process-Block die folgende Codeänderung vor:
782782

783-
=== "Nachher"
783+
=== "Danach"
784784

785785
```groovy title="hello-workflow.nf" linenums="46" hl_lines="2 6"
786786
output:
@@ -817,7 +817,7 @@ Lass uns das verwenden, um einen `batch`-Parameter zu deklarieren (mit einem Sta
817817

818818
Nimm im Abschnitt für Pipeline-Parameter die folgenden Codeänderungen vor:
819819

820-
=== "Nachher"
820+
=== "Danach"
821821

822822
```groovy title="hello-workflow.nf" linenums="55" hl_lines="6"
823823
/*
@@ -848,7 +848,7 @@ Um den Wert des Parameters an den Process zu übergeben, müssen wir ihn im Proc
848848

849849
Nimm im Workflow-Block die folgende Codeänderung vor:
850850

851-
=== "Nachher"
851+
=== "Danach"
852852

853853
```groovy title="hello-workflow.nf" linenums="74" hl_lines="2"
854854
// Alle Begrüßungen in einer Datei sammeln
@@ -939,7 +939,7 @@ Das bedeutet, wir können Nextflows eingebaute `size()`-Funktion verwenden, um d
939939

940940
Nimm im `collectGreetings`-Process-Block die folgenden Codeänderungen vor:
941941

942-
=== "Nachher"
942+
=== "Danach"
943943

944944
```groovy title="hello-workflow.nf" linenums="55" hl_lines="2 5"
945945
script:
@@ -969,7 +969,7 @@ Aber während wir dabei sind, werden wir auch einige `emit:`-Tags zu unseren Aus
969969

970970
Nimm im Process-Block die folgende Codeänderung vor:
971971

972-
=== "Nachher"
972+
=== "Danach"
973973

974974
```groovy title="hello-workflow.nf" linenums="46" hl_lines="2 3"
975975
output:
@@ -1011,7 +1011,7 @@ Wir müssen die Workflow-Ausgaben entsprechend aktualisieren.
10111011

10121012
Nimm im `workflow`-Block die folgende Codeänderung vor:
10131013

1014-
=== "Nachher"
1014+
=== "Danach"
10151015

10161016
```groovy title="hello-workflow.nf" linenums="80" hl_lines="4 5"
10171017
publish:
@@ -1039,7 +1039,7 @@ Aber für jetzt aktualisieren wir die Workflow-Level-Ausgaben fertig.
10391039

10401040
Nimm im `output`-Block die folgende Codeänderung vor:
10411041

1042-
=== "Nachher"
1042+
=== "Danach"
10431043

10441044
```groovy title="hello-workflow.nf" linenums="86" hl_lines="14-17"
10451045
output {

docs/de/docs/hello_nextflow/04_hello_modules.md

Lines changed: 16 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Teil 4: Hello Modules
22

3-
<span class="ai-translation-notice">:material-information-outline:{ .ai-translation-notice-icon } KI-gestützte Übersetzung - [mehr erfahren & Verbesserungen vorschlagen](https://github.com/nextflow-io/training/blob/master/TRANSLATING.md)</span>
4-
53
<div class="video-wrapper">
6-
<iframe width="560" height="315" src="https://www.youtube.com/embed/43Ot-f0iOME?si=0AWnXB7xqHAzJdJV&amp;list=PLPZ8WHdZGxmWKozQuzr27jyMGqp9kElVK&amp;cc_load_policy=1&amp;cc_lang_pref=de" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4+
<iframe width="560" height="315" src="https://www.youtube.com/embed/43Ot-f0iOME?si=y8lAedhEHWaTV4zd&amp;list=PLPZ8WHdZGxmWKozQuzr27jyMGqp9kElVK&amp;cc_load_policy=1&amp;cc_lang_pref=de" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
75
</div>
86

97
/// caption
@@ -129,11 +127,9 @@ Dies gibt uns einen Platz, um den process-Code zu platzieren.
129127

130128
### 2.2. Den `sayHello`-process-Code in die Moduldatei verschieben
131129

132-
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei und stelle sicher, dass du auch den `#!/usr/bin/env nextflow`-Shebang mit kopierst.
130+
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei.
133131

134132
```groovy title="modules/sayHello.nf" linenums="1"
135-
#!/usr/bin/env nextflow
136-
137133
/*
138134
* Verwende echo, um 'Hello World!' in eine Datei zu schreiben
139135
*/
@@ -152,13 +148,13 @@ process sayHello {
152148
}
153149
```
154150

155-
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei, aber stelle sicher, dass du den Shebang an Ort und Stelle lässt.
151+
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei.
156152

157153
### 2.3. Eine include-Deklaration vor dem workflow-Block hinzufügen
158154

159155
Die Syntax für das Einbinden eines process aus einem Modul ist ziemlich unkompliziert:
160156

161-
```groovy title="Syntax: include-Deklaration"
157+
```groovy title="Syntax: include declaration"
162158
include { <PROCESS_NAME> } from '<path_to_module>'
163159
```
164160

@@ -167,7 +163,7 @@ Lass uns das oberhalb des `params`-Blocks einfügen und es entsprechend ausfüll
167163
=== "Nachher"
168164

169165
```groovy title="hello-modules.nf" linenums="44" hl_lines="1 2"
170-
// Module einbinden
166+
// Include modules
171167
include { sayHello } from './modules/sayHello.nf'
172168

173169
/*
@@ -242,11 +238,9 @@ touch modules/convertToUpper.nf
242238

243239
### 3.2. Den `convertToUpper`-process-Code in die Moduldatei verschieben
244240

245-
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei und stelle sicher, dass du auch den `#!/usr/bin/env nextflow`-Shebang mit kopierst.
241+
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei.
246242

247243
```groovy title="modules/convertToUpper.nf" linenums="1"
248-
#!/usr/bin/env nextflow
249-
250244
/*
251245
* Verwende ein Textersetzungstool, um die Begrüßung in Großbuchstaben umzuwandeln
252246
*/
@@ -265,7 +259,7 @@ process convertToUpper {
265259
}
266260
```
267261

268-
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei, aber stelle sicher, dass du den Shebang an Ort und Stelle lässt.
262+
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei.
269263

270264
### 3.3. Eine include-Deklaration vor dem `params`-Block hinzufügen
271265

@@ -274,7 +268,7 @@ Füge die include-Deklaration oberhalb des `params`-Blocks ein und fülle sie en
274268
=== "Nachher"
275269

276270
```groovy title="hello-modules.nf" linenums="23" hl_lines="3"
277-
// Module einbinden
271+
// Include modules
278272
include { sayHello } from './modules/sayHello.nf'
279273
include { convertToUpper } from './modules/convertToUpper.nf'
280274

@@ -290,7 +284,7 @@ Füge die include-Deklaration oberhalb des `params`-Blocks ein und fülle sie en
290284
=== "Vorher"
291285

292286
```groovy title="hello-modules.nf" linenums="23"
293-
// Module einbinden
287+
// Include modules
294288
include { sayHello } from './modules/sayHello.nf'
295289

296290
/*
@@ -342,11 +336,9 @@ touch modules/collectGreetings.nf
342336

343337
### 4.2. Den `collectGreetings`-process-Code in die Moduldatei verschieben
344338

345-
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei und stelle sicher, dass du auch den `#!/usr/bin/env nextflow`-Shebang mit kopierst.
339+
Kopiere die gesamte process-Definition von der Workflow-Datei in die Moduldatei.
346340

347341
```groovy title="modules/collectGreetings.nf" linenums="1"
348-
#!/usr/bin/env nextflow
349-
350342
/*
351343
* Großbuchstaben-Begrüßungen in einer einzelnen Ausgabedatei sammeln
352344
*/
@@ -369,7 +361,7 @@ process collectGreetings {
369361
}
370362
```
371363

372-
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei, aber stelle sicher, dass du den Shebang an Ort und Stelle lässt.
364+
Sobald das erledigt ist, lösche die process-Definition aus der Workflow-Datei.
373365

374366
### 4.3. Eine include-Deklaration vor dem `params`-Block hinzufügen
375367

@@ -378,7 +370,7 @@ Füge die include-Deklaration oberhalb des `params`-Blocks ein und fülle sie en
378370
=== "Nachher"
379371

380372
```groovy title="hello-modules.nf" linenums="3" hl_lines="4"
381-
// Module einbinden
373+
// Include modules
382374
include { sayHello } from './modules/sayHello.nf'
383375
include { convertToUpper } from './modules/convertToUpper.nf'
384376
include { collectGreetings } from './modules/collectGreetings.nf'
@@ -395,7 +387,7 @@ Füge die include-Deklaration oberhalb des `params`-Blocks ein und fülle sie en
395387
=== "Vorher"
396388

397389
```groovy title="hello-modules.nf" linenums="3"
398-
// Module einbinden
390+
// Include modules
399391
include { sayHello } from './modules/sayHello.nf'
400392
include { convertToUpper } from './modules/convertToUpper.nf'
401393

@@ -458,7 +450,7 @@ Was ist ein Modul in Nextflow?
458450
- [ ] Eine Workflow-Definition
459451
- [ ] Ein channel-Operator
460452

461-
Mehr erfahren: [2. Ein Modul für `sayHello()` erstellen](#2-ein-modul-fur-sayhello-erstellen)
453+
Mehr erfahren: [2. Ein Modul für `sayHello()` erstellen](#2-create-a-module-for-sayhello)
462454
</quiz>
463455

464456
<quiz>
@@ -468,7 +460,7 @@ Welche Konvention wird typischerweise für das Speichern von Moduldateien verwen
468460
- [x] In einem `modules/`-Verzeichnis
469461
- [ ] In einem `lib/`-Verzeichnis
470462

471-
Mehr erfahren: [1. Ein Verzeichnis zum Speichern von Modulen erstellen](#1-ein-verzeichnis-zum-speichern-von-modulen-erstellen)
463+
Mehr erfahren: [1. Ein Verzeichnis zum Speichern von Modulen erstellen](#1-create-a-directory-to-store-modules)
472464
</quiz>
473465

474466
<quiz>
@@ -479,7 +471,7 @@ Was ist die korrekte Syntax, um ein Modul zu verwenden?
479471
- [x] `#!groovy include { SAYHELLO } from './modules/sayhello.nf'`
480472
- [ ] `#!groovy load { SAYHELLO } from './modules/sayhello.nf'`
481473

482-
Mehr erfahren: [2.3. Eine include-Deklaration hinzufügen](#23-eine-include-deklaration-vor-dem-workflow-block-hinzufugen)
474+
Mehr erfahren: [2.3. Eine include-Deklaration hinzufügen](#23-add-an-include-declaration-before-the-workflow-block)
483475
</quiz>
484476

485477
<quiz>

docs/de/docs/hello_nextflow/05_hello_containers.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Teil 5: Hello Containers
22

3-
<span class="ai-translation-notice">:material-information-outline:{ .ai-translation-notice-icon } KI-gestützte Übersetzung - [mehr erfahren & Verbesserungen vorschlagen](https://github.com/nextflow-io/training/blob/master/TRANSLATING.md)</span>
4-
53
<div class="video-wrapper">
64
<iframe width="560" height="315" src="https://www.youtube.com/embed/Xqr--bKEN9U?si=QinuAnFwFj-Z8CrO&amp;list=PLPZ8WHdZGxmWKozQuzr27jyMGqp9kElVK&amp;cc_load_policy=1&amp;cc_lang_pref=de" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
75
</div>

0 commit comments

Comments
 (0)