jruby_activiti 1.2.5 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (317) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/.ruby-version +1 -1
  4. data/CHANGELOG +6 -0
  5. data/Jarfile +5 -0
  6. data/Jarfile.lock +52 -13
  7. data/README.md +21 -9
  8. data/java/build.md +3 -0
  9. data/java/mapping.md +20 -0
  10. data/java/pom.xml +30 -0
  11. data/java/src/main/java/jrubyactiviti/Modeler.java +95 -0
  12. data/java/src/main/java/jrubyactiviti/ProcessDiagram.java +491 -0
  13. data/java/src/main/java/jrubyactiviti/ProcessInstanceHighlights.java +237 -0
  14. data/java/src/main/java/jrubyactiviti/StencilsetResource.java +16 -0
  15. data/java/src/main/resources/stencilset.json +1339 -0
  16. data/jruby_activiti.gemspec +3 -2
  17. data/lib/generators/jruby_activiti/install_generator.rb +4 -0
  18. data/lib/jar/jrubyactiviti-2.0.jar +0 -0
  19. data/lib/jruby_activiti/version.rb +1 -1
  20. data/lib/jruby_activiti/web.rb +81 -0
  21. data/lib/jruby_activiti.rb +28 -20
  22. data/test/{base_test.rb → activiti_test.rb} +1 -3
  23. data/test/instance_hights_test.rb +18 -0
  24. data/test/modeler_test.rb +35 -0
  25. data/test/process_diagram_test.rb +33 -0
  26. data/test/resources/model_init_editor_source.json +1 -0
  27. data/test/resources/model_json_xml.json +278 -0
  28. data/test/resources/model_svg_xml.xml +66 -0
  29. data/test/stencilset_test.rb +7 -0
  30. data/test/test_helper.rb +2 -0
  31. data/web/public/diagram-viewer/images/bg.png +0 -0
  32. data/web/public/diagram-viewer/images/breadcrumbs.png +0 -0
  33. data/web/public/diagram-viewer/images/checker-bg.png +0 -0
  34. data/web/public/diagram-viewer/images/deployer/blue/message_catch.png +0 -0
  35. data/web/public/diagram-viewer/images/deployer/business_rule.png +0 -0
  36. data/web/public/diagram-viewer/images/deployer/error_catch.png +0 -0
  37. data/web/public/diagram-viewer/images/deployer/error_throw.png +0 -0
  38. data/web/public/diagram-viewer/images/deployer/manual.png +0 -0
  39. data/web/public/diagram-viewer/images/deployer/message_catch.png +0 -0
  40. data/web/public/diagram-viewer/images/deployer/message_throw.png +0 -0
  41. data/web/public/diagram-viewer/images/deployer/receive.png +0 -0
  42. data/web/public/diagram-viewer/images/deployer/script.png +0 -0
  43. data/web/public/diagram-viewer/images/deployer/send.png +0 -0
  44. data/web/public/diagram-viewer/images/deployer/service.png +0 -0
  45. data/web/public/diagram-viewer/images/deployer/signal_catch.png +0 -0
  46. data/web/public/diagram-viewer/images/deployer/signal_throw.png +0 -0
  47. data/web/public/diagram-viewer/images/deployer/timer.png +0 -0
  48. data/web/public/diagram-viewer/images/deployer/user.png +0 -0
  49. data/web/public/diagram-viewer/index.html +130 -0
  50. data/web/public/diagram-viewer/js/ActivitiRest.js +74 -0
  51. data/web/public/diagram-viewer/js/ActivityImpl.js +1 -0
  52. data/web/public/diagram-viewer/js/Color.js +603 -0
  53. data/web/public/diagram-viewer/js/LineBreakMeasurer.js +270 -0
  54. data/web/public/diagram-viewer/js/Polyline.js +387 -0
  55. data/web/public/diagram-viewer/js/ProcessDiagramCanvas.js +2172 -0
  56. data/web/public/diagram-viewer/js/ProcessDiagramGenerator.js +1087 -0
  57. data/web/public/diagram-viewer/js/jquery/jquery.asyncqueue.js +125 -0
  58. data/web/public/diagram-viewer/js/jquery/jquery.js +9266 -0
  59. data/web/public/diagram-viewer/js/jquery/jquery.progressbar.js +131 -0
  60. data/web/public/diagram-viewer/js/jstools.js +23 -0
  61. data/web/public/diagram-viewer/js/raphael.2.1.1.js +10 -0
  62. data/web/public/diagram-viewer/js/raphael.js +10 -0
  63. data/web/public/diagram-viewer/js/raphael_uncompressed.js +5815 -0
  64. data/web/public/diagram-viewer/js/textlayout.js +441 -0
  65. data/web/public/diagram-viewer/style.css +1 -0
  66. data/web/public/editor-app/app-cfg.js +25 -0
  67. data/web/public/editor-app/app.js +432 -0
  68. data/web/public/editor-app/configuration/properties/assignment-display-template.html +4 -0
  69. data/web/public/editor-app/configuration/properties/assignment-popup.html +44 -0
  70. data/web/public/editor-app/configuration/properties/assignment-write-template.html +4 -0
  71. data/web/public/editor-app/configuration/properties/boolean-property-template.html +4 -0
  72. data/web/public/editor-app/configuration/properties/condition-expression-display-template.html +2 -0
  73. data/web/public/editor-app/configuration/properties/condition-expression-popup.html +29 -0
  74. data/web/public/editor-app/configuration/properties/condition-expression-write-template.html +4 -0
  75. data/web/public/editor-app/configuration/properties/default-value-display-template.html +4 -0
  76. data/web/public/editor-app/configuration/properties/event-listeners-display-template.html +3 -0
  77. data/web/public/editor-app/configuration/properties/event-listeners-popup.html +115 -0
  78. data/web/public/editor-app/configuration/properties/event-listeners-write-template.html +4 -0
  79. data/web/public/editor-app/configuration/properties/execution-listeners-display-template.html +3 -0
  80. data/web/public/editor-app/configuration/properties/execution-listeners-popup.html +101 -0
  81. data/web/public/editor-app/configuration/properties/execution-listeners-write-template.html +4 -0
  82. data/web/public/editor-app/configuration/properties/feedback-popup.html +17 -0
  83. data/web/public/editor-app/configuration/properties/fields-display-template.html +3 -0
  84. data/web/public/editor-app/configuration/properties/fields-popup.html +61 -0
  85. data/web/public/editor-app/configuration/properties/fields-write-template.html +4 -0
  86. data/web/public/editor-app/configuration/properties/form-properties-display-template.html +3 -0
  87. data/web/public/editor-app/configuration/properties/form-properties-popup.html +93 -0
  88. data/web/public/editor-app/configuration/properties/form-properties-write-template.html +4 -0
  89. data/web/public/editor-app/configuration/properties/in-parameters-display-template.html +3 -0
  90. data/web/public/editor-app/configuration/properties/in-parameters-popup.html +53 -0
  91. data/web/public/editor-app/configuration/properties/in-parameters-write-template.html +4 -0
  92. data/web/public/editor-app/configuration/properties/message-definitions-display-template.html +2 -0
  93. data/web/public/editor-app/configuration/properties/message-definitions-popup.html +50 -0
  94. data/web/public/editor-app/configuration/properties/message-definitions-write-template.html +3 -0
  95. data/web/public/editor-app/configuration/properties/message-property-write-template.html +4 -0
  96. data/web/public/editor-app/configuration/properties/multiinstance-property-write-template.html +8 -0
  97. data/web/public/editor-app/configuration/properties/out-parameters-display-template.html +3 -0
  98. data/web/public/editor-app/configuration/properties/out-parameters-popup.html +53 -0
  99. data/web/public/editor-app/configuration/properties/out-parameters-write-template.html +4 -0
  100. data/web/public/editor-app/configuration/properties/sequenceflow-order-display-template.html +3 -0
  101. data/web/public/editor-app/configuration/properties/sequenceflow-order-popup.html +47 -0
  102. data/web/public/editor-app/configuration/properties/sequenceflow-order-write-template.html +4 -0
  103. data/web/public/editor-app/configuration/properties/signal-definitions-display-template.html +3 -0
  104. data/web/public/editor-app/configuration/properties/signal-definitions-popup.html +58 -0
  105. data/web/public/editor-app/configuration/properties/signal-definitions-write-template.html +4 -0
  106. data/web/public/editor-app/configuration/properties/signal-property-write-template.html +4 -0
  107. data/web/public/editor-app/configuration/properties/string-property-write-mode-template.html +8 -0
  108. data/web/public/editor-app/configuration/properties/subprocess-reference-display-template.html +3 -0
  109. data/web/public/editor-app/configuration/properties/subprocess-reference-popup.html +43 -0
  110. data/web/public/editor-app/configuration/properties/subprocess-reference-write-template.html +4 -0
  111. data/web/public/editor-app/configuration/properties/task-listeners-display-template.html +3 -0
  112. data/web/public/editor-app/configuration/properties/task-listeners-popup.html +102 -0
  113. data/web/public/editor-app/configuration/properties/task-listeners-write-template.html +4 -0
  114. data/web/public/editor-app/configuration/properties/text-popup.html +17 -0
  115. data/web/public/editor-app/configuration/properties/text-property-write-template.html +4 -0
  116. data/web/public/editor-app/configuration/properties-assignment-controller.js +150 -0
  117. data/web/public/editor-app/configuration/properties-condition-expression-controller.js +58 -0
  118. data/web/public/editor-app/configuration/properties-custom-controllers.js +18 -0
  119. data/web/public/editor-app/configuration/properties-default-controllers.js +115 -0
  120. data/web/public/editor-app/configuration/properties-event-listeners-controller.js +266 -0
  121. data/web/public/editor-app/configuration/properties-execution-listeners-controller.js +326 -0
  122. data/web/public/editor-app/configuration/properties-fields-controller.js +192 -0
  123. data/web/public/editor-app/configuration/properties-form-properties-controller.js +192 -0
  124. data/web/public/editor-app/configuration/properties-in-parameters-controller.js +158 -0
  125. data/web/public/editor-app/configuration/properties-message-definitions-controller.js +137 -0
  126. data/web/public/editor-app/configuration/properties-message-scope-controller.js +48 -0
  127. data/web/public/editor-app/configuration/properties-multiinstance-controller.js +34 -0
  128. data/web/public/editor-app/configuration/properties-out-parameters-controller.js +158 -0
  129. data/web/public/editor-app/configuration/properties-sequenceflow-order-controller.js +130 -0
  130. data/web/public/editor-app/configuration/properties-signal-definitions-controller.js +136 -0
  131. data/web/public/editor-app/configuration/properties-signal-scope-controller.js +47 -0
  132. data/web/public/editor-app/configuration/properties-task-listeners-controller.js +325 -0
  133. data/web/public/editor-app/configuration/properties.js +99 -0
  134. data/web/public/editor-app/configuration/toolbar-custom-actions.js +18 -0
  135. data/web/public/editor-app/configuration/toolbar-default-actions.js +429 -0
  136. data/web/public/editor-app/configuration/toolbar.js +175 -0
  137. data/web/public/editor-app/configuration/url-config.js +34 -0
  138. data/web/public/editor-app/css/style-common.css +1518 -0
  139. data/web/public/editor-app/css/style-editor.css +639 -0
  140. data/web/public/editor-app/css/style.css +471 -0
  141. data/web/public/editor-app/editor/css/editor.css +202 -0
  142. data/web/public/editor-app/editor/i18n/translation_de.js +383 -0
  143. data/web/public/editor-app/editor/i18n/translation_en_us.js +423 -0
  144. data/web/public/editor-app/editor/i18n/translation_signavio_de.js +106 -0
  145. data/web/public/editor-app/editor/i18n/translation_signavio_en_us.js +108 -0
  146. data/web/public/editor-app/editor/oryx.debug.js +24510 -0
  147. data/web/public/editor-app/editor/oryx.js +30 -0
  148. data/web/public/editor-app/editor-config.js +32 -0
  149. data/web/public/editor-app/editor-controller.js +65 -0
  150. data/web/public/editor-app/editor-utils.js +135 -0
  151. data/web/public/editor-app/editor.html +136 -0
  152. data/web/public/editor-app/eventbus.js +133 -0
  153. data/web/public/editor-app/fonts/activiti-admin-webfont.eot +0 -0
  154. data/web/public/editor-app/fonts/activiti-admin-webfont.svg +43 -0
  155. data/web/public/editor-app/fonts/activiti-admin-webfont.ttf +0 -0
  156. data/web/public/editor-app/fonts/activiti-admin-webfont.woff +0 -0
  157. data/web/public/editor-app/fonts/glyphicons-halflings-regular.eot +0 -0
  158. data/web/public/editor-app/fonts/glyphicons-halflings-regular.svg +229 -0
  159. data/web/public/editor-app/fonts/glyphicons-halflings-regular.ttf +0 -0
  160. data/web/public/editor-app/fonts/glyphicons-halflings-regular.woff +0 -0
  161. data/web/public/editor-app/header-controller.js +31 -0
  162. data/web/public/editor-app/i18n/en.json +286 -0
  163. data/web/public/editor-app/images/bpmn-error.png +0 -0
  164. data/web/public/editor-app/images/bpmn-warning.png +0 -0
  165. data/web/public/editor-app/images/datadefinition.png +0 -0
  166. data/web/public/editor-app/images/delete.png +0 -0
  167. data/web/public/editor-app/images/loading.gif +0 -0
  168. data/web/public/editor-app/images/logo-2x.png +0 -0
  169. data/web/public/editor-app/images/logo.png +0 -0
  170. data/web/public/editor-app/images/nw-handle-dark.gif +0 -0
  171. data/web/public/editor-app/images/se-handle-dark.gif +0 -0
  172. data/web/public/editor-app/images/shapemenu_highlight.png +0 -0
  173. data/web/public/editor-app/images/wrench.png +0 -0
  174. data/web/public/editor-app/libs/angular-cookies_1.2.13/angular-cookies.min.js +8 -0
  175. data/web/public/editor-app/libs/angular-cookies_1.2.13/angular-cookies.min.js.map +8 -0
  176. data/web/public/editor-app/libs/angular-dragdrop.min-1.0.3.js +9 -0
  177. data/web/public/editor-app/libs/angular-dragdrop_1.0.7/angular-dragdrop.min.js +29 -0
  178. data/web/public/editor-app/libs/angular-mocks_1.2.13/angular-mocks.js +2136 -0
  179. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.js +596 -0
  180. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.min.js +13 -0
  181. data/web/public/editor-app/libs/angular-resource_1.2.13/angular-resource.min.js.map +8 -0
  182. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.js +921 -0
  183. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.min.js +14 -0
  184. data/web/public/editor-app/libs/angular-route_1.2.13/angular-route.min.js.map +8 -0
  185. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.js +625 -0
  186. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.min.js +14 -0
  187. data/web/public/editor-app/libs/angular-sanitize_1.2.13/angular-sanitize.min.js.map +8 -0
  188. data/web/public/editor-app/libs/angular-scroll_0.5.7/angular-scroll.min.js +1 -0
  189. data/web/public/editor-app/libs/angular-strap_2.0.5/angular-strap.min.js +9 -0
  190. data/web/public/editor-app/libs/angular-strap_2.0.5/angular-strap.tpl.min.js +8 -0
  191. data/web/public/editor-app/libs/angular-translate-loader-static-files/.bower.json +19 -0
  192. data/web/public/editor-app/libs/angular-translate-loader-static-files/angular-translate-loader-static-files.js +31 -0
  193. data/web/public/editor-app/libs/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js +6 -0
  194. data/web/public/editor-app/libs/angular-translate-storage-cookie/.bower.json +20 -0
  195. data/web/public/editor-app/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.js +19 -0
  196. data/web/public/editor-app/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js +6 -0
  197. data/web/public/editor-app/libs/angular-translate_2.4.2/angular-translate.js +960 -0
  198. data/web/public/editor-app/libs/angular-translate_2.4.2/angular-translate.min.js +6 -0
  199. data/web/public/editor-app/libs/angular_1.2.13/angular-animate.min.js +27 -0
  200. data/web/public/editor-app/libs/angular_1.2.13/angular.min.js +204 -0
  201. data/web/public/editor-app/libs/bootstrap-daterangepicker_1.3.7/daterangepicker-bs3.css +267 -0
  202. data/web/public/editor-app/libs/bootstrap-daterangepicker_1.3.7/daterangepicker.js +1026 -0
  203. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.css +347 -0
  204. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.css.map +1 -0
  205. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap-theme.min.css +7 -0
  206. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.css +5785 -0
  207. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.css.map +1 -0
  208. data/web/public/editor-app/libs/bootstrap_3.1.1/css/bootstrap.min.css +7 -0
  209. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.eot +0 -0
  210. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.svg +229 -0
  211. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.ttf +0 -0
  212. data/web/public/editor-app/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.woff +0 -0
  213. data/web/public/editor-app/libs/bootstrap_3.1.1/js/bootstrap.js +1951 -0
  214. data/web/public/editor-app/libs/bootstrap_3.1.1/js/bootstrap.min.js +6 -0
  215. data/web/public/editor-app/libs/es5-shim-15.3.4.5/.bower.json +14 -0
  216. data/web/public/editor-app/libs/es5-shim-15.3.4.5/.gitignore +2 -0
  217. data/web/public/editor-app/libs/es5-shim-15.3.4.5/CHANGES +93 -0
  218. data/web/public/editor-app/libs/es5-shim-15.3.4.5/CONTRIBUTORS.md +25 -0
  219. data/web/public/editor-app/libs/es5-shim-15.3.4.5/LICENSE +19 -0
  220. data/web/public/editor-app/libs/es5-shim-15.3.4.5/README.md +161 -0
  221. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.js +444 -0
  222. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.map +1 -0
  223. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-sham.min.js +4 -0
  224. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.js +1314 -0
  225. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.map +1 -0
  226. data/web/public/editor-app/libs/es5-shim-15.3.4.5/es5-shim.min.js +4 -0
  227. data/web/public/editor-app/libs/es5-shim-15.3.4.5/package.json +34 -0
  228. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h-kill.js +64 -0
  229. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h-matchers.js +34 -0
  230. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h.js +3 -0
  231. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/index.html +64 -0
  232. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/index.min.html +63 -0
  233. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine-html.js +190 -0
  234. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine.css +166 -0
  235. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine.js +2477 -0
  236. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png +0 -0
  237. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/lib/json2.js +478 -0
  238. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-array.js +1223 -0
  239. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-date.js +152 -0
  240. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-function.js +147 -0
  241. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-number.js +14 -0
  242. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-object.js +181 -0
  243. data/web/public/editor-app/libs/es5-shim-15.3.4.5/tests/spec/s-string.js +204 -0
  244. data/web/public/editor-app/libs/jquery-ui-1.10.3.custom.min.js +6 -0
  245. data/web/public/editor-app/libs/jquery.autogrow-textarea.js +61 -0
  246. data/web/public/editor-app/libs/jquery_1.11.0/jquery.js +9789 -0
  247. data/web/public/editor-app/libs/jquery_1.11.0/jquery.min.js +4 -0
  248. data/web/public/editor-app/libs/jquery_1.11.0/jquery.min.map +1 -0
  249. data/web/public/editor-app/libs/json3_3.2.6/LICENSE +20 -0
  250. data/web/public/editor-app/libs/json3_3.2.6/lib/json3.js +861 -0
  251. data/web/public/editor-app/libs/json3_3.2.6/lib/json3.min.js +18 -0
  252. data/web/public/editor-app/libs/momentjs_2.5.1/momentjs.min.js +6 -0
  253. data/web/public/editor-app/libs/mousetrap-1.4.5.min.js +9 -0
  254. data/web/public/editor-app/libs/ng-grid-2.0.7-min.js +2 -0
  255. data/web/public/editor-app/libs/ng-grid-2.0.7.min.css +1 -0
  256. data/web/public/editor-app/libs/path_parser.js +30 -0
  257. data/web/public/editor-app/libs/prototype-1.5.1.js +3272 -0
  258. data/web/public/editor-app/libs/ui-utils.min-0.0.4.js +7 -0
  259. data/web/public/editor-app/partials/root-stencil-item-template.html +11 -0
  260. data/web/public/editor-app/partials/stencil-item-template.html +27 -0
  261. data/web/public/editor-app/plugins.xml +58 -0
  262. data/web/public/editor-app/popups/icon-template.html +3 -0
  263. data/web/public/editor-app/popups/save-model.html +41 -0
  264. data/web/public/editor-app/popups/select-shape.html +20 -0
  265. data/web/public/editor-app/popups/unsaved-changes.html +22 -0
  266. data/web/public/editor-app/select-shape-controller.js +314 -0
  267. data/web/public/editor-app/stencil-controller.js +1421 -0
  268. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.collapsed.png +0 -0
  269. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.png +0 -0
  270. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/expanded.subprocess.png +0 -0
  271. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.business.rule.png +0 -0
  272. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.camel.png +0 -0
  273. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.manual.png +0 -0
  274. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.mule.png +0 -0
  275. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.receive.png +0 -0
  276. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.script.png +0 -0
  277. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.send.png +0 -0
  278. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.service.png +0 -0
  279. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.shell.png +0 -0
  280. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.user.png +0 -0
  281. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/subprocess.png +0 -0
  282. data/web/public/editor-app/stencilsets/bpmn2.0/icons/activity/task.png +0 -0
  283. data/web/public/editor-app/stencilsets/bpmn2.0/icons/artifact/text.annotation.png +0 -0
  284. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/cancel.png +0 -0
  285. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/compensation.png +0 -0
  286. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/error.png +0 -0
  287. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/message.png +0 -0
  288. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/signal.png +0 -0
  289. data/web/public/editor-app/stencilsets/bpmn2.0/icons/catching/timer.png +0 -0
  290. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/association.undirected.png +0 -0
  291. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/association.unidirectional.png +0 -0
  292. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/messageflow.png +0 -0
  293. data/web/public/editor-app/stencilsets/bpmn2.0/icons/connector/sequenceflow.png +0 -0
  294. data/web/public/editor-app/stencilsets/bpmn2.0/icons/dataobject/data.store.png +0 -0
  295. data/web/public/editor-app/stencilsets/bpmn2.0/icons/diagram.png +0 -0
  296. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/cancel.png +0 -0
  297. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/error.png +0 -0
  298. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/none.png +0 -0
  299. data/web/public/editor-app/stencilsets/bpmn2.0/icons/endevent/terminate.png +0 -0
  300. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/eventbased.png +0 -0
  301. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/exclusive.databased.png +0 -0
  302. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/inclusive.png +0 -0
  303. data/web/public/editor-app/stencilsets/bpmn2.0/icons/gateway/parallel.png +0 -0
  304. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/error.png +0 -0
  305. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/message.png +0 -0
  306. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/none.png +0 -0
  307. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/signal.png +0 -0
  308. data/web/public/editor-app/stencilsets/bpmn2.0/icons/startevent/timer.png +0 -0
  309. data/web/public/editor-app/stencilsets/bpmn2.0/icons/swimlane/lane.png +0 -0
  310. data/web/public/editor-app/stencilsets/bpmn2.0/icons/swimlane/pool.png +0 -0
  311. data/web/public/editor-app/stencilsets/bpmn2.0/icons/throwing/none.png +0 -0
  312. data/web/public/editor-app/stencilsets/bpmn2.0/icons/throwing/signal.png +0 -0
  313. data/web/public/editor-app/toolbar-controller.js +162 -0
  314. data/web/public/modeler.html +140 -0
  315. data/web/views/models/index.erb +32 -0
  316. data/web/views/models/new.erb +15 -0
  317. metadata +334 -10
