i have an DOJO nls key file that have entries like
({
"name":"test",
"comma" : ", ",
"hello":"Hello",
"welcome_msg": this.name+this.comma+this.hello
})
I want to have the welcome message be "Hello, test"
, so basically want to use the name, comma and hello key's defined above in this value field and create the string rather than direct usage.
Is there a way of achieving the above like this.comma
or ${comma}?? basically in french and other languages colon and some of spl characters will have additional space before and after, while in english only one space after...
any help in this regard will be highly appreciated.. thanks