I am working on language mutation of frontend of our app for Iranian market, but currently we got stuck with issue with mixing europian numerals and units with persian texts. For example our desired format for one text is:
Result: <value>s (e.g. Result: 50s)
But when I try to compose this string in javascript, number 50 is before text (after in persian language) like this
50 :persiantext s
Is there any solution how to mix these things together, or it doesn't even make any sense to mix it and it all should be in persian?
Thank you for all help/suggestions.