torsten@0: Ext.application({ torsten@118: torsten@118: // Name of the application. Do not change as this name is used in torsten@118: // references! torsten@0: name: 'Lada', torsten@118: torsten@117: // Setting up translations. This is done using a ext-plgin which can be torsten@117: // found on https://github.com/elmasse/Ext.i18n.Bundle torsten@73: requires: ['Ext.i18n.Bundle'], torsten@73: bundle: { torsten@73: bundle: 'Lada', torsten@73: lang: 'de-DE', torsten@73: path: 'resources', torsten@73: noCache: true torsten@73: }, torsten@118: torsten@117: // Setting this variable to true triggers loading the Viewport.js torsten@117: // file which sets ob the viewport. torsten@25: autoCreateViewport: true, torsten@117: torsten@117: // Start the application. torsten@0: launch: function() { torsten@2: console.log('Launching the application'); torsten@2: }, torsten@117: torsten@3: // Define the controllers of the application. They will be initialized torsten@3: // first before the application "launch" function is called. torsten@3: controllers: [ torsten@120: 'Sql' torsten@120: //'Proben', torsten@120: //'Kommentare', torsten@120: //'Sql', torsten@120: //'Zusatzwerte', torsten@120: //'Orte', torsten@120: //'Messungen' torsten@3: ] torsten@0: });