It seems + is not the right operator to handle the concatenation of strings in JavaScript. what are some alternatives to handle the both the ltr and rtl cases?
|
|
The problem is, + is not right operator to concatenate strings at all. Or maybe it is, but concatenating string is an Internationalization bug. Instead of simply concatenating them, one should actually format them. So what you should actually do, is use placeholders:
This way, the translator would be able to re-order the sentence, including word order. And I believe it solves your problem. For formatting function, let me quote this excellent answer:
EDIT: Adding information about directionality marks.Sometimes, when you have multiple placeholders you may lose the control of string direction, i.e. |
||||
|
|