1
0
Fork 0
forked from 0x2620/oxjs

add localization to Ox

This commit is contained in:
j 2013-05-09 13:03:33 +00:00
commit 4d8c716d0b
31 changed files with 499 additions and 352 deletions

View file

@ -44,7 +44,7 @@ Ox.SortDialog = function(options, self) {
if (self.hasDefaults) {
self.$defaultsButton = Ox.Button({
title: 'Restore Defaults'
title: Ox._('Restore Defaults')
})
.bindEvent({
click: function() {
@ -55,7 +55,7 @@ Ox.SortDialog = function(options, self) {
}
self.$doneButton = Ox.Button({
title: 'Done'
title: Ox._('Done')
})
.bindEvent({
click: function() {
@ -95,4 +95,4 @@ Ox.SortDialog = function(options, self) {
return that;
};
};