Internationalization & Localization
const config = {
tabs: {
'User Profiles': {
translation: {
'ar-AE':'ملفات تعريف المستخدم'
},
recordSettings:{
fields: {
Date: {
name: "Date of Birth",
translation: {
"ar-AE": "السن"
}
}
}
actions: {
'More details...': {
icon: 'info-icon',
translation: {
'ar-AE': 'معلومات أخرى'
},
onClick: function(){
alert('Clicked More Info ...');
}
}
}
}
}
}
};
Last updated