1
0
Fork 0
forked from 0x2620/oxjs

fix some locale strings

This commit is contained in:
j 2013-07-17 10:19:57 +00:00
commit aa6d2de64b
5 changed files with 10 additions and 14 deletions

View file

@ -309,7 +309,7 @@ Ox.MapEditor = function(options, self) {
}),
self.$findInput = Ox.Input({
clear: true,
placeholder: 'Find in List',
placeholder: Ox._('Find in List'),
width: 234
})
.bindEvent({
@ -385,7 +385,7 @@ Ox.MapEditor = function(options, self) {
self.$map = Ox.Map({
clickable: true,
editable: true,
findPlaceholder: 'Find on Map',
findPlaceholder: Ox._('Find on Map'),
height: self.options.height,
places: self.options.places,
//statusbar: true,
@ -951,11 +951,7 @@ Ox.MapEditor = function(options, self) {
}
function initList(data) {
self.$status.html(
Ox.formatNumber(data.items) + ' Place' + (
data.items == 1 ? '' : 's'
)
);
self.$status.html(Ox.formatCount(data.items, 'Place'));
}
function openItem(data) {