From 0482c346f3e12ad6decf2dcff703f211f4727ea5 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Thu, 13 Jun 2024 15:11:27 -0400 Subject: [PATCH 1/3] Update i18n.js to add link translations for cold and warm ILM phases --- html/js/i18n.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html/js/i18n.js b/html/js/i18n.js index e8e24a703..9fa0e243c 100644 --- a/html/js/i18n.js +++ b/html/js/i18n.js @@ -189,7 +189,9 @@ const i18n = { config: 'Configuration', configTitle: 'Grid Configuration', configQLGridTitle: 'Grid Administration Quick Links', - configQLElasticsearchDelete: 'Elasticsearch ILM Deletion', + configQLElasticsearchCold: 'Elasticsearch Global Policy for ILM Cold Phase (applies to all indices)', + configQLElasticsearchDelete: 'Elasticsearch Global Policy for ILM Delete Phase (applies to all indices)', + configQLElasticsearchWarm: 'Elasticsearch Global Policy for ILM Warm Phase (applies to all indices)', configQLElasticsearchHeader: 'Elasticsearch', configQLNTP: 'Specify custom Network Time Protocol server(s)', configQLNTPHeader: 'NTP', From 6807ef18e31e2cf92e32c1063b27a50640ae4242 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Thu, 13 Jun 2024 15:13:51 -0400 Subject: [PATCH 2/3] Update index.html to add links for Elasticsearch ILM Warm and Cold phases --- html/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/html/index.html b/html/index.html index d3322ac7e..ba677456b 100644 --- a/html/index.html +++ b/html/index.html @@ -4690,6 +4690,12 @@

{{ i18n.settingsCustomized }} {{ settingsCustomized }}
  • {{i18n.configQLElasticsearchHeader}}
      +
    • + {{i18n.configQLElasticsearchWarm}} +
    • +
    • + {{i18n.configQLElasticsearchCold}} +
    • {{i18n.configQLElasticsearchDelete}}
    • From f377f59f3ee8a0e232a804a14bfd9c09808c7610 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Thu, 13 Jun 2024 15:22:44 -0400 Subject: [PATCH 3/3] Update i18n.js with simplified wording --- html/js/i18n.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/html/js/i18n.js b/html/js/i18n.js index 9fa0e243c..da3f9a176 100644 --- a/html/js/i18n.js +++ b/html/js/i18n.js @@ -189,10 +189,10 @@ const i18n = { config: 'Configuration', configTitle: 'Grid Configuration', configQLGridTitle: 'Grid Administration Quick Links', - configQLElasticsearchCold: 'Elasticsearch Global Policy for ILM Cold Phase (applies to all indices)', - configQLElasticsearchDelete: 'Elasticsearch Global Policy for ILM Delete Phase (applies to all indices)', - configQLElasticsearchWarm: 'Elasticsearch Global Policy for ILM Warm Phase (applies to all indices)', - configQLElasticsearchHeader: 'Elasticsearch', + configQLElasticsearchCold: 'Cold Phase', + configQLElasticsearchDelete: 'Delete Phase', + configQLElasticsearchWarm: 'Warm Phase', + configQLElasticsearchHeader: 'Elasticsearch Global ILM Policy (applies to all indices)', configQLNTP: 'Specify custom Network Time Protocol server(s)', configQLNTPHeader: 'NTP', configQLFirewallHeader: 'Firewall',