From: Go MAEDA Date: Wed, 10 Feb 2021 00:49:54 +0000 (+0000) Subject: Internationalize button titles (#34549). X-Git-Tag: 4.2.0~91 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=af4c60825180c732e3110489750649f0017f1dc0;p=redmine.git Internationalize button titles (#34549). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@20743 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/javascripts/jstoolbar/jstoolbar.js b/public/javascripts/jstoolbar/jstoolbar.js index ed6605965..532f9f8c9 100644 --- a/public/javascripts/jstoolbar/jstoolbar.js +++ b/public/javascripts/jstoolbar/jstoolbar.js @@ -250,10 +250,16 @@ jsToolBar.prototype = { return b; }, buttonTitleWithShortcut: function(title, shortcutKey) { + if(typeof jsToolBar.strings == 'undefined') { + var i18nTitle = title || null; + } else { + var i18nTitle = jsToolBar.strings[title] || title || null; + } + if (isMac) { - return title + " (⌘" + shortcutKey.toUpperCase() + ")"; + return i18nTitle + " (⌘" + shortcutKey.toUpperCase() + ")"; } else { - return title + " (Ctrl+" + shortcutKey.toUpperCase() + ")"; + return i18nTitle + " (Ctrl+" + shortcutKey.toUpperCase() + ")"; } }, space: function(toolName) {