1
0
Fork 0
forked from 0x2620/oxjs

add all untranslated Ox.UI strings to locale.de.json

This commit is contained in:
j 2013-05-20 14:39:04 +00:00
commit 2560d503d7
3 changed files with 277 additions and 4 deletions

View file

@ -259,7 +259,7 @@ Ox.FileInput = function(options, self) {
return length == 0
? Ox._('No file' + (self.multiple ? 's' : '') + ' selected')
: self.multiple
? Ox.formatCount(length, Ox._('file'), Ox._('files'))
? Ox.formatCount(length, 'file')
: self.options.value[0].name;
}