Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translations #282

Open
mgeisler opened this issue Jan 26, 2023 · 37 comments
Open

Translations #282

mgeisler opened this issue Jan 26, 2023 · 37 comments

Comments

@mgeisler
Copy link
Collaborator

mgeisler commented Jan 26, 2023

Thanks to our wonderful volunteers, we're able to translate the course. This bug simply tracks the various efforts:

Please create more issues if you want to help translate the course!

How to get started?

The Rust Book is already translated into a number of languages. Please try to use the same terminology for your translations.

A great way to get started is to submit an almost-empty PO file for your language. That will ensure that you have the tooling setup and it will make it easier for others to jump in and help.

After a translation is merged, you can see the translation status.

@ghost
Copy link

ghost commented Feb 1, 2023

Is there a translation in French? If not i would like to do it.

@mgeisler
Copy link
Collaborator Author

mgeisler commented Feb 2, 2023

Is there a translation in French? If not i would like to do it.

Hey @dblackstar, nobody has signed up for that yet! It would be awesome to have a French translation too. Let me quickly create an issue for that.

@baltuky
Copy link
Collaborator

baltuky commented Feb 2, 2023

Hey 👋 Let’s translate it in Russian. I can do that

@hilbert-yaa
Copy link

hilbert-yaa commented Feb 2, 2023

Working on the Chinese Mandarin translation of the book, thanks for your prior instructions! Can you help create an issue for that?

@mgeisler
Copy link
Collaborator Author

mgeisler commented Feb 2, 2023

Working on the Chinese Mandarin translation of the book, thanks for your prior instructions! Can you help create an issue for that?

Thanks @hilbert-yaa for creating the issue, I've added it to the list above!

Hey 👋 Let’s translate it in Russian. I can do that

Awesome @baltuky, I've created #326 for that.

@mgeisler
Copy link
Collaborator Author

mgeisler commented Feb 2, 2023

I've attached Cloud Translate versions of the messages.pot to the new issues. Please let me know if you need me to update anything else. You can also generate those yourself via #291.

@hilbert-yaa
Copy link

I've done that on my side. Thanks!

@mgeisler
Copy link
Collaborator Author

mgeisler commented Feb 2, 2023

Hi all, if you haven't already, please take a look at the Rust Book translations: https://doc.rust-lang.org/book/appendix-06-translation.html. When possible, I suggest using the same terminology as they use.

@pierd
Copy link
Contributor

pierd commented Feb 10, 2023

Hi @mgeisler, I could do a Polish translation.

@mgeisler
Copy link
Collaborator Author

Hi @mgeisler, I could do a Polish translation.

Hi @pierd, thanks a lot, that would be super cool! If you create an issue for it, then I'll link it here!

@pierd
Copy link
Contributor

pierd commented Feb 13, 2023

Created the issue for Polish translation: #399

This was referenced Feb 19, 2023
@wfranck
Copy link
Contributor

wfranck commented Feb 24, 2023

could I help with this issue in Spanish? I had not seen that the ticket for Spanish was open and I made progress with the translation.

@pierd
Copy link
Contributor

pierd commented Feb 27, 2023

Do we generally translate source code snippets? IMHO it definitely makes sense for the comments and maybe string literals but not really for variable/function/etc names.

I was checking other translations for some examples. Brazilian Portuguese version translates some string literals and some comments but not all (modules, some exercise) while Korean version leaves the string literals as is but translates all comments (modules, the same exercise).

@mgeisler
Copy link
Collaborator Author

Do we generally translate source code snippets? IMHO it definitely makes sense for the comments and maybe string literals but not really for variable/function/etc names.

I agree: I would definitely translate the comments and perhaps also strings.

Note that even if you want to reuse the English text for the translation, it pays off to copy it (most PO editors can do this easily). This is because it gives you one string less to care about when looking at the PO file.

@jiyongp, @jooyunghan, @rastringer, @hugojacob, did you discuss this too?

It would be great to update TRANSLATIONS.md with guidance about this.

@jiyongp
Copy link
Collaborator

jiyongp commented Feb 27, 2023

No. I don't think we (Korean translators) have reached to a consensus on that. Even the Korean translation of the Rust book is inconsistent in its translations of comments.

I just wish we seldom use comments in code snippets.

@jooyunghan
Copy link
Collaborator

For production-ready translations, I'd translate comments and string literals as well (but not variables) in the code snippets. For this project, I put more focus on slide text and speaker notes than code snippets. In most cases, comments/literals were in simple/short English which I thought we could do it later when we have time.

@Bot-Kerem
Copy link
Contributor

#500

@CoinEZ-JPN
Copy link
Contributor

would be more than happy to give Japanese a try if not already being handled

@mgeisler
Copy link
Collaborator Author

would be more than happy to give Japanese a try if not already being handled

Hi @CoinEZ-JPN, that would be amazing! Just follow the translation instructions and refer to #652 in your PRs.

You're encouraged to submit a PR with an almost-untranslated po/ja.po file. That way you can check that the tooling works for you. (This applies to all languages: please ensure there is a po/xx.po file for your language. That also makes it easier for others to help out!).

