You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.
I was thinking of switching the translation over to the intl package as it is the recommended way for flutter apps.
I've worked with it a many times and I quite like the code generation and the safety that all invocations will work.
It also has good pluralization support that the current flutter_translate package also recently added and we maybe can't use because we sit on an older downstream branch.
Sadly I have no idea how transifex handles the arb files or if it even supports them.
In general arb files are just json files with some cool extra metadata features so we might be able to just convert it.
I dont really remember why i used the special library, but at that time it was somehow the option that pleased me the most.
We could also check to update the downstream branch of flutter_translate. It is only used because it has the fallback language. Which is not supported in the main repo for reasons i cannot understand.
(If strings are not available in given langauge they are just representet with the keys. But i want it to default to english)
I was thinking of switching the translation over to the intl package as it is the recommended way for flutter apps.
I've worked with it a many times and I quite like the code generation and the safety that all invocations will work.
It also has good pluralization support that the current
flutter_translate
package also recently added and we maybe can't use because we sit on an older downstream branch.Sadly I have no idea how transifex handles the arb files or if it even supports them.
In general arb files are just json files with some cool extra metadata features so we might be able to just convert it.
It'd be great if someone could verify that.
More information on the recommended flutter translation flow can be found here: https://docs.flutter.dev/development/accessibility-and-localization/internationalization
The text was updated successfully, but these errors were encountered: