Heh guys,I am new to service now. I am doing translation in my portal for english
and french
.
For custom text I have done like this
Server script:
data.welcomeMsg= gs.getMessage('Welcome to the portal');
Html:
<p>{{data.welcomeMag}}</p>
It works good. when english is selected
message will be displayed in english language,when french is selected message will be displayed in french(I have used messages table for translation).
Now,I am getting the following sentence from business rule not in widget level.
res.comments =' Request is pending approval from- ' + current.approver.name;
I want to translate this text Request is pending approval from
here.So I tried this,
res.comments =gs.getMessage(' Request is pending approval from- ') + current.approver.name;
But text is not getting translated in portal.
Anything wrong with my code? Guys please correct me if I am wrong.
Thanks!!