diff options
author | Andras Timar <andras.timar@collabora.com> | 2017-12-27 22:17:22 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-12-27 22:42:10 +0100 |
commit | 84bd0d7e5ebe1814eaecc973dedd9f66ee2881d8 (patch) | |
tree | 527ee036395c5d3dd33f21dc546d649db83bf1b7 | |
parent | 0acfa2af89b9d14bd03cf7a6724d0a73ae4331f3 (diff) |
localize StateTableCell status bar string (Sum, Average, Count, etc.)
Change-Id: Ie4d6197115f8f8290f1d6f8608acf2e3e3642c79
Reviewed-on: https://gerrit.libreoffice.org/47107
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | loleaflet/dist/toolbar/toolbar.js | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/loleaflet/dist/toolbar/toolbar.js b/loleaflet/dist/toolbar/toolbar.js index 575c730de..9f56aa98e 100644 --- a/loleaflet/dist/toolbar/toolbar.js +++ b/loleaflet/dist/toolbar/toolbar.js @@ -723,6 +723,20 @@ var userJoinedPopupMessage = '<div>' + _('%user has joined') + '</div>'; var userLeftPopupMessage = '<div>' + _('%user has left') + '</div>'; var userPopupTimeout = null; +function localizeStateTableCell (text) { + var stateArray = text.split(';'); + var stateArrayLength = stateArray.length; + var localizedText = ""; + for (var i = 0; i < stateArrayLength; i++) { + var labelValuePair = stateArray[i].split(':'); + localizedText += _(labelValuePair[0].trim()) + ':' + labelValuePair[1]; + if (stateArrayLength > 1 && i < stateArrayLength - 1) { + localizedText += '; '; + } + } + return localizedText; +} + function toLocalePattern (pattern, regex, text, sub1, sub2) { var matches = new RegExp(regex, 'g').exec(text); if (matches) { @@ -1290,7 +1304,7 @@ map.on('commandstatechanged', function (e) { updateToolbarItem(statusbar, 'StatusSelectionMode', $('#StatusSelectionMode').html(state ? L.Styles.selectionMode[state].toLocaleString() : '  ').parent().html()); } else if (commandName == '.uno:StateTableCell') { - updateToolbarItem(statusbar, 'StateTableCell', $('#StateTableCell').html(state ? state : '  ').parent().html()); + updateToolbarItem(statusbar, 'StateTableCell', $('#StateTableCell').html(state ? localizeStateTableCell(state) : '  ').parent().html()); } else if (commandName === '.uno:StatusBarFunc') { if (state) { |