diff --git a/source/Ox.UI/js/Bar/Resizebar.js b/source/Ox.UI/js/Bar/Resizebar.js index 74448401..5ca1768b 100644 --- a/source/Ox.UI/js/Bar/Resizebar.js +++ b/source/Ox.UI/js/Bar/Resizebar.js @@ -155,7 +155,9 @@ Ox.Resizebar = function(options, self) { title = Ox._('Drag to resize'); } 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)) {