I am using localization in flutter.
this is the eng text: placed for $date
this is the translated text: $date का लागि राखिएको
as you can see the text has a variable (date) in it and as the grammar structure for the two language is different the variable has to be placed in different position.
AppLocalizations.of(context).placed_for + date.toString()
// The usual way of doing this does not work due to different placing of the date variable.
How do i handle such case? Do I have to write custom logic or is there already a way to handle such case.