From 933392dfc9e7d0da34bd7800ad6a23af6b6c09e7 Mon Sep 17 00:00:00 2001 From: Greg Piatigorski Date: Thu, 14 Dec 2017 14:40:58 -0800 Subject: [PATCH] Fixes All Policy Profiles page header text https://bugzilla.redhat.com/show_bug.cgi?id=1508902 --- app/controllers/miq_policy_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/miq_policy_controller.rb b/app/controllers/miq_policy_controller.rb index c11e2054b4f..7b13f87dd37 100644 --- a/app/controllers/miq_policy_controller.rb +++ b/app/controllers/miq_policy_controller.rb @@ -550,8 +550,8 @@ def replace_right_cell(options = {}) when 'root' partial_name, model = case x_active_tree - when :policy_profile_tree then ['profile_list', _('Policy Profile')] - when :policy_tree then ['policy_folders', _('Policy')] + when :policy_profile_tree then ['profile_list', _('Policy Profiles')] + when :policy_tree then ['policy_folders', _('Policies')] when :event_tree then ['event_list', _('Events')] when :condition_tree then ['condition_folders', _('Conditions')] when :action_tree then ['action_list', _('Actions')]