messages.js 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var App = require('app');
  19. App.messages = {
  20. 'app_name': 'Ambari',
  21. 'page_title': 'Ambari',
  22. 'installer_welcome': 'Welcome to Ambari installation wizard',
  23. 'login_error': 'Invalid username/password combination.',
  24. 'login_header': 'Ambari Login',
  25. 'username_label': 'Username',
  26. 'password_label': 'Password',
  27. 'login_button': 'Login',
  28. 'step1_header': 'Welcome',
  29. 'step2_header': 'Install Options',
  30. 'step3_header': 'Confirm Hosts',
  31. 'step4_header': 'Choose Services',
  32. 'step5_header': 'Assign Services',
  33. 'step6_header': 'Customize Services',
  34. 'step7_header': 'Review',
  35. 'step8_header': 'Install, Start and Test',
  36. 'step9_header': 'Summary',
  37. 'page_footer_body': '<a href = \"http://www.apache.org/licenses/LICENSE-2.0\" target = \"_blank\">Licensed under the ' +
  38. 'Apache License, Version 2.0</a>.<br><a href = \"/licenses/NOTICE.txt\" target = \"_blank\">See third-party ' +
  39. 'tools/resources that Ambari uses and their respective authors</a>',
  40. 'step1_clusterName_error_null': 'Cluster Name cannot be null value',
  41. 'step1_clusterName_error_Whitespaces': 'Cluster Name cannot contain white spaces',
  42. 'step1_clusterName_error_specialChar': 'Cluster Name cannot have hyphen as first or last alphabet',
  43. 'topnav_help_link': 'http://incubator.apache.org/ambari/install.html',
  44. 'welcome_header': 'Welcome to Ambari!',
  45. 'step2_targetHosts': '<p>Enter a list of host names, one per line. Or use <a href=\"javascript:void 0\"> ' +
  46. 'Pattern expression</a> </p>',
  47. 'step2_targetHosts_label': 'Specify Hosts to Manage',
  48. 'step2_hostNameEmptyError': 'host names cannot be left empty',
  49. 'step2_sshKeyNullErr': 'ssh key cannot be empty' ,
  50. 'step2_passphraseMatchErr': '\"Confirm passphrase\" doesn\'t matches \"passphrase\" value',
  51. 'step2_hostNameNotRequireErr' : 'Host names not required for manual install of ambari agents',
  52. 'step2_softRepo_default_localPath': '/etc/yum/repos.d/hdp',
  53. 'step2_softRepo_remotePath': '',
  54. 'step2_advancedOption_label': 'Advanced Options',
  55. 'step2_repoConf_label': 'Yum Repository Configuration File Path',
  56. 'step2_localRepoExplan': '<p>The repository configuration file should be installed on each host in your cluster. ' +
  57. 'This file instructs package manager to use your local software repository to retrieve software packages,instead of ' +
  58. 'using internet.</p>',
  59. 'welcome_body': '<p>Ambari makes it easy for you to install, configure, and manage your Hadoop cluster.<br>First, ' +
  60. 'we will walk you through setting up your cluster with a step-by-step wizard.</p>',
  61. 'welcome_note': 'Before you proceed, make sure you have performed all the pre-installation steps.',
  62. 'welcome_submit_label': 'Get started',
  63. 'installFailed_header': 'Cluster installation failed',
  64. 'installFailed_body': 'Cluster installation failed. To continue, you will need to uninstall the cluster first and ' +
  65. 're-install the cluster.',
  66. 'installFailed_submit_label': 'Start the uninstall process',
  67. 'uninstallFailed_header': 'Cluster uninstallation failed',
  68. 'uninstallFailed_body': 'Failed to uninstall the cluster'
  69. };