Replies: 1 comment
-
If I'm not mistaken, the merge conflicts occur because each i18n pull request is squashed into the
This seems overly complicated and I'm not sure it would make things easier. There are 2 ways to have a simpler process than the 8-step one you described:
|
Beta Was this translation helpful? Give feedback.
-
Using forks for translation is generally hard since it causes merge conflicts. I've been discarding commits on my fork and recloning it before every translation update to overcome these conflicts.
It goes something like this:
missing_translations.json
and generate new strings fileUsing a dedicated branch for translations like
adil192:translation-tr
and keeping this branch up-to-date only for translation updates would be much simpler. When a new commit is on the translation branch, opening a pull request from it (adil192:translation-XX
) to the main branch (adil192:main
) would be sufficient and straightforward.Beta Was this translation helpful? Give feedback.
All reactions