forked from 0x2620/oxjs
fix some locale strings
This commit is contained in:
parent
60bf786a3a
commit
aa6d2de64b
5 changed files with 10 additions and 14 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue