Skip to content

Commit 9c2ff55

Browse files
Copilotbrunoborges
andcommitted
docs: replace Python generator references with jbang in i18n spec
Co-authored-by: brunoborges <129743+brunoborges@users.noreply.github.com>
1 parent d301312 commit 9c2ff55

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

specs/i18n/i18n-spec.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ templates/ # Templates use {{…}} tokens for every U
5050
5151
html-generators/
5252
locales.properties # Ordered list of supported locales + display names
53-
generate.java / generate.py # Extended to iterate all locales
53+
generate.java # Extended to iterate all locales
5454
5555
site/ # Generated output
5656
index.html # English home (path = /)
@@ -337,17 +337,17 @@ The deploy workflow iterates all entries in `locales.properties`:
337337

338338
```yaml
339339
- name: Build site
340-
run: python3 html-generators/generate.py --all-locales
340+
run: jbang html-generators/generate.java --all-locales
341341
```
342342
343343
Or explicitly, to support incremental locale addition:
344344
345345
```yaml
346346
- name: Build site
347347
run: |
348-
python3 html-generators/generate.py
349-
python3 html-generators/generate.py --locale pt-BR
350-
python3 html-generators/generate.py --locale ja
348+
jbang html-generators/generate.java
349+
jbang html-generators/generate.java --locale pt-BR
350+
jbang html-generators/generate.java --locale ja
351351
```
352352
353353
---

0 commit comments

Comments
 (0)