elmasse.i18n.Bundle as a Sencha Cmd Package.
This repository is going on UNMAINTAINED state. I will be more than happy to transfer the repository to anyone who is interested in keeping this up to date with latest versions of ExtJS. Please create an issue or send me an email (Check my Profile)
Since version 1.1.0 namespace has been changed from Ext.i18n to elmasse.i18n to avoid namespace issues with ExtJS reserved package names.
The latest stable version is available thru a Sencha Cmd repository located at elmasse.github.io/cmd/pkgs
You have to tell Sencha Cmd where to check for new pacakge versions. For elmasse-bundle you need to add the repository as follows:
sencha repo add elmasse http://elmasse.github.io/cmd/pkgs
Once the repository is added to the list, you can declare your dependency on your Sencha Cmd project. Locate the app.json file and add elmasse-bundle package to the requires list:
"requires": [
"elmasse-bundle"
]
Now you just need to refresh the application, and the package will be installed.
sencha app refresh
You can as well use the latest version from this repository:
- Clone this repo
Rename the folder toelmasse-bundle- Copy the folder under
packages/localin your app - Modify the
app.jsonand include theelmasse-bundleinto therequireslist. - Run
sencha app refresh
You can see a working example under the examples folder.
- First add Bundle to requires on Ext.application as shown in (1)
- Declare the bundle configuration (2)
- Call bundle.getMsg with your bundle key (3).
bundleis available from the application instance which is available under theappName.getApplication() method.
Ext.application({
name: 'AppTest',
requires: ['elmasse.i18n.Bundle'], //1
//2
bundle: {
bundle: 'Application',
language: 'en-US',
path: 'resources',
noCache: true
},
launch: function(){
Ext.create('Ext.panel.Panel',{
renderTo: Ext.getBody(),
tbar: Ext.create('Ext.toolbar.Toolbar',{
items: [{text: 'text'}]
}),
items:[{
height: 300,
html: AppTest.getApplication().bundle.getMsg('panel.html') //3
}]
});
}
});Now you can choose between .properties and .json files. You can specify which one to use by using the format parameter in bundle configuration:
Ext.application({
name: 'AppTest',
requires: ['elmasse.i18n.Bundle'],
bundle: {
bundle: 'Application',
language: 'en-US',
path: 'resources',
noCache: true,
format: 'json' //json format!
},
launch: function(){
Ext.create('Ext.panel.Panel',{
renderTo: Ext.getBody(),
tbar: Ext.create('Ext.toolbar.Toolbar',{
items: [{text: 'text'}]
}),
items:[{
height: 300,
html: AppTest.getApplication().bundle.getMsg('panel.html')
}]
});
}
});As you can imagine the keys must match json keys structure, so for panel.html you must have a json response like this:
{
"panel":{
"html" : "Hello from JSON file!"
}
}We can use the lazy definition so the bundle keys are defined into the views. Just use a plain object with the type: bundle and a key.
Ext.application({
name: 'AppTest',
requires: ['elmasse.i18n.Bundle'],
bundle: {
bundle: 'Application',
language: 'en-US',
path: 'resources',
noCache: true,
format: 'json' //json format!
},
launch: function(){
Ext.create('Ext.panel.Panel',{
renderTo: Ext.getBody(),
tbar: Ext.create('Ext.toolbar.Toolbar',{
items: [{text: 'text'}]
}),
items:[{
height: 300,
html: { type: 'bundle', key: 'panel.html' }
}]
});
}
});- Fixed issue with using lazy definitions in Ext.define not working properly. #30
- Working version for ExtJS 6.2.1
- Changed namespace to
elmasse.i18n - Working version for ExtJS 6.x
- Examples for using ViewControllers and ViewModels to change bundles on the fly.
- Sencha Cmd Package
- Working version for ExtJS 5.x
- Working version for ExtJS 4.2.0
- Fixed issue with Model ids.
- New Json Reader implemented
- Added tests for Bundle, reader.Property and reader.Json
- Draft for 4.1.1/2
- Removed onReady method from Ext.i18n.Bundle
- Added bundle to application
- First draft for ExtJS 4.1.0-r3