From 37408a27fdfd13d5c6c350c45e65870320cf2105 Mon Sep 17 00:00:00 2001 From: Banana Date: Tue, 16 Apr 2024 14:43:25 +0200 Subject: [PATCH] i18n main tool view Signed-off-by: Banana --- webclient/i18n/eng.ini | 3 +++ webclient/view/98/tool/tool.html | 2 +- webclient/view/default/tool/tool.html | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/webclient/i18n/eng.ini b/webclient/i18n/eng.ini index a6f961c..92c0363 100644 --- a/webclient/i18n/eng.ini +++ b/webclient/i18n/eng.ini @@ -194,4 +194,7 @@ sysinfo.th.diskusage = "Disk Usage" tags.headline.tagsfor = "Tags for:" +tool.headline.using = "Using %s with collection: %s" + + diff --git a/webclient/view/98/tool/tool.html b/webclient/view/98/tool/tool.html index 6c8c7cb..5605d72 100644 --- a/webclient/view/98/tool/tool.html +++ b/webclient/view/98/tool/tool.html @@ -1,4 +1,4 @@ -

Using with collection:

+

t('tool.headline.using', array($TemplateData['tool']['name'], $TemplateData['collection']['name'])); ?>

diff --git a/webclient/view/default/tool/tool.html b/webclient/view/default/tool/tool.html index f4127f2..fbe8d9b 100644 --- a/webclient/view/default/tool/tool.html +++ b/webclient/view/default/tool/tool.html @@ -1,4 +1,4 @@ -

Using with collection:

+

t('tool.headline.using', array($TemplateData['tool']['name'], $TemplateData['collection']['name'])); ?>

-- 2.39.5