Repository: ambari Updated Branches: refs/heads/trunk 2ef3a5c17 -> 8f6964032
AMBARI-10927. Ranger Admin HA Wizard step4 wrong message. (akovalenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/8f696403 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/8f696403 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/8f696403 Branch: refs/heads/trunk Commit: 8f69640327f2c0945b975e38827e3970011863e6 Parents: 2ef3a5c Author: Aleksandr Kovalenko <akovale...@hortonworks.com> Authored: Tue May 5 13:31:05 2015 +0300 Committer: Aleksandr Kovalenko <akovale...@hortonworks.com> Committed: Tue May 5 13:31:05 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/messages.js | 2 ++ .../views/main/admin/highAvailability/rangerAdmin/step4_view.js | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/8f696403/ambari-web/app/messages.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/messages.js b/ambari-web/app/messages.js index f999a2c..b78010c 100644 --- a/ambari-web/app/messages.js +++ b/ambari-web/app/messages.js @@ -1242,6 +1242,8 @@ Em.I18n.translations = { 'admin.ra_highAvailability.wizard.step4.task1.title': 'Install Additional Ranger Admin', 'admin.ra_highAvailability.wizard.step4.task2.title': 'Reconfigure Ranger', 'admin.ra_highAvailability.wizard.step4.task3.title': 'Start All Services', + 'admin.ra_highAvailability.wizard.step4.notice.inProgress': 'Please wait while Ranger Admin HA is being deployed.', + 'admin.ra_highAvailability.wizard.step4.notice.completed': 'Ranger Admin HA has been enabled successfully.', 'admin.ra_highAvailability.closePopup':'Enable Ranger Admin HA Wizard is in progress. You must allow the wizard to complete for Ambari to be in usable state. ' + 'If you choose to quit, you must follow manual instructions to complete or revert enabling Ranger Admin HA as documented in the Ambari User Guide. Are you sure you want to exit the wizard?', http://git-wip-us.apache.org/repos/asf/ambari/blob/8f696403/ambari-web/app/views/main/admin/highAvailability/rangerAdmin/step4_view.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/admin/highAvailability/rangerAdmin/step4_view.js b/ambari-web/app/views/main/admin/highAvailability/rangerAdmin/step4_view.js index 0fc5a6e..466c906 100644 --- a/ambari-web/app/views/main/admin/highAvailability/rangerAdmin/step4_view.js +++ b/ambari-web/app/views/main/admin/highAvailability/rangerAdmin/step4_view.js @@ -25,9 +25,9 @@ App.RAHighAvailabilityWizardStep4View = App.HighAvailabilityProgressPageView.ext headerTitle: Em.I18n.t('admin.ra_highAvailability.wizard.step4.header'), - noticeInProgress: Em.I18n.t('admin.rm_highAvailability.wizard.step4.notice.inProgress'), + noticeInProgress: Em.I18n.t('admin.ra_highAvailability.wizard.step4.notice.inProgress'), - noticeCompleted: Em.I18n.t('admin.rm_highAvailability.wizard.step4.notice.completed'), + noticeCompleted: Em.I18n.t('admin.ra_highAvailability.wizard.step4.notice.completed'), submitButtonText: Em.I18n.t('common.complete')