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 was archived by the owner on Jun 13, 2024. It is now read-only.
When generating translations for the gallery, the translations are pulled from Google's translation console. We handle placeholders within translated Strings by interpolating variables into them from the application code. However, some of the translations incorrectly have the names of the variables translated as well, which would result in a bad string:
Example:
In the arb file, "അടുത്തറിയുക {ലക്ഷ്യസ്ഥാനത്തിന്റെ പേര്}" should be "അടുത്തറിയുക {destinationName}" for cardsDemoExploreSemantics.
This is because in the code, this string would be created by calling something like GalleryLocalizations.of(context).cardsDemoExploreSemantics('The Destination'), and the code would look something like: