Label Caption in Arabic language

Hi
can we print label caption alone in other language like “Arabic”, “Hindi”?

Hello @murugesank,

can we print label caption alone in other language like “Arabic”, “Hindi”?

Could you please clarify, what do you mean by “label captions” in this case? Are you looking to print the original layout and replace all of the English labels with labels in Arabic during print only?

during page load

I got the answer, thanks for the reply

webix.i18n.locales[“en-US”].text = {
labels:{“test”: “test”,}
};
webix.i18n.locales[“lg-LG”] ={
text: {
labels:{“test”: “بعض التسمية”,}
}
};
webix.i18n.setLocale(“lg-LG”);

webix.ready(function(){
webix.ui({
view:“text”, css:“rtl”,
label:webix.i18n.text.labels[“test”]
});
});