We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Localization in all the components.
Any input to a component can be represented using a map of language codes to value. For example
{ "data":{ "prompt": { "EN":"Some prompt on English", "HI":"Some prompt on Hindi", "KN":"Some prompt on Kannada" } }, "files": { "EN": "some_audio_in_english.wav", "HI": "some_audio_in_hindi.wav", "KN": "some_audio_in_kannada.wav" } }
The text was updated successfully, but these errors were encountered:
@SoumyaRanjanPatnaik @anuragshukla06 @criticalAY Thoughts?
Sorry, something went wrong.
Does this also apply to files as well? We might need to localise audio/video as well for example.
Also, what should be the ecosystem behaviour if the workers language is not available in a datapoint?
Datapoint will contain all the language resources. We'll download resources in the app's language. Fallback to english.
No branches or pull requests
Purpose/Description
Add support for Localization in all the components.
Proposed Approach
Any input to a component can be represented using a map of language codes to value.
For example
The text was updated successfully, but these errors were encountered: