bastion 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +15 -0
  2. data/.jshintrc +35 -0
  3. data/Gruntfile.js +24 -0
  4. data/LICENSE +339 -0
  5. data/README.md +8 -0
  6. data/Rakefile +53 -0
  7. data/app/assets/javascripts/bastion/auth/auth.module.js +87 -0
  8. data/app/assets/javascripts/bastion/auth/authorization.service.js +48 -0
  9. data/app/assets/javascripts/bastion/bastion-bootstrap.js +32 -0
  10. data/app/assets/javascripts/bastion/bastion-resource.factory.js +39 -0
  11. data/app/assets/javascripts/bastion/bastion.js +52 -0
  12. data/app/assets/javascripts/bastion/bastion.module.js +213 -0
  13. data/app/assets/javascripts/bastion/i18n/README +9 -0
  14. data/app/assets/javascripts/bastion/i18n/i18n.module.js +24 -0
  15. data/app/assets/javascripts/bastion/i18n/katello.pot +968 -0
  16. data/app/assets/javascripts/bastion/i18n/locale/README +1 -0
  17. data/app/assets/javascripts/bastion/i18n/translate.service.js +14 -0
  18. data/app/assets/javascripts/bastion/i18n/translations.js +3 -0
  19. data/app/assets/javascripts/bastion/i18n/zanata.xml +28 -0
  20. data/app/assets/javascripts/bastion/incubator/alch-alert.directive.js +67 -0
  21. data/app/assets/javascripts/bastion/incubator/alch-container-scroll.directive.js +44 -0
  22. data/app/assets/javascripts/bastion/incubator/alch-dropdown.directive.js +28 -0
  23. data/app/assets/javascripts/bastion/incubator/alch-edit.directive.js +361 -0
  24. data/app/assets/javascripts/bastion/incubator/alch-flyout.directive.js +19 -0
  25. data/app/assets/javascripts/bastion/incubator/alch-form-buttons.directive.js +60 -0
  26. data/app/assets/javascripts/bastion/incubator/alch-form-group.directive.js +87 -0
  27. data/app/assets/javascripts/bastion/incubator/alch-infinite-scroll.directive.js +84 -0
  28. data/app/assets/javascripts/bastion/incubator/alch-menu.directive.js +56 -0
  29. data/app/assets/javascripts/bastion/incubator/alch-modal.directive.js +80 -0
  30. data/app/assets/javascripts/bastion/incubator/alch-save-control.directive.js +42 -0
  31. data/app/assets/javascripts/bastion/incubator/alch-table.directive.js +295 -0
  32. data/app/assets/javascripts/bastion/incubator/format/alch-format.module.js +21 -0
  33. data/app/assets/javascripts/bastion/incubator/format/array-to-string.filter.js +30 -0
  34. data/app/assets/javascripts/bastion/incubator/format/boolean-to-yes-no.filter.js +34 -0
  35. data/app/assets/javascripts/bastion/incubator/format/capitalize.filter.js +32 -0
  36. data/app/assets/javascripts/bastion/incubator/format/key-value-to-string.filter.js +40 -0
  37. data/app/assets/javascripts/bastion/incubator/format/unlimitedFilter.filter.js +35 -0
  38. data/app/assets/javascripts/bastion/incubator/stylesheets/alch-edit.scss +34 -0
  39. data/app/assets/javascripts/bastion/incubator/stylesheets/header.scss +207 -0
  40. data/app/assets/javascripts/bastion/incubator/views/alch-alert.html +6 -0
  41. data/app/assets/javascripts/bastion/incubator/views/alch-dropdown.html +19 -0
  42. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-item.html +21 -0
  43. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-remove-cancel.html +28 -0
  44. data/app/assets/javascripts/bastion/incubator/views/alch-edit-checkbox.html +6 -0
  45. data/app/assets/javascripts/bastion/incubator/views/alch-edit-custom.html +8 -0
  46. data/app/assets/javascripts/bastion/incubator/views/alch-edit-multiselect.html +17 -0
  47. data/app/assets/javascripts/bastion/incubator/views/alch-edit-save-cancel.html +20 -0
  48. data/app/assets/javascripts/bastion/incubator/views/alch-edit-select.html +10 -0
  49. data/app/assets/javascripts/bastion/incubator/views/alch-edit-text.html +6 -0
  50. data/app/assets/javascripts/bastion/incubator/views/alch-edit-textarea.html +6 -0
  51. data/app/assets/javascripts/bastion/incubator/views/alch-edit.html +18 -0
  52. data/app/assets/javascripts/bastion/incubator/views/alch-flyout.html +10 -0
  53. data/app/assets/javascripts/bastion/incubator/views/alch-form-buttons.html +10 -0
  54. data/app/assets/javascripts/bastion/incubator/views/alch-form-group.html +9 -0
  55. data/app/assets/javascripts/bastion/incubator/views/alch-menu.html +18 -0
  56. data/app/assets/javascripts/bastion/incubator/views/alch-modal-remove.html +13 -0
  57. data/app/assets/javascripts/bastion/incubator/views/alch-save-control.html +18 -0
  58. data/app/assets/javascripts/bastion/layouts/details-nutupane.html +73 -0
  59. data/app/assets/javascripts/bastion/layouts/nutupane.html +63 -0
  60. data/app/assets/javascripts/bastion/layouts/select-all-results.html +9 -0
  61. data/app/assets/javascripts/bastion/menu/menu-expander.service.js +51 -0
  62. data/app/assets/javascripts/bastion/menu/menu.module.js +26 -0
  63. data/app/assets/javascripts/bastion/utils/as.filter.js +33 -0
  64. data/app/assets/javascripts/bastion/utils/form-utils.service.js +53 -0
  65. data/app/assets/javascripts/bastion/utils/utils.module.js +21 -0
  66. data/app/assets/javascripts/bastion/widgets/current-tasks.directive.js +67 -0
  67. data/app/assets/javascripts/bastion/widgets/nutupane-table.directive.js +59 -0
  68. data/app/assets/javascripts/bastion/widgets/nutupane.factory.js +316 -0
  69. data/app/assets/javascripts/bastion/widgets/page-title.directive.js +61 -0
  70. data/app/assets/javascripts/bastion/widgets/page-title.service.js +42 -0
  71. data/app/assets/javascripts/bastion/widgets/path-selector.directive.js +109 -0
  72. data/app/assets/javascripts/bastion/widgets/views/current-tasks.html +23 -0
  73. data/app/assets/javascripts/bastion/widgets/views/path-selector.html +11 -0
  74. data/app/assets/javascripts/bastion/widgets/widgets.module.js +24 -0
  75. data/app/assets/stylesheets/bastion/animations.less +15 -0
  76. data/app/assets/stylesheets/bastion/bastion.less +160 -0
  77. data/app/assets/stylesheets/bastion/forms.less +41 -0
  78. data/app/assets/stylesheets/bastion/gpg-keys.less +36 -0
  79. data/app/assets/stylesheets/bastion/helpers.less +6 -0
  80. data/app/assets/stylesheets/bastion/mixins.less +15 -0
  81. data/app/assets/stylesheets/bastion/nutupane.less +382 -0
  82. data/app/assets/stylesheets/bastion/overrides.less +54 -0
  83. data/app/assets/stylesheets/bastion/path-selector.less +123 -0
  84. data/app/assets/stylesheets/bastion/systems.less +35 -0
  85. data/app/assets/stylesheets/bastion/tasks.less +23 -0
  86. data/app/assets/stylesheets/bastion/typography.less +31 -0
  87. data/app/assets/stylesheets/bastion/variables.less +3 -0
  88. data/app/controllers/bastion/bastion_controller.rb +24 -0
  89. data/app/views/bastion/layouts/application.html.erb +32 -0
  90. data/app/views/bastion/layouts/application_ie.html.erb +5 -0
  91. data/bastion.js +26 -0
  92. data/bower.json +94 -0
  93. data/config/routes.rb +25 -0
  94. data/config/routes/mount_engine.rb +3 -0
  95. data/grunt/bower.js +20 -0
  96. data/grunt/htmlhint.js +15 -0
  97. data/grunt/jshint.js +9 -0
  98. data/grunt/karma.js +83 -0
  99. data/lib/bastion.rb +17 -0
  100. data/lib/bastion/engine.rb +37 -0
  101. data/lib/bastion/version.rb +3 -0
  102. data/package.json +29 -0
  103. data/test/auth/authorization.service.test.js +63 -0
  104. data/test/bastion/bastion-resource.factory.test.js +31 -0
  105. data/test/bastion/test-constants.js +30 -0
  106. data/test/i18n/translate.service.test.js +31 -0
  107. data/test/incubator/alch-alert.directive.test.js +84 -0
  108. data/test/incubator/alch-container-scroll.directive.test.js +68 -0
  109. data/test/incubator/alch-dropdown.directive.test.js +113 -0
  110. data/test/incubator/alch-edit.directive.test.js +320 -0
  111. data/test/incubator/alch-flyout.directive.test.js +73 -0
  112. data/test/incubator/alch-form-buttons.directive.test.js +55 -0
  113. data/test/incubator/alch-form-group.directive.test.js +76 -0
  114. data/test/incubator/alch-infinite-scroll.directive.test.js +123 -0
  115. data/test/incubator/alch-menu.directive.test.js +94 -0
  116. data/test/incubator/alch-modal.directive.test.js +81 -0
  117. data/test/incubator/alch-table.directive.test.js +270 -0
  118. data/test/incubator/format/array-to-string.filter.test.js +38 -0
  119. data/test/incubator/format/boolean-to-yes-no.filter.test.js +41 -0
  120. data/test/incubator/format/capitalize.filter.test.js +35 -0
  121. data/test/incubator/format/key-value-to-string.filter.test.js +60 -0
  122. data/test/incubator/format/unlimited-filter.filter.test.js +31 -0
  123. data/test/incubator/nutupane-table.directive.test.js +69 -0
  124. data/test/incubator/nutupane.factory.test.js +307 -0
  125. data/test/menu/menu-expander.service.test.js +74 -0
  126. data/test/test-mocks.module.js +268 -0
  127. data/test/utils/as.filter.test.js +33 -0
  128. data/test/utils/form-utils.service.test.js +52 -0
  129. data/test/widgets/page-title.directive.test.js +54 -0
  130. data/test/widgets/page-title.service.test.js +51 -0
  131. data/test/widgets/path-selector.directive.test.js +136 -0
  132. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.eot +0 -0
  133. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.svg +229 -0
  134. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  135. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.woff +0 -0
  136. data/vendor/assets/fonts/bastion/font-awesome/FontAwesome.otf +0 -0
  137. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.eot +0 -0
  138. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.svg +399 -0
  139. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.ttf +0 -0
  140. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.woff +0 -0
  141. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.eot +0 -0
  142. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.svg +146 -0
  143. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.ttf +0 -0
  144. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.woff +0 -0
  145. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.eot +0 -0
  146. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.svg +146 -0
  147. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.ttf +0 -0
  148. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.woff +0 -0
  149. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.eot +0 -0
  150. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.svg +146 -0
  151. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.ttf +0 -0
  152. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.woff +0 -0
  153. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
  154. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.svg +146 -0
  155. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
  156. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
  157. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.eot +0 -0
  158. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.svg +146 -0
  159. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.ttf +0 -0
  160. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.woff +0 -0
  161. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.eot +0 -0
  162. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.svg +146 -0
  163. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.ttf +0 -0
  164. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.woff +0 -0
  165. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.eot +0 -0
  166. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.svg +146 -0
  167. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.ttf +0 -0
  168. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.woff +0 -0
  169. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.eot +0 -0
  170. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.svg +146 -0
  171. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.ttf +0 -0
  172. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.woff +0 -0
  173. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.eot +0 -0
  174. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.svg +146 -0
  175. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.ttf +0 -0
  176. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.woff +0 -0
  177. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.eot +0 -0
  178. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.svg +146 -0
  179. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  180. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.woff +0 -0
  181. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.eot +0 -0
  182. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.svg +454 -0
  183. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.ttf +0 -0
  184. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.woff +0 -0
  185. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.eot +0 -0
  186. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.svg +454 -0
  187. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.ttf +0 -0
  188. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.woff +0 -0
  189. data/vendor/assets/javascripts/bastion/alchemy/alchemy.js +20 -0
  190. data/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +1226 -0
  191. data/vendor/assets/javascripts/bastion/angular-blocks/angular-blocks.js +79 -0
  192. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap-tpls.js +3677 -0
  193. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap.js +3427 -0
  194. data/vendor/assets/javascripts/bastion/angular-gettext/angular-gettext.js +345 -0
  195. data/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +594 -0
  196. data/vendor/assets/javascripts/bastion/angular-route/angular-route.js +920 -0
  197. data/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +622 -0
  198. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/datepicker.js +447 -0
  199. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/timepicker.js +232 -0
  200. data/vendor/assets/javascripts/bastion/angular-ui-router/angular-ui-router.js +3223 -0
  201. data/vendor/assets/javascripts/bastion/angular-uuid4/angular-uuid4.js +21 -0
  202. data/vendor/assets/javascripts/bastion/angular/angular.js +20560 -0
  203. data/vendor/assets/javascripts/bastion/es5-shim/es5-shim.js +1216 -0
  204. data/vendor/assets/javascripts/bastion/json3/json3.js +861 -0
  205. data/vendor/assets/javascripts/bastion/ngUpload/ng-upload.js +205 -0
  206. data/vendor/assets/javascripts/bastion/underscore/underscore.js +1276 -0
  207. data/vendor/assets/stylesheets/bastion/alchemy/_colors.scss +99 -0
  208. data/vendor/assets/stylesheets/bastion/alchemy/_media_object.scss +22 -0
  209. data/vendor/assets/stylesheets/bastion/alchemy/_mixins.scss +24 -0
  210. data/vendor/assets/stylesheets/bastion/alchemy/_normalize.scss +396 -0
  211. data/vendor/assets/stylesheets/bastion/alchemy/_vars.scss +31 -0
  212. data/vendor/assets/stylesheets/bastion/alchemy/alchemy.scss +8 -0
  213. data/vendor/assets/stylesheets/bastion/bootstrap/alerts.less +67 -0
  214. data/vendor/assets/stylesheets/bastion/bootstrap/badges.less +51 -0
  215. data/vendor/assets/stylesheets/bastion/bootstrap/bootstrap.less +49 -0
  216. data/vendor/assets/stylesheets/bastion/bootstrap/breadcrumbs.less +23 -0
  217. data/vendor/assets/stylesheets/bastion/bootstrap/button-groups.less +227 -0
  218. data/vendor/assets/stylesheets/bastion/bootstrap/buttons.less +155 -0
  219. data/vendor/assets/stylesheets/bastion/bootstrap/carousel.less +232 -0
  220. data/vendor/assets/stylesheets/bastion/bootstrap/close.less +33 -0
  221. data/vendor/assets/stylesheets/bastion/bootstrap/code.less +53 -0
  222. data/vendor/assets/stylesheets/bastion/bootstrap/component-animations.less +29 -0
  223. data/vendor/assets/stylesheets/bastion/bootstrap/dropdowns.less +187 -0
  224. data/vendor/assets/stylesheets/bastion/bootstrap/forms.less +375 -0
  225. data/vendor/assets/stylesheets/bastion/bootstrap/glyphicons.less +237 -0
  226. data/vendor/assets/stylesheets/bastion/bootstrap/grid.less +79 -0
  227. data/vendor/assets/stylesheets/bastion/bootstrap/input-groups.less +136 -0
  228. data/vendor/assets/stylesheets/bastion/bootstrap/jumbotron.less +46 -0
  229. data/vendor/assets/stylesheets/bastion/bootstrap/labels.less +64 -0
  230. data/vendor/assets/stylesheets/bastion/bootstrap/list-group.less +88 -0
  231. data/vendor/assets/stylesheets/bastion/bootstrap/media.less +56 -0
  232. data/vendor/assets/stylesheets/bastion/bootstrap/mixins.less +845 -0
  233. data/vendor/assets/stylesheets/bastion/bootstrap/modals.less +129 -0
  234. data/vendor/assets/stylesheets/bastion/bootstrap/navbar.less +612 -0
  235. data/vendor/assets/stylesheets/bastion/bootstrap/navs.less +242 -0
  236. data/vendor/assets/stylesheets/bastion/bootstrap/normalize.less +406 -0
  237. data/vendor/assets/stylesheets/bastion/bootstrap/pager.less +55 -0
  238. data/vendor/assets/stylesheets/bastion/bootstrap/pagination.less +85 -0
  239. data/vendor/assets/stylesheets/bastion/bootstrap/panels.less +182 -0
  240. data/vendor/assets/stylesheets/bastion/bootstrap/popovers.less +133 -0
  241. data/vendor/assets/stylesheets/bastion/bootstrap/print.less +105 -0
  242. data/vendor/assets/stylesheets/bastion/bootstrap/progress-bars.less +80 -0
  243. data/vendor/assets/stylesheets/bastion/bootstrap/responsive-utilities.less +209 -0
  244. data/vendor/assets/stylesheets/bastion/bootstrap/scaffolding.less +119 -0
  245. data/vendor/assets/stylesheets/bastion/bootstrap/tables.less +231 -0
  246. data/vendor/assets/stylesheets/bastion/bootstrap/theme.less +247 -0
  247. data/vendor/assets/stylesheets/bastion/bootstrap/thumbnails.less +36 -0
  248. data/vendor/assets/stylesheets/bastion/bootstrap/tooltip.less +95 -0
  249. data/vendor/assets/stylesheets/bastion/bootstrap/type.less +281 -0
  250. data/vendor/assets/stylesheets/bastion/bootstrap/utilities.less +56 -0
  251. data/vendor/assets/stylesheets/bastion/bootstrap/variables.less +642 -0
  252. data/vendor/assets/stylesheets/bastion/bootstrap/wells.less +29 -0
  253. data/vendor/assets/stylesheets/bastion/font-awesome/less/bootstrap.less +84 -0
  254. data/vendor/assets/stylesheets/bastion/font-awesome/less/core.less +129 -0
  255. data/vendor/assets/stylesheets/bastion/font-awesome/less/extras.less +93 -0
  256. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome-ie7.less +1953 -0
  257. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome.less +33 -0
  258. data/vendor/assets/stylesheets/bastion/font-awesome/less/icons.less +381 -0
  259. data/vendor/assets/stylesheets/bastion/font-awesome/less/mixins.less +48 -0
  260. data/vendor/assets/stylesheets/bastion/font-awesome/less/path.less +14 -0
  261. data/vendor/assets/stylesheets/bastion/font-awesome/less/variables.less +735 -0
  262. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_bootstrap.scss +84 -0
  263. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_core.scss +129 -0
  264. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_extras.scss +93 -0
  265. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_icons.scss +381 -0
  266. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_mixins.scss +48 -0
  267. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_path.scss +14 -0
  268. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_variables.scss +734 -0
  269. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  270. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome.scss +33 -0
  271. data/vendor/assets/stylesheets/bastion/rcue/buttons.less +44 -0
  272. data/vendor/assets/stylesheets/bastion/rcue/fonts.less +52 -0
  273. data/vendor/assets/stylesheets/bastion/rcue/forms.less +19 -0
  274. data/vendor/assets/stylesheets/bastion/rcue/mixins.less +50 -0
  275. data/vendor/assets/stylesheets/bastion/rcue/navbar.less +481 -0
  276. data/vendor/assets/stylesheets/bastion/rcue/rcue.less +15 -0
  277. data/vendor/assets/stylesheets/bastion/rcue/variables.less +47 -0
  278. metadata +376 -0
