locale strings
This commit is contained in:
parent
3e9c812b57
commit
d00a552143
1 changed files with 3 additions and 1 deletions
|
@ -155,7 +155,9 @@ Ox.Resizebar = function(options, self) {
|
||||||
title = Ox._('Drag to resize');
|
title = Ox._('Drag to resize');
|
||||||
}
|
}
|
||||||
if (self.options.collapsible) {
|
if (self.options.collapsible) {
|
||||||
title = Ox._((title ? title + ' or c' : 'C') + 'lick to hide');
|
title = title
|
||||||
|
? Ox._('{0} or click to hide', [title])
|
||||||
|
: Ox._('Click to hide');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (title && Ox.isString(self.options.tooltip)) {
|
if (title && Ox.isString(self.options.tooltip)) {
|
||||||
|
|
Loading…
Reference in a new issue