vlrpmdy
unread,Nov 24, 2009, 3:43:49 AM11/24/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rails-i18n, vija...@yahoo.co.in
test_layout.rhtml
var westTabPanel =new Ext.TabPanel({
deferredRender:false, // delays the Ajax calls till the first
click on tab
activeTab:0,
items:[
{
contentEl:'QuickSearch',
title: 'Quick Search',
autoScroll:true,
bodyStyle:'background:#ECECFF;padding: 8 5 5 8;'
}
] // end items
});
On using i18n:
var westTabPanel =new Ext.TabPanel({
deferredRender:false, // delays the Ajax calls till the first
click on tab
activeTab:0,
items:[
{
contentEl:'QuickSearch',
title: '#{t .quick_search}',
autoScroll:true,
bodyStyle:'background:#ECECFF;padding: 8 5 5 8;'
}
] // end items
});
config/locales/layouts/test.yml
en:
layouts:
test:
quick_search: "Quick Search"
Not able to translate the title.
its giving - en,layouts,test,quick_search