From a850d3b67c9ad1978480c1a6fcd9f90d54522daf Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Tue, 2 Mar 2021 12:09:29 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B03571=20Fix=20audit=20errors=20title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dictionaries/en.dictionary.itop.ui.php | 2 +- pages/audit.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dictionaries/en.dictionary.itop.ui.php b/dictionaries/en.dictionary.itop.ui.php index 1f0f3b29b..4ea4ad886 100644 --- a/dictionaries/en.dictionary.itop.ui.php +++ b/dictionaries/en.dictionary.itop.ui.php @@ -697,7 +697,7 @@ Dict::Add('EN US', 'English', 'English', array( 'UI:Audit:PercentageOk' => '% Ok', 'UI:Audit:ErrorIn_Rule_Reason' => 'OQL Error in the Rule %1$s: %2$s.', 'UI:Audit:ErrorIn_Category_Reason' => 'OQL Error in the Category %1$s: %2$s.', - 'UI:Audit:AuditError' => 'Audit Interactif', + 'UI:Audit:AuditErrors' => 'Audit Errors', 'UI:Audit:Dashboard:ObjectsAudited' => 'Objects audited', 'UI:Audit:Dashboard:ObjectsInError' => 'Objects in errors', 'UI:Audit:Dashboard:ObjectsValidated' => 'Objects validated', diff --git a/pages/audit.php b/pages/audit.php index a603359fc..c72896a17 100644 --- a/pages/audit.php +++ b/pages/audit.php @@ -235,7 +235,7 @@ try } else { - $sTitle = Dict::S('UI:Audit:AuditError'); + $sTitle = Dict::S('UI:Audit:AuditErrors'); $oP->SetBreadCrumbEntry('ui-tool-auditerrors', $sTitle, '', '', 'fas fa-stethoscope', iTopWebPage::ENUM_BREADCRUMB_ENTRY_ICON_TYPE_CSS_CLASSES); $oBackButton = ButtonUIBlockFactory::MakeIconLink('fas fa-chevron-left', Dict::S('Back to audit results'), "./audit.php?".$oAppContext->GetForLink()); @@ -258,7 +258,7 @@ try break; case 'errors': - $sTitle = Dict::S('UI:Audit:AuditError'); + $sTitle = Dict::S('UI:Audit:AuditErrors'); $oP->SetBreadCrumbEntry('ui-tool-auditerrors', $sTitle, '', '', 'fas fa-stethoscope', iTopWebPage::ENUM_BREADCRUMB_ENTRY_ICON_TYPE_CSS_CLASSES); $iCategory = utils::ReadParam('category', ''); $iRuleIndex = utils::ReadParam('rule', 0);