@@ -0,0 +1,423 @@
1
+ /**
2
+ * @author nicolas.peters
3
+ *
4
+ * Contains all strings for the default language (en-us).
5
+ * Version 1 - 08/29/08
6
+ */
7
+ if(!ORYX) var ORYX = {};
8
+
9
+ if(!ORYX.I18N) ORYX.I18N = {};
10
+
11
+ ORYX.I18N.Language = "en_us"; //Pattern <ISO language code>_<ISO country code> in lower case!
12
+
13
+ if(!ORYX.I18N.Oryx) ORYX.I18N.Oryx = {};
14
+
15
+ ORYX.I18N.Oryx.title = "Oryx";
16
+ ORYX.I18N.Oryx.noBackendDefined = "Caution! \nNo Backend defined.\n The requested model cannot be loaded. Try to load a configuration with a save plugin.";
17
+ ORYX.I18N.Oryx.pleaseWait = "Please wait while loading...";
18
+ ORYX.I18N.Oryx.notLoggedOn = "Not logged on";
19
+ ORYX.I18N.Oryx.editorOpenTimeout = "The editor does not seem to be started yet. Please check, whether you have a popup blocker enabled and disable it or allow popups for this site. We will never display any commercials on this site.";
20
+
21
+ if(!ORYX.I18N.AddDocker) ORYX.I18N.AddDocker = {};
22
+
23
+ ORYX.I18N.AddDocker.group = "Docker";
24
+ ORYX.I18N.AddDocker.add = "Add Docker";
25
+ ORYX.I18N.AddDocker.addDesc = "Add a Docker to an edge, by clicking on it";
26
+ ORYX.I18N.AddDocker.del = "Delete Docker";
27
+ ORYX.I18N.AddDocker.delDesc = "Delete a Docker";
28
+
29
+ if(!ORYX.I18N.Arrangement) ORYX.I18N.Arrangement = {};
30
+
31
+ ORYX.I18N.Arrangement.groupZ = "Z-Order";
32
+ ORYX.I18N.Arrangement.btf = "Bring To Front";
33
+ ORYX.I18N.Arrangement.btfDesc = "Bring to Front";
34
+ ORYX.I18N.Arrangement.btb = "Bring To Back";
35
+ ORYX.I18N.Arrangement.btbDesc = "Bring To Back";
36
+ ORYX.I18N.Arrangement.bf = "Bring Forward";
37
+ ORYX.I18N.Arrangement.bfDesc = "Bring Forward";
38
+ ORYX.I18N.Arrangement.bb = "Bring Backward";
39
+ ORYX.I18N.Arrangement.bbDesc = "Bring Backward";
40
+ ORYX.I18N.Arrangement.groupA = "Alignment";
41
+ ORYX.I18N.Arrangement.ab = "Alignment Bottom";
42
+ ORYX.I18N.Arrangement.abDesc = "Bottom";
43
+ ORYX.I18N.Arrangement.am = "Alignment Middle";
44
+ ORYX.I18N.Arrangement.amDesc = "Middle";
45
+ ORYX.I18N.Arrangement.at = "Alignment Top";
46
+ ORYX.I18N.Arrangement.atDesc = "Top";
47
+ ORYX.I18N.Arrangement.al = "Alignment Left";
48
+ ORYX.I18N.Arrangement.alDesc = "Left";
49
+ ORYX.I18N.Arrangement.ac = "Alignment Center";
50
+ ORYX.I18N.Arrangement.acDesc = "Center";
51
+ ORYX.I18N.Arrangement.ar = "Alignment Right";
52
+ ORYX.I18N.Arrangement.arDesc = "Right";
53
+ ORYX.I18N.Arrangement.as = "Alignment Same Size";
54
+ ORYX.I18N.Arrangement.asDesc = "Same Size";
55
+
56
+ if(!ORYX.I18N.Edit) ORYX.I18N.Edit = {};
57
+
58
+ ORYX.I18N.Edit.group = "Edit";
59
+ ORYX.I18N.Edit.cut = "Cut";
60
+ ORYX.I18N.Edit.cutDesc = "Cuts the selection into an Oryx clipboard";
61
+ ORYX.I18N.Edit.copy = "Copy";
62
+ ORYX.I18N.Edit.copyDesc = "Copies the selection into an Oryx clipboard";
63
+ ORYX.I18N.Edit.paste = "Paste";
64
+ ORYX.I18N.Edit.pasteDesc = "Pastes the Oryx clipboard to the canvas";
65
+ ORYX.I18N.Edit.del = "Delete";
66
+ ORYX.I18N.Edit.delDesc = "Deletes all selected shapes";
67
+
68
+ if(!ORYX.I18N.EPCSupport) ORYX.I18N.EPCSupport = {};
69
+
70
+ ORYX.I18N.EPCSupport.group = "EPC";
71
+ ORYX.I18N.EPCSupport.exp = "Export EPC";
72
+ ORYX.I18N.EPCSupport.expDesc = "Export diagram to EPML";
73
+ ORYX.I18N.EPCSupport.imp = "Import EPC";
74
+ ORYX.I18N.EPCSupport.impDesc = "Import an EPML file";
75
+ ORYX.I18N.EPCSupport.progressExp = "Exporting model";
76
+ ORYX.I18N.EPCSupport.selectFile = "Select an EPML (.empl) file to import.";
77
+ ORYX.I18N.EPCSupport.file = "File";
78
+ ORYX.I18N.EPCSupport.impPanel = "Import EPML File";
79
+ ORYX.I18N.EPCSupport.impBtn = "Import";
80
+ ORYX.I18N.EPCSupport.close = "Close";
81
+ ORYX.I18N.EPCSupport.error = "Error";
82
+ ORYX.I18N.EPCSupport.progressImp = "Import...";
83
+
84
+ if(!ORYX.I18N.ERDFSupport) ORYX.I18N.ERDFSupport = {};
85
+
86
+ ORYX.I18N.ERDFSupport.exp = "Export to ERDF";
87
+ ORYX.I18N.ERDFSupport.expDesc = "Export to ERDF";
88
+ ORYX.I18N.ERDFSupport.imp = "Import from ERDF";
89
+ ORYX.I18N.ERDFSupport.impDesc = "Import from ERDF";
90
+ ORYX.I18N.ERDFSupport.impFailed = "Request for import of ERDF failed.";
91
+ ORYX.I18N.ERDFSupport.impFailed2 = "An error while importing occurs! <br/>Please check error message: <br/><br/>";
92
+ ORYX.I18N.ERDFSupport.error = "Error";
93
+ ORYX.I18N.ERDFSupport.noCanvas = "The xml document has no Oryx canvas node included!";
94
+ ORYX.I18N.ERDFSupport.noSS = "The Oryx canvas node has no stencil set definition included!";
95
+ ORYX.I18N.ERDFSupport.wrongSS = "The given stencil set does not fit to the current editor!";
96
+ ORYX.I18N.ERDFSupport.selectFile = "Select an ERDF (.xml) file or type in the ERDF to import it!";
97
+ ORYX.I18N.ERDFSupport.file = "File";
98
+ ORYX.I18N.ERDFSupport.impERDF = "Import ERDF";
99
+ ORYX.I18N.ERDFSupport.impBtn = "Import";
100
+ ORYX.I18N.ERDFSupport.impProgress = "Importing...";
101
+ ORYX.I18N.ERDFSupport.close = "Close";
102
+ ORYX.I18N.ERDFSupport.deprTitle = "Really export to eRDF?";
103
+ ORYX.I18N.ERDFSupport.deprText = "Exporting to eRDF is not recommended anymore because the support will be stopped in future versions of the Oryx editor. If possible, export the model to JSON. Do you want to export anyway?";
104
+
105
+ if(!ORYX.I18N.jPDLSupport) ORYX.I18N.jPDLSupport = {};
106
+
107
+ ORYX.I18N.jPDLSupport.group = "ExecBPMN";
108
+ ORYX.I18N.jPDLSupport.exp = "Export to jPDL";
109
+ ORYX.I18N.jPDLSupport.expDesc = "Export to jPDL";
110
+ ORYX.I18N.jPDLSupport.imp = "Import from jPDL";
111
+ ORYX.I18N.jPDLSupport.impDesc = "Import jPDL File";
112
+ ORYX.I18N.jPDLSupport.impFailedReq = "Request for import of jPDL failed.";
113
+ ORYX.I18N.jPDLSupport.impFailedJson = "Transformation of jPDL failed.";
114
+ ORYX.I18N.jPDLSupport.impFailedJsonAbort = "Import aborted.";
115
+ ORYX.I18N.jPDLSupport.loadSseQuestionTitle = "jBPM stencil set extension needs to be loaded";
116
+ ORYX.I18N.jPDLSupport.loadSseQuestionBody = "In order to import jPDL, the stencil set extension has to be loaded. Do you want to proceed?";
117
+ ORYX.I18N.jPDLSupport.expFailedReq = "Request for export of model failed.";
118
+ ORYX.I18N.jPDLSupport.expFailedXml = "Export to jPDL failed. Exporter reported: ";
119
+ ORYX.I18N.jPDLSupport.error = "Error";
120
+ ORYX.I18N.jPDLSupport.selectFile = "Select an jPDL (.xml) file or type in the jPDL to import it!";
121
+ ORYX.I18N.jPDLSupport.file = "File";
122
+ ORYX.I18N.jPDLSupport.impJPDL = "Import jPDL";
123
+ ORYX.I18N.jPDLSupport.impBtn = "Import";
124
+ ORYX.I18N.jPDLSupport.impProgress = "Importing...";
125
+ ORYX.I18N.jPDLSupport.close = "Close";
126
+
127
+ if(!ORYX.I18N.Save) ORYX.I18N.Save = {};
128
+
129
+ ORYX.I18N.Save.group = "File";
130
+ ORYX.I18N.Save.save = "Save";
131
+ ORYX.I18N.Save.saveDesc = "Save";
132
+ ORYX.I18N.Save.saveAs = "Save As...";
133
+ ORYX.I18N.Save.saveAsDesc = "Save As...";
134
+ ORYX.I18N.Save.unsavedData = "There are unsaved data, please save before you leave, otherwise your changes get lost!";
135
+ ORYX.I18N.Save.newProcess = "New Process";
136
+ ORYX.I18N.Save.saveAsTitle = "Save as...";
137
+ ORYX.I18N.Save.saveBtn = "Save";
138
+ ORYX.I18N.Save.close = "Close";
139
+ ORYX.I18N.Save.savedAs = "Saved As";
140
+ ORYX.I18N.Save.saved = "Saved!";
141
+ ORYX.I18N.Save.failed = "Saving failed.";
142
+ ORYX.I18N.Save.noRights = "You have no rights to save changes.";
143
+ ORYX.I18N.Save.saving = "Saving";
144
+ ORYX.I18N.Save.saveAsHint = "The process diagram is stored under:";
145
+
146
+ if(!ORYX.I18N.File) ORYX.I18N.File = {};
147
+
148
+ ORYX.I18N.File.group = "File";
149
+ ORYX.I18N.File.print = "Print";
150
+ ORYX.I18N.File.printDesc = "Print current model";
151
+ ORYX.I18N.File.pdf = "Export as PDF";
152
+ ORYX.I18N.File.pdfDesc = "Export as PDF";
153
+ ORYX.I18N.File.info = "Info";
154
+ ORYX.I18N.File.infoDesc = "Info";
155
+ ORYX.I18N.File.genPDF = "Generating PDF";
156
+ ORYX.I18N.File.genPDFFailed = "Generating PDF failed.";
157
+ ORYX.I18N.File.printTitle = "Print";
158
+ ORYX.I18N.File.printMsg = "We are currently experiencing problems with the printing function. We recommend using the PDF Export to print the diagram. Do you really want to continue printing?";
159
+
160
+ if(!ORYX.I18N.Grouping) ORYX.I18N.Grouping = {};
161
+
162
+ ORYX.I18N.Grouping.grouping = "Grouping";
163
+ ORYX.I18N.Grouping.group = "Group";
164
+ ORYX.I18N.Grouping.groupDesc = "Groups all selected shapes";
165
+ ORYX.I18N.Grouping.ungroup = "Ungroup";
166
+ ORYX.I18N.Grouping.ungroupDesc = "Deletes the group of all selected Shapes";
167
+
168
+ if(!ORYX.I18N.Loading) ORYX.I18N.Loading = {};
169
+
170
+ ORYX.I18N.Loading.waiting ="Please wait...";
171
+
172
+ if(!ORYX.I18N.PropertyWindow) ORYX.I18N.PropertyWindow = {};
173
+
174
+ ORYX.I18N.PropertyWindow.name = "Name";
175
+ ORYX.I18N.PropertyWindow.value = "Value";
176
+ ORYX.I18N.PropertyWindow.selected = "selected";
177
+ ORYX.I18N.PropertyWindow.clickIcon = "Click Icon";
178
+ ORYX.I18N.PropertyWindow.add = "Add";
179
+ ORYX.I18N.PropertyWindow.rem = "Remove";
180
+ ORYX.I18N.PropertyWindow.complex = "Editor for a Complex Type";
181
+ ORYX.I18N.PropertyWindow.text = "Editor for a Text Type";
182
+ ORYX.I18N.PropertyWindow.ok = "Ok";
183
+ ORYX.I18N.PropertyWindow.cancel = "Cancel";
184
+ ORYX.I18N.PropertyWindow.dateFormat = "m/d/y";
185
+
186
+ if(!ORYX.I18N.ShapeMenuPlugin) ORYX.I18N.ShapeMenuPlugin = {};
187
+
188
+ ORYX.I18N.ShapeMenuPlugin.drag = "Drag";
189
+ ORYX.I18N.ShapeMenuPlugin.clickDrag = "Click or drag";
190
+ ORYX.I18N.ShapeMenuPlugin.morphMsg = "Morph shape";
191
+
192
+ if(!ORYX.I18N.SyntaxChecker) ORYX.I18N.SyntaxChecker = {};
193
+
194
+ ORYX.I18N.SyntaxChecker.group = "Verification";
195
+ ORYX.I18N.SyntaxChecker.name = "Syntax Checker";
196
+ ORYX.I18N.SyntaxChecker.desc = "Check Syntax";
197
+ ORYX.I18N.SyntaxChecker.noErrors = "There are no syntax errors.";
198
+ ORYX.I18N.SyntaxChecker.invalid = "Invalid answer from server.";
199
+ ORYX.I18N.SyntaxChecker.checkingMessage = "Checking ...";
200
+
201
+ if(!ORYX.I18N.FormHandler) ORYX.I18N.FormHandler = {};
202
+
203
+ ORYX.I18N.FormHandler.group = "FormHandling";
204
+ ORYX.I18N.FormHandler.name = "FormHandler";
205
+ ORYX.I18N.FormHandler.desc = "Testing from handling";
206
+
207
+ if(!ORYX.I18N.Deployer) ORYX.I18N.Deployer = {};
208
+
209
+ ORYX.I18N.Deployer.group = "Deployment";
210
+ ORYX.I18N.Deployer.name = "Deployer";
211
+ ORYX.I18N.Deployer.desc = "Deploy to engine";
212
+
213
+ if(!ORYX.I18N.Tester) ORYX.I18N.Tester = {};
214
+
215
+ ORYX.I18N.Tester.group = "Testing";
216
+ ORYX.I18N.Tester.name = "Test process";
217
+ ORYX.I18N.Tester.desc = "Open the test component to test this process definition";
218
+
219
+ if(!ORYX.I18N.Undo) ORYX.I18N.Undo = {};
220
+
221
+ ORYX.I18N.Undo.group = "Undo";
222
+ ORYX.I18N.Undo.undo = "Undo";
223
+ ORYX.I18N.Undo.undoDesc = "Undo the last action";
224
+ ORYX.I18N.Undo.redo = "Redo";
225
+ ORYX.I18N.Undo.redoDesc = "Redo the last undone action";
226
+
227
+ if(!ORYX.I18N.View) ORYX.I18N.View = {};
228
+
229
+ ORYX.I18N.View.group = "Zoom";
230
+ ORYX.I18N.View.zoomIn = "Zoom In";
231
+ ORYX.I18N.View.zoomInDesc = "Zoom into the model";
232
+ ORYX.I18N.View.zoomOut = "Zoom Out";
233
+ ORYX.I18N.View.zoomOutDesc = "Zoom out of the model";
234
+ ORYX.I18N.View.zoomStandard = "Zoom Standard";
235
+ ORYX.I18N.View.zoomStandardDesc = "Zoom to the standard level";
236
+ ORYX.I18N.View.zoomFitToModel = "Zoom fit to model";
237
+ ORYX.I18N.View.zoomFitToModelDesc = "Zoom to fit the model size";
238
+
239
+ if(!ORYX.I18N.XFormsSerialization) ORYX.I18N.XFormsSerialization = {};
240
+
241
+ ORYX.I18N.XFormsSerialization.group = "XForms Serialization";
242
+ ORYX.I18N.XFormsSerialization.exportXForms = "XForms Export";
243
+ ORYX.I18N.XFormsSerialization.exportXFormsDesc = "Export XForms+XHTML markup";
244
+ ORYX.I18N.XFormsSerialization.importXForms = "XForms Import";
245
+ ORYX.I18N.XFormsSerialization.importXFormsDesc = "Import XForms+XHTML markup";
246
+ ORYX.I18N.XFormsSerialization.noClientXFormsSupport = "No XForms support";
247
+ ORYX.I18N.XFormsSerialization.noClientXFormsSupportDesc = "<h2>Your browser does not support XForms. Please install the <a href=\"https://addons.mozilla.org/firefox/addon/824\" target=\"_blank\">Mozilla XForms Add-on</a> for Firefox.</h2>";
248
+ ORYX.I18N.XFormsSerialization.ok = "Ok";
249
+ ORYX.I18N.XFormsSerialization.selectFile = "Select a XHTML (.xhtml) file or type in the XForms+XHTML markup to import it!";
250
+ ORYX.I18N.XFormsSerialization.selectCss = "Please insert url of css file";
251
+ ORYX.I18N.XFormsSerialization.file = "File";
252
+ ORYX.I18N.XFormsSerialization.impFailed = "Request for import of document failed.";
253
+ ORYX.I18N.XFormsSerialization.impTitle = "Import XForms+XHTML document";
254
+ ORYX.I18N.XFormsSerialization.expTitle = "Export XForms+XHTML document";
255
+ ORYX.I18N.XFormsSerialization.impButton = "Import";
256
+ ORYX.I18N.XFormsSerialization.impProgress = "Importing...";
257
+ ORYX.I18N.XFormsSerialization.close = "Close";
258
+
259
+ /** New Language Properties: 08.12.2008 */
260
+
261
+ ORYX.I18N.PropertyWindow.title = "Properties";
262
+
263
+ if(!ORYX.I18N.ShapeRepository) ORYX.I18N.ShapeRepository = {};
264
+ ORYX.I18N.ShapeRepository.title = "Shape Repository";
265
+
266
+ ORYX.I18N.Save.dialogDesciption = "Please enter a name, a description and a comment.";
267
+ ORYX.I18N.Save.dialogLabelTitle = "Title";
268
+ ORYX.I18N.Save.dialogLabelDesc = "Description";
269
+ ORYX.I18N.Save.dialogLabelType = "Type";
270
+ ORYX.I18N.Save.dialogLabelComment = "Revision comment";
271
+
272
+ if(!ORYX.I18N.Perspective) ORYX.I18N.Perspective = {};
273
+ ORYX.I18N.Perspective.no = "No Perspective"
274
+ ORYX.I18N.Perspective.noTip = "Unload the current perspective"
275
+
276
+ /** New Language Properties: 21.04.2009 */
277
+ ORYX.I18N.JSONSupport = {
278
+ imp: {
279
+ name: "Import from JSON",
280
+ desc: "Imports a model from JSON",
281
+ group: "Export",
282
+ selectFile: "Select an JSON (.json) file or type in JSON to import it!",
283
+ file: "File",
284
+ btnImp: "Import",
285
+ btnClose: "Close",
286
+ progress: "Importing ...",
287
+ syntaxError: "Syntax error"
288
+ },
289
+ exp: {
290
+ name: "Export to JSON",
291
+ desc: "Exports current model to JSON",
292
+ group: "Export"
293
+ }
294
+ };
295
+
296
+ /** New Language Properties: 09.05.2009 */
297
+ if(!ORYX.I18N.JSONImport) ORYX.I18N.JSONImport = {};
298
+
299
+ ORYX.I18N.JSONImport.title = "JSON Import";
300
+ ORYX.I18N.JSONImport.wrongSS = "The stencil set of the imported file ({0}) does not match to the loaded stencil set ({1})."
301
+
302
+ /** New Language Properties: 14.05.2009 */
303
+ if(!ORYX.I18N.RDFExport) ORYX.I18N.RDFExport = {};
304
+ ORYX.I18N.RDFExport.group = "Export";
305
+ ORYX.I18N.RDFExport.rdfExport = "Export to RDF";
306
+ ORYX.I18N.RDFExport.rdfExportDescription = "Exports current model to the XML serialization defined for the Resource Description Framework (RDF)";
307
+
308
+ /** New Language Properties: 15.05.2009*/
309
+ if(!ORYX.I18N.SyntaxChecker.BPMN) ORYX.I18N.SyntaxChecker.BPMN={};
310
+ ORYX.I18N.SyntaxChecker.BPMN_NO_SOURCE = "An edge must have a source.";
311
+ ORYX.I18N.SyntaxChecker.BPMN_NO_TARGET = "An edge must have a target.";
312
+ ORYX.I18N.SyntaxChecker.BPMN_DIFFERENT_PROCESS = "Source and target node must be contained in the same process.";
313
+ ORYX.I18N.SyntaxChecker.BPMN_SAME_PROCESS = "Source and target node must be contained in different pools.";
314
+ ORYX.I18N.SyntaxChecker.BPMN_FLOWOBJECT_NOT_CONTAINED_IN_PROCESS = "A flow object must be contained in a process.";
315
+ ORYX.I18N.SyntaxChecker.BPMN_ENDEVENT_WITHOUT_INCOMING_CONTROL_FLOW = "An end event must have an incoming sequence flow.";
316
+ ORYX.I18N.SyntaxChecker.BPMN_STARTEVENT_WITHOUT_OUTGOING_CONTROL_FLOW = "A start event must have an outgoing sequence flow.";
317
+ ORYX.I18N.SyntaxChecker.BPMN_STARTEVENT_WITH_INCOMING_CONTROL_FLOW = "Start events must not have incoming sequence flows.";
318
+ ORYX.I18N.SyntaxChecker.BPMN_ATTACHEDINTERMEDIATEEVENT_WITH_INCOMING_CONTROL_FLOW = "Attached intermediate events must not have incoming sequence flows.";
319
+ ORYX.I18N.SyntaxChecker.BPMN_ATTACHEDINTERMEDIATEEVENT_WITHOUT_OUTGOING_CONTROL_FLOW = "Attached intermediate events must have exactly one outgoing sequence flow.";
320
+ ORYX.I18N.SyntaxChecker.BPMN_ENDEVENT_WITH_OUTGOING_CONTROL_FLOW = "End events must not have outgoing sequence flows.";
321
+ ORYX.I18N.SyntaxChecker.BPMN_EVENTBASEDGATEWAY_BADCONTINUATION = "Event-based gateways must not be followed by gateways or subprocesses.";
322
+ ORYX.I18N.SyntaxChecker.BPMN_NODE_NOT_ALLOWED = "Node type is not allowed.";
323
+
324
+ if(!ORYX.I18N.SyntaxChecker.IBPMN) ORYX.I18N.SyntaxChecker.IBPMN={};
325
+ ORYX.I18N.SyntaxChecker.IBPMN_NO_ROLE_SET = "Interactions must have a sender and a receiver role set";
326
+ ORYX.I18N.SyntaxChecker.IBPMN_NO_INCOMING_SEQFLOW = "This node must have incoming sequence flow.";
327
+ ORYX.I18N.SyntaxChecker.IBPMN_NO_OUTGOING_SEQFLOW = "This node must have outgoing sequence flow.";
328
+
329
+ if(!ORYX.I18N.SyntaxChecker.InteractionNet) ORYX.I18N.SyntaxChecker.InteractionNet={};
330
+ ORYX.I18N.SyntaxChecker.InteractionNet_SENDER_NOT_SET = "Sender not set";
331
+ ORYX.I18N.SyntaxChecker.InteractionNet_RECEIVER_NOT_SET = "Receiver not set";
332
+ ORYX.I18N.SyntaxChecker.InteractionNet_MESSAGETYPE_NOT_SET = "Message type not set";
333
+ ORYX.I18N.SyntaxChecker.InteractionNet_ROLE_NOT_SET = "Role not set";
334
+
335
+ if(!ORYX.I18N.SyntaxChecker.EPC) ORYX.I18N.SyntaxChecker.EPC={};
336
+ ORYX.I18N.SyntaxChecker.EPC_NO_SOURCE = "Each edge must have a source.";
337
+ ORYX.I18N.SyntaxChecker.EPC_NO_TARGET = "Each edge must have a target.";
338
+ ORYX.I18N.SyntaxChecker.EPC_NOT_CONNECTED = "Node must be connected with edges.";
339
+ ORYX.I18N.SyntaxChecker.EPC_NOT_CONNECTED_2 = "Node must be connected with more edges.";
340
+ ORYX.I18N.SyntaxChecker.EPC_TOO_MANY_EDGES = "Node has too many connected edges.";
341
+ ORYX.I18N.SyntaxChecker.EPC_NO_CORRECT_CONNECTOR = "Node is no correct connector.";
342
+ ORYX.I18N.SyntaxChecker.EPC_MANY_STARTS = "There must be only one start event.";
343
+ ORYX.I18N.SyntaxChecker.EPC_FUNCTION_AFTER_OR = "There must be no functions after a splitting OR/XOR.";
344
+ ORYX.I18N.SyntaxChecker.EPC_PI_AFTER_OR = "There must be no process interface after a splitting OR/XOR.";
345
+ ORYX.I18N.SyntaxChecker.EPC_FUNCTION_AFTER_FUNCTION = "There must be no function after a function.";
346
+ ORYX.I18N.SyntaxChecker.EPC_EVENT_AFTER_EVENT = "There must be no event after an event.";
347
+ ORYX.I18N.SyntaxChecker.EPC_PI_AFTER_FUNCTION = "There must be no process interface after a function.";
348
+ ORYX.I18N.SyntaxChecker.EPC_FUNCTION_AFTER_PI = "There must be no function after a process interface.";
349
+ ORYX.I18N.SyntaxChecker.EPC_SOURCE_EQUALS_TARGET = "Edge must connect two distinct nodes."
350
+
351
+ if(!ORYX.I18N.SyntaxChecker.PetriNet) ORYX.I18N.SyntaxChecker.PetriNet={};
352
+ ORYX.I18N.SyntaxChecker.PetriNet_NOT_BIPARTITE = "The graph is not bipartite";
353
+ ORYX.I18N.SyntaxChecker.PetriNet_NO_LABEL = "Label not set for a labeled transition";
354
+ ORYX.I18N.SyntaxChecker.PetriNet_NO_ID = "There is a node without id";
355
+ ORYX.I18N.SyntaxChecker.PetriNet_SAME_SOURCE_AND_TARGET = "Two flow relationships have the same source and target";
356
+ ORYX.I18N.SyntaxChecker.PetriNet_NODE_NOT_SET = "A node is not set for a flowrelationship";
357
+
358
+ /** New Language Properties: 02.06.2009*/
359
+ ORYX.I18N.Edge = "Edge";
360
+ ORYX.I18N.Node = "Node";
361
+
362
+ /** New Language Properties: 03.06.2009*/
363
+ ORYX.I18N.SyntaxChecker.notice = "Move the mouse over a red cross icon to see the error message.";
364
+
365
+ /** New Language Properties: 05.06.2009*/
366
+ if(!ORYX.I18N.RESIZE) ORYX.I18N.RESIZE = {};
367
+ ORYX.I18N.RESIZE.tipGrow = "Increase canvas size:";
368
+ ORYX.I18N.RESIZE.tipShrink = "Decrease canvas size:";
369
+ ORYX.I18N.RESIZE.N = "Top";
370
+ ORYX.I18N.RESIZE.W = "Left";
371
+ ORYX.I18N.RESIZE.S ="Down";
372
+ ORYX.I18N.RESIZE.E ="Right";
373
+
374
+ /** New Language Properties: 15.07.2009*/
375
+ if(!ORYX.I18N.Layouting) ORYX.I18N.Layouting ={};
376
+ ORYX.I18N.Layouting.doing = "Layouting...";
377
+
378
+ /** New Language Properties: 18.08.2009*/
379
+ ORYX.I18N.SyntaxChecker.MULT_ERRORS = "Multiple Errors";
380
+
381
+ /** New Language Properties: 08.09.2009*/
382
+ if(!ORYX.I18N.PropertyWindow) ORYX.I18N.PropertyWindow = {};
383
+ ORYX.I18N.PropertyWindow.oftenUsed = "Often used";
384
+ ORYX.I18N.PropertyWindow.moreProps = "More Properties";
385
+
386
+ /** New Language Properties 01.10.2009 */
387
+ if(!ORYX.I18N.SyntaxChecker.BPMN2) ORYX.I18N.SyntaxChecker.BPMN2 = {};
388
+
389
+ ORYX.I18N.SyntaxChecker.BPMN2_DATA_INPUT_WITH_INCOMING_DATA_ASSOCIATION = "A Data Input must not have any incoming Data Associations.";
390
+ ORYX.I18N.SyntaxChecker.BPMN2_DATA_OUTPUT_WITH_OUTGOING_DATA_ASSOCIATION = "A Data Output must not have any outgoing Data Associations.";
391
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_TARGET_WITH_TOO_MANY_INCOMING_SEQUENCE_FLOWS = "Targets of Event-based Gateways may only have one incoming Sequence Flow.";
392
+
393
+ /** New Language Properties 02.10.2009 */
394
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_WITH_TOO_LESS_OUTGOING_SEQUENCE_FLOWS = "An Event-based Gateway must have two or more outgoing Sequence Flows.";
395
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_EVENT_TARGET_CONTRADICTION = "If Message Intermediate Events are used in the configuration, then Receive Tasks must not be used and vice versa.";
396
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_WRONG_TRIGGER = "Only the following Intermediate Event triggers are valid: Message, Signal, Timer, Conditional and Multiple.";
397
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_WRONG_CONDITION_EXPRESSION = "The outgoing Sequence Flows of the Event Gateway must not have a condition expression.";
398
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_NOT_INSTANTIATING = "The Gateway does not meet the conditions to instantiate the process. Please use a start event or an instantiating attribute for the gateway.";
399
+
400
+ /** New Language Properties 05.10.2009 */
401
+ ORYX.I18N.SyntaxChecker.BPMN2_GATEWAYDIRECTION_MIXED_FAILURE = "The Gateway must have both multiple incoming and outgoing Sequence Flows.";
402
+ ORYX.I18N.SyntaxChecker.BPMN2_GATEWAYDIRECTION_CONVERGING_FAILURE = "The Gateway must have multiple incoming but most NOT have multiple outgoing Sequence Flows.";
403
+ ORYX.I18N.SyntaxChecker.BPMN2_GATEWAYDIRECTION_DIVERGING_FAILURE = "The Gateway must NOT have multiple incoming but must have multiple outgoing Sequence Flows.";
404
+ ORYX.I18N.SyntaxChecker.BPMN2_GATEWAY_WITH_NO_OUTGOING_SEQUENCE_FLOW = "A Gateway must have a minimum of one outgoing Sequence Flow.";
405
+ ORYX.I18N.SyntaxChecker.BPMN2_RECEIVE_TASK_WITH_ATTACHED_EVENT = "Receive Tasks used in Event Gateway configurations must not have any attached Intermediate Events.";
406
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_SUBPROCESS_BAD_CONNECTION = "An Event Subprocess must not have any incoming or outgoing Sequence Flow.";
407
+
408
+ /** New Language Properties 13.10.2009 */
409
+ ORYX.I18N.SyntaxChecker.BPMN_MESSAGE_FLOW_NOT_CONNECTED = "At least one side of the Message Flow has to be connected.";
410
+
411
+ /** New Language Properties 24.11.2009 */
412
+ ORYX.I18N.SyntaxChecker.BPMN2_TOO_MANY_INITIATING_MESSAGES = "A Choreography Activity may only have one initiating message.";
413
+ ORYX.I18N.SyntaxChecker.BPMN_MESSAGE_FLOW_NOT_ALLOWED = "A Message Flow is not allowed here.";
414
+
415
+ /** New Language Properties 27.11.2009 */
416
+ ORYX.I18N.SyntaxChecker.BPMN2_EVENT_BASED_WITH_TOO_LESS_INCOMING_SEQUENCE_FLOWS = "An Event-based Gateway that is not instantiating must have a minimum of one incoming Sequence Flow.";
417
+ ORYX.I18N.SyntaxChecker.BPMN2_TOO_FEW_INITIATING_PARTICIPANTS = "A Choreography Activity must have one initiating Participant (white).";
418
+ ORYX.I18N.SyntaxChecker.BPMN2_TOO_MANY_INITIATING_PARTICIPANTS = "A Choreography Acitivity must not have more than one initiating Participant (white)."
419
+
420
+ ORYX.I18N.SyntaxChecker.COMMUNICATION_AT_LEAST_TWO_PARTICIPANTS = "The communication must be connected to at least two participants.";
421
+ ORYX.I18N.SyntaxChecker.MESSAGEFLOW_START_MUST_BE_PARTICIPANT = "The message flow's source must be a participant.";
422
+ ORYX.I18N.SyntaxChecker.MESSAGEFLOW_END_MUST_BE_PARTICIPANT = "The message flow's target must be a participant.";
423
+ ORYX.I18N.SyntaxChecker.CONV_LINK_CANNOT_CONNECT_CONV_NODES = "The conversation link must connect a communication or sub conversation node with a participant.";
@@ -0,0 +1,106 @@
1
+ Ext.PagingToolbar.prototype.firstText = "Erste Seite";
2
+ Ext.PagingToolbar.prototype.prevText = "Vorherige Seite";
3
+ Ext.PagingToolbar.prototype.nextText = "Nächste Seite";
4
+ Ext.PagingToolbar.prototype.lastText = "Letzte Seite";
5
+
6
+
7
+ ORYX.I18N.PropertyWindow.dateFormat = "d.m.y";
8
+
9
+
10
+ ORYX.I18N.View.East = "Attribute";
11
+ ORYX.I18N.View.West = "Modellierungselemente";
12
+
13
+ ORYX.I18N.Oryx.pleaseWait = "Der Signavio Process Editor wird geladen. Bitte warten...";
14
+ ORYX.I18N.AddDocker.add = "Docker hinzufügen";
15
+ ORYX.I18N.AddDocker.del = "Docker löschen";
16
+ ORYX.I18N.ERDFSupport.noCanvas = "Das XML Dokument enthält keinen Canvas Knoten.";
17
+ ORYX.I18N.ERDFSupport.deprText = "Der Export nach eRDF wird nicht empfohlen, da dieses Format in zukünftigen Versionen des Signavio Process Editors nicht mehr unterstützt wird. Verwenden Sie stattdessen den Export nach JSON, falls möglich. Wollen Sie dennoch das Model nach eRDF exportieren?";
18
+ ORYX.I18N.Save.unsavedData = "Das Diagramm enthält nicht gespeicherte Daten. Sind Sie sicher, dass Sie den Editor schließen möchten?";
19
+ ORYX.I18N.Save.pleaseWait = "Bitte warten Sie, während<br/>das Diagramm gespeichert wird.";
20
+ ORYX.I18N.File.info = "Info";
21
+ ORYX.I18N.File.infoDesc = "Info";
22
+ ORYX.I18N.PropertyWindow.name = "Attribut";
23
+ ORYX.I18N.View.zoomStandard = "Zoom: Originalgröße";
24
+ ORYX.I18N.View.zoomStandardDesc = "Zoom: Originalgröße";
25
+ ORYX.I18N.View.zoomFitToModel = "Zoom: Modellgröße";
26
+ ORYX.I18N.View.zoomFitToModelDesc = "Zoom: Modellgröße";
27
+ ORYX.I18N.ShapeRepository.title = "Modellierungselemente";
28
+ ORYX.I18N.Save.dialogLabelComment = "Änderungs-\nkommentar";
29
+
30
+ ORYX.I18N.Save.saveAs = "Kopie speichern...";
31
+ ORYX.I18N.Save.saveAsDesc = "Kopie speichern...";
32
+ ORYX.I18N.Save.saveAsTitle = "Kopie speichern...";
33
+ ORYX.I18N.Save.savedAs = "Kopie gespeichert";
34
+ ORYX.I18N.Save.savedDescription = "Das kopierte Diagramm ist unter folgendem Link gespeichert";
35
+ ORYX.I18N.Save.notAuthorized = "Sie sind derzeit nicht angemeldet. Bitte melden Sie sich in einem <a href='/p/login' target='_blank'>neuen Fenstern</a> an, damit Sie diese Model speichern können."
36
+ ORYX.I18N.Save.transAborted = "Die Anfrage zum Speichern Ihres Diagramms hat zu lange gedauert. Bitte benutzen Sie eine schnellere Internetverbindung. Wenn Sie eine kabellose Internetverbindung benutzen, dann überprüfen Sie bitte die Signalstärke.";
37
+ ORYX.I18N.Save.noRights = "Sie haben nicht die benötigten Rechte, um das Diagramm abzuspeichern. Bitte überprüfen Sie im <a href='/p/explorer' target='_blank'>Signavio Explorer</a>, ob Sie noch die benötigten Rechte im Zielordner besitzen.";
38
+ ORYX.I18N.Save.comFailed = "Die Kommunikation mit dem Signavio Server ist fehlgeschlagen. Bitte überprüfen Sie Ihre Internetverbindung. Wenn das Problem weiterhin besteht, wenden Sie sich bitte an den Signavio Support über das Briefumschlagssymbol in der Toolbar.";
39
+ ORYX.I18N.Save.failed = "Beim Speichern Ihres Diagramms ist ein Problem aufgetreten. Bitte versuchen Sie es erneut. Wenn das Problem weiterhin besteht, wenden Sie sich bitte an den Signavio Support über das Briefumschlagssymbol in der Toolbar.";
40
+ ORYX.I18N.Save.exception = "Beim Speichern Ihres Diagramms sind einige Probleme aufgetreten. Bitte versuchen Sie es erneut. Wenn das Problem weiterhin besteht, wenden Sie sich bitte an den Signavio Support über das Briefumschlagssymbol in der Toolbar.";
41
+ ORYX.I18N.Save.retrieveData = "Bitte warten, Daten werden geladen";
42
+
43
+ /** New Language Properties: 10.6.09*/
44
+ if(!ORYX.I18N.ShapeMenuPlugin) ORYX.I18N.ShapeMenuPlugin = {};
45
+ ORYX.I18N.ShapeMenuPlugin.morphMsg = "Umwandeln";
46
+ ORYX.I18N.ShapeMenuPlugin.morphWarningTitleMsg = "Umwandeln";
47
+ ORYX.I18N.ShapeMenuPlugin.morphWarningMsg = "Einige Kindelemente können nicht im neuen Element enthalten sein.<br/>Möchten Sie dennoch das Element umwandeln?";
48
+
49
+ if (!Signavio) { var Signavio = {}; }
50
+ if (!Signavio.I18N) { Signavio.I18N = {} }
51
+ if (!Signavio.I18N.Editor) { Signavio.I18N.Editor = {} }
52
+
53
+ if (!Signavio.I18N.Editor.Linking) { Signavio.I18N.Editor.Linking = {} }
54
+ Signavio.I18N.Editor.Linking.CreateDiagram = "Neues Diagramm erstellen:";
55
+ Signavio.I18N.Editor.Linking.UseDiagram = "Vorhandenes Diagramm verwenden";
56
+ Signavio.I18N.Editor.Linking.UseLink = "Web-Link verwenden";
57
+ Signavio.I18N.Editor.Linking.CreateTitle = "Verlinkung setzen";
58
+ Signavio.I18N.Editor.Linking.Close = "Schließen";
59
+ Signavio.I18N.Editor.Linking.Cancel = "Abbrechen";
60
+ Signavio.I18N.Editor.Linking.UseName = "Diagrammnamen übernehmen";
61
+ Signavio.I18N.Editor.Linking.UseNameHint = "Ersetzt den Bezeichner des aktuellen Elements ({type}) durch den Namen des zu verlinkenden Diagramms.";
62
+ Signavio.I18N.Editor.Linking.AlertSelectModel = "Bitte selektieren Sie ein Diagramm.";
63
+ Signavio.I18N.Editor.Linking.ButtonLink = "Verlinkung setzen";
64
+ Signavio.I18N.Editor.Linking.LinkNoAccess = "Sie haben keine Berechtigung für das Diagramm.";
65
+ Signavio.I18N.Editor.Linking.LinkUnavailable = "Das Diagramm ist nicht verfügbar.";
66
+ Signavio.I18N.Editor.Linking.RemoveLink = "Link löschen";
67
+ Signavio.I18N.Editor.Linking.EditLink = "Link ändern";
68
+ Signavio.I18N.Editor.Linking.OpenLink = "Öffnen";
69
+ Signavio.I18N.Editor.Linking.BrokenLink = "Der Link ist nicht verfügbar!";
70
+ Signavio.I18N.Editor.Linking.PreviewTitle = "Vorschau";
71
+
72
+ if(!ORYX.I18N.PropertyWindow) ORYX.I18N.PropertyWindow = {};
73
+ ORYX.I18N.PropertyWindow.oftenUsed = "Hauptattribute";
74
+ ORYX.I18N.PropertyWindow.moreProps = "Weitere Attribute";
75
+ ORYX.I18N.PropertyWindow.characteristicNr = "Kennzahlen";
76
+ ORYX.I18N.PropertyWindow.meta = "Eigene Attribute";
77
+
78
+ if(!ORYX.I18N.PropertyWindow.Category){ORYX.I18N.PropertyWindow.Category = {}}
79
+ ORYX.I18N.PropertyWindow.Category.popular = "Hauptattribute";
80
+ ORYX.I18N.PropertyWindow.Category.characteristicnr = "Kennzahlen";
81
+ ORYX.I18N.PropertyWindow.Category.others = "Weitere Attribute";
82
+ ORYX.I18N.PropertyWindow.Category.meta = "Eigene Attribute";
83
+
84
+ if(!ORYX.I18N.PropertyWindow.ListView) ORYX.I18N.PropertyWindow.ListView = {};
85
+ ORYX.I18N.PropertyWindow.ListView.title = "Attribut: ";
86
+ ORYX.I18N.PropertyWindow.ListView.dataViewLabel = "Bereits vorhandene Einträge";
87
+ ORYX.I18N.PropertyWindow.ListView.dataViewEmptyText = "Es sind noch keine Einträge vorhanden.";
88
+ ORYX.I18N.PropertyWindow.ListView.addEntryLabel = "Neuen Eintrag hinzufügen";
89
+ ORYX.I18N.PropertyWindow.ListView.buttonAdd = "Hinzufügen";
90
+ ORYX.I18N.PropertyWindow.ListView.save = "Speichern";
91
+ ORYX.I18N.PropertyWindow.ListView.cancel = "Abbrachen";
92
+
93
+ if(!Signavio.I18N.Buttons) Signavio.I18N.Buttons = {};
94
+ Signavio.I18N.Buttons.save = "Speichern";
95
+ Signavio.I18N.Buttons.cancel = "Abbrechen";
96
+ Signavio.I18N.Buttons.remove = "Entfernen";
97
+
98
+ if(!Signavio.I18N.btn) {Signavio.I18N.btn = {};}
99
+ Signavio.I18N.btn.btnEdit = "Editieren";
100
+ Signavio.I18N.btn.btnRemove = "Löschen";
101
+ Signavio.I18N.btn.moveUp = "Nach oben";
102
+ Signavio.I18N.btn.moveDown = "Nach unten";
103
+
104
+ if(!Signavio.I18N.field) {Signavio.I18N.field = {};}
105
+ Signavio.I18N.field.Url = "URL";
106
+ Signavio.I18N.field.UrlLabel = "Label";
@@ -0,0 +1,108 @@
1
+ ORYX.I18N.PropertyWindow.dateFormat = "d/m/y";
2
+
3
+ ORYX.I18N.View.East = "Attributes";
4
+ ORYX.I18N.View.West = "Modeling Elements";
5
+
6
+ ORYX.I18N.Oryx.title = "Signavio";
7
+ ORYX.I18N.Oryx.pleaseWait = "Please wait while the Signavio Process Editor is loading...";
8
+ ORYX.I18N.Edit.cutDesc = "Cuts the selection into the clipboard";
9
+ ORYX.I18N.Edit.copyDesc = "Copies the selection into the clipboard";
10
+ ORYX.I18N.Edit.pasteDesc = "Pastes the clipboard to the canvas";
11
+ ORYX.I18N.ERDFSupport.noCanvas = "The xml document has no canvas node included!";
12
+ ORYX.I18N.ERDFSupport.noSS = "The Signavio Process Editor canvas node has no stencil set definition included!";
13
+ ORYX.I18N.ERDFSupport.deprText = "Exporting to eRDF is not recommended anymore because the support will be stopped in future versions of the Signavio Process Editor. If possible, export the model to JSON. Do you want to export anyway?";
14
+ ORYX.I18N.Save.pleaseWait = "Please wait<br/>while saving...";
15
+
16
+ ORYX.I18N.Save.saveAs = "Save a copy...";
17
+ ORYX.I18N.Save.saveAsDesc = "Save a copy...";
18
+ ORYX.I18N.Save.saveAsTitle = "Save a copy...";
19
+ ORYX.I18N.Save.savedAs = "Copy saved";
20
+ ORYX.I18N.Save.savedDescription = "The process diagram is stored under";
21
+ ORYX.I18N.Save.notAuthorized = "You are currently not logged in. Please <a href='/p/login' target='_blank'>log in</a> in a new window so that you can save the current diagram."
22
+ ORYX.I18N.Save.transAborted = "The saving request took too long. You may use a faster internet connection. If you use wireless LAN, please check the strength of your connection.";
23
+ ORYX.I18N.Save.noRights = "You do not have the required rights to store that model. Please check in the <a href='/p/explorer' target='_blank'>Signavio Explorer</a>, if you still have the rights to write in the target directory.";
24
+ ORYX.I18N.Save.comFailed = "The communication with the Signavio server failed. Please check your internet connection. If the problem resides, please contact the Signavio Support via the envelope symbol in the toolbar.";
25
+ ORYX.I18N.Save.failed = "Something went wrong when trying to save your diagram. Please try again. If the problem resides, please contact the Signavio Support via the envelope symbol in the toolbar.";
26
+ ORYX.I18N.Save.exception = "Some exceptions are raised while trying to save your diagram. Please try again. If the problem resides, please contact the Signavio Support via the envelope symbol in the toolbar.";
27
+ ORYX.I18N.Save.retrieveData = "Please wait, data is retrieving.";
28
+
29
+ /** New Language Properties: 10.6.09*/
30
+ if(!ORYX.I18N.ShapeMenuPlugin) ORYX.I18N.ShapeMenuPlugin = {};
31
+ ORYX.I18N.ShapeMenuPlugin.morphMsg = "Transform shape";
32
+ ORYX.I18N.ShapeMenuPlugin.morphWarningTitleMsg = "Transform shape";
33
+ ORYX.I18N.ShapeMenuPlugin.morphWarningMsg = "There are child shape which can not be contained in the transformed element.<br/>Do you want to transform anyway?";
34
+
35
+ if (!Signavio) { var Signavio = {}; }
36
+ if (!Signavio.I18N) { Signavio.I18N = {} }
37
+ if (!Signavio.I18N.Editor) { Signavio.I18N.Editor = {} }
38
+
39
+ if (!Signavio.I18N.Editor.Linking) { Signavio.I18N.Editor.Linking = {} }
40
+ Signavio.I18N.Editor.Linking.CreateDiagram = "Create a new diagram";
41
+ Signavio.I18N.Editor.Linking.UseDiagram = "Use existing diagram";
42
+ Signavio.I18N.Editor.Linking.UseLink = "Use web link";
43
+ Signavio.I18N.Editor.Linking.Close = "Close";
44
+ Signavio.I18N.Editor.Linking.Cancel = "Cancel";
45
+ Signavio.I18N.Editor.Linking.UseName = "Adopt diagram name";
46
+ Signavio.I18N.Editor.Linking.UseNameHint = "Replaces the current name of the modeling element ({type}) with the name of the linked diagram.";
47
+ Signavio.I18N.Editor.Linking.CreateTitle = "Establish link";
48
+ Signavio.I18N.Editor.Linking.AlertSelectModel = "You have to select a model.";
49
+ Signavio.I18N.Editor.Linking.ButtonLink = "Link diagram";
50
+ Signavio.I18N.Editor.Linking.LinkNoAccess = "You have no access to this diagram.";
51
+ Signavio.I18N.Editor.Linking.LinkUnavailable = "The diagram is unavailable.";
52
+ Signavio.I18N.Editor.Linking.RemoveLink = "Remove link";
53
+ Signavio.I18N.Editor.Linking.EditLink = "Edit Link";
54
+ Signavio.I18N.Editor.Linking.OpenLink = "Open";
55
+ Signavio.I18N.Editor.Linking.BrokenLink = "The link is broken!";
56
+ Signavio.I18N.Editor.Linking.PreviewTitle = "Preview";
57
+
58
+ if(!Signavio.I18N.Glossary_Support) { Signavio.I18N.Glossary_Support = {}; }
59
+ Signavio.I18N.Glossary_Support.renameEmpty = "No dictionary entry";
60
+ Signavio.I18N.Glossary_Support.renameLoading = "Searching...";
61
+
62
+ /** New Language Properties: 08.09.2009*/
63
+ if(!ORYX.I18N.PropertyWindow) ORYX.I18N.PropertyWindow = {};
64
+ ORYX.I18N.PropertyWindow.oftenUsed = "Main properties";
65
+ ORYX.I18N.PropertyWindow.moreProps = "More properties";
66
+
67
+ ORYX.I18N.PropertyWindow.btnOpen = "Open";
68
+ ORYX.I18N.PropertyWindow.btnRemove = "Remove";
69
+ ORYX.I18N.PropertyWindow.btnEdit = "Edit";
70
+ ORYX.I18N.PropertyWindow.btnUp = "Move up";
71
+ ORYX.I18N.PropertyWindow.btnDown = "Move down";
72
+ ORYX.I18N.PropertyWindow.createNew = "Create new";
73
+
74
+ if(!ORYX.I18N.PropertyWindow) ORYX.I18N.PropertyWindow = {};
75
+ ORYX.I18N.PropertyWindow.oftenUsed = "Main attributes";
76
+ ORYX.I18N.PropertyWindow.moreProps = "More attributes";
77
+ ORYX.I18N.PropertyWindow.characteristicNr = "Cost &amp; Resource Analysis";
78
+ ORYX.I18N.PropertyWindow.meta = "Custom attributes";
79
+
80
+ if(!ORYX.I18N.PropertyWindow.Category){ORYX.I18N.PropertyWindow.Category = {}}
81
+ ORYX.I18N.PropertyWindow.Category.popular = "Main Attributes";
82
+ ORYX.I18N.PropertyWindow.Category.characteristicnr = "Cost &amp; Resource Analysis";
83
+ ORYX.I18N.PropertyWindow.Category.others = "More Attributes";
84
+ ORYX.I18N.PropertyWindow.Category.meta = "Custom Attributes";
85
+
86
+ if(!ORYX.I18N.PropertyWindow.ListView) ORYX.I18N.PropertyWindow.ListView = {};
87
+ ORYX.I18N.PropertyWindow.ListView.title = "Edit: ";
88
+ ORYX.I18N.PropertyWindow.ListView.dataViewLabel = "Already existing entries.";
89
+ ORYX.I18N.PropertyWindow.ListView.dataViewEmptyText = "No list entries.";
90
+ ORYX.I18N.PropertyWindow.ListView.addEntryLabel = "Add a new entry";
91
+ ORYX.I18N.PropertyWindow.ListView.buttonAdd = "Add";
92
+ ORYX.I18N.PropertyWindow.ListView.save = "Save";
93
+ ORYX.I18N.PropertyWindow.ListView.cancel = "Cancel";
94
+
95
+ if(!Signavio.I18N.Buttons) Signavio.I18N.Buttons = {};
96
+ Signavio.I18N.Buttons.save = "Save";
97
+ Signavio.I18N.Buttons.cancel = "Cancel";
98
+ Signavio.I18N.Buttons.remove = "Remove";
99
+
100
+ if(!Signavio.I18N.btn) {Signavio.I18N.btn = {};}
101
+ Signavio.I18N.btn.btnEdit = "Edit";
102
+ Signavio.I18N.btn.btnRemove = "Remove";
103
+ Signavio.I18N.btn.moveUp = "Move up";
104
+ Signavio.I18N.btn.moveDown = "Move down";
105
+
106
+ if(!Signavio.I18N.field) {Signavio.I18N.field = {};}
107
+ Signavio.I18N.field.Url = "URL";
108
+ Signavio.I18N.field.UrlLabel = "Label";