humhub / app

22 stars 8 forks source link

More languages #243

Open FernandoHCFaria opened 3 days ago

FernandoHCFaria commented 3 days ago

It would be awesome if more languages could be add in the first page of the app like pt-BR for instance.

I can help for pt-BR translation if needed btw.

luke- commented 2 days ago

@marc-farre Do you have any idea how we could organize this? Maybe somehow via the Translate community and the wiki within the language Spaces?

luke- commented 2 days ago

Besides the "first page", we have also some Marketplace (Playstore/Apple Store) texts.

marc-farre commented 1 day ago

@PrimozRatej Before answering this question, can you tell me how these language files are created? https://github.com/humhub/app/tree/master/lib/l10n

PrimozRatej commented 11 hours ago

@marc-farre, they are created manually. Then, the Flutter generator creates an override class, which is used inside the code. If we want to add another language, we just create a new ARB file here, and then I add another supported_locale in the code, and that's it.

marc-farre commented 5 hours ago

@PrimozRatej thanks.

@luke- Ideally, we would manage the translations with the translation module, using https://translate.humhub.org/translation/translate

Perhaps my idea is complicated, but what do you think about full automation, which would prevent human errors (mainly when we have new texts):

1/ In the https://github.com/humhub/app/blob/master/lib/l10n/app_en.arb file, we store all translations, including the Marketplace texts (or we create a separated file for the Marketplace)

2/ A GitHub Action (after each commit) executes PHP code to convert this JSON file into PHP array stored in files in a messages root directory (one sub-directory by language in supported_locale), like any HumHub modules.

3/ We make the app available in https://translate.humhub.org/translation/translate for translations

4/ Another GitHub Action (triggered when creating a new release - release event, prereleased type) would:

  1. convert again the PHP updated translations to the DART JSON files.
  2. update the Marketplace translations via Google and Apple API
ArchBlood commented 5 hours ago

@PrimozRatej thanks.

@luke- Ideally, we would manage the translations with the translation module, using https://translate.humhub.org/translation/translate

Perhaps my idea is complicated, but what do you think about full automation, which would prevent human errors (mainly when we have new texts):

1/ In the https://github.com/humhub/app/blob/master/lib/l10n/app_en.arb file, we store all translations, including the Marketplace texts (or we create a separated file for the Marketplace)

2/ A GitHub Action (after each commit) executes PHP code to convert this JSON file into PHP array stored in files in a messages root directory (one sub-directory by language in supported_locale), like any HumHub modules.

3/ We make the app available in https://translate.humhub.org/translation/translate for translations

4/ Another GitHub Action (triggered when creating a new release - release event, prereleased type) would:

  1. convert again the PHP updated translations to the DART JSON files.
  2. update the Marketplace translations via Google and Apple API

When it comes to Asian languages, I'd prefer DeepL over Google as they're less error prone in translations if automation were the intent. 🤔

marc-farre commented 5 hours ago

I'd prefer DeepL over Google

@ArchBlood The idea is to allow users to do manual translations via https://translate.humhub.org/translation/translate, but to automate the process to make it possible.

luke- commented 2 hours ago

@marc-farre Sounds good. Wouldn't it be nicer if we created a new repository, e.g. 'app-translations'? This has a fake module structure, a 'messages' folder, GitHub actions. The app-translations could have two message files app und marketplace.

marc-farre commented 2 hours ago

Yes, very good idea to create a separated repository. For the Marketplace, we can start doing it manually, but later we can do it via API requests (both Google and Apple provide entry points for these app texts).

luke- commented 2 hours ago

Created Repo and Issue here: https://github.com/humhub/app-translations/issues/1