From d00a552143f6893b96284b56bccaa8ab5515bcab Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 14 Feb 2014 15:47:30 +0000 Subject: [PATCH] locale strings --- source/Ox.UI/js/Bar/Resizebar.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)) {