Dashboards & Visualizations

Why is the single value visualization's "underLabel" option not able to be localized?

simpkins1958
Contributor

Using the instructions from https://docs.splunk.com/Documentation/SplunkCloud/6.6.0/AdvancedDev/TranslateSplunk when I extract strings from my app and create a messages.pot file there is an entry for:

<option name="underLabel">Last hour</option>

#: default/data/ui/views/m_app_flow_status.xml:76
msgid "Last hour"
msgstr "最終時間"

But when displaying the dashboard it is not showing the Japanese string. Is this a know issue/bug?
alt text

0 Karma

tomaszwrona
Explorer

Hi,

if you are still interested in solving this try something like this:

  • define a token within dashboard with:

    Last hour

  • replace option value with that token:

    $last_hour_tok$

  • enhance your dashboard with a Javascript:

  • change token value in tokenInternational.js:

    require([
    'jquery',
    'underscore',
    'splunk.i18n',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
    ], function ($, , i18n, mvc) {
    var defaultTokens = mvc.Components.getInstance("default"); // get token model
    var lastHour = defaultTokens.get("last_hour_tok"); // get the value of last_hour_tok
    lastHour = lastHour.replace("Last hour", i18n.
    ("Last hour")); // replace text "Last hour" with msgstr for msgid "Last hour"
    defaultTokens.set("last_hour_tok", lastHour); // set token value
    });

Hope this helps.

Best regards
Tomasz

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...