Replies: 2 comments
-
Maybe not as relevant here, but here's some past discussion on submodules. #43986 (comment) |
Beta Was this translation helpful? Give feedback.
-
Even if The best I can think of that resembles what you want to accomplish with a submodule is to create an orphaned i18n branch to which a bot periodically pushes new translation files, and when building the game, copy the files from the i18n branch (without checking out the branch). The files may be added to Pros:
Cons:
|
Beta Was this translation helpful? Give feedback.
-
Put
lang/po
to a separate repository and make a bot (can be a GitHub Action workflow in the subrepo) to automatically synchronise (pull) translations from Transifex and commit tolang/po
repo daily.Pros:
-dirty
hack inMakefile
to suppress changes inlang/po
folder causing-dirty
suffix in the version string, because currently automatic translations synchronization is done on Jenkins build server when building experimental versions:Cons:
Beta Was this translation helpful? Give feedback.
All reactions