locale strings

This commit is contained in:
j 2014-02-14 15:47:30 +00:00
parent 3e9c812b57
commit d00a552143

View file

@ -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)) {