@mbpouri
Copy link

mbpouri commented May 24, 2023

hey @mgeisler,
could you please create an issue for Farsi/Persian as well?
more than happy to contribute.
cheers

@mgeisler
Copy link
Collaborator Author

Hey @mbpouri, there is now a #671 for you to work on! Thanks a lot for offering to help!

@mgeisler
Copy link
Collaborator Author

mgeisler commented Jun 9, 2023

Hey all, I've written up a bit about how I suggest approaching reviews of the many translation PRs. Basically, help the contributors and err on the side of accepting contributions over trying to make everything perfect in the first go.

@mgeisler
Copy link
Collaborator Author

Hi there! Just a heads up: I hope to land google/mdbook-i18n-helpers#46 in the next few days. After that, I will make a new release of mdbook-i18n-helpers and normalize all our PO files.

The PR is the final bit needed for us to update mdbook-i18n-helpers. The new version extracts text in a much more fine grained way. As you've all seen, we currently extract the text as-is, with indentation and newlines etc. The new version will extract text in a "logical" fashion: paragraphs are unwrapped, list items are extracted one-by-one, headers are extracted without leading "#". Even tables are extracted better: you now get a message per cell instead of a single message with the entire table.

I hope this will make your lives easier since you'll see much less Markdown syntax in your PO files!

henrif75 added a commit that referenced this issue Sep 1, 2023
I'm preparing several PRs to submit the Spanish translation, but I need
first to normalize the existing es.po file, otherwise the PRs will be
humongous.
Part of #330, #282, #284.
henrif75 added a commit that referenced this issue Sep 8, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
I'm preparing several PRs to submit the Spanish translation, but I need
first to normalize the existing es.po file, otherwise the PRs will be
humongous.
Part of google#330, google#282, google#284.
yohcop pushed a commit to yohcop/comprehensive-rust that referenced this issue Sep 12, 2023
@mgeisler
Copy link
Collaborator Author

mgeisler commented Nov 9, 2023

Hi all! I wanted to let you know about #1460. This is an update to mdbook-i18n-helpers which will remove ~6k lines from the PO files. It changes the way code blocks are processed: we now extract strings and comments directly.

If you have translated the comments of one or more code blocks, then please run mdbook-i18n-normalize on your PO file to preserve the translations. You can do this before/after refreshing the translation. See #1461 for an example PR which shows the state after normalization.

I hope this further reduces the churn in the translations and makes it easier to work with the large code samples in this course.

@mgeisler
Copy link
Collaborator Author

Hi again, I had another idea for how we can avoid churn in the PO files: google/mdbook-i18n-helpers#127. Put simply, we could round or remove the line numbers. We could also remove the source location completley.

Do people here use the source location to look up the surrounding English text when translating?

@henrif75
Copy link
Collaborator

Hi again, I had another idea for how we can avoid churn in the PO files: google/mdbook-i18n-helpers#127. Put simply, we could round or remove the line numbers. We could also remove the source location completley.

Do people here use the source location to look up the surrounding English text when translating?

I don't use the line numbers, but the source file yes.

@AdrienBaudemont
Copy link
Collaborator

How would that interact with poedit? I have been using this tool when working on translations.

@mgeisler
Copy link
Collaborator Author

mgeisler commented Jan 5, 2024

I don't use the line numbers, but the source file yes.

Okay, so rounding line numbers to 10, 20, ... would not cause much problems for you.

How would that interact with poedit? I have been using this tool when working on translations.

I hope it will handle out of bounds line numbers gracefully, but I don't know 😄 So if the message claims to be from foo.md:120 but there are only 128 lines in foo.md, then Poedit ought to handle this in some reasonable way.

@azevedoalice
Copy link
Collaborator

I'd be happy to help with Brazilian Portuguese.

@henrif75
Copy link
Collaborator

I'd be happy to help with Brazilian Portuguese.

That would be great, @azevedoalice !
You can follow instructions above and start reviewing the outstanding PRs for pt-BR.
Welcome!

@martcpp
Copy link

martcpp commented Feb 11, 2024

is there a translation for Nigeria pidgin if not will love to do that

@henrif75
Copy link
Collaborator

henrif75 commented Feb 12, 2024

Hi @martcpp we don't and that would be awesome. In the first post of this issue, there are information on how to get started.
It would very important too if you can find another pidgin speaker to help out with code reviews in the future too.
Thank you!

is there a translation for Nigeria pidgin if not will love to do that

@martcpp
Copy link

martcpp commented Feb 18, 2024

@henrif75 i will start working on it soon i can also help with code review as i am a developer too

@martcpp
Copy link

martcpp commented Feb 18, 2024

@henrif75 i will start working on it soon i can also help with code review as i am a developer too

Hi @martcpp we don't and that would be awesome. In the first post of this issue, there are information on how to get started. It would very important too if you can find another pidgin speaker to help out with code reviews in the future too. Thank you!

is there a translation for Nigeria pidgin if not will love to do that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests