Does this framework support automatic syncing of new strings across locales? #644
-
Hey @ivanhofer, Been a user for some time now and love the project! One major pain point I'm always running into, however, is having to manual copy over new strings between all locales. Say I have 12 locales and add a new If not, curious what approaches other people have taken. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Nickersoft, that functionality is currently not possible with the provided tools. I already have thought about this, but never had the time to implement it. If you have a CI job that just does the syncing, then you could write a script that overrides the type of |
Beta Was this translation helpful? Give feedback.
Hi @Nickersoft,
that functionality is currently not possible with the provided tools. I already have thought about this, but never had the time to implement it.
All needed functions are already available (
exporter
,importer
andextendDictionary
). Someone just needs to connect them, integrate it into thegenerator
(probably here) and add a flag for it.If you have a CI job that just does the syncing, then you could write a script that overrides the type of
Translation
toBaseTranslation
just for that job to finish and push the strings. Or don't run type-checks at all during that job.