messages.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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 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.step3.hosts.remove.popup.header': 'Remove Hosts',
  86. 'installer.step3.hosts.remove.popup.body': 'Are you sure you want to remove the selected host(s)?',
  87. 'installer.step3.hosts.retry.popup.header': 'Retry Host Discovery',
  88. 'installer.step3.hosts.retry.popup.body': 'Are you sure you want to retry discovery of the selected host(s)?',
  89. 'installer.step4.header': 'Choose Services',
  90. '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.)',
  91. 'installer.step4.mapreduceCheck.popup.header': 'MapReduce Needed',
  92. '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?',
  93. 'installer.step4.monitoringCheck.popup.header': 'Limited Functionality Warning',
  94. '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?',
  95. 'installer.step5.header': 'Assign Masters',
  96. 'installer.step5.attention': ' hosts not running master services',
  97. 'installer.step5.body': 'Assign master components to hosts you want to run them on.',
  98. 'installer.step6.header': 'Assign Slaves and Clients',
  99. 'installer.step6.body': 'Assign slave and client components to hosts you want to run them on. <br/>Client component will install ',
  100. 'installer.step6.error.mustSelectOne': 'You must assign at least one host to each.',
  101. 'installer.step7.header': 'Customize Services',
  102. 'installer.step7.body': 'We have come up with recommended configurations for the services you selected. Customize them as you see fit.',
  103. 'installer.step7.attentionNeeded': '<strong>Attention:</strong> Some configurations need your attention before you can proceed.',
  104. 'installer.step8.header': 'Review',
  105. 'installer.step8.body': 'Please review the cluster configuration before installation',
  106. 'installer.step9.header': 'Install, Start and Test',
  107. 'installer.step9.body': 'Wait to complete the cluster installation. Installing, Starting and Testing selected services',
  108. 'installer.step9.status.success': 'Successfully installed the cluster',
  109. 'installer.step9.status.failed': 'Failure in installation',
  110. 'installer.step9.host.status.success': 'success',
  111. 'installer.step9.host.status.warning': 'tolerable failures encountered',
  112. 'installer.step9.host.status.failed': 'failures encountered',
  113. 'installer.step10.header': 'Summary',
  114. 'form.create': 'Create',
  115. 'form.save': 'Save',
  116. 'form.cancel': 'Cancel',
  117. 'form.password': 'Password',
  118. 'form.passwordRetype': 'Retype Password',
  119. 'form.saveSuccess': 'Successfully saved.',
  120. 'form.saveError': 'Sorry, errors occured.',
  121. 'form.validator.invalidIp': 'Please enter valid ip address',
  122. 'admin.advanced.title': 'Advanced',
  123. 'admin.advanced.caution': 'This section is for advanced user only.<br/>Proceed with caution.',
  124. 'admin.advanced.button.uninstallIncludingData': 'Uninstall cluster including all data.',
  125. 'admin.advanced.button.uninstallKeepData': 'Uninstall cluster but keep data.',
  126. 'admin.advanced.popup.header': 'Uninstall Cluster',
  127. /*'admin.advanced.popup.text':'Uninstall Cluster',*/
  128. 'admin.audit.grid.date': "Date/Time",
  129. 'admin.audit.grid.category': "Category",
  130. 'admin.audit.grid.operationName': "Operation",
  131. 'admin.audit.grid.performedBy': "Performed By",
  132. 'admin.audit.grid.service': "Category",
  133. 'admin.authentication.form.method.database': 'Use Ambari Database to authenticate users',
  134. 'admin.authentication.form.method.ldap': 'Use LDAP/Active Directory to authenticate',
  135. 'admin.authentication.form.primaryServer': 'Primary Server',
  136. 'admin.authentication.form.secondaryServer': 'Secondary Server',
  137. 'admin.authentication.form.useSsl': 'Use SSL',
  138. 'admin.authentication.form.bind.anonymously': "Bind Anonymously",
  139. 'admin.authentication.form.bind.useCrenedtials': "Use Credentials To Bind",
  140. 'admin.authentication.form.bindUserDN': 'Bind User DN',
  141. 'admin.authentication.form.searchBaseDN': 'Search Base DN',
  142. 'admin.authentication.form.usernameAttribute': 'Username Attribute',
  143. 'admin.authentication.form.userDN': 'User DN',
  144. 'admin.authentication.form.password': 'Password',
  145. 'admin.authentication.form.configurationTest': 'Configuration Test',
  146. 'admin.authentication.form.testConfiguration': 'Test Configuration',
  147. 'admin.authentication.form.test.success': 'The configuration passes the test',
  148. 'admin.authentication.form.test.fail': 'The configuration fails the test',
  149. 'admin.security.title': 'Kerberos Security has not been enabled on this cluster.',
  150. 'admin.security.button.enable': 'Enable Kerberos Security on this cluster',
  151. 'admin.users.ldapAuthentionUsed': 'LDAP Authentication is being used to authenticate users',
  152. 'admin.users.deleteYourselfMessage': 'You can\'t delete yourself',
  153. 'admin.users.addButton': 'Add User',
  154. 'admin.users.delete': 'delete',
  155. 'admin.users.edit': 'edit',
  156. 'admin.users.privileges': 'Admin',
  157. 'admin.users.password': 'Password',
  158. 'admin.users.passwordRetype': 'Retype Password',
  159. 'admin.users.username': 'Username',
  160. 'question.sure': 'Are you sure?',
  161. 'services.service.start': 'Start',
  162. 'services.service.stop': 'Stop',
  163. 'services.service.confirmation.header': 'Confirmation',
  164. 'services.service.confirmation.body': 'Are you sure?',
  165. 'services.service.summary.version': 'Version',
  166. 'services.service.summary.nameNode': 'NameNode Web UI',
  167. 'services.service.summary.nameNodeUptime': 'NameNode Uptime',
  168. 'services.service.summary.nameNodeHeap': 'NameNode Heap',
  169. 'services.service.summary.pendingUpgradeStatus': 'Upgrade Status',
  170. 'services.service.summary.safeModeStatus': 'Safe Mode Status',
  171. 'services.service.summary.dataNodes': 'DataNodes',
  172. 'services.service.summary.diskCapacity': 'HDFS Disk Capacity',
  173. 'services.service.summary.blocksTotal': 'Blocks (total)',
  174. 'services.service.summary.blockErrors': 'Block Errors',
  175. 'services.service.summary.totalFiles': 'Total Files + Dirs',
  176. 'services.service.summary.jobTracker': 'JobTracker Web UI',
  177. 'services.service.summary.jobTrackerUptime': 'JobTracker Uptime',
  178. 'services.service.summary.trackersLiveTotal': 'Trackers',
  179. 'services.service.summary.trackersBlacklistGraylist': 'Trackers',
  180. 'services.service.summary.jobTrackerHeap': 'JobTracker Heap',
  181. 'services.service.summary.totalSlotsCapacity': 'Total Slots Capacity',
  182. 'services.service.summary.totalJobs': 'Total Jobs',
  183. 'services.service.summary.currentSlotUtiliMaps': 'Map Slots',
  184. 'services.service.summary.currentSlotUtiliReduces': 'Reduce Slots',
  185. 'services.service.summary.tasksMaps': 'Tasks: Maps',
  186. 'services.service.summary.tasksReduces': 'Tasks: Reduces',
  187. 'services.service.summary.hbaseMaster': 'HBase Master Web UI',
  188. 'services.service.summary.regionServerCount': 'Region Server Count',
  189. 'services.service.summary.regionInTransition': 'Region In Transition',
  190. 'services.service.summary.masterStarted': 'Master Started',
  191. 'services.service.summary.masterActivated': 'Master Activated',
  192. 'services.service.summary.averageLoad': 'Average Load',
  193. 'services.service.summary.masterHeap': 'Master Heap',
  194. 'services.service.summary.moreStats': 'more stats here',
  195. 'services.service.actions.run.rebalancer': 'Run Rebalancer',
  196. 'services.service.actions.run.compaction': 'Run Compaction',
  197. 'services.service.actions.run.smoke': 'Run Smoke Test',
  198. 'services.service.actions.maintenance': 'Maintenance',
  199. 'services.add.header': 'Add Service Wizard',
  200. 'hosts.host.start.popup.header': 'Confirmation',
  201. 'hosts.host.stop.popup.header': 'Confirmation',
  202. 'hosts.host.start.popup.body': 'Are you sure?',
  203. 'hosts.host.stop.popup.body': 'Are you sure?',
  204. 'hosts.assignedToRack.popup.body': 'Are you sure?',
  205. 'hosts.assignedToRack.popup.header': 'Confirmation',
  206. 'hosts.decommission.popup.body': 'Are you sure?',
  207. 'hosts.decommission.popup.header': 'Confirmation',
  208. 'hosts.delete.popup.body': 'Are you sure?',
  209. 'hosts.delete.popup.header': 'Confirmation',
  210. 'hosts.cant.do.popup.header': 'Operation not allowed',
  211. 'hosts.cant.do.popup.masterList.body': 'You cannot delete this host because it is hosting following master services: {0}.',
  212. 'hosts.cant.do.popup.workingList.body': 'You cannot delete this host because following slave services are not fully stopped or decommissioned: {0}.',
  213. 'charts.horizon.chart.showText': 'show',
  214. 'charts.horizon.chart.hideText': 'hide',
  215. 'charts.horizon.chart.attributes.cpu': 'CPU',
  216. 'charts.horizon.chart.attributes.memory': 'Memory',
  217. 'charts.horizon.chart.attributes.network': 'Network',
  218. 'charts.horizon.chart.attributes.io': 'I/O',
  219. 'metric.default':'combined',
  220. 'metric.cpu':'cpu',
  221. 'metric.memory':'disk used',
  222. 'metric.network':'network',
  223. 'metric.io':'io',
  224. 'metric.more':'more',
  225. 'metric.more.cpu':'CPU',
  226. 'metric.more.disk': 'Disk',
  227. 'metric.more.load': 'Load',
  228. 'metric.more.memory':'Memory',
  229. 'metric.more.network': 'Network',
  230. 'metric.more.process': 'Process',
  231. 'hosts.add.header': 'Add Host Wizard',
  232. 'hosts.add.step2.warning': 'Hosts are already part of the cluster and will be ignored',
  233. 'dashboard.services': 'Services',
  234. 'dashboard.services.hosts': 'Hosts',
  235. 'dashboard.services.uptime': '{0} days {1} hrs {2} mins',
  236. 'dashboard.services.hdfs.summary': '{0} of {1} nodes live, {2}% capacity free',
  237. 'dashboard.services.hdfs.capacity': 'HDFS Capacity',
  238. 'dashboard.services.hdfs.capacityUsed': '{0} of {1} ({2}% used)',
  239. 'dashboard.services.hdfs.totalFilesAndDirs': 'Total Files + Directories',
  240. 'dashboard.services.hdfs.nodes': 'Data Nodes',
  241. 'dashboard.services.hdfs.nodes.live': 'live',
  242. 'dashboard.services.hdfs.nodes.dead': 'dead',
  243. 'dashboard.services.hdfs.nodes.decom': 'decom',
  244. 'dashboard.services.hdfs.nodes.uptime': 'NameNode Uptime',
  245. 'dashboard.services.hdfs.nodes.heap': 'NameNode Heap',
  246. 'dashboard.services.hdfs.nodes.heapUsed': '{0} of {1}, {2}% used',
  247. 'dashboard.services.hdfs.chart.label': 'Capacity (Free/Used)',
  248. 'dashboard.services.mapreduce.summary': '{0} of {1} trackers live, {2} jobs running',
  249. 'dashboard.services.mapreduce.trackers': 'Trackers',
  250. 'dashboard.services.mapreduce.trackersSummary': '{0} live / {1} total',
  251. 'dashboard.services.mapreduce.jobs': 'Jobs',
  252. 'dashboard.services.mapreduce.jobsSummary': '{0} running / {1} completed / {2} failed',
  253. 'dashboard.services.mapreduce.mapSlots': 'Map Slots',
  254. 'dashboard.services.mapreduce.mapSlotsSummary': '{0} occuped / {1} reserved / {2} total',
  255. 'dashboard.services.mapreduce.reduceSlots': 'Reduce Slots',
  256. 'dashboard.services.mapreduce.reduceSlotsSummary': '{0} occuped / {1} reserved / {2} total',
  257. 'dashboard.services.mapreduce.jobTrackerHeap': 'JobTracker Heap',
  258. 'dashboard.services.mapreduce.jobTrackerHeapSummary': '{0} of {1} ({2}% used)',
  259. 'dashboard.services.mapreduce.jobTrackerUptime': 'Job Trackers Uptime',
  260. 'dashboard.services.mapreduce.chart.label': 'Jobs Running',
  261. 'dashboard.services.hbase.summary': '{0} of {1} region servers up, {2} average load',
  262. 'dashboard.services.hbase.masterServerHeap': 'Master Server Heap',
  263. 'dashboard.services.hbase.masterServerHeap.summary': '{0} of {1} ({2}% used)',
  264. 'dashboard.services.hbase.masterServerUptime': 'Master Server Uptime',
  265. 'dashboard.services.hbase.averageLoad': 'Average Load',
  266. 'dashboard.services.hbase.regionServers': 'Region Servers',
  267. 'dashboard.services.hbase.regionServersSummary': '{0} live / {1} total',
  268. 'dashboard.services.hbase.chart.label': 'Request Count',
  269. 'timeRange.presets.1hour': '1h',
  270. 'timeRange.presets.12hour': '12h',
  271. 'timeRange.presets.1day': '1d',
  272. 'timeRange.presets.1week': '1wk',
  273. 'timeRange.presets.1month': '1mo',
  274. 'timeRange.presets.1year': '1yr'
  275. };