Hi guys, i'm trying to change the datepicker languange from english to italian and i'm using Sencha Touch 1.1.1 .
I put the file path into the index "src/locale/ext-lang-it.js" but nothing change.
Can anyone help me?!
Thanks a lot
Hi guys, i'm trying to change the datepicker languange from english to italian and i'm using Sencha Touch 1.1.1 .
I put the file path into the index "src/locale/ext-lang-it.js" but nothing change.
Can anyone help me?!
Thanks a lot
Ciao strad84.
First, you need to create a new .js file called, as you correctly said, "ext-lang-it.js".
In this file you have to put what follows:
Finally you need to include this file in your "index.html".Code://Translating the months names Date.monthNames = [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ]; //Translating he DatePicker component labels if(Ext.DatePicker) { Ext.apply(Ext.DatePicker.prototype, { dayText : 'Giorno', monthText : 'Mese', yearText : 'Anno' }); }
If you run this simple application, you will see that everything has been translated now
Hope this helps.Code:Ext.setup({ onReady: function() { var datePicker = new Ext.DatePicker(); datePicker.show(); } });
Ciao strad84.
First, you need to create a new .js file called, as you correctly said, "ext-lang-it.js".
In this file you have to put what follows:
Finally you need to include this file in your "index.html".Code://Translating the months names Date.monthNames = [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ]; //Translating he DatePicker component labels if(Ext.DatePicker) { Ext.apply(Ext.DatePicker.prototype, { dayText : 'Giorno', monthText : 'Mese', yearText : 'Anno' }); }
If you run this simple application, you will see that everything has been translated now
Hope this helps.Code:Ext.setup({ onReady: function() { var datePicker = new Ext.DatePicker(); datePicker.show(); } });
Sencha Inc
Andrea Cammarata, Solutions Engineer
Owner at SIMACS
@AndreaCammarata
www.andreacammarata.com
github: https://github.com/AndreaCammarata
TUX components bundle for Sencha Touch 2.x.x
https://github.com/AndreaCammarata/TUX
Grazie per la dritta Andrea !
Thank you !
Di nulla
Please don't forget to set the question as answered if this solve your problem.
Sencha Inc
Andrea Cammarata, Solutions Engineer
Owner at SIMACS
@AndreaCammarata
www.andreacammarata.com
github: https://github.com/AndreaCammarata
TUX components bundle for Sencha Touch 2.x.x
https://github.com/AndreaCammarata/TUX
Hi, I use Sencha Touch 2.1.1 but it doesn't work for me!
I've got not error.
Any solution?