I am using sencha touch 2.3 and I am using the plug-in locale to change my page's language.
Whatever is included in the view of the page gets changed using the locale plug-in but lets say I want to alert some text depending on the language then how do i do it.
Ext.Msg.confirm(
"Application Update",
"This application has just successfully been updated to the latest version. Reload now?",
function(buttonId) {
if (buttonId === 'yes') {
window.location.reload();
}
So the above alert box I want to change the text "Application Update" & "This application has been updated etc etc"
So how do I do it using Ux.locale.Manager