@@ -0,0 +1,9 @@
1
+ To push the strings to zanata:
2
+
3
+ zanata-cli push -s . -t locale --copy-trans false
4
+
5
+ to pull from zanata
6
+
7
+ zanata-cli pull -s . -t locale
8
+
9
+
@@ -0,0 +1,24 @@
1
+ /**
2
+ Copyright 2014 Red Hat, Inc.
3
+
4
+ This software is licensed to you under the GNU General Public
5
+ License as published by the Free Software Foundation; either version
6
+ 2 of the License (GPLv2) or (at your option) any later version.
7
+ There is NO WARRANTY for this software, express or implied,
8
+ including the implied warranties of MERCHANTABILITY,
9
+ NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
10
+ have received a copy of GPLv2 along with this software; if not, see
11
+ http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
12
+ **/
13
+
14
+ /**
15
+ * @ngdoc module
16
+ * @name Bastion.i18n
17
+ *
18
+ * @description
19
+ * Module for internationalization.
20
+ */
21
+ angular.module('Bastion.i18n', [
22
+ 'gettext',
23
+ 'Bastion'
24
+ ]);
@@ -0,0 +1,968 @@
1
+ msgid ""
2
+ msgstr ""
3
+
4
+ #: app/assets/bastion/incubator/views/alch-confirm-modal.html
5
+ #: app/assets/bastion/incubator/views/alch-confirm.html
6
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
7
+ msgid "Yes"
8
+ msgstr ""
9
+
10
+ #: app/assets/bastion/incubator/views/alch-confirm-modal.html
11
+ #: app/assets/bastion/incubator/views/alch-confirm.html
12
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
13
+ msgid "No"
14
+ msgstr ""
15
+
16
+ #: app/assets/bastion/incubator/views/alch-edit-add-item.html
17
+ msgid "Add New Item"
18
+ msgstr ""
19
+
20
+ #: app/assets/bastion/incubator/views/alch-edit-add-item.html
21
+ #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
22
+ #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
23
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
24
+ msgid "Working"
25
+ msgstr ""
26
+
27
+ #: app/assets/bastion/incubator/views/alch-edit-add-item.html
28
+ #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
29
+ msgid "Add"
30
+ msgstr ""
31
+
32
+ #: app/assets/bastion/incubator/views/alch-edit-add-item.html
33
+ msgid "Key"
34
+ msgstr ""
35
+
36
+ #: app/assets/bastion/incubator/views/alch-edit-add-item.html
37
+ msgid "Value"
38
+ msgstr ""
39
+
40
+ #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
41
+ #: app/assets/bastion/systems/content/views/system-packages.html
42
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
43
+ msgid "Remove"
44
+ msgstr ""
45
+
46
+ #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
47
+ #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
48
+ #: app/assets/bastion/products/views/discovery.html
49
+ #: app/assets/bastion/products/views/new-form.html
50
+ #: app/assets/bastion/providers/views/new.html
51
+ #: app/assets/bastion/repositories/views/new.html
52
+ msgid "Cancel"
53
+ msgstr ""
54
+
55
+ #: app/assets/bastion/incubator/views/alch-edit-multiselect.html
56
+ msgid "Existing Items"
57
+ msgstr ""
58
+
59
+ #: app/assets/bastion/incubator/views/alch-edit-multiselect.html
60
+ #: app/assets/bastion/products/views/discovery.html
61
+ #: app/assets/bastion/products/views/product-repositories.html
62
+ #: app/assets/bastion/systems/content/views/system-errata.html
63
+ #: app/assets/bastion/systems/content/views/system-packages.html
64
+ #: app/assets/bastion/systems/details/views/system-info.html
65
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
66
+ msgid "Filter"
67
+ msgstr ""
68
+
69
+ #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
70
+ msgid "Save"
71
+ msgstr ""
72
+
73
+ #: app/assets/bastion/products/views/discovery.html
74
+ msgid "Discover"
75
+ msgstr ""
76
+
77
+ #: app/assets/bastion/products/views/discovery.html
78
+ msgid "Create Selected"
79
+ msgstr ""
80
+
81
+ #: app/assets/bastion/products/views/discovery.html
82
+ msgid "{{ discoveryTable.numSelected }} Selected"
83
+ msgstr ""
84
+
85
+ #: app/assets/bastion/products/views/discovery.html
86
+ #: app/assets/bastion/products/views/products.html
87
+ #: app/assets/bastion/systems/content/views/system-errata.html
88
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
89
+ #: app/assets/bastion/systems/views/systems.html
90
+ msgid "Deselect All"
91
+ msgstr ""
92
+
93
+ #: app/assets/bastion/products/views/discovery.html
94
+ msgid "Discovered URLs"
95
+ msgstr ""
96
+
97
+ #: app/assets/bastion/products/views/discovery.html
98
+ msgid "URL to discover"
99
+ msgstr ""
100
+
101
+ #: app/assets/bastion/products/views/discovery_base.html
102
+ msgid "Yum Repo Discovery"
103
+ msgstr ""
104
+
105
+ #: app/assets/bastion/products/views/discovery_base.html
106
+ #: app/assets/bastion/products/views/new.html
107
+ #: app/assets/bastion/products/views/product-details.html
108
+ #: app/assets/bastion/systems/details/views/system-details.html
109
+ #: app/assets/bastion/systems/views/bulk-actions.html
110
+ #: app/assets/bastion/systems/views/register.html
111
+ msgid "Close"
112
+ msgstr ""
113
+
114
+ #: app/assets/bastion/products/views/discovery_create.html
115
+ msgid "Existing Product:"
116
+ msgstr ""
117
+
118
+ #: app/assets/bastion/products/views/discovery_create.html
119
+ msgid "New Product:"
120
+ msgstr ""
121
+
122
+ #: app/assets/bastion/products/views/discovery_create.html
123
+ #: app/assets/bastion/products/views/new-form.html
124
+ #: app/assets/bastion/products/views/product-info.html
125
+ #: app/assets/bastion/products/views/product-repositories.html
126
+ #: app/assets/bastion/products/views/products-table-collapsed.html
127
+ #: app/assets/bastion/products/views/products-table-full.html
128
+ #: app/assets/bastion/providers/views/new.html
129
+ #: app/assets/bastion/repositories/views/new.html
130
+ #: app/assets/bastion/repositories/views/repository-info.html
131
+ #: app/assets/bastion/systems/details/views/system-info.html
132
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
133
+ #: app/assets/bastion/systems/views/systems-table-collapsed.html
134
+ #: app/assets/bastion/systems/views/systems-table-full.html
135
+ msgid "Name"
136
+ msgstr ""
137
+
138
+ #: app/assets/bastion/products/views/discovery_create.html
139
+ #: app/assets/bastion/products/views/new-form.html
140
+ #: app/assets/bastion/products/views/product-info.html
141
+ #: app/assets/bastion/repositories/views/new.html
142
+ #: app/assets/bastion/repositories/views/repository-info.html
143
+ msgid "Label"
144
+ msgstr ""
145
+
146
+ #: app/assets/bastion/products/views/discovery_create.html
147
+ #: app/assets/bastion/products/views/new-form.html
148
+ #: app/assets/bastion/products/views/product-info.html
149
+ #: app/assets/bastion/products/views/products-table-full.html
150
+ msgid "Provider"
151
+ msgstr ""
152
+
153
+ #: app/assets/bastion/products/views/discovery_create.html
154
+ msgid "GPG Key:"
155
+ msgstr ""
156
+
157
+ #: app/assets/bastion/products/views/discovery_create.html
158
+ msgid "Options"
159
+ msgstr ""
160
+
161
+ #: app/assets/bastion/products/views/discovery_create.html
162
+ msgid "Serve via HTTP"
163
+ msgstr ""
164
+
165
+ #: app/assets/bastion/products/views/discovery_create.html
166
+ msgid "Selected URLs"
167
+ msgstr ""
168
+
169
+ #: app/assets/bastion/products/views/discovery_create.html
170
+ #: app/assets/bastion/products/views/new-form.html
171
+ #: app/assets/bastion/providers/views/new.html
172
+ #: app/assets/bastion/repositories/views/new.html
173
+ msgid "Create"
174
+ msgstr ""
175
+
176
+ #: app/assets/bastion/products/views/discovery_create.html
177
+ msgid "Product Selection"
178
+ msgstr ""
179
+
180
+ #: app/assets/bastion/products/views/discovery_create.html
181
+ msgid "Create Repositories within:"
182
+ msgstr ""
183
+
184
+ #: app/assets/bastion/products/views/discovery_create.html
185
+ msgid "Back To Repository Selection"
186
+ msgstr ""
187
+
188
+ #: app/assets/bastion/products/views/new-form.html
189
+ msgid "+ New Provider"
190
+ msgstr ""
191
+
192
+ #: app/assets/bastion/products/views/new-form.html
193
+ #: app/assets/bastion/products/views/product-info.html
194
+ #: app/assets/bastion/repositories/views/new.html
195
+ #: app/assets/bastion/repositories/views/repository-info.html
196
+ msgid "GPG Key"
197
+ msgstr ""
198
+
199
+ #: app/assets/bastion/products/views/new-form.html
200
+ #: app/assets/bastion/products/views/product-info.html
201
+ #: app/assets/bastion/systems/content/views/errata-details.html
202
+ #: app/assets/bastion/systems/details/views/system-info.html
203
+ msgid "Description"
204
+ msgstr ""
205
+
206
+ #: app/assets/bastion/products/views/new-form.html
207
+ #: app/assets/bastion/repositories/views/new.html
208
+ msgid "Creating..."
209
+ msgstr ""
210
+
211
+ #: app/assets/bastion/products/views/new.html
212
+ #: app/assets/bastion/products/views/products.html
213
+ msgid "New Product"
214
+ msgstr ""
215
+
216
+ #: app/assets/bastion/products/views/product-details.html
217
+ msgid "Product {{ product.name }}"
218
+ msgstr ""
219
+
220
+ #: app/assets/bastion/products/views/product-details.html
221
+ msgid "Remove Product"
222
+ msgstr ""
223
+
224
+ #: app/assets/bastion/products/views/product-details.html
225
+ msgid "Are you sure you want to remove product \"{{ product.name }}\"?"
226
+ msgstr ""
227
+
228
+ #: app/assets/bastion/products/views/product-details.html
229
+ #: app/assets/bastion/systems/details/views/system-details.html
230
+ #: app/assets/bastion/systems/details/views/system-info.html
231
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
232
+ msgid "Details"
233
+ msgstr ""
234
+
235
+ #: app/assets/bastion/products/views/product-details.html
236
+ #: app/assets/bastion/products/views/products-table-full.html
237
+ msgid "Repositories"
238
+ msgstr ""
239
+
240
+ #: app/assets/bastion/products/views/product-info.html
241
+ #: app/assets/bastion/repositories/views/repository-info.html
242
+ #: app/assets/bastion/systems/details/views/system-info.html
243
+ msgid "Basic Information"
244
+ msgstr ""
245
+
246
+ #: app/assets/bastion/products/views/product-repositories.html
247
+ msgid "Create Repository"
248
+ msgstr ""
249
+
250
+ #: app/assets/bastion/products/views/product-repositories.html
251
+ #: app/assets/bastion/repositories/views/new.html
252
+ #: app/assets/bastion/repositories/views/repository-info.html
253
+ #: app/assets/bastion/systems/content/views/errata-details.html
254
+ #: app/assets/bastion/systems/content/views/system-errata.html
255
+ msgid "Type"
256
+ msgstr ""
257
+
258
+ #: app/assets/bastion/products/views/product-repositories.html
259
+ #: app/assets/bastion/repositories/views/repository-info.html
260
+ msgid "Last Sync"
261
+ msgstr ""
262
+
263
+ #: app/assets/bastion/products/views/product-repositories.html
264
+ #: app/assets/bastion/repositories/views/repository-info.html
265
+ msgid "Sync State"
266
+ msgstr ""
267
+
268
+ #: app/assets/bastion/products/views/product-repositories.html
269
+ #: app/assets/bastion/repositories/views/repository-info.html
270
+ #: app/assets/bastion/systems/content/views/errata-details.html
271
+ #: app/assets/bastion/systems/details/views/system-details.html
272
+ msgid "Packages"
273
+ msgstr ""
274
+
275
+ #: app/assets/bastion/products/views/product-repositories.html
276
+ #: app/assets/bastion/repositories/views/repository-info.html
277
+ #: app/assets/bastion/systems/details/views/system-details.html
278
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
279
+ msgid "Errata"
280
+ msgstr ""
281
+
282
+ #: app/assets/bastion/products/views/product-repositories.html
283
+ #: app/assets/bastion/repositories/views/repository-info.html
284
+ msgid "Puppet Modules"
285
+ msgstr ""
286
+
287
+ #: app/assets/bastion/products/views/product-repositories.html
288
+ msgid "N/A"
289
+ msgstr ""
290
+
291
+ #: app/assets/bastion/products/views/products-table-full.html
292
+ msgid "Organization"
293
+ msgstr ""
294
+
295
+ #: app/assets/bastion/products/views/products.html
296
+ msgid "Showing {{ table.resource.offset }} of {{ table.resource.subtotal }} ({{ table.resource.total }} Total) Products"
297
+ msgstr ""
298
+
299
+ #: app/assets/bastion/products/views/products.html
300
+ #: app/assets/bastion/systems/views/systems.html
301
+ msgid "{{ table.numSelected }} Selected"
302
+ msgstr ""
303
+
304
+ #: app/assets/bastion/products/views/products.html
305
+ #: app/assets/bastion/systems/details/views/system-events.html
306
+ msgid "Search..."
307
+ msgstr ""
308
+
309
+ #: app/assets/bastion/products/views/products.html
310
+ msgid "Repo Discovery"
311
+ msgstr ""
312
+
313
+ #: app/assets/bastion/products/views/products.html
314
+ msgid "Loading..."
315
+ msgstr ""
316
+
317
+ #: app/assets/bastion/providers/views/new.html
318
+ msgid "Add New Provider"
319
+ msgstr ""
320
+
321
+ #: app/assets/bastion/providers/views/new.html
322
+ msgid "Back to Product Creation"
323
+ msgstr ""
324
+
325
+ #: app/assets/bastion/repositories/views/new.html
326
+ #: app/assets/bastion/repositories/views/repository-info.html
327
+ msgid "URL"
328
+ msgstr ""
329
+
330
+ #: app/assets/bastion/repositories/views/new.html
331
+ msgid "Publish via HTTP"
332
+ msgstr ""
333
+
334
+ #: app/assets/bastion/repositories/views/new.html
335
+ msgid "Add New Repository"
336
+ msgstr ""
337
+
338
+ #: app/assets/bastion/repositories/views/repository-info.html
339
+ msgid "Are you sure you want to remove repository \"{{repository.name}}\"?"
340
+ msgstr ""
341
+
342
+ #: app/assets/bastion/repositories/views/repository-info.html
343
+ msgid "Protected"
344
+ msgstr ""
345
+
346
+ #: app/assets/bastion/repositories/views/repository-info.html
347
+ msgid "Published At"
348
+ msgstr ""
349
+
350
+ #: app/assets/bastion/repositories/views/repository-info.html
351
+ msgid "Sync Status"
352
+ msgstr ""
353
+
354
+ #: app/assets/bastion/repositories/views/repository-info.html
355
+ msgid "Content Counts"
356
+ msgstr ""
357
+
358
+ #: app/assets/bastion/repositories/views/repository-info.html
359
+ msgid "Content Type"
360
+ msgstr ""
361
+
362
+ #: app/assets/bastion/repositories/views/repository-info.html
363
+ msgid "Package Groups"
364
+ msgstr ""
365
+
366
+ #: app/assets/bastion/repositories/views/repository-info.html
367
+ msgid "Upload Puppet Module"
368
+ msgstr ""
369
+
370
+ #: app/assets/bastion/repositories/views/repository-info.html
371
+ msgid "Puppet module successfully uploaded."
372
+ msgstr ""
373
+
374
+ #: app/assets/bastion/repositories/views/repository-info.html
375
+ msgid "Uploading..."
376
+ msgstr ""
377
+
378
+ #: app/assets/bastion/repositories/views/repository-info.html
379
+ msgid "Upload"
380
+ msgstr ""
381
+
382
+ #: app/assets/bastion/repositories/views/repository-info.html
383
+ msgid "Back to Repository List"
384
+ msgstr ""
385
+
386
+ #: app/assets/bastion/repositories/views/repository-info.html
387
+ msgid "Remove Repository"
388
+ msgstr ""
389
+
390
+ #: app/assets/bastion/repositories/views/repository-info.html
391
+ msgid "There was an error during module upload:"
392
+ msgstr ""
393
+
394
+ #: app/assets/bastion/systems/content/views/errata-details.html
395
+ #: app/assets/bastion/systems/content/views/system-errata.html
396
+ msgid "Title"
397
+ msgstr ""
398
+
399
+ #: app/assets/bastion/systems/content/views/errata-details.html
400
+ #: app/assets/bastion/systems/content/views/system-errata.html
401
+ msgid "Issued"
402
+ msgstr ""
403
+
404
+ #: app/assets/bastion/systems/content/views/errata-details.html
405
+ msgid "Updated"
406
+ msgstr ""
407
+
408
+ #: app/assets/bastion/systems/content/views/errata-details.html
409
+ msgid "Reboot Suggested"
410
+ msgstr ""
411
+
412
+ #: app/assets/bastion/systems/content/views/errata-details.html
413
+ msgid "Solution"
414
+ msgstr ""
415
+
416
+ #: app/assets/bastion/systems/content/views/errata-details.html
417
+ msgid "Back To Errata List"
418
+ msgstr ""
419
+
420
+ #: app/assets/bastion/systems/content/views/system-errata.html
421
+ msgid "Applicable Errata"
422
+ msgstr ""
423
+
424
+ #: app/assets/bastion/systems/content/views/system-errata.html
425
+ msgid "Showing {{ errataTable.resource.total }} Errata"
426
+ msgstr ""
427
+
428
+ #: app/assets/bastion/systems/content/views/system-errata.html
429
+ msgid "Apply Selected"
430
+ msgstr ""
431
+
432
+ #: app/assets/bastion/systems/content/views/system-errata.html
433
+ msgid "{{ errataTable.numSelected }} Selected"
434
+ msgstr ""
435
+
436
+ #: app/assets/bastion/systems/content/views/system-errata.html
437
+ msgid "Id"
438
+ msgstr ""
439
+
440
+ #: app/assets/bastion/systems/content/views/system-packages.html
441
+ msgid "Package Actions"
442
+ msgstr ""
443
+
444
+ #: app/assets/bastion/systems/content/views/system-packages.html
445
+ msgid "Package Install"
446
+ msgstr ""
447
+
448
+ #: app/assets/bastion/systems/content/views/system-packages.html
449
+ msgid "Package Update"
450
+ msgstr ""
451
+
452
+ #: app/assets/bastion/systems/content/views/system-packages.html
453
+ msgid "Package Remove"
454
+ msgstr ""
455
+
456
+ #: app/assets/bastion/systems/content/views/system-packages.html
457
+ msgid "Group Install"
458
+ msgstr ""
459
+
460
+ #: app/assets/bastion/systems/content/views/system-packages.html
461
+ msgid "Group Remove"
462
+ msgstr ""
463
+
464
+ #: app/assets/bastion/systems/content/views/system-packages.html
465
+ msgid "Installed Packages"
466
+ msgstr ""
467
+
468
+ #: app/assets/bastion/systems/content/views/system-packages.html
469
+ msgid "Showing {{ currentPackagesTable.resource.total }} Packages"
470
+ msgstr ""
471
+
472
+ #: app/assets/bastion/systems/content/views/system-packages.html
473
+ msgid "Update All"
474
+ msgstr ""
475
+
476
+ #: app/assets/bastion/systems/content/views/system-packages.html
477
+ msgid "Installed Package"
478
+ msgstr ""
479
+
480
+ #: app/assets/bastion/systems/content/views/system-packages.html
481
+ msgid "{{ package.removeTask.affected_units }} package removed"
482
+ msgstr ""
483
+
484
+ #: app/assets/bastion/systems/content/views/system-packages.html
485
+ msgid "{{ package.removeTask.affected_units }} packages removed"
486
+ msgstr ""
487
+
488
+ #: app/assets/bastion/systems/content/views/system-packages.html
489
+ msgid "Package removal failed"
490
+ msgstr ""
491
+
492
+ #: app/assets/bastion/systems/content/views/system-packages.html
493
+ msgid "Package/Group Name"
494
+ msgstr ""
495
+
496
+ #: app/assets/bastion/systems/content/views/system-packages.html
497
+ #: app/assets/bastion/systems/details/views/system-events.html
498
+ msgid "Failed"
499
+ msgstr ""
500
+
501
+ #: app/assets/bastion/systems/content/views/system-packages.html
502
+ #: app/assets/bastion/systems/details/views/system-events.html
503
+ msgid "Success"
504
+ msgstr ""
505
+
506
+ #: app/assets/bastion/systems/details/views/system-details.html
507
+ msgid "System {{ system.name }}"
508
+ msgstr ""
509
+
510
+ #: app/assets/bastion/systems/details/views/system-details.html
511
+ msgid "Remove System"
512
+ msgstr ""
513
+
514
+ #: app/assets/bastion/systems/details/views/system-details.html
515
+ msgid "Are you sure you want to remove system {{ system.name }}?"
516
+ msgstr ""
517
+
518
+ #: app/assets/bastion/systems/details/views/system-details.html
519
+ #: app/assets/bastion/systems/details/views/system-info.html
520
+ msgid "Subscriptions"
521
+ msgstr ""
522
+
523
+ #: app/assets/bastion/systems/details/views/system-details.html
524
+ msgid "Events"
525
+ msgstr ""
526
+
527
+ #: app/assets/bastion/systems/details/views/system-event-details.html
528
+ msgid "Summary"
529
+ msgstr ""
530
+
531
+ #: app/assets/bastion/systems/details/views/system-event-details.html
532
+ msgid "State"
533
+ msgstr ""
534
+
535
+ #: app/assets/bastion/systems/details/views/system-event-details.html
536
+ msgid "Started At"
537
+ msgstr ""
538
+
539
+ #: app/assets/bastion/systems/details/views/system-event-details.html
540
+ msgid "Request"
541
+ msgstr ""
542
+
543
+ #: app/assets/bastion/systems/details/views/system-event-details.html
544
+ msgid "Parameters"
545
+ msgstr ""
546
+
547
+ #: app/assets/bastion/systems/details/views/system-event-details.html
548
+ msgid "Result"
549
+ msgstr ""
550
+
551
+ #: app/assets/bastion/systems/details/views/system-event-details.html
552
+ msgid "Event Details"
553
+ msgstr ""
554
+
555
+ #: app/assets/bastion/systems/details/views/system-event-details.html
556
+ msgid "Back"
557
+ msgstr ""
558
+
559
+ #: app/assets/bastion/systems/details/views/system-events.html
560
+ msgid "System Events"
561
+ msgstr ""
562
+
563
+ #: app/assets/bastion/systems/details/views/system-events.html
564
+ msgid "Showing {{ eventsTable.rows.length }} of {{ eventsTable.resource.subtotal }} ({{ eventsTable.resource.total }} Total) Events"
565
+ msgstr ""
566
+
567
+ #: app/assets/bastion/systems/details/views/system-events.html
568
+ msgid "Status"
569
+ msgstr ""
570
+
571
+ #: app/assets/bastion/systems/details/views/system-events.html
572
+ msgid "Event"
573
+ msgstr ""
574
+
575
+ #: app/assets/bastion/systems/details/views/system-events.html
576
+ msgid "User"
577
+ msgstr ""
578
+
579
+ #: app/assets/bastion/systems/details/views/system-events.html
580
+ msgid "Date"
581
+ msgstr ""
582
+
583
+ #: app/assets/bastion/systems/details/views/system-events.html
584
+ msgid "Running"
585
+ msgstr ""
586
+
587
+ #: app/assets/bastion/systems/details/views/system-info.html
588
+ msgid "Save successful"
589
+ msgstr ""
590
+
591
+ #: app/assets/bastion/systems/details/views/system-info.html
592
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
593
+ msgid "Error occurred saving:"
594
+ msgstr ""
595
+
596
+ #: app/assets/bastion/systems/details/views/system-info.html
597
+ msgid "UUID"
598
+ msgstr ""
599
+
600
+ #: app/assets/bastion/systems/details/views/system-info.html
601
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
602
+ #: app/assets/bastion/systems/views/systems-table-full.html
603
+ msgid "Subscription Status"
604
+ msgstr ""
605
+
606
+ #: app/assets/bastion/systems/details/views/system-info.html
607
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
608
+ msgid "Auto-Attach"
609
+ msgstr ""
610
+
611
+ #: app/assets/bastion/systems/details/views/system-info.html
612
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
613
+ msgid "Service Level"
614
+ msgstr ""
615
+
616
+ #: app/assets/bastion/systems/details/views/system-info.html
617
+ msgid "Activation Key"
618
+ msgid_plural "Activation Keys"
619
+ msgstr[0] ""
620
+ msgstr[1] ""
621
+
622
+ #: app/assets/bastion/systems/details/views/system-info.html
623
+ msgid "None"
624
+ msgstr ""
625
+
626
+ #: app/assets/bastion/systems/details/views/system-info.html
627
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
628
+ msgid "System Properties"
629
+ msgstr ""
630
+
631
+ #: app/assets/bastion/systems/details/views/system-info.html
632
+ #: app/assets/bastion/systems/views/systems-table-full.html
633
+ msgid "OS"
634
+ msgstr ""
635
+
636
+ #: app/assets/bastion/systems/details/views/system-info.html
637
+ msgid "Release"
638
+ msgstr ""
639
+
640
+ #: app/assets/bastion/systems/details/views/system-info.html
641
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
642
+ msgid "System Groups"
643
+ msgstr ""
644
+
645
+ #: app/assets/bastion/systems/details/views/system-info.html
646
+ msgid "Arch"
647
+ msgstr ""
648
+
649
+ #: app/assets/bastion/systems/details/views/system-info.html
650
+ msgid "Number of CPUs"
651
+ msgstr ""
652
+
653
+ #: app/assets/bastion/systems/details/views/system-info.html
654
+ msgid "Sockets"
655
+ msgstr ""
656
+
657
+ #: app/assets/bastion/systems/details/views/system-info.html
658
+ msgid "Cores per Socket"
659
+ msgstr ""
660
+
661
+ #: app/assets/bastion/systems/details/views/system-info.html
662
+ msgid "RAM"
663
+ msgstr ""
664
+
665
+ #: app/assets/bastion/systems/details/views/system-info.html
666
+ msgid "Installed Products"
667
+ msgstr ""
668
+
669
+ #: app/assets/bastion/systems/details/views/system-info.html
670
+ msgid "You do not have any Installed Products"
671
+ msgstr ""
672
+
673
+ #: app/assets/bastion/systems/details/views/system-info.html
674
+ msgid "Product"
675
+ msgstr ""
676
+
677
+ #: app/assets/bastion/systems/details/views/system-info.html
678
+ msgid "System Content"
679
+ msgstr ""
680
+
681
+ #: app/assets/bastion/systems/details/views/system-info.html
682
+ msgid "Release Version"
683
+ msgstr ""
684
+
685
+ #: app/assets/bastion/systems/details/views/system-info.html
686
+ #: app/assets/bastion/systems/views/systems-table-full.html
687
+ msgid "Content View"
688
+ msgstr ""
689
+
690
+ #: app/assets/bastion/systems/details/views/system-info.html
691
+ msgid "You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection."
692
+ msgstr ""
693
+
694
+ #: app/assets/bastion/systems/details/views/system-info.html
695
+ #: app/assets/bastion/systems/views/systems-table-full.html
696
+ msgid "Environment"
697
+ msgstr ""
698
+
699
+ #: app/assets/bastion/systems/details/views/system-info.html
700
+ msgid "System Status"
701
+ msgstr ""
702
+
703
+ #: app/assets/bastion/systems/details/views/system-info.html
704
+ #: app/assets/bastion/systems/views/systems-table-full.html
705
+ msgid "Registered"
706
+ msgstr ""
707
+
708
+ #: app/assets/bastion/systems/details/views/system-info.html
709
+ msgid "Checkin"
710
+ msgstr ""
711
+
712
+ #: app/assets/bastion/systems/details/views/system-info.html
713
+ msgid "Networking"
714
+ msgstr ""
715
+
716
+ #: app/assets/bastion/systems/details/views/system-info.html
717
+ msgid "Hostname"
718
+ msgstr ""
719
+
720
+ #: app/assets/bastion/systems/details/views/system-info.html
721
+ msgid "IPv4 Address"
722
+ msgstr ""
723
+
724
+ #: app/assets/bastion/systems/details/views/system-info.html
725
+ msgid "IPv6 Address"
726
+ msgstr ""
727
+
728
+ #: app/assets/bastion/systems/details/views/system-info.html
729
+ msgid "Interfaces"
730
+ msgstr ""
731
+
732
+ #: app/assets/bastion/systems/details/views/system-info.html
733
+ msgid "Custom Information"
734
+ msgstr ""
735
+
736
+ #: app/assets/bastion/systems/details/views/system-info.html
737
+ msgid "You don't have any custom information, add some above"
738
+ msgstr ""
739
+
740
+ #: app/assets/bastion/systems/details/views/system-info.html
741
+ msgid "Exsting Items"
742
+ msgstr ""
743
+
744
+ #: app/assets/bastion/systems/details/views/system-info.html
745
+ msgid "Advanced Information"
746
+ msgstr ""
747
+
748
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
749
+ msgid "Update successful"
750
+ msgstr ""
751
+
752
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
753
+ msgid "Subscription Status Details"
754
+ msgstr ""
755
+
756
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
757
+ msgid "Current Subscription(s)"
758
+ msgstr ""
759
+
760
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
761
+ msgid "Remove Subscriptions"
762
+ msgstr ""
763
+
764
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
765
+ msgid "{{ currentSubscriptionsTable.numSelected }} Selected"
766
+ msgstr ""
767
+
768
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
769
+ msgid "This system does not have any current subscriptions"
770
+ msgstr ""
771
+
772
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
773
+ msgid "SLA"
774
+ msgstr ""
775
+
776
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
777
+ msgid "Contract"
778
+ msgstr ""
779
+
780
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
781
+ msgid "Quantity"
782
+ msgstr ""
783
+
784
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
785
+ msgid "Start Date"
786
+ msgstr ""
787
+
788
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
789
+ msgid "End Date"
790
+ msgstr ""
791
+
792
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
793
+ msgid "Available Subscription(s)"
794
+ msgstr ""
795
+
796
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
797
+ msgid "Attach Subscriptions"
798
+ msgstr ""
799
+
800
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
801
+ msgid "{{ availableSubscriptionsTable.numSelected }} Selected"
802
+ msgstr ""
803
+
804
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
805
+ msgid "Subscriptions match system"
806
+ msgstr ""
807
+
808
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
809
+ msgid "Subscriptions match installed software"
810
+ msgstr ""
811
+
812
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
813
+ msgid "No overlap with current"
814
+ msgstr ""
815
+
816
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
817
+ msgid "There are no available subscriptions"
818
+ msgstr ""
819
+
820
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
821
+ msgid "Available"
822
+ msgstr ""
823
+
824
+ #: app/assets/bastion/systems/details/views/system-subscriptions.html
825
+ msgid "Run Auto-Attach"
826
+ msgstr ""
827
+
828
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
829
+ #: app/assets/bastion/systems/views/bulk-actions.html
830
+ msgid "Error occurred:"
831
+ msgstr ""
832
+
833
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
834
+ msgid "Are you sure you want to add the {{ getSelectedSystemIds().length }} systems(s) selected to the system group(s) chosen?"
835
+ msgstr ""
836
+
837
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
838
+ msgid "Are you sure you want to remove the {{ getSelectedSystemIds().length }} systems(s) selected to the system group(s) chosen?"
839
+ msgstr ""
840
+
841
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
842
+ msgid "System Content Management"
843
+ msgstr ""
844
+
845
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
846
+ msgid "Package"
847
+ msgstr ""
848
+
849
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
850
+ msgid "Package Group"
851
+ msgstr ""
852
+
853
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
854
+ msgid "Install"
855
+ msgstr ""
856
+
857
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
858
+ msgid "Update"
859
+ msgstr ""
860
+
861
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
862
+ msgid "Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?"
863
+ msgstr ""
864
+
865
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
866
+ msgid "Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?"
867
+ msgstr ""
868
+
869
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
870
+ msgid "Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?"
871
+ msgstr ""
872
+
873
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
874
+ msgid "System Subscriptions"
875
+ msgstr ""
876
+
877
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
878
+ msgid "Auto-attach available subscriptions to all systems"
879
+ msgstr ""
880
+
881
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
882
+ msgid "Are you sure you want to auto-attach available subscriptions to all {{ table.resource.total }} systems?"
883
+ msgstr ""
884
+
885
+ #: app/assets/bastion/systems/views/bulk-actions-list.html
886
+ msgid "Click to select..."
887
+ msgstr ""
888
+
889
+ #: app/assets/bastion/systems/views/bulk-actions.html
890
+ #: app/assets/bastion/systems/views/systems.html
891
+ msgid "Bulk Actions"
892
+ msgstr ""
893
+
894
+ #: app/assets/bastion/systems/views/bulk-actions.html
895
+ msgid "Remove Systems"
896
+ msgstr ""
897
+
898
+ #: app/assets/bastion/systems/views/bulk-actions.html
899
+ msgid "Are you sure you want to remove the {{ getSelectedSystemIds().length }} systems(s) selected?"
900
+ msgstr ""
901
+
902
+ #: app/assets/bastion/systems/views/bulk-actions.html
903
+ msgid "Removing Systems"
904
+ msgstr ""
905
+
906
+ #: app/assets/bastion/systems/views/register.html
907
+ msgid "System Registration"
908
+ msgstr ""
909
+
910
+ #: app/assets/bastion/systems/views/register.html
911
+ msgid "To register a system to this server, run the following commands within a console on the client system."
912
+ msgstr ""
913
+
914
+ #: app/assets/bastion/systems/views/register.html
915
+ msgid "Install the pre-built bootstrap RPM. This will configure the system to use this server."
916
+ msgstr ""
917
+
918
+ #: app/assets/bastion/systems/views/register.html
919
+ msgid "Use Subscription Manager to register."
920
+ msgstr ""
921
+
922
+ #: app/assets/bastion/systems/views/register.html
923
+ msgid "Consuming Content From a Node"
924
+ msgstr ""
925
+
926
+ #: app/assets/bastion/systems/views/register.html
927
+ msgid "Selected Node:"
928
+ msgstr ""
929
+
930
+ #: app/assets/bastion/systems/views/systems-table-full.html
931
+ msgid "Last Checkin"
932
+ msgstr ""
933
+
934
+ #: app/assets/bastion/systems/views/systems.html
935
+ msgid "Systems"
936
+ msgstr ""
937
+
938
+ #: app/assets/bastion/systems/views/systems.html
939
+ msgid "Showing {{ table.rows.length }} of {{ table.resource.subtotal }} ({{ table.resource.total }} Total) Systems"
940
+ msgstr ""
941
+
942
+ #: app/assets/bastion/systems/views/systems.html
943
+ msgid "Register System"
944
+ msgstr ""
945
+
946
+ #: app/assets/bastion/systems/content/system-packages.controller.js
947
+ msgid "Error starting task"
948
+ msgstr ""
949
+
950
+ #: app/assets/bastion/systems/details/system-subscriptions.controller.js
951
+ msgid "Unlimited"
952
+ msgstr ""
953
+
954
+ #: app/assets/bastion/systems/systems-bulk-action.controller.js
955
+ msgid "Enter Package Name(s)..."
956
+ msgstr ""
957
+
958
+ #: app/assets/bastion/systems/systems-bulk-action.controller.js
959
+ msgid "Enter Package Group Name(s)..."
960
+ msgstr ""
961
+
962
+ #: app/assets/bastion/systems/systems-bulk-action.controller.js
963
+ msgid "Enter Errata ID(s)..."
964
+ msgstr ""
965
+
966
+ #: app/assets/bastion/systems/systems.controller.js
967
+ msgid "System %s has been deleted."
968
+ msgstr ""