Skip to content

Commit

Permalink
Merge pull request #2 from CoinEZ-JPN/japanese-translation
Browse files Browse the repository at this point in the history
translation of just the Table of Contents
google#652
  • Loading branch information
momotaro1105 authored May 25, 2023
2 parents 514f861 + 7b81a75 commit 3b5c0f9
Show file tree
Hide file tree
Showing 13 changed files with 17,446 additions and 245 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Translations
po/bn.po @mirwasi
po/bn.po @mirwasi @sudiptachatterjee
po/da.po @mgeisler @voss @thedataking
po/de.po @ronaldfw @fechu
po/el.po @Mandragorian
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
uses: ./.github/workflows/setup-rust-cache

- name: Install dependencies
run: sudo apt update && sudo apt install gcc-aarch64-linux-gnu
run: |
sudo apt update
sudo apt install gcc-aarch64-linux-gnu
- name: Install toolchain
run: rustup target add ${{ matrix.target }}
Expand Down Expand Up @@ -107,7 +109,9 @@ jobs:

- name: Install Gettext
if: matrix.language != 'en'
run: sudo apt install gettext
run: |
sudo apt update
sudo apt install gettext
- name: Install mdbook
uses: ./.github/workflows/install-mdbook
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ $ mdbook serve
to start a web server with the course. You'll find the content on
<http://localhost:3000>. You can use `mdbook build` to create a static version
of the course in the `book/` directory. Note that you have to separately build
and zip exercises and add them to `book/html`.

and zip exercises and add them to `book/html`. To build any of the translated
versions of the course, run `MDBOOK_BOOK__LANGUAGE=xx mdbook build -d book/xx`
where `xx` is the ISO 639 language code (e.g. `da` for the Danish translation).
[TRANSLATIONS.md](TRANSLATIONS.md) contains further instructions.
## Contact

For questions or comments, please contact [Martin
Expand Down
1 change: 1 addition & 0 deletions book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ level = 0

[output.html.playground]
editable = true
line-numbers = true

[output.html.redirect]
# Redirects in the form of "old-path" = "new-path", where the new path
Expand Down
Loading

0 comments on commit 3b5c0f9

Please sign in to comment.