messages.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. Em.I18n.translations = {
  19. 'app.name': 'Ambari',
  20. 'login.header': 'Sign in',
  21. 'login.username': 'Username',
  22. 'login.password': 'Password',
  23. 'login.loginButton': 'Sign in',
  24. 'login.error': 'Invalid username/password combination.',
  25. 'services.nagios.description': 'Nagios desc',
  26. 'services.ganglia.description': 'Ganglia desc',
  27. 'services.hdfs.description': 'HDFS desc',
  28. 'services.mapreduce.description': 'MapReduce desc',
  29. 'services.sqoop.description': 'Sqoop desc',
  30. 'services.pig.description': 'Pig desc',
  31. 'services.hive.description': 'Hive/HCat desc',
  32. 'services.oozie.description': 'Oozie desc',
  33. 'services.zookeeper.description': 'ZooKeeper desc',
  34. 'services.hbase.description': 'HBase desc',
  35. 'topnav.help.href': 'http://incubator.apache.org/ambari/install.html',
  36. 'installer.header': 'Cluster Install Wizard',
  37. 'installer.step1.header': 'Welcome',
  38. 'installer.step1.body.header': 'Welcome to Apache Ambari!',
  39. 'installer.step1.body': 'Ambari makes it easy to install, manage, and monitor Hadoop clusters.<br>' +
  40. 'We will walk you through the cluster installation process with this step-by-step wizard.',
  41. 'installer.step1.clusterName': 'Name your cluster',
  42. 'installer.step1.clusterName.tooltip.title': 'Cluster Name',
  43. 'installer.step1.clusterName.tooltip.content': 'Enter a unique cluster name. Cluster name cannot be changed later.',
  44. 'installer.step1.clusterName.error.required': 'Cluster Name is required',
  45. 'installer.step1.clusterName.error.whitespaces': 'Cluster Name cannot contain white spaces',
  46. 'installer.step1.clusterName.error.specialChar': 'Cluster Name cannot contain special characters',
  47. 'installer.step2.header': 'Install Options',
  48. 'installer.step2.body': 'Enter the list of hosts to be included in the cluster, provide your SSH key, and optionally specify a local repository.',
  49. 'installer.step2.targetHosts': 'Target Hosts',
  50. 'installer.step2.targetHosts.info': 'Enter a list of host names, one per line',
  51. 'installer.step2.hostPattern.tooltip.title': 'Pattern Expressions',
  52. 'installer.step2.hostPattern.tooltip.content': 'You can use pattern expressions to specify a number of target hosts. Explain brackets.',
  53. 'installer.step2.hostName.error.required': 'Host Names cannot be left empty',
  54. 'installer.step2.hostName.error.notRequired': 'Host Names will be ignored if not using SSH to automatically configure hosts',
  55. 'installer.step2.hostName.error.invalid': 'Invalid Host Name(s) - cannot start or end with a hyphen',
  56. 'installer.step2.sshKey': 'Host Connectivity Information',
  57. 'installer.step2.sshKey.info': 'Provide your SSH Private Key (<b>id_rsa</b> for <b>root</b>)',
  58. 'installer.step2.sshKey.error.required': 'SSH Private Key is required',
  59. 'installer.step2.passphrase.error.match': 'Passphrases do not match',
  60. 'installer.step2.manualInstall.label': 'Do not use SSH to automatically configure hosts ',
  61. 'installer.step2.manualInstall.info': 'By not using SSH to connect to the target hosts, you must manually install and start the ' +
  62. 'Ambari Agent on each host in order for the wizard to perform the necessary configurations and software installs.',
  63. 'installer.step2.advancedOption': 'Advanced Options',
  64. 'installer.step2.repoConf': 'Software Repository Configuration File Path',
  65. 'installer.step2.localRepo.header': 'Software repository',
  66. 'installer.step2.localRepo.label': 'Use a local software repository',
  67. 'installer.step2.localRepo.error.required': 'Local repository file path is required',
  68. 'installer.step2.localRepo.info': 'The repository configuration file should be installed on each host in your cluster. ' +
  69. 'This file instructs the package manager to use your local software repository to retrieve software packages, instead of ' +
  70. 'downloading them from the internet.',
  71. 'installer.step2.localRepo.tooltip.title': 'Local Software Repository',
  72. 'installer.step2.localRepo.tooltip.content': 'The repository configuration file should be installed on each host ' +
  73. 'in your cluster. This file instructs package manager to use your local' +
  74. 'software repository to retrieve software packages, instead of using the internet.',
  75. 'installer.step2.manualInstall.tooltip.title': 'Not Using SSH (Manual Install)',
  76. 'installer.step2.manualInstall.tooltip.content': 'If you do not wish Ambari to automatically configure the target hosts via SSH,' +
  77. ' you have the option of configuring them yourself. This involves installing and starting Ambari Agent on each of your target hosts.',
  78. 'installer.step2.manualInstall.popup.header': 'Before You Proceed',
  79. 'installer.step2.manualInstall.popup.body': 'You must install Ambari Agents on each host you want to manage before you proceed. <a href="#" target="_blank">Learn more</a>',
  80. 'installer.step3.header': 'Confirm Hosts',
  81. 'installer.step3.body': 'Here are the results of the host discovery process.<br>' +
  82. 'Please verify and remove the ones that you do not want to be the part of the cluster.',
  83. 'installer.step3.hostLog.popup.header': 'Log file for the host',
  84. 'installer.step3.hostLog.popup.body': 'Placeholder for the log file',
  85. 'installer.step4.header': 'Choose Services',
  86. 'installer.step4.body': 'Choose which services you want to install on your cluster.<br>Note that some services have dependencies (e.g., HBase requires ZooKeeper.)',
  87. 'installer.step4.mapreduceCheck.popup.header': 'MapReduce Needed',
  88. 'installer.step4.mapreduceCheck.popup.body': 'You did not select MapReduce, but it is needed by other services you selected. We will automatically add MapReduce. Is this OK?',
  89. 'installer.step4.monitoringCheck.popup.header': 'Limited Functionality Warning',
  90. 'installer.step4.monitoringCheck.popup.body': 'You did not select Nagios and/or Ganglia. If both are not selected, monitoring and alerts will not function properly. Is this OK?',
  91. 'installer.step5.header': 'Assign Masters',
  92. 'installer.step5.attention': ' hosts not running master services',
  93. 'installer.step5.body': 'Assign master components to hosts you want to run them on.',
  94. 'installer.step6.header': 'Assign Slaves',
  95. 'installer.step6.body': 'Assign slave components to hosts you want to run them on.',
  96. 'installer.step6.error.mustSelectOne': 'You must assign at least one host to each.',
  97. 'installer.step7.header': 'Customize Services',
  98. 'installer.step7.body': 'We have come up with recommended configurations for the services you selected. Customize them as you see fit.',
  99. 'installer.step7.attentionNeeded': '<strong>Attention:</strong> Some configurations need your attention before you can proceed.',
  100. 'installer.step8.header': 'Review',
  101. 'installer.step8.body': 'Please review the cluster configuration before installation',
  102. 'installer.step9.header': 'Install, Start and Test',
  103. 'installer.step9.body': 'Wait to complete the cluster installation. Installing, Starting and Testing selected services',
  104. 'installer.step9.status.success': 'Successfully installed the cluster',
  105. 'installer.step9.status.failed': 'Failure in installation',
  106. 'installer.step9.host.status.success': 'success',
  107. 'installer.step9.host.status.warning': 'tolerable failures encountered',
  108. 'installer.step9.host.status.failed': 'failures encountered',
  109. 'installer.step10.header': 'Summary',
  110. 'form.create': 'Create',
  111. 'form.save': 'Save',
  112. 'form.cancel': 'Cancel',
  113. 'form.password': 'Password',
  114. 'form.passwordRetype': 'Retype Password',
  115. 'form.saveSuccess': 'Successfully saved.',
  116. 'form.saveError': 'Sorry, errors occured.',
  117. 'form.validator.invalidIp': 'Please enter valid ip address',
  118. 'admin.advanced.title': 'Advanced',
  119. 'admin.advanced.caution': 'This section is for advanced user only.<br/>Proceed with caution.',
  120. 'admin.advanced.button.uninstallIncludingData': 'Uninstall cluster including all data.',
  121. 'admin.advanced.button.uninstallKeepData': 'Uninstall cluster but keep data.',
  122. 'admin.advanced.popup.header': 'Uninstall Cluster',
  123. /*'admin.advanced.popup.text':'Uninstall Cluster',*/
  124. 'admin.audit.grid.date': "Date/Time",
  125. 'admin.audit.grid.category': "Category",
  126. 'admin.audit.grid.operationName': "Operation",
  127. 'admin.audit.grid.performedBy': "Performed By",
  128. 'admin.audit.grid.service': "Category",
  129. 'admin.authentication.form.method.database': 'Use Ambari Database to authenticate users',
  130. 'admin.authentication.form.method.ldap': 'Use LDAP/Active Directory to authenticate',
  131. 'admin.authentication.form.primaryServer': 'Primary Server',
  132. 'admin.authentication.form.secondaryServer': 'Secondary Server',
  133. 'admin.authentication.form.useSsl': 'Use SSL',
  134. 'admin.authentication.form.bind.anonymously': "Bind Anonymously",
  135. 'admin.authentication.form.bind.useCrenedtials': "Use Credentials To Bind",
  136. 'admin.authentication.form.bindUserDN': 'Bind User DN',
  137. 'admin.authentication.form.searchBaseDN': 'Search Base DN',
  138. 'admin.authentication.form.usernameAttribute': 'Username Attribute',
  139. 'admin.authentication.form.userDN': 'User DN',
  140. 'admin.authentication.form.password': 'Password',
  141. 'admin.authentication.form.configurationTest': 'Configuration Test',
  142. 'admin.authentication.form.testConfiguration': 'Test Configuration',
  143. 'admin.authentication.form.test.success': 'The configuration passes the test',
  144. 'admin.authentication.form.test.fail': 'The configuration fails the test',
  145. 'admin.security.title': 'Kerberos Security has not been enabled on this cluster.',
  146. 'admin.security.button.enable': 'Enable Kerberos Security on this cluster',
  147. 'admin.users.ldapAuthentionUsed': 'LDAP Authentication is being used to authenticate users',
  148. 'admin.users.deleteYourselfMessage': 'You can\'t delete yourself',
  149. 'admin.users.addButton': 'Add User',
  150. 'admin.users.delete': 'delete',
  151. 'admin.users.edit': 'edit',
  152. 'admin.users.privileges': 'Admin',
  153. 'admin.users.password': 'Password',
  154. 'admin.users.passwordRetype': 'Retype Password',
  155. 'admin.users.username': 'Username',
  156. 'question.sure': 'Are you sure?',
  157. 'services.service.start': 'Start',
  158. 'services.service.stop': 'Stop',
  159. 'services.service.start.popup.header': 'Confirmation',
  160. 'services.service.stop.popup.header': 'Confirmation',
  161. 'services.service.start.popup.body': 'Are you sure?',
  162. 'services.service.stop.popup.body': 'Are you sure?',
  163. 'services.service.summary.version': 'Version',
  164. 'services.service.summary.nameNode': 'NameNode',
  165. 'services.service.summary.nameNodeUptime': 'NameNode Uptime',
  166. 'services.service.summary.nameNodeHeap': 'NameNode Heap',
  167. 'services.service.summary.pendingUpgradeStatus': 'HDFS Pending Upgrade Status',
  168. 'services.service.summary.safeModeStatus': 'HDFS Safe Mode Status',
  169. 'services.service.summary.dataNodes': 'DataNodes (live/dead/decom)',
  170. 'services.service.summary.diskCapacity': 'HDFS Disk Capacity',
  171. 'services.service.summary.blocksTotal': 'Blocks (total)',
  172. 'services.service.summary.blockErrors': 'Block Errors (corr./miss./underrep.)',
  173. 'services.service.summary.totalFiles': 'Total Files + Directory Count',
  174. 'hosts.host.start.popup.header': 'Confirmation',
  175. 'hosts.host.stop.popup.header': 'Confirmation',
  176. 'hosts.host.start.popup.body': 'Are you sure?',
  177. 'hosts.host.stop.popup.body': 'Are you sure?',
  178. 'hosts.assignedToRack.popup.body': 'Are you sure?',
  179. 'hosts.assignedToRack.popup.header': 'Confirmation',
  180. 'hosts.decommission.popup.body': 'Are you sure?',
  181. 'hosts.decommission.popup.header': 'Confirmation',
  182. 'hosts.delete.popup.body': 'Are you sure?',
  183. 'hosts.delete.popup.header': 'Confirmation',
  184. 'charts.horizon.chart.showText': 'show',
  185. 'charts.horizon.chart.hideText': 'hide',
  186. 'charts.horizon.chart.attributes.cpu': 'CPU',
  187. 'charts.horizon.chart.attributes.memory': 'Memory',
  188. 'charts.horizon.chart.attributes.network': 'Network',
  189. 'charts.horizon.chart.attributes.io': 'I/O',
  190. 'metric.default': 'default',
  191. 'metric.cpu': 'cpu',
  192. 'metric.memory': 'disk used',
  193. 'metric.network': 'network',
  194. 'metric.io': 'io',
  195. 'hosts.add.header' : 'Add Host Wizard',
  196. 'hosts.add.step2.warning' : 'Hosts are already part of the cluster and will be ignored'
  197. };