1
0
Fork 0
forked from 0x2620/oxjs

wrap more strings in Ox._

This commit is contained in:
j 2013-05-10 10:45:24 +00:00
commit 535c04d386
5 changed files with 44 additions and 44 deletions

View file

@ -175,7 +175,7 @@ Ox.Filter = function(options, self) {
}),
Ox.Input({
id: 'list',
placeholder: 'Untitled',
placeholder: Ox._('Untitled'),
width: 128
})
],

View file

@ -18,7 +18,7 @@ Ox.ObjectArrayInput = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.defaults({
buttonTitles: {add: 'Add', remove: 'Remove'},
buttonTitles: {add: Ox._('Add'), remove: Ox._('Remove')},
inputs: [],
labelWidth: 128,
max: 0,