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);