mobiusloop 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (516) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.rspec +1 -0
  4. data/.ruby-gemset +1 -0
  5. data/.travis.yml +22 -0
  6. data/.yardopts +1 -0
  7. data/CONTRIBUTING.md +68 -0
  8. data/Gemfile +5 -0
  9. data/History.md +2280 -0
  10. data/LICENSE +22 -0
  11. data/README.md +373 -0
  12. data/Rakefile +22 -0
  13. data/bin/mobiusloop +8 -0
  14. data/cucumber.gemspec +47 -0
  15. data/cucumber.yml +20 -0
  16. data/examples/i18n/README.textile +3 -0
  17. data/examples/i18n/Rakefile +33 -0
  18. data/examples/i18n/ar/Rakefile +6 -0
  19. data/examples/i18n/ar/features/addition.feature +17 -0
  20. data/examples/i18n/ar/features/step_definitions/calculator_steps.rb +24 -0
  21. data/examples/i18n/ar/lib/calculator.rb +11 -0
  22. data/examples/i18n/bg/Rakefile +6 -0
  23. data/examples/i18n/bg/features/addition.feature +12 -0
  24. data/examples/i18n/bg/features/consecutive_calculations.feature +19 -0
  25. data/examples/i18n/bg/features/division.feature +17 -0
  26. data/examples/i18n/bg/features/step_definitions/calculator_steps.rb +24 -0
  27. data/examples/i18n/bg/features/support/env.rb +5 -0
  28. data/examples/i18n/bg/features/support/world.rb +8 -0
  29. data/examples/i18n/bg/lib/calculator.rb +24 -0
  30. data/examples/i18n/ca/Rakefile +6 -0
  31. data/examples/i18n/ca/features/step_definitions/calculator_steps.rb +21 -0
  32. data/examples/i18n/ca/features/suma.feature +17 -0
  33. data/examples/i18n/ca/lib/calculadora.rb +16 -0
  34. data/examples/i18n/cs/Rakefile +6 -0
  35. data/examples/i18n/cs/features/addition.feature +17 -0
  36. data/examples/i18n/cs/features/division.feature +11 -0
  37. data/examples/i18n/cs/features/step_definitions/calculator_steps.rb +24 -0
  38. data/examples/i18n/cs/lib/calculator.rb +14 -0
  39. data/examples/i18n/da/Rakefile +6 -0
  40. data/examples/i18n/da/features/sammenlaegning.feature +18 -0
  41. data/examples/i18n/da/features/step_definitions/lommeregner_steps.rb +24 -0
  42. data/examples/i18n/da/lib/lommeregner.rb +11 -0
  43. data/examples/i18n/de/Rakefile +6 -0
  44. data/examples/i18n/de/features/addition.feature +17 -0
  45. data/examples/i18n/de/features/division.feature +10 -0
  46. data/examples/i18n/de/features/step_definitions/calculator_steps.rb +24 -0
  47. data/examples/i18n/de/lib/calculator.rb +14 -0
  48. data/examples/i18n/el/Rakefile +6 -0
  49. data/examples/i18n/el/features/addition.feature +17 -0
  50. data/examples/i18n/el/features/division.feature +10 -0
  51. data/examples/i18n/el/features/step_definitions/calculator_steps.rb +24 -0
  52. data/examples/i18n/el/lib/calculator.rb +14 -0
  53. data/examples/i18n/en-lol/Rakefile +4 -0
  54. data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
  55. data/examples/i18n/en-lol/features/stuffing.feature +8 -0
  56. data/examples/i18n/en-lol/features/support/env.rb +7 -0
  57. data/examples/i18n/en-lol/lib/basket.rb +12 -0
  58. data/examples/i18n/en-lol/lib/belly.rb +11 -0
  59. data/examples/i18n/en/Rakefile +6 -0
  60. data/examples/i18n/en/features/addition.feature +17 -0
  61. data/examples/i18n/en/features/division.feature +10 -0
  62. data/examples/i18n/en/features/step_definitions/calculator_steps.rb +24 -0
  63. data/examples/i18n/en/lib/calculator.rb +14 -0
  64. data/examples/i18n/eo/Rakefile +6 -0
  65. data/examples/i18n/eo/features/adicio.feature +17 -0
  66. data/examples/i18n/eo/features/divido.feature +10 -0
  67. data/examples/i18n/eo/features/step_definitions/calculator_steps.rb +24 -0
  68. data/examples/i18n/eo/lib/calculator.rb +14 -0
  69. data/examples/i18n/es/Rakefile +6 -0
  70. data/examples/i18n/es/features/adicion.feature +17 -0
  71. data/examples/i18n/es/features/step_definitions/calculador_steps.rb +21 -0
  72. data/examples/i18n/es/lib/calculador.rb +14 -0
  73. data/examples/i18n/et/Rakefile +6 -0
  74. data/examples/i18n/et/features/jagamine.feature +10 -0
  75. data/examples/i18n/et/features/liitmine.feature +17 -0
  76. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
  77. data/examples/i18n/et/lib/kalkulaator.rb +14 -0
  78. data/examples/i18n/fi/Rakefile +6 -0
  79. data/examples/i18n/fi/features/jakolasku.feature +10 -0
  80. data/examples/i18n/fi/features/step_definitions/laskin_steps.rb +24 -0
  81. data/examples/i18n/fi/features/yhteenlasku.feature +17 -0
  82. data/examples/i18n/fi/lib/laskin.rb +14 -0
  83. data/examples/i18n/fr/Rakefile +8 -0
  84. data/examples/i18n/fr/features/addition.feature +18 -0
  85. data/examples/i18n/fr/features/addition2.feature +17 -0
  86. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +32 -0
  87. data/examples/i18n/fr/features/support/env.rb +5 -0
  88. data/examples/i18n/fr/lib/calculatrice.rb +10 -0
  89. data/examples/i18n/he/Rakefile +6 -0
  90. data/examples/i18n/he/features/addition.feature +17 -0
  91. data/examples/i18n/he/features/division.feature +10 -0
  92. data/examples/i18n/he/features/step_definitions/calculator_steps.rb +24 -0
  93. data/examples/i18n/he/lib/calculator.rb +15 -0
  94. data/examples/i18n/hi/Rakefile +6 -0
  95. data/examples/i18n/hi/features/addition.feature +16 -0
  96. data/examples/i18n/hi/features/division.feature +10 -0
  97. data/examples/i18n/hi/features/step_definitions/calculator_steps.rb +24 -0
  98. data/examples/i18n/hi/lib/calculator.rb +15 -0
  99. data/examples/i18n/ht/Rakefile +6 -0
  100. data/examples/i18n/ht/features/adisyon.feature +17 -0
  101. data/examples/i18n/ht/features/divizyon.feature +10 -0
  102. data/examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb +25 -0
  103. data/examples/i18n/ht/lib/kalkilatris.rb +14 -0
  104. data/examples/i18n/hu/Rakefile +6 -0
  105. data/examples/i18n/hu/features/osszeadas.feature +17 -0
  106. data/examples/i18n/hu/features/osztas.feature +10 -0
  107. data/examples/i18n/hu/features/step_definitions/calculator_steps.rb +25 -0
  108. data/examples/i18n/hu/lib/calculator.rb +14 -0
  109. data/examples/i18n/id/Rakefile +6 -0
  110. data/examples/i18n/id/features/addition.feature +17 -0
  111. data/examples/i18n/id/features/division.feature +10 -0
  112. data/examples/i18n/id/features/step_definitions/calculator_steps.rb +24 -0
  113. data/examples/i18n/id/lib/calculator.rb +14 -0
  114. data/examples/i18n/it/Rakefile +6 -0
  115. data/examples/i18n/it/features/somma.feature +11 -0
  116. data/examples/i18n/it/features/step_definitions/calcolatrice_steps.rb +24 -0
  117. data/examples/i18n/it/lib/calcolatrice.rb +11 -0
  118. data/examples/i18n/ja/Rakefile +6 -0
  119. data/examples/i18n/ja/features/addition.feature +17 -0
  120. data/examples/i18n/ja/features/division.feature +10 -0
  121. data/examples/i18n/ja/features/step_definitions/calculator_steps.rb +19 -0
  122. data/examples/i18n/ja/features/support/env.rb +5 -0
  123. data/examples/i18n/ja/lib/calculator.rb +14 -0
  124. data/examples/i18n/ko/Rakefile +6 -0
  125. data/examples/i18n/ko/features/addition.feature +17 -0
  126. data/examples/i18n/ko/features/division.feature +11 -0
  127. data/examples/i18n/ko/features/step_definitions/calculator_steps.rb +24 -0
  128. data/examples/i18n/ko/lib/calculator.rb +14 -0
  129. data/examples/i18n/lt/Rakefile +6 -0
  130. data/examples/i18n/lt/features/addition.feature +17 -0
  131. data/examples/i18n/lt/features/division.feature +10 -0
  132. data/examples/i18n/lt/features/step_definitions/calculator_steps.rb +24 -0
  133. data/examples/i18n/lt/lib/calculator.rb +14 -0
  134. data/examples/i18n/lv/Rakefile +6 -0
  135. data/examples/i18n/lv/features/addition.feature +17 -0
  136. data/examples/i18n/lv/features/division.feature +10 -0
  137. data/examples/i18n/lv/features/step_definitions/calculator_steps.rb +24 -0
  138. data/examples/i18n/lv/lib/calculator.rb +14 -0
  139. data/examples/i18n/no/Rakefile +6 -0
  140. data/examples/i18n/no/features/step_definitions/kalkulator_steps.rb +17 -0
  141. data/examples/i18n/no/features/summering.feature +19 -0
  142. data/examples/i18n/no/features/support/env.rb +6 -0
  143. data/examples/i18n/no/lib/kalkulator.rb +11 -0
  144. data/examples/i18n/pl/Rakefile +6 -0
  145. data/examples/i18n/pl/features/addition.feature +17 -0
  146. data/examples/i18n/pl/features/division.feature +10 -0
  147. data/examples/i18n/pl/features/step_definitions/calculator_steps.rb +24 -0
  148. data/examples/i18n/pl/features/support/env.rb +5 -0
  149. data/examples/i18n/pl/lib/calculator.rb +14 -0
  150. data/examples/i18n/pt/Rakefile +6 -0
  151. data/examples/i18n/pt/features/adicao.feature +11 -0
  152. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +20 -0
  153. data/examples/i18n/pt/features/support/env.rb +5 -0
  154. data/examples/i18n/pt/lib/calculadora.rb +10 -0
  155. data/examples/i18n/ro/Rakefile +6 -0
  156. data/examples/i18n/ro/features/adunare.feature +12 -0
  157. data/examples/i18n/ro/features/step_definitions/calculator_steps.rb +21 -0
  158. data/examples/i18n/ro/lib/calculator.rb +11 -0
  159. data/examples/i18n/ru/Rakefile +6 -0
  160. data/examples/i18n/ru/features/addition.feature +11 -0
  161. data/examples/i18n/ru/features/consecutive_calculations.feature +17 -0
  162. data/examples/i18n/ru/features/division.feature +16 -0
  163. data/examples/i18n/ru/features/step_definitions/calculator_steps.rb +19 -0
  164. data/examples/i18n/ru/features/support/env.rb +5 -0
  165. data/examples/i18n/ru/features/support/world.rb +8 -0
  166. data/examples/i18n/ru/lib/calculator.rb +24 -0
  167. data/examples/i18n/sk/Rakefile +6 -0
  168. data/examples/i18n/sk/features/addition.feature +17 -0
  169. data/examples/i18n/sk/features/division.feature +10 -0
  170. data/examples/i18n/sk/features/step_definitions/calculator_steps.rb +24 -0
  171. data/examples/i18n/sk/lib/calculator.rb +14 -0
  172. data/examples/i18n/sr-Cyrl/Rakefile +6 -0
  173. data/examples/i18n/sr-Cyrl/features/sabiranje.feature +18 -0
  174. data/examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb +20 -0
  175. data/examples/i18n/sr-Cyrl/features/support/env.rb +5 -0
  176. data/examples/i18n/sr-Cyrl/lib/calculator.rb +12 -0
  177. data/examples/i18n/sr-Latn/Rakefile +6 -0
  178. data/examples/i18n/sr-Latn/features/sabiranje.feature +18 -0
  179. data/examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb +24 -0
  180. data/examples/i18n/sr-Latn/lib/calculator.rb +12 -0
  181. data/examples/i18n/sv/Rakefile +6 -0
  182. data/examples/i18n/sv/features/step_definitions/kalkulator_steps.rb +24 -0
  183. data/examples/i18n/sv/features/summering.feature +18 -0
  184. data/examples/i18n/sv/lib/kalkulator.rb +11 -0
  185. data/examples/i18n/tr/Rakefile +6 -0
  186. data/examples/i18n/tr/features/bolme.feature +10 -0
  187. data/examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb +24 -0
  188. data/examples/i18n/tr/features/toplama.feature +18 -0
  189. data/examples/i18n/tr/lib/hesap_makinesi.rb +15 -0
  190. data/examples/i18n/uk/Rakefile +6 -0
  191. data/examples/i18n/uk/features/addition.feature +11 -0
  192. data/examples/i18n/uk/features/consecutive_calculations.feature +17 -0
  193. data/examples/i18n/uk/features/division.feature +16 -0
  194. data/examples/i18n/uk/features/step_definitions/calculator_steps.rb +19 -0
  195. data/examples/i18n/uk/features/support/env.rb +5 -0
  196. data/examples/i18n/uk/features/support/world.rb +8 -0
  197. data/examples/i18n/uk/lib/calculator.rb +24 -0
  198. data/examples/i18n/uz/Rakefile +6 -0
  199. data/examples/i18n/uz/features/addition.feature +10 -0
  200. data/examples/i18n/uz/features/consecutive_calculations.feature +17 -0
  201. data/examples/i18n/uz/features/division.feature +17 -0
  202. data/examples/i18n/uz/features/step_definitions/calculator_steps.rb +19 -0
  203. data/examples/i18n/uz/features/support/env.rb +5 -0
  204. data/examples/i18n/uz/features/support/world.rb +8 -0
  205. data/examples/i18n/uz/lib/calculator.rb +24 -0
  206. data/examples/i18n/zh-CN/Rakefile +4 -0
  207. data/examples/i18n/zh-CN/features/addition.feature +18 -0
  208. data/examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb +26 -0
  209. data/examples/i18n/zh-CN/lib/calculator.rb +10 -0
  210. data/examples/i18n/zh-TW/Rakefile +4 -0
  211. data/examples/i18n/zh-TW/features/addition.feature +17 -0
  212. data/examples/i18n/zh-TW/features/division.feature +11 -0
  213. data/examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb +24 -0
  214. data/examples/i18n/zh-TW/lib/calculator.rb +14 -0
  215. data/examples/mobiusloop/increase_readers.goal +13 -0
  216. data/examples/mobiusloop/scale_page_response.rb +20 -0
  217. data/examples/mobiusloop/total_articles_scale.rb +10 -0
  218. data/examples/mobiusloop/total_readers_scale.rb +10 -0
  219. data/examples/rspec_doubles/Rakefile +4 -0
  220. data/examples/rspec_doubles/features/mocking.feature +9 -0
  221. data/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +19 -0
  222. data/examples/rspec_doubles/features/support/env.rb +12 -0
  223. data/examples/sinatra/README.textile +13 -0
  224. data/examples/sinatra/Rakefile +6 -0
  225. data/examples/sinatra/app.rb +14 -0
  226. data/examples/sinatra/features/add.feature +11 -0
  227. data/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
  228. data/examples/sinatra/features/support/env.rb +10 -0
  229. data/examples/sinatra/views/add.erb +7 -0
  230. data/examples/sinatra/views/layout.erb +8 -0
  231. data/examples/tcl/README.textile +11 -0
  232. data/examples/tcl/Rakefile +6 -0
  233. data/examples/tcl/features/fibonnacci.feature +17 -0
  234. data/examples/tcl/features/step_definitions/fib_steps.rb +7 -0
  235. data/examples/tcl/features/support/env.rb +6 -0
  236. data/examples/tcl/src/fib.tcl +3 -0
  237. data/examples/test_unit/Gemfile +4 -0
  238. data/examples/test_unit/Rakefile +6 -0
  239. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +20 -0
  240. data/examples/test_unit/features/test_unit.feature +9 -0
  241. data/examples/watir/README.textile +16 -0
  242. data/examples/watir/Rakefile +12 -0
  243. data/examples/watir/cucumber.yml +1 -0
  244. data/examples/watir/features/search.feature +12 -0
  245. data/examples/watir/features/step_definitions/search_steps.rb +26 -0
  246. data/examples/watir/features/support/env.rb +35 -0
  247. data/examples/watir/features/support/screenshots.rb +47 -0
  248. data/features/docs/api/list_step_defs_as_json.feature +50 -0
  249. data/features/docs/api/listen_for_events.feature +58 -0
  250. data/features/docs/api/run_cli_main_with_existing_runtime.feature +26 -0
  251. data/features/docs/cli/backtraces.feature +36 -0
  252. data/features/docs/cli/dry_run.feature +70 -0
  253. data/features/docs/cli/exclude_files.feature +18 -0
  254. data/features/docs/cli/execute_with_tag_filter.feature +117 -0
  255. data/features/docs/cli/fail_fast.feature +46 -0
  256. data/features/docs/cli/finding_steps.feature +28 -0
  257. data/features/docs/cli/randomize.feature +140 -0
  258. data/features/docs/cli/require.feature +27 -0
  259. data/features/docs/cli/retry_failing_tests.feature +32 -0
  260. data/features/docs/cli/run_scenarios_matching_name.feature +104 -0
  261. data/features/docs/cli/run_specific_scenarios.feature +77 -0
  262. data/features/docs/cli/showing_differences.feature +43 -0
  263. data/features/docs/cli/specifying_multiple_formatters.feature +65 -0
  264. data/features/docs/cli/strict_mode.feature +64 -0
  265. data/features/docs/defining_steps/nested_steps.feature +177 -0
  266. data/features/docs/defining_steps/nested_steps_i18n.feature +34 -0
  267. data/features/docs/defining_steps/nested_steps_with_second_arg.feature +54 -0
  268. data/features/docs/defining_steps/one_line_step_definitions.feature +65 -0
  269. data/features/docs/defining_steps/printing_messages.feature +148 -0
  270. data/features/docs/defining_steps/skip_scenario.feature +64 -0
  271. data/features/docs/defining_steps/snippets.feature +56 -0
  272. data/features/docs/defining_steps/table_diffing.feature +50 -0
  273. data/features/docs/exception_in_after_hook.feature +126 -0
  274. data/features/docs/exception_in_after_step_hook.feature +102 -0
  275. data/features/docs/exception_in_around_hook.feature +78 -0
  276. data/features/docs/exception_in_before_hook.feature +96 -0
  277. data/features/docs/extending_cucumber/custom_filter.feature +29 -0
  278. data/features/docs/extending_cucumber/custom_formatter.feature +130 -0
  279. data/features/docs/formatters/api_methods.feature +37 -0
  280. data/features/docs/formatters/debug_formatter.feature +47 -0
  281. data/features/docs/formatters/formatter_step_file_colon_line.feature +44 -0
  282. data/features/docs/formatters/html_formatter.feature +91 -0
  283. data/features/docs/formatters/json_formatter.feature +767 -0
  284. data/features/docs/formatters/junit_formatter.feature +454 -0
  285. data/features/docs/formatters/pretty_formatter.feature +73 -0
  286. data/features/docs/formatters/progress_formatter.feature +31 -0
  287. data/features/docs/formatters/rerun_formatter.feature +188 -0
  288. data/features/docs/formatters/usage_formatter.feature +98 -0
  289. data/features/docs/getting_started.feature +27 -0
  290. data/features/docs/gherkin/background.feature +548 -0
  291. data/features/docs/gherkin/doc_strings.feature +74 -0
  292. data/features/docs/gherkin/expand_option_for_outlines.feature +46 -0
  293. data/features/docs/gherkin/language_from_header.feature +32 -0
  294. data/features/docs/gherkin/language_help.feature +42 -0
  295. data/features/docs/gherkin/outlines.feature +156 -0
  296. data/features/docs/gherkin/unicode_table.feature +32 -0
  297. data/features/docs/gherkin/using_descriptions.feature +82 -0
  298. data/features/docs/gherkin/using_star_notation.feature +37 -0
  299. data/features/docs/iso-8859-1.feature +6 -0
  300. data/features/docs/post_configuration_hook.feature +49 -0
  301. data/features/docs/profiles.feature +120 -0
  302. data/features/docs/rake_task.feature +141 -0
  303. data/features/docs/raketask.feature +44 -0
  304. data/features/docs/work_in_progress.feature +154 -0
  305. data/features/docs/writing_support_code/after_hooks.feature +102 -0
  306. data/features/docs/writing_support_code/after_step_hooks.feature +53 -0
  307. data/features/docs/writing_support_code/around_hooks.feature +260 -0
  308. data/features/docs/writing_support_code/before_hook.feature +65 -0
  309. data/features/docs/writing_support_code/hook_order.feature +61 -0
  310. data/features/docs/writing_support_code/load_path.feature +17 -0
  311. data/features/docs/writing_support_code/state.feature +32 -0
  312. data/features/docs/writing_support_code/tagged_hooks.feature +95 -0
  313. data/features/docs/writing_support_code/transforms.feature +98 -0
  314. data/features/lib/step_definitions/aruba_steps.rb +26 -0
  315. data/features/lib/step_definitions/cucumber_steps.rb +78 -0
  316. data/features/lib/step_definitions/iso-8859-1_steps.rb +12 -0
  317. data/features/lib/step_definitions/json_steps.rb +7 -0
  318. data/features/lib/step_definitions/junit_steps.rb +13 -0
  319. data/features/lib/step_definitions/language_steps.rb +8 -0
  320. data/features/lib/step_definitions/profile_steps.rb +15 -0
  321. data/features/lib/step_definitions/retry_steps.rb +35 -0
  322. data/features/lib/step_definitions/ruby_steps.rb +3 -0
  323. data/features/lib/step_definitions/wire_steps.rb +58 -0
  324. data/features/lib/support/env.rb +21 -0
  325. data/features/lib/support/fake_wire_server.rb +80 -0
  326. data/features/lib/support/feature_factory.rb +67 -0
  327. data/features/lib/support/normalise_output.rb +50 -0
  328. data/gem_tasks/contributors.rake +15 -0
  329. data/gem_tasks/cov.rake +5 -0
  330. data/gem_tasks/cucumber.rake +25 -0
  331. data/gem_tasks/downloads.rb +7 -0
  332. data/gem_tasks/environment.rake +7 -0
  333. data/gem_tasks/examples.rake +11 -0
  334. data/gem_tasks/fix_cr_lf.rake +10 -0
  335. data/gem_tasks/flog.rake +4 -0
  336. data/gem_tasks/rspec.rake +6 -0
  337. data/gem_tasks/sass.rake +4 -0
  338. data/gem_tasks/stats +16 -0
  339. data/gem_tasks/versions.txt +74 -0
  340. data/gherkin-languages.json +2972 -0
  341. data/lib/autotest/cucumber.rb +6 -0
  342. data/lib/autotest/cucumber_mixin.rb +135 -0
  343. data/lib/autotest/cucumber_rails.rb +6 -0
  344. data/lib/autotest/cucumber_rails_rspec.rb +6 -0
  345. data/lib/autotest/cucumber_rails_rspec2.rb +6 -0
  346. data/lib/autotest/cucumber_rspec.rb +6 -0
  347. data/lib/autotest/cucumber_rspec2.rb +6 -0
  348. data/lib/autotest/discover.rb +11 -0
  349. data/lib/cucumber.rb +37 -0
  350. data/lib/cucumber/ast.rb +13 -0
  351. data/lib/cucumber/cli/configuration.rb +146 -0
  352. data/lib/cucumber/cli/main.rb +99 -0
  353. data/lib/cucumber/cli/options.rb +465 -0
  354. data/lib/cucumber/cli/profile_loader.rb +91 -0
  355. data/lib/cucumber/cli/rerun_file.rb +29 -0
  356. data/lib/cucumber/configuration.rb +268 -0
  357. data/lib/cucumber/constantize.rb +45 -0
  358. data/lib/cucumber/core_ext/instance_exec.rb +70 -0
  359. data/lib/cucumber/core_ext/string.rb +9 -0
  360. data/lib/cucumber/deprecate.rb +29 -0
  361. data/lib/cucumber/encoding.rb +5 -0
  362. data/lib/cucumber/errors.rb +51 -0
  363. data/lib/cucumber/events.rb +20 -0
  364. data/lib/cucumber/events/after_test_case.rb +25 -0
  365. data/lib/cucumber/events/after_test_step.rb +30 -0
  366. data/lib/cucumber/events/before_test_case.rb +18 -0
  367. data/lib/cucumber/events/before_test_step.rb +23 -0
  368. data/lib/cucumber/events/bus.rb +86 -0
  369. data/lib/cucumber/events/finished_testing.rb +9 -0
  370. data/lib/cucumber/events/step_match.rb +23 -0
  371. data/lib/cucumber/file_specs.rb +37 -0
  372. data/lib/cucumber/filters.rb +9 -0
  373. data/lib/cucumber/filters/activate_steps.rb +67 -0
  374. data/lib/cucumber/filters/apply_after_hooks.rb +9 -0
  375. data/lib/cucumber/filters/apply_after_step_hooks.rb +12 -0
  376. data/lib/cucumber/filters/apply_around_hooks.rb +12 -0
  377. data/lib/cucumber/filters/apply_before_hooks.rb +9 -0
  378. data/lib/cucumber/filters/gated_receiver.rb +25 -0
  379. data/lib/cucumber/filters/prepare_world.rb +45 -0
  380. data/lib/cucumber/filters/quit.rb +28 -0
  381. data/lib/cucumber/filters/randomizer.rb +45 -0
  382. data/lib/cucumber/filters/retry.rb +32 -0
  383. data/lib/cucumber/filters/tag_limits.rb +45 -0
  384. data/lib/cucumber/filters/tag_limits/test_case_index.rb +31 -0
  385. data/lib/cucumber/filters/tag_limits/verifier.rb +59 -0
  386. data/lib/cucumber/formatter/ansicolor.rb +160 -0
  387. data/lib/cucumber/formatter/backtrace_filter.rb +41 -0
  388. data/lib/cucumber/formatter/console.rb +252 -0
  389. data/lib/cucumber/formatter/cucumber.css +286 -0
  390. data/lib/cucumber/formatter/cucumber.sass +247 -0
  391. data/lib/cucumber/formatter/debug.rb +35 -0
  392. data/lib/cucumber/formatter/duration.rb +13 -0
  393. data/lib/cucumber/formatter/duration_extractor.rb +28 -0
  394. data/lib/cucumber/formatter/event_bus_report.rb +38 -0
  395. data/lib/cucumber/formatter/fail_fast.rb +18 -0
  396. data/lib/cucumber/formatter/fanout.rb +27 -0
  397. data/lib/cucumber/formatter/hook_query_visitor.rb +40 -0
  398. data/lib/cucumber/formatter/html.rb +689 -0
  399. data/lib/cucumber/formatter/ignore_missing_messages.rb +20 -0
  400. data/lib/cucumber/formatter/interceptor.rb +80 -0
  401. data/lib/cucumber/formatter/io.rb +34 -0
  402. data/lib/cucumber/formatter/jquery-min.js +154 -0
  403. data/lib/cucumber/formatter/json.rb +334 -0
  404. data/lib/cucumber/formatter/json_pretty.rb +10 -0
  405. data/lib/cucumber/formatter/junit.rb +238 -0
  406. data/lib/cucumber/formatter/legacy_api/adapter.rb +1016 -0
  407. data/lib/cucumber/formatter/legacy_api/ast.rb +389 -0
  408. data/lib/cucumber/formatter/legacy_api/results.rb +51 -0
  409. data/lib/cucumber/formatter/legacy_api/runtime_facade.rb +31 -0
  410. data/lib/cucumber/formatter/pretty.rb +247 -0
  411. data/lib/cucumber/formatter/progress.rb +73 -0
  412. data/lib/cucumber/formatter/rerun.rb +35 -0
  413. data/lib/cucumber/formatter/stepdefs.rb +14 -0
  414. data/lib/cucumber/formatter/steps.rb +49 -0
  415. data/lib/cucumber/formatter/summary.rb +35 -0
  416. data/lib/cucumber/formatter/unicode.rb +53 -0
  417. data/lib/cucumber/formatter/usage.rb +136 -0
  418. data/lib/cucumber/gherkin/data_table_parser.rb +31 -0
  419. data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +99 -0
  420. data/lib/cucumber/gherkin/formatter/escaping.rb +17 -0
  421. data/lib/cucumber/gherkin/i18n.rb +15 -0
  422. data/lib/cucumber/gherkin/steps_parser.rb +31 -0
  423. data/lib/cucumber/hooks.rb +99 -0
  424. data/lib/cucumber/load_path.rb +13 -0
  425. data/lib/cucumber/multiline_argument.rb +71 -0
  426. data/lib/cucumber/multiline_argument/data_table.rb +744 -0
  427. data/lib/cucumber/multiline_argument/doc_string.rb +9 -0
  428. data/lib/cucumber/platform.rb +27 -0
  429. data/lib/cucumber/project_initializer.rb +82 -0
  430. data/lib/cucumber/rake/task.rb +168 -0
  431. data/lib/cucumber/rb_support/rb_dsl.rb +119 -0
  432. data/lib/cucumber/rb_support/rb_hook.rb +19 -0
  433. data/lib/cucumber/rb_support/rb_language.rb +216 -0
  434. data/lib/cucumber/rb_support/rb_step_definition.rb +131 -0
  435. data/lib/cucumber/rb_support/rb_transform.rb +59 -0
  436. data/lib/cucumber/rb_support/rb_world.rb +149 -0
  437. data/lib/cucumber/rb_support/snippet.rb +170 -0
  438. data/lib/cucumber/rspec/disable_option_parser.rb +23 -0
  439. data/lib/cucumber/rspec/doubles.rb +19 -0
  440. data/lib/cucumber/running_test_case.rb +134 -0
  441. data/lib/cucumber/runtime.rb +266 -0
  442. data/lib/cucumber/runtime/after_hooks.rb +25 -0
  443. data/lib/cucumber/runtime/before_hooks.rb +27 -0
  444. data/lib/cucumber/runtime/for_programming_languages.rb +66 -0
  445. data/lib/cucumber/runtime/step_hooks.rb +23 -0
  446. data/lib/cucumber/runtime/support_code.rb +151 -0
  447. data/lib/cucumber/runtime/user_interface.rb +85 -0
  448. data/lib/cucumber/step_argument.rb +25 -0
  449. data/lib/cucumber/step_definition_light.rb +20 -0
  450. data/lib/cucumber/step_definitions.rb +13 -0
  451. data/lib/cucumber/step_match.rb +141 -0
  452. data/lib/cucumber/step_match_search.rb +67 -0
  453. data/lib/cucumber/term/ansicolor.rb +110 -0
  454. data/lib/cucumber/unit.rb +11 -0
  455. data/lib/cucumber/version +1 -0
  456. data/lib/mobiusloop/measure.rb +19 -0
  457. data/lib/mobiusloop/mobius_steps.rb +36 -0
  458. data/lib/mobiusloop/objective.rb +10 -0
  459. data/lib/mobiusloop/outcome.rb +99 -0
  460. data/lib/mobiusloop/scale.rb +32 -0
  461. data/lib/simplecov_setup.rb +18 -0
  462. data/major_changes_to_cucumber.md +45 -0
  463. data/mobiusloop.gemspec +47 -0
  464. data/spec/cucumber/cli/configuration_spec.rb +435 -0
  465. data/spec/cucumber/cli/main_spec.rb +83 -0
  466. data/spec/cucumber/cli/options_spec.rb +410 -0
  467. data/spec/cucumber/cli/profile_loader_spec.rb +46 -0
  468. data/spec/cucumber/cli/rerun_spec.rb +85 -0
  469. data/spec/cucumber/configuration_spec.rb +147 -0
  470. data/spec/cucumber/constantize_spec.rb +19 -0
  471. data/spec/cucumber/core_ext/instance_exec_spec.rb +4 -0
  472. data/spec/cucumber/events/bus_spec.rb +94 -0
  473. data/spec/cucumber/file_specs_spec.rb +60 -0
  474. data/spec/cucumber/filters/activate_steps_spec.rb +149 -0
  475. data/spec/cucumber/filters/gated_receiver_spec.rb +47 -0
  476. data/spec/cucumber/filters/retry_spec.rb +79 -0
  477. data/spec/cucumber/filters/tag_limits/test_case_index_spec.rb +38 -0
  478. data/spec/cucumber/filters/tag_limits/verifier_spec.rb +57 -0
  479. data/spec/cucumber/filters/tag_limits_spec.rb +59 -0
  480. data/spec/cucumber/formatter/ansicolor_spec.rb +32 -0
  481. data/spec/cucumber/formatter/debug_spec.rb +64 -0
  482. data/spec/cucumber/formatter/duration_spec.rb +22 -0
  483. data/spec/cucumber/formatter/event_bus_report_spec.rb +88 -0
  484. data/spec/cucumber/formatter/fail_fast_spec.rb +88 -0
  485. data/spec/cucumber/formatter/html_spec.rb +538 -0
  486. data/spec/cucumber/formatter/interceptor_spec.rb +136 -0
  487. data/spec/cucumber/formatter/json_spec.rb +841 -0
  488. data/spec/cucumber/formatter/junit_spec.rb +252 -0
  489. data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +2182 -0
  490. data/spec/cucumber/formatter/pretty_spec.rb +919 -0
  491. data/spec/cucumber/formatter/progress_spec.rb +169 -0
  492. data/spec/cucumber/formatter/rerun_spec.rb +91 -0
  493. data/spec/cucumber/formatter/spec_helper.rb +82 -0
  494. data/spec/cucumber/hooks_spec.rb +30 -0
  495. data/spec/cucumber/multiline_argument/data_table_spec.rb +603 -0
  496. data/spec/cucumber/project_initializer_spec.rb +87 -0
  497. data/spec/cucumber/rake/forked_spec.rb +53 -0
  498. data/spec/cucumber/rake/task_spec.rb +85 -0
  499. data/spec/cucumber/rb_support/rb_language_spec.rb +243 -0
  500. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +199 -0
  501. data/spec/cucumber/rb_support/rb_transform_spec.rb +46 -0
  502. data/spec/cucumber/rb_support/rb_world_spec.rb +47 -0
  503. data/spec/cucumber/rb_support/snippet_spec.rb +137 -0
  504. data/spec/cucumber/running_test_case_spec.rb +139 -0
  505. data/spec/cucumber/runtime/for_programming_languages_spec.rb +36 -0
  506. data/spec/cucumber/runtime/support_code_spec.rb +16 -0
  507. data/spec/cucumber/runtime_spec.rb +20 -0
  508. data/spec/cucumber/sell_cucumbers.feature +19 -0
  509. data/spec/cucumber/step_argument_spec.rb +18 -0
  510. data/spec/cucumber/step_match_search_spec.rb +122 -0
  511. data/spec/cucumber/step_match_spec.rb +85 -0
  512. data/spec/cucumber/world/pending_spec.rb +47 -0
  513. data/spec/cucumber_spec.rb +39 -0
  514. data/spec/spec_helper.rb +29 -0
  515. data/spec/support/standard_step_actions.rb +18 -0
  516. metadata +1007 -0
@@ -0,0 +1,6 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ desc "Run RSpec"
4
+ RSpec::Core::RakeTask.new do |t|
5
+ t.verbose = true
6
+ end
@@ -0,0 +1,4 @@
1
+ desc 'Generate the css for the html formatter from sass'
2
+ task :sass do
3
+ sh 'sass -t expanded lib/cucumber/formatter/cucumber.sass > lib/cucumber/formatter/cucumber.css'
4
+ end
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env sh
2
+
3
+ echo 'Commits'
4
+ git log --pretty=format:'' | wc -l
5
+
6
+ echo 'Contributors'
7
+ git log --pretty=short --no-merges | git shortlog -ne | egrep -ve '^ +' | egrep -ve '^$' | wc -l
8
+
9
+ echo 'Resolved bugs/feature requests'
10
+ egrep -e '^\*' History.md | wc -l
11
+
12
+ echo 'Open tickets'
13
+ curl -s https://api.github.com/repos/cucumber/cucumber/issues?state=open | ruby -e "require 'multi_json'; puts MultiJson.load(STDIN.read).length"
14
+
15
+ echo 'Group members'
16
+ curl -s http://groups.google.com/group/cukes | grep Members
@@ -0,0 +1,74 @@
1
+ 0.10.2
2
+ 0.10.1
3
+ 0.10.0
4
+ 0.9.4
5
+ 0.9.3
6
+ 0.9.2
7
+ 0.9.1
8
+ 0.9.0
9
+ 0.8.5
10
+ 0.8.4
11
+ 0.8.3
12
+ 0.8.2
13
+ 0.8.1
14
+ 0.8.0
15
+ 0.7.3
16
+ 0.7.2
17
+ 0.7.1
18
+ 0.7.0
19
+ 0.6.4
20
+ 0.6.3
21
+ 0.6.2
22
+ 0.6.1
23
+ 0.6.0
24
+ 0.5.3
25
+ 0.5.2
26
+ 0.5.1
27
+ 0.5.0
28
+ 0.4.4
29
+ 0.4.3
30
+ 0.4.2
31
+ 0.4.1
32
+ 0.4.0
33
+ 0.3.104
34
+ 0.3.103
35
+ 0.3.102
36
+ 0.3.101
37
+ 0.3.100
38
+ 0.3.99
39
+ 0.3.98
40
+ 0.3.97
41
+ 0.3.96
42
+ 0.3.95
43
+ 0.3.94
44
+ 0.3.93
45
+ 0.3.92
46
+ 0.3.91
47
+ 0.3.90
48
+ 0.3.11
49
+ 0.3.10
50
+ 0.3.9
51
+ 0.3.8
52
+ 0.3.7
53
+ 0.3.6
54
+ 0.3.5
55
+ 0.3.4
56
+ 0.3.3
57
+ 0.3.2
58
+ 0.3.1
59
+ 0.3.0
60
+ 0.2.3
61
+ 0.2.2
62
+ 0.2.1
63
+ 0.2.0
64
+ 0.1.16
65
+ 0.1.15
66
+ 0.1.14
67
+ 0.1.13
68
+ 0.1.12
69
+ 0.1.11
70
+ 0.1.10
71
+ 0.1.9
72
+ 0.1.8
73
+ 0.1.7
74
+ 0.1.6
@@ -0,0 +1,2972 @@
1
+ {
2
+ "af": {
3
+ "and": [
4
+ "* ",
5
+ "En "
6
+ ],
7
+ "background": [
8
+ "Agtergrond"
9
+ ],
10
+ "but": [
11
+ "* ",
12
+ "Maar "
13
+ ],
14
+ "examples": [
15
+ "Voorbeelde"
16
+ ],
17
+ "feature": [
18
+ "Funksie",
19
+ "Besigheid Behoefte",
20
+ "Vermoë"
21
+ ],
22
+ "given": [
23
+ "* ",
24
+ "Gegewe "
25
+ ],
26
+ "name": "Afrikaans",
27
+ "native": "Afrikaans",
28
+ "scenario": [
29
+ "Situasie"
30
+ ],
31
+ "scenarioOutline": [
32
+ "Situasie Uiteensetting"
33
+ ],
34
+ "then": [
35
+ "* ",
36
+ "Dan "
37
+ ],
38
+ "when": [
39
+ "* ",
40
+ "Wanneer "
41
+ ]
42
+ },
43
+ "am": {
44
+ "and": [
45
+ "* ",
46
+ "Եվ "
47
+ ],
48
+ "background": [
49
+ "Կոնտեքստ"
50
+ ],
51
+ "but": [
52
+ "* ",
53
+ "Բայց "
54
+ ],
55
+ "examples": [
56
+ "Օրինակներ"
57
+ ],
58
+ "feature": [
59
+ "Ֆունկցիոնալություն",
60
+ "Հատկություն"
61
+ ],
62
+ "given": [
63
+ "* ",
64
+ "Դիցուք "
65
+ ],
66
+ "name": "Armenian",
67
+ "native": "հայերեն",
68
+ "scenario": [
69
+ "Սցենար"
70
+ ],
71
+ "scenarioOutline": [
72
+ "Սցենարի կառուցվացքը"
73
+ ],
74
+ "then": [
75
+ "* ",
76
+ "Ապա "
77
+ ],
78
+ "when": [
79
+ "* ",
80
+ "Եթե ",
81
+ "Երբ "
82
+ ]
83
+ },
84
+ "ar": {
85
+ "and": [
86
+ "* ",
87
+ "و "
88
+ ],
89
+ "background": [
90
+ "الخلفية"
91
+ ],
92
+ "but": [
93
+ "* ",
94
+ "لكن "
95
+ ],
96
+ "examples": [
97
+ "امثلة"
98
+ ],
99
+ "feature": [
100
+ "خاصية"
101
+ ],
102
+ "given": [
103
+ "* ",
104
+ "بفرض "
105
+ ],
106
+ "name": "Arabic",
107
+ "native": "العربية",
108
+ "scenario": [
109
+ "سيناريو"
110
+ ],
111
+ "scenarioOutline": [
112
+ "سيناريو مخطط"
113
+ ],
114
+ "then": [
115
+ "* ",
116
+ "اذاً ",
117
+ "ثم "
118
+ ],
119
+ "when": [
120
+ "* ",
121
+ "متى ",
122
+ "عندما "
123
+ ]
124
+ },
125
+ "bg": {
126
+ "and": [
127
+ "* ",
128
+ "И "
129
+ ],
130
+ "background": [
131
+ "Предистория"
132
+ ],
133
+ "but": [
134
+ "* ",
135
+ "Но "
136
+ ],
137
+ "examples": [
138
+ "Примери"
139
+ ],
140
+ "feature": [
141
+ "Функционалност"
142
+ ],
143
+ "given": [
144
+ "* ",
145
+ "Дадено "
146
+ ],
147
+ "name": "Bulgarian",
148
+ "native": "български",
149
+ "scenario": [
150
+ "Сценарий"
151
+ ],
152
+ "scenarioOutline": [
153
+ "Рамка на сценарий"
154
+ ],
155
+ "then": [
156
+ "* ",
157
+ "То "
158
+ ],
159
+ "when": [
160
+ "* ",
161
+ "Когато "
162
+ ]
163
+ },
164
+ "bm": {
165
+ "and": [
166
+ "* ",
167
+ "Dan "
168
+ ],
169
+ "background": [
170
+ "Latar Belakang"
171
+ ],
172
+ "but": [
173
+ "* ",
174
+ "Tetapi ",
175
+ "Tapi "
176
+ ],
177
+ "examples": [
178
+ "Contoh"
179
+ ],
180
+ "feature": [
181
+ "Fungsi"
182
+ ],
183
+ "given": [
184
+ "* ",
185
+ "Diberi ",
186
+ "Bagi "
187
+ ],
188
+ "name": "Malay",
189
+ "native": "Bahasa Melayu",
190
+ "scenario": [
191
+ "Senario",
192
+ "Situasi",
193
+ "Keadaan"
194
+ ],
195
+ "scenarioOutline": [
196
+ "Kerangka Senario",
197
+ "Kerangka Situasi",
198
+ "Kerangka Keadaan",
199
+ "Garis Panduan Senario"
200
+ ],
201
+ "then": [
202
+ "* ",
203
+ "Maka ",
204
+ "Kemudian "
205
+ ],
206
+ "when": [
207
+ "* ",
208
+ "Apabila "
209
+ ]
210
+ },
211
+ "bs": {
212
+ "and": [
213
+ "* ",
214
+ "I ",
215
+ "A "
216
+ ],
217
+ "background": [
218
+ "Pozadina"
219
+ ],
220
+ "but": [
221
+ "* ",
222
+ "Ali "
223
+ ],
224
+ "examples": [
225
+ "Primjeri"
226
+ ],
227
+ "feature": [
228
+ "Karakteristika"
229
+ ],
230
+ "given": [
231
+ "* ",
232
+ "Dato "
233
+ ],
234
+ "name": "Bosnian",
235
+ "native": "Bosanski",
236
+ "scenario": [
237
+ "Scenariju",
238
+ "Scenario"
239
+ ],
240
+ "scenarioOutline": [
241
+ "Scenariju-obris",
242
+ "Scenario-outline"
243
+ ],
244
+ "then": [
245
+ "* ",
246
+ "Zatim "
247
+ ],
248
+ "when": [
249
+ "* ",
250
+ "Kada "
251
+ ]
252
+ },
253
+ "ca": {
254
+ "and": [
255
+ "* ",
256
+ "I "
257
+ ],
258
+ "background": [
259
+ "Rerefons",
260
+ "Antecedents"
261
+ ],
262
+ "but": [
263
+ "* ",
264
+ "Però "
265
+ ],
266
+ "examples": [
267
+ "Exemples"
268
+ ],
269
+ "feature": [
270
+ "Característica",
271
+ "Funcionalitat"
272
+ ],
273
+ "given": [
274
+ "* ",
275
+ "Donat ",
276
+ "Donada ",
277
+ "Atès ",
278
+ "Atesa "
279
+ ],
280
+ "name": "Catalan",
281
+ "native": "català",
282
+ "scenario": [
283
+ "Escenari"
284
+ ],
285
+ "scenarioOutline": [
286
+ "Esquema de l'escenari"
287
+ ],
288
+ "then": [
289
+ "* ",
290
+ "Aleshores ",
291
+ "Cal "
292
+ ],
293
+ "when": [
294
+ "* ",
295
+ "Quan "
296
+ ]
297
+ },
298
+ "cs": {
299
+ "and": [
300
+ "* ",
301
+ "A také ",
302
+ "A "
303
+ ],
304
+ "background": [
305
+ "Pozadí",
306
+ "Kontext"
307
+ ],
308
+ "but": [
309
+ "* ",
310
+ "Ale "
311
+ ],
312
+ "examples": [
313
+ "Příklady"
314
+ ],
315
+ "feature": [
316
+ "Požadavek"
317
+ ],
318
+ "given": [
319
+ "* ",
320
+ "Pokud ",
321
+ "Za předpokladu "
322
+ ],
323
+ "name": "Czech",
324
+ "native": "Česky",
325
+ "scenario": [
326
+ "Scénář"
327
+ ],
328
+ "scenarioOutline": [
329
+ "Náčrt Scénáře",
330
+ "Osnova scénáře"
331
+ ],
332
+ "then": [
333
+ "* ",
334
+ "Pak "
335
+ ],
336
+ "when": [
337
+ "* ",
338
+ "Když "
339
+ ]
340
+ },
341
+ "cy-GB": {
342
+ "and": [
343
+ "* ",
344
+ "A "
345
+ ],
346
+ "background": [
347
+ "Cefndir"
348
+ ],
349
+ "but": [
350
+ "* ",
351
+ "Ond "
352
+ ],
353
+ "examples": [
354
+ "Enghreifftiau"
355
+ ],
356
+ "feature": [
357
+ "Arwedd"
358
+ ],
359
+ "given": [
360
+ "* ",
361
+ "Anrhegedig a "
362
+ ],
363
+ "name": "Welsh",
364
+ "native": "Cymraeg",
365
+ "scenario": [
366
+ "Scenario"
367
+ ],
368
+ "scenarioOutline": [
369
+ "Scenario Amlinellol"
370
+ ],
371
+ "then": [
372
+ "* ",
373
+ "Yna "
374
+ ],
375
+ "when": [
376
+ "* ",
377
+ "Pryd "
378
+ ]
379
+ },
380
+ "da": {
381
+ "and": [
382
+ "* ",
383
+ "Og "
384
+ ],
385
+ "background": [
386
+ "Baggrund"
387
+ ],
388
+ "but": [
389
+ "* ",
390
+ "Men "
391
+ ],
392
+ "examples": [
393
+ "Eksempler"
394
+ ],
395
+ "feature": [
396
+ "Egenskab"
397
+ ],
398
+ "given": [
399
+ "* ",
400
+ "Givet "
401
+ ],
402
+ "name": "Danish",
403
+ "native": "dansk",
404
+ "scenario": [
405
+ "Scenarie"
406
+ ],
407
+ "scenarioOutline": [
408
+ "Abstrakt Scenario"
409
+ ],
410
+ "then": [
411
+ "* ",
412
+ "Så "
413
+ ],
414
+ "when": [
415
+ "* ",
416
+ "Når "
417
+ ]
418
+ },
419
+ "de": {
420
+ "and": [
421
+ "* ",
422
+ "Und "
423
+ ],
424
+ "background": [
425
+ "Grundlage"
426
+ ],
427
+ "but": [
428
+ "* ",
429
+ "Aber "
430
+ ],
431
+ "examples": [
432
+ "Beispiele"
433
+ ],
434
+ "feature": [
435
+ "Funktionalität"
436
+ ],
437
+ "given": [
438
+ "* ",
439
+ "Angenommen ",
440
+ "Gegeben sei ",
441
+ "Gegeben seien "
442
+ ],
443
+ "name": "German",
444
+ "native": "Deutsch",
445
+ "scenario": [
446
+ "Szenario"
447
+ ],
448
+ "scenarioOutline": [
449
+ "Szenariogrundriss"
450
+ ],
451
+ "then": [
452
+ "* ",
453
+ "Dann "
454
+ ],
455
+ "when": [
456
+ "* ",
457
+ "Wenn "
458
+ ]
459
+ },
460
+ "el": {
461
+ "and": [
462
+ "* ",
463
+ "Και "
464
+ ],
465
+ "background": [
466
+ "Υπόβαθρο"
467
+ ],
468
+ "but": [
469
+ "* ",
470
+ "Αλλά "
471
+ ],
472
+ "examples": [
473
+ "Παραδείγματα",
474
+ "Σενάρια"
475
+ ],
476
+ "feature": [
477
+ "Δυνατότητα",
478
+ "Λειτουργία"
479
+ ],
480
+ "given": [
481
+ "* ",
482
+ "Δεδομένου "
483
+ ],
484
+ "name": "Greek",
485
+ "native": "Ελληνικά",
486
+ "scenario": [
487
+ "Σενάριο"
488
+ ],
489
+ "scenarioOutline": [
490
+ "Περιγραφή Σεναρίου"
491
+ ],
492
+ "then": [
493
+ "* ",
494
+ "Τότε "
495
+ ],
496
+ "when": [
497
+ "* ",
498
+ "Όταν "
499
+ ]
500
+ },
501
+ "em": {
502
+ "and": [
503
+ "* ",
504
+ "😂"
505
+ ],
506
+ "background": [
507
+ "💤"
508
+ ],
509
+ "but": [
510
+ "* ",
511
+ "😔"
512
+ ],
513
+ "examples": [
514
+ "📓"
515
+ ],
516
+ "feature": [
517
+ "📚"
518
+ ],
519
+ "given": [
520
+ "* ",
521
+ "😐"
522
+ ],
523
+ "name": "Emoji",
524
+ "native": "😀",
525
+ "scenario": [
526
+ "📕"
527
+ ],
528
+ "scenarioOutline": [
529
+ "📖"
530
+ ],
531
+ "then": [
532
+ "* ",
533
+ "🙏"
534
+ ],
535
+ "when": [
536
+ "* ",
537
+ "🎬"
538
+ ]
539
+ },
540
+ "en": {
541
+ "and": [
542
+ "* ",
543
+ "And "
544
+ ],
545
+ "background": [
546
+ "Background"
547
+ ],
548
+ "but": [
549
+ "* ",
550
+ "But "
551
+ ],
552
+ "examples": [
553
+ "Examples",
554
+ "Scenarios"
555
+ ],
556
+ "feature": [
557
+ "Feature",
558
+ "Business Need",
559
+ "Ability",
560
+ "Objective",
561
+ "Problem"
562
+ ],
563
+ "given": [
564
+ "* ",
565
+ "Given "
566
+ ],
567
+ "name": "English",
568
+ "native": "English",
569
+ "scenario": [
570
+ "Scenario",
571
+ "Outcome",
572
+ "Key Result"
573
+ ],
574
+ "scenarioOutline": [
575
+ "Scenario Outline",
576
+ "Scenario Template"
577
+ ],
578
+ "then": [
579
+ "* ",
580
+ "Then "
581
+ ],
582
+ "when": [
583
+ "* ",
584
+ "When "
585
+ ]
586
+ },
587
+ "en-Scouse": {
588
+ "and": [
589
+ "* ",
590
+ "An "
591
+ ],
592
+ "background": [
593
+ "Dis is what went down"
594
+ ],
595
+ "but": [
596
+ "* ",
597
+ "Buh "
598
+ ],
599
+ "examples": [
600
+ "Examples"
601
+ ],
602
+ "feature": [
603
+ "Feature"
604
+ ],
605
+ "given": [
606
+ "* ",
607
+ "Givun ",
608
+ "Youse know when youse got "
609
+ ],
610
+ "name": "Scouse",
611
+ "native": "Scouse",
612
+ "scenario": [
613
+ "The thing of it is"
614
+ ],
615
+ "scenarioOutline": [
616
+ "Wharrimean is"
617
+ ],
618
+ "then": [
619
+ "* ",
620
+ "Dun ",
621
+ "Den youse gotta "
622
+ ],
623
+ "when": [
624
+ "* ",
625
+ "Wun ",
626
+ "Youse know like when "
627
+ ]
628
+ },
629
+ "en-au": {
630
+ "and": [
631
+ "* ",
632
+ "Too right "
633
+ ],
634
+ "background": [
635
+ "First off"
636
+ ],
637
+ "but": [
638
+ "* ",
639
+ "Yeah nah "
640
+ ],
641
+ "examples": [
642
+ "You'll wanna"
643
+ ],
644
+ "feature": [
645
+ "Pretty much"
646
+ ],
647
+ "given": [
648
+ "* ",
649
+ "Y'know "
650
+ ],
651
+ "name": "Australian",
652
+ "native": "Australian",
653
+ "scenario": [
654
+ "Awww, look mate"
655
+ ],
656
+ "scenarioOutline": [
657
+ "Reckon it's like"
658
+ ],
659
+ "then": [
660
+ "* ",
661
+ "But at the end of the day I reckon "
662
+ ],
663
+ "when": [
664
+ "* ",
665
+ "It's just unbelievable "
666
+ ]
667
+ },
668
+ "en-lol": {
669
+ "and": [
670
+ "* ",
671
+ "AN "
672
+ ],
673
+ "background": [
674
+ "B4"
675
+ ],
676
+ "but": [
677
+ "* ",
678
+ "BUT "
679
+ ],
680
+ "examples": [
681
+ "EXAMPLZ"
682
+ ],
683
+ "feature": [
684
+ "OH HAI"
685
+ ],
686
+ "given": [
687
+ "* ",
688
+ "I CAN HAZ "
689
+ ],
690
+ "name": "LOLCAT",
691
+ "native": "LOLCAT",
692
+ "scenario": [
693
+ "MISHUN"
694
+ ],
695
+ "scenarioOutline": [
696
+ "MISHUN SRSLY"
697
+ ],
698
+ "then": [
699
+ "* ",
700
+ "DEN "
701
+ ],
702
+ "when": [
703
+ "* ",
704
+ "WEN "
705
+ ]
706
+ },
707
+ "en-old": {
708
+ "and": [
709
+ "* ",
710
+ "Ond ",
711
+ "7 "
712
+ ],
713
+ "background": [
714
+ "Aer",
715
+ "Ær"
716
+ ],
717
+ "but": [
718
+ "* ",
719
+ "Ac "
720
+ ],
721
+ "examples": [
722
+ "Se the",
723
+ "Se þe",
724
+ "Se ðe"
725
+ ],
726
+ "feature": [
727
+ "Hwaet",
728
+ "Hwæt"
729
+ ],
730
+ "given": [
731
+ "* ",
732
+ "Thurh ",
733
+ "Þurh ",
734
+ "Ðurh "
735
+ ],
736
+ "name": "Old English",
737
+ "native": "Englisc",
738
+ "scenario": [
739
+ "Swa"
740
+ ],
741
+ "scenarioOutline": [
742
+ "Swa hwaer swa",
743
+ "Swa hwær swa"
744
+ ],
745
+ "then": [
746
+ "* ",
747
+ "Tha ",
748
+ "Þa ",
749
+ "Ða ",
750
+ "Tha the ",
751
+ "Þa þe ",
752
+ "Ða ðe "
753
+ ],
754
+ "when": [
755
+ "* ",
756
+ "Tha ",
757
+ "Þa ",
758
+ "Ða "
759
+ ]
760
+ },
761
+ "en-pirate": {
762
+ "and": [
763
+ "* ",
764
+ "Aye "
765
+ ],
766
+ "background": [
767
+ "Yo-ho-ho"
768
+ ],
769
+ "but": [
770
+ "* ",
771
+ "Avast! "
772
+ ],
773
+ "examples": [
774
+ "Dead men tell no tales"
775
+ ],
776
+ "feature": [
777
+ "Ahoy matey!"
778
+ ],
779
+ "given": [
780
+ "* ",
781
+ "Gangway! "
782
+ ],
783
+ "name": "Pirate",
784
+ "native": "Pirate",
785
+ "scenario": [
786
+ "Heave to"
787
+ ],
788
+ "scenarioOutline": [
789
+ "Shiver me timbers"
790
+ ],
791
+ "then": [
792
+ "* ",
793
+ "Let go and haul "
794
+ ],
795
+ "when": [
796
+ "* ",
797
+ "Blimey! "
798
+ ]
799
+ },
800
+ "eo": {
801
+ "and": [
802
+ "* ",
803
+ "Kaj "
804
+ ],
805
+ "background": [
806
+ "Fono"
807
+ ],
808
+ "but": [
809
+ "* ",
810
+ "Sed "
811
+ ],
812
+ "examples": [
813
+ "Ekzemploj"
814
+ ],
815
+ "feature": [
816
+ "Trajto"
817
+ ],
818
+ "given": [
819
+ "* ",
820
+ "Donitaĵo ",
821
+ "Komence "
822
+ ],
823
+ "name": "Esperanto",
824
+ "native": "Esperanto",
825
+ "scenario": [
826
+ "Scenaro",
827
+ "Kazo"
828
+ ],
829
+ "scenarioOutline": [
830
+ "Konturo de la scenaro",
831
+ "Skizo",
832
+ "Kazo-skizo"
833
+ ],
834
+ "then": [
835
+ "* ",
836
+ "Do "
837
+ ],
838
+ "when": [
839
+ "* ",
840
+ "Se "
841
+ ]
842
+ },
843
+ "es": {
844
+ "and": [
845
+ "* ",
846
+ "Y ",
847
+ "E "
848
+ ],
849
+ "background": [
850
+ "Antecedentes"
851
+ ],
852
+ "but": [
853
+ "* ",
854
+ "Pero "
855
+ ],
856
+ "examples": [
857
+ "Ejemplos"
858
+ ],
859
+ "feature": [
860
+ "Característica"
861
+ ],
862
+ "given": [
863
+ "* ",
864
+ "Dado ",
865
+ "Dada ",
866
+ "Dados ",
867
+ "Dadas "
868
+ ],
869
+ "name": "Spanish",
870
+ "native": "español",
871
+ "scenario": [
872
+ "Escenario"
873
+ ],
874
+ "scenarioOutline": [
875
+ "Esquema del escenario"
876
+ ],
877
+ "then": [
878
+ "* ",
879
+ "Entonces "
880
+ ],
881
+ "when": [
882
+ "* ",
883
+ "Cuando "
884
+ ]
885
+ },
886
+ "et": {
887
+ "and": [
888
+ "* ",
889
+ "Ja "
890
+ ],
891
+ "background": [
892
+ "Taust"
893
+ ],
894
+ "but": [
895
+ "* ",
896
+ "Kuid "
897
+ ],
898
+ "examples": [
899
+ "Juhtumid"
900
+ ],
901
+ "feature": [
902
+ "Omadus"
903
+ ],
904
+ "given": [
905
+ "* ",
906
+ "Eeldades "
907
+ ],
908
+ "name": "Estonian",
909
+ "native": "eesti keel",
910
+ "scenario": [
911
+ "Stsenaarium"
912
+ ],
913
+ "scenarioOutline": [
914
+ "Raamstsenaarium"
915
+ ],
916
+ "then": [
917
+ "* ",
918
+ "Siis "
919
+ ],
920
+ "when": [
921
+ "* ",
922
+ "Kui "
923
+ ]
924
+ },
925
+ "fa": {
926
+ "and": [
927
+ "* ",
928
+ "و "
929
+ ],
930
+ "background": [
931
+ "زمینه"
932
+ ],
933
+ "but": [
934
+ "* ",
935
+ "اما "
936
+ ],
937
+ "examples": [
938
+ "نمونه ها"
939
+ ],
940
+ "feature": [
941
+ "وِیژگی"
942
+ ],
943
+ "given": [
944
+ "* ",
945
+ "با فرض "
946
+ ],
947
+ "name": "Persian",
948
+ "native": "فارسی",
949
+ "scenario": [
950
+ "سناریو"
951
+ ],
952
+ "scenarioOutline": [
953
+ "الگوی سناریو"
954
+ ],
955
+ "then": [
956
+ "* ",
957
+ "آنگاه "
958
+ ],
959
+ "when": [
960
+ "* ",
961
+ "هنگامی "
962
+ ]
963
+ },
964
+ "fi": {
965
+ "and": [
966
+ "* ",
967
+ "Ja "
968
+ ],
969
+ "background": [
970
+ "Tausta"
971
+ ],
972
+ "but": [
973
+ "* ",
974
+ "Mutta "
975
+ ],
976
+ "examples": [
977
+ "Tapaukset"
978
+ ],
979
+ "feature": [
980
+ "Ominaisuus"
981
+ ],
982
+ "given": [
983
+ "* ",
984
+ "Oletetaan "
985
+ ],
986
+ "name": "Finnish",
987
+ "native": "suomi",
988
+ "scenario": [
989
+ "Tapaus"
990
+ ],
991
+ "scenarioOutline": [
992
+ "Tapausaihio"
993
+ ],
994
+ "then": [
995
+ "* ",
996
+ "Niin "
997
+ ],
998
+ "when": [
999
+ "* ",
1000
+ "Kun "
1001
+ ]
1002
+ },
1003
+ "fr": {
1004
+ "and": [
1005
+ "* ",
1006
+ "Et que ",
1007
+ "Et qu'",
1008
+ "Et "
1009
+ ],
1010
+ "background": [
1011
+ "Contexte"
1012
+ ],
1013
+ "but": [
1014
+ "* ",
1015
+ "Mais que ",
1016
+ "Mais qu'",
1017
+ "Mais "
1018
+ ],
1019
+ "examples": [
1020
+ "Exemples"
1021
+ ],
1022
+ "feature": [
1023
+ "Fonctionnalité"
1024
+ ],
1025
+ "given": [
1026
+ "* ",
1027
+ "Soit ",
1028
+ "Etant donné que ",
1029
+ "Etant donné qu'",
1030
+ "Etant donné ",
1031
+ "Etant donnée ",
1032
+ "Etant donnés ",
1033
+ "Etant données ",
1034
+ "Étant donné que ",
1035
+ "Étant donné qu'",
1036
+ "Étant donné ",
1037
+ "Étant donnée ",
1038
+ "Étant donnés ",
1039
+ "Étant données "
1040
+ ],
1041
+ "name": "French",
1042
+ "native": "français",
1043
+ "scenario": [
1044
+ "Scénario"
1045
+ ],
1046
+ "scenarioOutline": [
1047
+ "Plan du scénario",
1048
+ "Plan du Scénario"
1049
+ ],
1050
+ "then": [
1051
+ "* ",
1052
+ "Alors "
1053
+ ],
1054
+ "when": [
1055
+ "* ",
1056
+ "Quand ",
1057
+ "Lorsque ",
1058
+ "Lorsqu'"
1059
+ ]
1060
+ },
1061
+ "ga": {
1062
+ "and": [
1063
+ "* ",
1064
+ "Agus"
1065
+ ],
1066
+ "background": [
1067
+ "Cúlra"
1068
+ ],
1069
+ "but": [
1070
+ "* ",
1071
+ "Ach"
1072
+ ],
1073
+ "examples": [
1074
+ "Samplaí"
1075
+ ],
1076
+ "feature": [
1077
+ "Gné"
1078
+ ],
1079
+ "given": [
1080
+ "* ",
1081
+ "Cuir i gcás go",
1082
+ "Cuir i gcás nach",
1083
+ "Cuir i gcás gur",
1084
+ "Cuir i gcás nár"
1085
+ ],
1086
+ "name": "Irish",
1087
+ "native": "Gaeilge",
1088
+ "scenario": [
1089
+ "Cás"
1090
+ ],
1091
+ "scenarioOutline": [
1092
+ "Cás Achomair"
1093
+ ],
1094
+ "then": [
1095
+ "* ",
1096
+ "Ansin"
1097
+ ],
1098
+ "when": [
1099
+ "* ",
1100
+ "Nuair a",
1101
+ "Nuair nach",
1102
+ "Nuair ba",
1103
+ "Nuair nár"
1104
+ ]
1105
+ },
1106
+ "gj": {
1107
+ "and": [
1108
+ "* ",
1109
+ "અને "
1110
+ ],
1111
+ "background": [
1112
+ "બેકગ્રાઉન્ડ"
1113
+ ],
1114
+ "but": [
1115
+ "* ",
1116
+ "પણ "
1117
+ ],
1118
+ "examples": [
1119
+ "ઉદાહરણો"
1120
+ ],
1121
+ "feature": [
1122
+ "લક્ષણ",
1123
+ "વ્યાપાર જરૂર",
1124
+ "ક્ષમતા"
1125
+ ],
1126
+ "given": [
1127
+ "* ",
1128
+ "આપેલ છે "
1129
+ ],
1130
+ "name": "Gujarati",
1131
+ "native": "ગુજરાતી",
1132
+ "scenario": [
1133
+ "સ્થિતિ"
1134
+ ],
1135
+ "scenarioOutline": [
1136
+ "પરિદ્દશ્ય રૂપરેખા",
1137
+ "પરિદ્દશ્ય ઢાંચો"
1138
+ ],
1139
+ "then": [
1140
+ "* ",
1141
+ "પછી "
1142
+ ],
1143
+ "when": [
1144
+ "* ",
1145
+ "ક્યારે "
1146
+ ]
1147
+ },
1148
+ "gl": {
1149
+ "and": [
1150
+ "* ",
1151
+ "E "
1152
+ ],
1153
+ "background": [
1154
+ "Contexto"
1155
+ ],
1156
+ "but": [
1157
+ "* ",
1158
+ "Mais ",
1159
+ "Pero "
1160
+ ],
1161
+ "examples": [
1162
+ "Exemplos"
1163
+ ],
1164
+ "feature": [
1165
+ "Característica"
1166
+ ],
1167
+ "given": [
1168
+ "* ",
1169
+ "Dado ",
1170
+ "Dada ",
1171
+ "Dados ",
1172
+ "Dadas "
1173
+ ],
1174
+ "name": "Galician",
1175
+ "native": "galego",
1176
+ "scenario": [
1177
+ "Escenario"
1178
+ ],
1179
+ "scenarioOutline": [
1180
+ "Esbozo do escenario"
1181
+ ],
1182
+ "then": [
1183
+ "* ",
1184
+ "Entón ",
1185
+ "Logo "
1186
+ ],
1187
+ "when": [
1188
+ "* ",
1189
+ "Cando "
1190
+ ]
1191
+ },
1192
+ "he": {
1193
+ "and": [
1194
+ "* ",
1195
+ "וגם "
1196
+ ],
1197
+ "background": [
1198
+ "רקע"
1199
+ ],
1200
+ "but": [
1201
+ "* ",
1202
+ "אבל "
1203
+ ],
1204
+ "examples": [
1205
+ "דוגמאות"
1206
+ ],
1207
+ "feature": [
1208
+ "תכונה"
1209
+ ],
1210
+ "given": [
1211
+ "* ",
1212
+ "בהינתן "
1213
+ ],
1214
+ "name": "Hebrew",
1215
+ "native": "עברית",
1216
+ "scenario": [
1217
+ "תרחיש"
1218
+ ],
1219
+ "scenarioOutline": [
1220
+ "תבנית תרחיש"
1221
+ ],
1222
+ "then": [
1223
+ "* ",
1224
+ "אז ",
1225
+ "אזי "
1226
+ ],
1227
+ "when": [
1228
+ "* ",
1229
+ "כאשר "
1230
+ ]
1231
+ },
1232
+ "hi": {
1233
+ "and": [
1234
+ "* ",
1235
+ "और ",
1236
+ "तथा "
1237
+ ],
1238
+ "background": [
1239
+ "पृष्ठभूमि"
1240
+ ],
1241
+ "but": [
1242
+ "* ",
1243
+ "पर ",
1244
+ "परन्तु ",
1245
+ "किन्तु "
1246
+ ],
1247
+ "examples": [
1248
+ "उदाहरण"
1249
+ ],
1250
+ "feature": [
1251
+ "रूप लेख"
1252
+ ],
1253
+ "given": [
1254
+ "* ",
1255
+ "अगर ",
1256
+ "यदि ",
1257
+ "चूंकि "
1258
+ ],
1259
+ "name": "Hindi",
1260
+ "native": "हिंदी",
1261
+ "scenario": [
1262
+ "परिदृश्य"
1263
+ ],
1264
+ "scenarioOutline": [
1265
+ "परिदृश्य रूपरेखा"
1266
+ ],
1267
+ "then": [
1268
+ "* ",
1269
+ "तब ",
1270
+ "तदा "
1271
+ ],
1272
+ "when": [
1273
+ "* ",
1274
+ "जब ",
1275
+ "कदा "
1276
+ ]
1277
+ },
1278
+ "hr": {
1279
+ "and": [
1280
+ "* ",
1281
+ "I "
1282
+ ],
1283
+ "background": [
1284
+ "Pozadina"
1285
+ ],
1286
+ "but": [
1287
+ "* ",
1288
+ "Ali "
1289
+ ],
1290
+ "examples": [
1291
+ "Primjeri",
1292
+ "Scenariji"
1293
+ ],
1294
+ "feature": [
1295
+ "Osobina",
1296
+ "Mogućnost",
1297
+ "Mogucnost"
1298
+ ],
1299
+ "given": [
1300
+ "* ",
1301
+ "Zadan ",
1302
+ "Zadani ",
1303
+ "Zadano "
1304
+ ],
1305
+ "name": "Croatian",
1306
+ "native": "hrvatski",
1307
+ "scenario": [
1308
+ "Scenarij"
1309
+ ],
1310
+ "scenarioOutline": [
1311
+ "Skica",
1312
+ "Koncept"
1313
+ ],
1314
+ "then": [
1315
+ "* ",
1316
+ "Onda "
1317
+ ],
1318
+ "when": [
1319
+ "* ",
1320
+ "Kada ",
1321
+ "Kad "
1322
+ ]
1323
+ },
1324
+ "ht": {
1325
+ "and": [
1326
+ "* ",
1327
+ "Ak ",
1328
+ "Epi ",
1329
+ "E "
1330
+ ],
1331
+ "background": [
1332
+ "Kontèks",
1333
+ "Istorik"
1334
+ ],
1335
+ "but": [
1336
+ "* ",
1337
+ "Men "
1338
+ ],
1339
+ "examples": [
1340
+ "Egzanp"
1341
+ ],
1342
+ "feature": [
1343
+ "Karakteristik",
1344
+ "Mak",
1345
+ "Fonksyonalite"
1346
+ ],
1347
+ "given": [
1348
+ "* ",
1349
+ "Sipoze ",
1350
+ "Sipoze ke ",
1351
+ "Sipoze Ke "
1352
+ ],
1353
+ "name": "Creole",
1354
+ "native": "kreyòl",
1355
+ "scenario": [
1356
+ "Senaryo"
1357
+ ],
1358
+ "scenarioOutline": [
1359
+ "Plan senaryo",
1360
+ "Plan Senaryo",
1361
+ "Senaryo deskripsyon",
1362
+ "Senaryo Deskripsyon",
1363
+ "Dyagram senaryo",
1364
+ "Dyagram Senaryo"
1365
+ ],
1366
+ "then": [
1367
+ "* ",
1368
+ "Lè sa a ",
1369
+ "Le sa a "
1370
+ ],
1371
+ "when": [
1372
+ "* ",
1373
+ "Lè ",
1374
+ "Le "
1375
+ ]
1376
+ },
1377
+ "hu": {
1378
+ "and": [
1379
+ "* ",
1380
+ "És "
1381
+ ],
1382
+ "background": [
1383
+ "Háttér"
1384
+ ],
1385
+ "but": [
1386
+ "* ",
1387
+ "De "
1388
+ ],
1389
+ "examples": [
1390
+ "Példák"
1391
+ ],
1392
+ "feature": [
1393
+ "Jellemző"
1394
+ ],
1395
+ "given": [
1396
+ "* ",
1397
+ "Amennyiben ",
1398
+ "Adott "
1399
+ ],
1400
+ "name": "Hungarian",
1401
+ "native": "magyar",
1402
+ "scenario": [
1403
+ "Forgatókönyv"
1404
+ ],
1405
+ "scenarioOutline": [
1406
+ "Forgatókönyv vázlat"
1407
+ ],
1408
+ "then": [
1409
+ "* ",
1410
+ "Akkor "
1411
+ ],
1412
+ "when": [
1413
+ "* ",
1414
+ "Majd ",
1415
+ "Ha ",
1416
+ "Amikor "
1417
+ ]
1418
+ },
1419
+ "id": {
1420
+ "and": [
1421
+ "* ",
1422
+ "Dan "
1423
+ ],
1424
+ "background": [
1425
+ "Dasar"
1426
+ ],
1427
+ "but": [
1428
+ "* ",
1429
+ "Tapi "
1430
+ ],
1431
+ "examples": [
1432
+ "Contoh"
1433
+ ],
1434
+ "feature": [
1435
+ "Fitur"
1436
+ ],
1437
+ "given": [
1438
+ "* ",
1439
+ "Dengan "
1440
+ ],
1441
+ "name": "Indonesian",
1442
+ "native": "Bahasa Indonesia",
1443
+ "scenario": [
1444
+ "Skenario"
1445
+ ],
1446
+ "scenarioOutline": [
1447
+ "Skenario konsep"
1448
+ ],
1449
+ "then": [
1450
+ "* ",
1451
+ "Maka "
1452
+ ],
1453
+ "when": [
1454
+ "* ",
1455
+ "Ketika "
1456
+ ]
1457
+ },
1458
+ "is": {
1459
+ "and": [
1460
+ "* ",
1461
+ "Og "
1462
+ ],
1463
+ "background": [
1464
+ "Bakgrunnur"
1465
+ ],
1466
+ "but": [
1467
+ "* ",
1468
+ "En "
1469
+ ],
1470
+ "examples": [
1471
+ "Dæmi",
1472
+ "Atburðarásir"
1473
+ ],
1474
+ "feature": [
1475
+ "Eiginleiki"
1476
+ ],
1477
+ "given": [
1478
+ "* ",
1479
+ "Ef "
1480
+ ],
1481
+ "name": "Icelandic",
1482
+ "native": "Íslenska",
1483
+ "scenario": [
1484
+ "Atburðarás"
1485
+ ],
1486
+ "scenarioOutline": [
1487
+ "Lýsing Atburðarásar",
1488
+ "Lýsing Dæma"
1489
+ ],
1490
+ "then": [
1491
+ "* ",
1492
+ "Þá "
1493
+ ],
1494
+ "when": [
1495
+ "* ",
1496
+ "Þegar "
1497
+ ]
1498
+ },
1499
+ "it": {
1500
+ "and": [
1501
+ "* ",
1502
+ "E "
1503
+ ],
1504
+ "background": [
1505
+ "Contesto"
1506
+ ],
1507
+ "but": [
1508
+ "* ",
1509
+ "Ma "
1510
+ ],
1511
+ "examples": [
1512
+ "Esempi"
1513
+ ],
1514
+ "feature": [
1515
+ "Funzionalità"
1516
+ ],
1517
+ "given": [
1518
+ "* ",
1519
+ "Dato ",
1520
+ "Data ",
1521
+ "Dati ",
1522
+ "Date "
1523
+ ],
1524
+ "name": "Italian",
1525
+ "native": "italiano",
1526
+ "scenario": [
1527
+ "Scenario"
1528
+ ],
1529
+ "scenarioOutline": [
1530
+ "Schema dello scenario"
1531
+ ],
1532
+ "then": [
1533
+ "* ",
1534
+ "Allora "
1535
+ ],
1536
+ "when": [
1537
+ "* ",
1538
+ "Quando "
1539
+ ]
1540
+ },
1541
+ "ja": {
1542
+ "and": [
1543
+ "* ",
1544
+ "かつ"
1545
+ ],
1546
+ "background": [
1547
+ "背景"
1548
+ ],
1549
+ "but": [
1550
+ "* ",
1551
+ "しかし",
1552
+ "但し",
1553
+ "ただし"
1554
+ ],
1555
+ "examples": [
1556
+ "例",
1557
+ "サンプル"
1558
+ ],
1559
+ "feature": [
1560
+ "フィーチャ",
1561
+ "機能"
1562
+ ],
1563
+ "given": [
1564
+ "* ",
1565
+ "前提"
1566
+ ],
1567
+ "name": "Japanese",
1568
+ "native": "日本語",
1569
+ "scenario": [
1570
+ "シナリオ"
1571
+ ],
1572
+ "scenarioOutline": [
1573
+ "シナリオアウトライン",
1574
+ "シナリオテンプレート",
1575
+ "テンプレ",
1576
+ "シナリオテンプレ"
1577
+ ],
1578
+ "then": [
1579
+ "* ",
1580
+ "ならば"
1581
+ ],
1582
+ "when": [
1583
+ "* ",
1584
+ "もし"
1585
+ ]
1586
+ },
1587
+ "jv": {
1588
+ "and": [
1589
+ "* ",
1590
+ "Lan "
1591
+ ],
1592
+ "background": [
1593
+ "Dasar"
1594
+ ],
1595
+ "but": [
1596
+ "* ",
1597
+ "Tapi ",
1598
+ "Nanging ",
1599
+ "Ananging "
1600
+ ],
1601
+ "examples": [
1602
+ "Conto",
1603
+ "Contone"
1604
+ ],
1605
+ "feature": [
1606
+ "Fitur"
1607
+ ],
1608
+ "given": [
1609
+ "* ",
1610
+ "Nalika ",
1611
+ "Nalikaning "
1612
+ ],
1613
+ "name": "Javanese",
1614
+ "native": "Basa Jawa",
1615
+ "scenario": [
1616
+ "Skenario"
1617
+ ],
1618
+ "scenarioOutline": [
1619
+ "Konsep skenario"
1620
+ ],
1621
+ "then": [
1622
+ "* ",
1623
+ "Njuk ",
1624
+ "Banjur "
1625
+ ],
1626
+ "when": [
1627
+ "* ",
1628
+ "Manawa ",
1629
+ "Menawa "
1630
+ ]
1631
+ },
1632
+ "kn": {
1633
+ "and": [
1634
+ "* ",
1635
+ "ಮತ್ತು "
1636
+ ],
1637
+ "background": [
1638
+ "ಹಿನ್ನೆಲೆ"
1639
+ ],
1640
+ "but": [
1641
+ "* ",
1642
+ "ಆದರೆ "
1643
+ ],
1644
+ "examples": [
1645
+ "ಉದಾಹರಣೆಗಳು"
1646
+ ],
1647
+ "feature": [
1648
+ "ಹೆಚ್ಚಳ"
1649
+ ],
1650
+ "given": [
1651
+ "* ",
1652
+ "ನೀಡಿದ "
1653
+ ],
1654
+ "name": "Kannada",
1655
+ "native": "ಕನ್ನಡ",
1656
+ "scenario": [
1657
+ "ಕಥಾಸಾರಾಂಶ"
1658
+ ],
1659
+ "scenarioOutline": [
1660
+ "ವಿವರಣೆ"
1661
+ ],
1662
+ "then": [
1663
+ "* ",
1664
+ "ನಂತರ "
1665
+ ],
1666
+ "when": [
1667
+ "* ",
1668
+ "ಸ್ಥಿತಿಯನ್ನು "
1669
+ ]
1670
+ },
1671
+ "ko": {
1672
+ "and": [
1673
+ "* ",
1674
+ "그리고"
1675
+ ],
1676
+ "background": [
1677
+ "배경"
1678
+ ],
1679
+ "but": [
1680
+ "* ",
1681
+ "하지만",
1682
+ "단"
1683
+ ],
1684
+ "examples": [
1685
+ "예"
1686
+ ],
1687
+ "feature": [
1688
+ "기능"
1689
+ ],
1690
+ "given": [
1691
+ "* ",
1692
+ "조건",
1693
+ "먼저"
1694
+ ],
1695
+ "name": "Korean",
1696
+ "native": "한국어",
1697
+ "scenario": [
1698
+ "시나리오"
1699
+ ],
1700
+ "scenarioOutline": [
1701
+ "시나리오 개요"
1702
+ ],
1703
+ "then": [
1704
+ "* ",
1705
+ "그러면"
1706
+ ],
1707
+ "when": [
1708
+ "* ",
1709
+ "만일",
1710
+ "만약"
1711
+ ]
1712
+ },
1713
+ "lt": {
1714
+ "and": [
1715
+ "* ",
1716
+ "Ir "
1717
+ ],
1718
+ "background": [
1719
+ "Kontekstas"
1720
+ ],
1721
+ "but": [
1722
+ "* ",
1723
+ "Bet "
1724
+ ],
1725
+ "examples": [
1726
+ "Pavyzdžiai",
1727
+ "Scenarijai",
1728
+ "Variantai"
1729
+ ],
1730
+ "feature": [
1731
+ "Savybė"
1732
+ ],
1733
+ "given": [
1734
+ "* ",
1735
+ "Duota "
1736
+ ],
1737
+ "name": "Lithuanian",
1738
+ "native": "lietuvių kalba",
1739
+ "scenario": [
1740
+ "Scenarijus"
1741
+ ],
1742
+ "scenarioOutline": [
1743
+ "Scenarijaus šablonas"
1744
+ ],
1745
+ "then": [
1746
+ "* ",
1747
+ "Tada "
1748
+ ],
1749
+ "when": [
1750
+ "* ",
1751
+ "Kai "
1752
+ ]
1753
+ },
1754
+ "lu": {
1755
+ "and": [
1756
+ "* ",
1757
+ "an ",
1758
+ "a "
1759
+ ],
1760
+ "background": [
1761
+ "Hannergrond"
1762
+ ],
1763
+ "but": [
1764
+ "* ",
1765
+ "awer ",
1766
+ "mä "
1767
+ ],
1768
+ "examples": [
1769
+ "Beispiller"
1770
+ ],
1771
+ "feature": [
1772
+ "Funktionalitéit"
1773
+ ],
1774
+ "given": [
1775
+ "* ",
1776
+ "ugeholl "
1777
+ ],
1778
+ "name": "Luxemburgish",
1779
+ "native": "Lëtzebuergesch",
1780
+ "scenario": [
1781
+ "Szenario"
1782
+ ],
1783
+ "scenarioOutline": [
1784
+ "Plang vum Szenario"
1785
+ ],
1786
+ "then": [
1787
+ "* ",
1788
+ "dann "
1789
+ ],
1790
+ "when": [
1791
+ "* ",
1792
+ "wann "
1793
+ ]
1794
+ },
1795
+ "lv": {
1796
+ "and": [
1797
+ "* ",
1798
+ "Un "
1799
+ ],
1800
+ "background": [
1801
+ "Konteksts",
1802
+ "Situācija"
1803
+ ],
1804
+ "but": [
1805
+ "* ",
1806
+ "Bet "
1807
+ ],
1808
+ "examples": [
1809
+ "Piemēri",
1810
+ "Paraugs"
1811
+ ],
1812
+ "feature": [
1813
+ "Funkcionalitāte",
1814
+ "Fīča"
1815
+ ],
1816
+ "given": [
1817
+ "* ",
1818
+ "Kad "
1819
+ ],
1820
+ "name": "Latvian",
1821
+ "native": "latviešu",
1822
+ "scenario": [
1823
+ "Scenārijs"
1824
+ ],
1825
+ "scenarioOutline": [
1826
+ "Scenārijs pēc parauga"
1827
+ ],
1828
+ "then": [
1829
+ "* ",
1830
+ "Tad "
1831
+ ],
1832
+ "when": [
1833
+ "* ",
1834
+ "Ja "
1835
+ ]
1836
+ },
1837
+ "mn": {
1838
+ "and": [
1839
+ "* ",
1840
+ "Мөн ",
1841
+ "Тэгээд "
1842
+ ],
1843
+ "background": [
1844
+ "Агуулга"
1845
+ ],
1846
+ "but": [
1847
+ "* ",
1848
+ "Гэхдээ ",
1849
+ "Харин "
1850
+ ],
1851
+ "examples": [
1852
+ "Тухайлбал"
1853
+ ],
1854
+ "feature": [
1855
+ "Функц",
1856
+ "Функционал"
1857
+ ],
1858
+ "given": [
1859
+ "* ",
1860
+ "Өгөгдсөн нь ",
1861
+ "Анх "
1862
+ ],
1863
+ "name": "Mongolian",
1864
+ "native": "монгол",
1865
+ "scenario": [
1866
+ "Сценар"
1867
+ ],
1868
+ "scenarioOutline": [
1869
+ "Сценарын төлөвлөгөө"
1870
+ ],
1871
+ "then": [
1872
+ "* ",
1873
+ "Тэгэхэд ",
1874
+ "Үүний дараа "
1875
+ ],
1876
+ "when": [
1877
+ "* ",
1878
+ "Хэрэв "
1879
+ ]
1880
+ },
1881
+ "nl": {
1882
+ "and": [
1883
+ "* ",
1884
+ "En "
1885
+ ],
1886
+ "background": [
1887
+ "Achtergrond"
1888
+ ],
1889
+ "but": [
1890
+ "* ",
1891
+ "Maar "
1892
+ ],
1893
+ "examples": [
1894
+ "Voorbeelden"
1895
+ ],
1896
+ "feature": [
1897
+ "Functionaliteit"
1898
+ ],
1899
+ "given": [
1900
+ "* ",
1901
+ "Gegeven ",
1902
+ "Stel "
1903
+ ],
1904
+ "name": "Dutch",
1905
+ "native": "Nederlands",
1906
+ "scenario": [
1907
+ "Scenario"
1908
+ ],
1909
+ "scenarioOutline": [
1910
+ "Abstract Scenario"
1911
+ ],
1912
+ "then": [
1913
+ "* ",
1914
+ "Dan "
1915
+ ],
1916
+ "when": [
1917
+ "* ",
1918
+ "Als "
1919
+ ]
1920
+ },
1921
+ "no": {
1922
+ "and": [
1923
+ "* ",
1924
+ "Og "
1925
+ ],
1926
+ "background": [
1927
+ "Bakgrunn"
1928
+ ],
1929
+ "but": [
1930
+ "* ",
1931
+ "Men "
1932
+ ],
1933
+ "examples": [
1934
+ "Eksempler"
1935
+ ],
1936
+ "feature": [
1937
+ "Egenskap"
1938
+ ],
1939
+ "given": [
1940
+ "* ",
1941
+ "Gitt "
1942
+ ],
1943
+ "name": "Norwegian",
1944
+ "native": "norsk",
1945
+ "scenario": [
1946
+ "Scenario"
1947
+ ],
1948
+ "scenarioOutline": [
1949
+ "Scenariomal",
1950
+ "Abstrakt Scenario"
1951
+ ],
1952
+ "then": [
1953
+ "* ",
1954
+ "Så "
1955
+ ],
1956
+ "when": [
1957
+ "* ",
1958
+ "Når "
1959
+ ]
1960
+ },
1961
+ "pa": {
1962
+ "and": [
1963
+ "* ",
1964
+ "ਅਤੇ "
1965
+ ],
1966
+ "background": [
1967
+ "ਪਿਛੋਕੜ"
1968
+ ],
1969
+ "but": [
1970
+ "* ",
1971
+ "ਪਰ "
1972
+ ],
1973
+ "examples": [
1974
+ "ਉਦਾਹਰਨਾਂ"
1975
+ ],
1976
+ "feature": [
1977
+ "ਖਾਸੀਅਤ",
1978
+ "ਮੁਹਾਂਦਰਾ",
1979
+ "ਨਕਸ਼ ਨੁਹਾਰ"
1980
+ ],
1981
+ "given": [
1982
+ "* ",
1983
+ "ਜੇਕਰ ",
1984
+ "ਜਿਵੇਂ ਕਿ "
1985
+ ],
1986
+ "name": "Panjabi",
1987
+ "native": "ਪੰਜਾਬੀ",
1988
+ "scenario": [
1989
+ "ਪਟਕਥਾ"
1990
+ ],
1991
+ "scenarioOutline": [
1992
+ "ਪਟਕਥਾ ਢਾਂਚਾ",
1993
+ "ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ"
1994
+ ],
1995
+ "then": [
1996
+ "* ",
1997
+ "ਤਦ "
1998
+ ],
1999
+ "when": [
2000
+ "* ",
2001
+ "ਜਦੋਂ "
2002
+ ]
2003
+ },
2004
+ "pl": {
2005
+ "and": [
2006
+ "* ",
2007
+ "Oraz ",
2008
+ "I "
2009
+ ],
2010
+ "background": [
2011
+ "Założenia"
2012
+ ],
2013
+ "but": [
2014
+ "* ",
2015
+ "Ale "
2016
+ ],
2017
+ "examples": [
2018
+ "Przykłady"
2019
+ ],
2020
+ "feature": [
2021
+ "Właściwość",
2022
+ "Funkcja",
2023
+ "Aspekt",
2024
+ "Potrzeba biznesowa"
2025
+ ],
2026
+ "given": [
2027
+ "* ",
2028
+ "Zakładając ",
2029
+ "Mając ",
2030
+ "Zakładając, że "
2031
+ ],
2032
+ "name": "Polish",
2033
+ "native": "polski",
2034
+ "scenario": [
2035
+ "Scenariusz"
2036
+ ],
2037
+ "scenarioOutline": [
2038
+ "Szablon scenariusza"
2039
+ ],
2040
+ "then": [
2041
+ "* ",
2042
+ "Wtedy "
2043
+ ],
2044
+ "when": [
2045
+ "* ",
2046
+ "Jeżeli ",
2047
+ "Jeśli ",
2048
+ "Gdy ",
2049
+ "Kiedy "
2050
+ ]
2051
+ },
2052
+ "pt": {
2053
+ "and": [
2054
+ "* ",
2055
+ "E "
2056
+ ],
2057
+ "background": [
2058
+ "Contexto",
2059
+ "Cenário de Fundo",
2060
+ "Cenario de Fundo",
2061
+ "Fundo"
2062
+ ],
2063
+ "but": [
2064
+ "* ",
2065
+ "Mas "
2066
+ ],
2067
+ "examples": [
2068
+ "Exemplos",
2069
+ "Cenários",
2070
+ "Cenarios"
2071
+ ],
2072
+ "feature": [
2073
+ "Funcionalidade",
2074
+ "Característica",
2075
+ "Caracteristica"
2076
+ ],
2077
+ "given": [
2078
+ "* ",
2079
+ "Dado ",
2080
+ "Dada ",
2081
+ "Dados ",
2082
+ "Dadas "
2083
+ ],
2084
+ "name": "Portuguese",
2085
+ "native": "português",
2086
+ "scenario": [
2087
+ "Cenário",
2088
+ "Cenario"
2089
+ ],
2090
+ "scenarioOutline": [
2091
+ "Esquema do Cenário",
2092
+ "Esquema do Cenario",
2093
+ "Delineação do Cenário",
2094
+ "Delineacao do Cenario"
2095
+ ],
2096
+ "then": [
2097
+ "* ",
2098
+ "Então ",
2099
+ "Entao "
2100
+ ],
2101
+ "when": [
2102
+ "* ",
2103
+ "Quando "
2104
+ ]
2105
+ },
2106
+ "ro": {
2107
+ "and": [
2108
+ "* ",
2109
+ "Si ",
2110
+ "Și ",
2111
+ "Şi "
2112
+ ],
2113
+ "background": [
2114
+ "Context"
2115
+ ],
2116
+ "but": [
2117
+ "* ",
2118
+ "Dar "
2119
+ ],
2120
+ "examples": [
2121
+ "Exemple"
2122
+ ],
2123
+ "feature": [
2124
+ "Functionalitate",
2125
+ "Funcționalitate",
2126
+ "Funcţionalitate"
2127
+ ],
2128
+ "given": [
2129
+ "* ",
2130
+ "Date fiind ",
2131
+ "Dat fiind ",
2132
+ "Dati fiind ",
2133
+ "Dați fiind ",
2134
+ "Daţi fiind "
2135
+ ],
2136
+ "name": "Romanian",
2137
+ "native": "română",
2138
+ "scenario": [
2139
+ "Scenariu"
2140
+ ],
2141
+ "scenarioOutline": [
2142
+ "Structura scenariu",
2143
+ "Structură scenariu"
2144
+ ],
2145
+ "then": [
2146
+ "* ",
2147
+ "Atunci "
2148
+ ],
2149
+ "when": [
2150
+ "* ",
2151
+ "Cand ",
2152
+ "Când "
2153
+ ]
2154
+ },
2155
+ "ru": {
2156
+ "and": [
2157
+ "* ",
2158
+ "И ",
2159
+ "К тому же ",
2160
+ "Также "
2161
+ ],
2162
+ "background": [
2163
+ "Предыстория",
2164
+ "Контекст"
2165
+ ],
2166
+ "but": [
2167
+ "* ",
2168
+ "Но ",
2169
+ "А "
2170
+ ],
2171
+ "examples": [
2172
+ "Примеры"
2173
+ ],
2174
+ "feature": [
2175
+ "Функция",
2176
+ "Функционал",
2177
+ "Свойство"
2178
+ ],
2179
+ "given": [
2180
+ "* ",
2181
+ "Допустим ",
2182
+ "Дано ",
2183
+ "Пусть "
2184
+ ],
2185
+ "name": "Russian",
2186
+ "native": "русский",
2187
+ "scenario": [
2188
+ "Сценарий"
2189
+ ],
2190
+ "scenarioOutline": [
2191
+ "Структура сценария"
2192
+ ],
2193
+ "then": [
2194
+ "* ",
2195
+ "То ",
2196
+ "Тогда "
2197
+ ],
2198
+ "when": [
2199
+ "* ",
2200
+ "Если ",
2201
+ "Когда "
2202
+ ]
2203
+ },
2204
+ "sk": {
2205
+ "and": [
2206
+ "* ",
2207
+ "A ",
2208
+ "A tiež ",
2209
+ "A taktiež ",
2210
+ "A zároveň "
2211
+ ],
2212
+ "background": [
2213
+ "Pozadie"
2214
+ ],
2215
+ "but": [
2216
+ "* ",
2217
+ "Ale "
2218
+ ],
2219
+ "examples": [
2220
+ "Príklady"
2221
+ ],
2222
+ "feature": [
2223
+ "Požiadavka",
2224
+ "Funkcia",
2225
+ "Vlastnosť"
2226
+ ],
2227
+ "given": [
2228
+ "* ",
2229
+ "Pokiaľ ",
2230
+ "Za predpokladu "
2231
+ ],
2232
+ "name": "Slovak",
2233
+ "native": "Slovensky",
2234
+ "scenario": [
2235
+ "Scenár"
2236
+ ],
2237
+ "scenarioOutline": [
2238
+ "Náčrt Scenáru",
2239
+ "Náčrt Scenára",
2240
+ "Osnova Scenára"
2241
+ ],
2242
+ "then": [
2243
+ "* ",
2244
+ "Tak ",
2245
+ "Potom "
2246
+ ],
2247
+ "when": [
2248
+ "* ",
2249
+ "Keď ",
2250
+ "Ak "
2251
+ ]
2252
+ },
2253
+ "sl": {
2254
+ "and": [
2255
+ "In ",
2256
+ "Ter "
2257
+ ],
2258
+ "background": [
2259
+ "Kontekst",
2260
+ "Osnova",
2261
+ "Ozadje"
2262
+ ],
2263
+ "but": [
2264
+ "Toda ",
2265
+ "Ampak ",
2266
+ "Vendar "
2267
+ ],
2268
+ "examples": [
2269
+ "Primeri",
2270
+ "Scenariji"
2271
+ ],
2272
+ "feature": [
2273
+ "Funkcionalnost",
2274
+ "Funkcija",
2275
+ "Možnosti",
2276
+ "Moznosti",
2277
+ "Lastnost",
2278
+ "Značilnost"
2279
+ ],
2280
+ "given": [
2281
+ "Dano ",
2282
+ "Podano ",
2283
+ "Zaradi ",
2284
+ "Privzeto "
2285
+ ],
2286
+ "name": "Slovenian",
2287
+ "native": "Slovenski",
2288
+ "scenario": [
2289
+ "Scenarij",
2290
+ "Primer"
2291
+ ],
2292
+ "scenarioOutline": [
2293
+ "Struktura scenarija",
2294
+ "Skica",
2295
+ "Koncept",
2296
+ "Oris scenarija",
2297
+ "Osnutek"
2298
+ ],
2299
+ "then": [
2300
+ "Nato ",
2301
+ "Potem ",
2302
+ "Takrat "
2303
+ ],
2304
+ "when": [
2305
+ "Ko ",
2306
+ "Ce ",
2307
+ "Če ",
2308
+ "Kadar "
2309
+ ]
2310
+ },
2311
+ "sr-Cyrl": {
2312
+ "and": [
2313
+ "* ",
2314
+ "И "
2315
+ ],
2316
+ "background": [
2317
+ "Контекст",
2318
+ "Основа",
2319
+ "Позадина"
2320
+ ],
2321
+ "but": [
2322
+ "* ",
2323
+ "Али "
2324
+ ],
2325
+ "examples": [
2326
+ "Примери",
2327
+ "Сценарији"
2328
+ ],
2329
+ "feature": [
2330
+ "Функционалност",
2331
+ "Могућност",
2332
+ "Особина"
2333
+ ],
2334
+ "given": [
2335
+ "* ",
2336
+ "За дато ",
2337
+ "За дате ",
2338
+ "За дати "
2339
+ ],
2340
+ "name": "Serbian",
2341
+ "native": "Српски",
2342
+ "scenario": [
2343
+ "Сценарио",
2344
+ "Пример"
2345
+ ],
2346
+ "scenarioOutline": [
2347
+ "Структура сценарија",
2348
+ "Скица",
2349
+ "Концепт"
2350
+ ],
2351
+ "then": [
2352
+ "* ",
2353
+ "Онда "
2354
+ ],
2355
+ "when": [
2356
+ "* ",
2357
+ "Када ",
2358
+ "Кад "
2359
+ ]
2360
+ },
2361
+ "sr-Latn": {
2362
+ "and": [
2363
+ "* ",
2364
+ "I "
2365
+ ],
2366
+ "background": [
2367
+ "Kontekst",
2368
+ "Osnova",
2369
+ "Pozadina"
2370
+ ],
2371
+ "but": [
2372
+ "* ",
2373
+ "Ali "
2374
+ ],
2375
+ "examples": [
2376
+ "Primeri",
2377
+ "Scenariji"
2378
+ ],
2379
+ "feature": [
2380
+ "Funkcionalnost",
2381
+ "Mogućnost",
2382
+ "Mogucnost",
2383
+ "Osobina"
2384
+ ],
2385
+ "given": [
2386
+ "* ",
2387
+ "Za dato ",
2388
+ "Za date ",
2389
+ "Za dati "
2390
+ ],
2391
+ "name": "Serbian (Latin)",
2392
+ "native": "Srpski (Latinica)",
2393
+ "scenario": [
2394
+ "Scenario",
2395
+ "Primer"
2396
+ ],
2397
+ "scenarioOutline": [
2398
+ "Struktura scenarija",
2399
+ "Skica",
2400
+ "Koncept"
2401
+ ],
2402
+ "then": [
2403
+ "* ",
2404
+ "Onda "
2405
+ ],
2406
+ "when": [
2407
+ "* ",
2408
+ "Kada ",
2409
+ "Kad "
2410
+ ]
2411
+ },
2412
+ "sv": {
2413
+ "and": [
2414
+ "* ",
2415
+ "Och "
2416
+ ],
2417
+ "background": [
2418
+ "Bakgrund"
2419
+ ],
2420
+ "but": [
2421
+ "* ",
2422
+ "Men "
2423
+ ],
2424
+ "examples": [
2425
+ "Exempel"
2426
+ ],
2427
+ "feature": [
2428
+ "Egenskap"
2429
+ ],
2430
+ "given": [
2431
+ "* ",
2432
+ "Givet "
2433
+ ],
2434
+ "name": "Swedish",
2435
+ "native": "Svenska",
2436
+ "scenario": [
2437
+ "Scenario"
2438
+ ],
2439
+ "scenarioOutline": [
2440
+ "Abstrakt Scenario",
2441
+ "Scenariomall"
2442
+ ],
2443
+ "then": [
2444
+ "* ",
2445
+ "Så "
2446
+ ],
2447
+ "when": [
2448
+ "* ",
2449
+ "När "
2450
+ ]
2451
+ },
2452
+ "ta": {
2453
+ "and": [
2454
+ "* ",
2455
+ "மேலும் ",
2456
+ "மற்றும் "
2457
+ ],
2458
+ "background": [
2459
+ "பின்னணி"
2460
+ ],
2461
+ "but": [
2462
+ "* ",
2463
+ "ஆனால் "
2464
+ ],
2465
+ "examples": [
2466
+ "எடுத்துக்காட்டுகள்",
2467
+ "காட்சிகள்",
2468
+ " நிலைமைகளில்"
2469
+ ],
2470
+ "feature": [
2471
+ "அம்சம்",
2472
+ "வணிக தேவை",
2473
+ "திறன்"
2474
+ ],
2475
+ "given": [
2476
+ "* ",
2477
+ "கொடுக்கப்பட்ட "
2478
+ ],
2479
+ "name": "Tamil",
2480
+ "native": "தமிழ்",
2481
+ "scenario": [
2482
+ "காட்சி"
2483
+ ],
2484
+ "scenarioOutline": [
2485
+ "காட்சி சுருக்கம்",
2486
+ "காட்சி வார்ப்புரு"
2487
+ ],
2488
+ "then": [
2489
+ "* ",
2490
+ "அப்பொழுது "
2491
+ ],
2492
+ "when": [
2493
+ "* ",
2494
+ "எப்போது "
2495
+ ]
2496
+ },
2497
+ "th": {
2498
+ "and": [
2499
+ "* ",
2500
+ "และ "
2501
+ ],
2502
+ "background": [
2503
+ "แนวคิด"
2504
+ ],
2505
+ "but": [
2506
+ "* ",
2507
+ "แต่ "
2508
+ ],
2509
+ "examples": [
2510
+ "ชุดของตัวอย่าง",
2511
+ "ชุดของเหตุการณ์"
2512
+ ],
2513
+ "feature": [
2514
+ "โครงหลัก",
2515
+ "ความต้องการทางธุรกิจ",
2516
+ "ความสามารถ"
2517
+ ],
2518
+ "given": [
2519
+ "* ",
2520
+ "กำหนดให้ "
2521
+ ],
2522
+ "name": "Thai",
2523
+ "native": "ไทย",
2524
+ "scenario": [
2525
+ "เหตุการณ์"
2526
+ ],
2527
+ "scenarioOutline": [
2528
+ "สรุปเหตุการณ์",
2529
+ "โครงสร้างของเหตุการณ์"
2530
+ ],
2531
+ "then": [
2532
+ "* ",
2533
+ "ดังนั้น "
2534
+ ],
2535
+ "when": [
2536
+ "* ",
2537
+ "เมื่อ "
2538
+ ]
2539
+ },
2540
+ "tl": {
2541
+ "and": [
2542
+ "* ",
2543
+ "మరియు "
2544
+ ],
2545
+ "background": [
2546
+ "నేపథ్యం"
2547
+ ],
2548
+ "but": [
2549
+ "* ",
2550
+ "కాని "
2551
+ ],
2552
+ "examples": [
2553
+ "ఉదాహరణలు"
2554
+ ],
2555
+ "feature": [
2556
+ "గుణము"
2557
+ ],
2558
+ "given": [
2559
+ "* ",
2560
+ "చెప్పబడినది "
2561
+ ],
2562
+ "name": "Telugu",
2563
+ "native": "తెలుగు",
2564
+ "scenario": [
2565
+ "సన్నివేశం"
2566
+ ],
2567
+ "scenarioOutline": [
2568
+ "కథనం"
2569
+ ],
2570
+ "then": [
2571
+ "* ",
2572
+ "అప్పుడు "
2573
+ ],
2574
+ "when": [
2575
+ "* ",
2576
+ "ఈ పరిస్థితిలో "
2577
+ ]
2578
+ },
2579
+ "tlh": {
2580
+ "and": [
2581
+ "* ",
2582
+ "'ej ",
2583
+ "latlh "
2584
+ ],
2585
+ "background": [
2586
+ "mo'"
2587
+ ],
2588
+ "but": [
2589
+ "* ",
2590
+ "'ach ",
2591
+ "'a "
2592
+ ],
2593
+ "examples": [
2594
+ "ghantoH",
2595
+ "lutmey"
2596
+ ],
2597
+ "feature": [
2598
+ "Qap",
2599
+ "Qu'meH 'ut",
2600
+ "perbogh",
2601
+ "poQbogh malja'",
2602
+ "laH"
2603
+ ],
2604
+ "given": [
2605
+ "* ",
2606
+ "ghu' noblu' ",
2607
+ "DaH ghu' bejlu' "
2608
+ ],
2609
+ "name": "Klingon",
2610
+ "native": "tlhIngan",
2611
+ "scenario": [
2612
+ "lut"
2613
+ ],
2614
+ "scenarioOutline": [
2615
+ "lut chovnatlh"
2616
+ ],
2617
+ "then": [
2618
+ "* ",
2619
+ "vaj "
2620
+ ],
2621
+ "when": [
2622
+ "* ",
2623
+ "qaSDI' "
2624
+ ]
2625
+ },
2626
+ "tr": {
2627
+ "and": [
2628
+ "* ",
2629
+ "Ve "
2630
+ ],
2631
+ "background": [
2632
+ "Geçmiş"
2633
+ ],
2634
+ "but": [
2635
+ "* ",
2636
+ "Fakat ",
2637
+ "Ama "
2638
+ ],
2639
+ "examples": [
2640
+ "Örnekler"
2641
+ ],
2642
+ "feature": [
2643
+ "Özellik"
2644
+ ],
2645
+ "given": [
2646
+ "* ",
2647
+ "Diyelim ki "
2648
+ ],
2649
+ "name": "Turkish",
2650
+ "native": "Türkçe",
2651
+ "scenario": [
2652
+ "Senaryo"
2653
+ ],
2654
+ "scenarioOutline": [
2655
+ "Senaryo taslağı"
2656
+ ],
2657
+ "then": [
2658
+ "* ",
2659
+ "O zaman "
2660
+ ],
2661
+ "when": [
2662
+ "* ",
2663
+ "Eğer ki "
2664
+ ]
2665
+ },
2666
+ "tt": {
2667
+ "and": [
2668
+ "* ",
2669
+ "Һәм ",
2670
+ "Вә "
2671
+ ],
2672
+ "background": [
2673
+ "Кереш"
2674
+ ],
2675
+ "but": [
2676
+ "* ",
2677
+ "Ләкин ",
2678
+ "Әмма "
2679
+ ],
2680
+ "examples": [
2681
+ "Үрнәкләр",
2682
+ "Мисаллар"
2683
+ ],
2684
+ "feature": [
2685
+ "Мөмкинлек",
2686
+ "Үзенчәлеклелек"
2687
+ ],
2688
+ "given": [
2689
+ "* ",
2690
+ "Әйтик "
2691
+ ],
2692
+ "name": "Tatar",
2693
+ "native": "Татарча",
2694
+ "scenario": [
2695
+ "Сценарий"
2696
+ ],
2697
+ "scenarioOutline": [
2698
+ "Сценарийның төзелеше"
2699
+ ],
2700
+ "then": [
2701
+ "* ",
2702
+ "Нәтиҗәдә "
2703
+ ],
2704
+ "when": [
2705
+ "* ",
2706
+ "Әгәр "
2707
+ ]
2708
+ },
2709
+ "uk": {
2710
+ "and": [
2711
+ "* ",
2712
+ "І ",
2713
+ "А також ",
2714
+ "Та "
2715
+ ],
2716
+ "background": [
2717
+ "Передумова"
2718
+ ],
2719
+ "but": [
2720
+ "* ",
2721
+ "Але "
2722
+ ],
2723
+ "examples": [
2724
+ "Приклади"
2725
+ ],
2726
+ "feature": [
2727
+ "Функціонал"
2728
+ ],
2729
+ "given": [
2730
+ "* ",
2731
+ "Припустимо ",
2732
+ "Припустимо, що ",
2733
+ "Нехай ",
2734
+ "Дано "
2735
+ ],
2736
+ "name": "Ukrainian",
2737
+ "native": "Українська",
2738
+ "scenario": [
2739
+ "Сценарій"
2740
+ ],
2741
+ "scenarioOutline": [
2742
+ "Структура сценарію"
2743
+ ],
2744
+ "then": [
2745
+ "* ",
2746
+ "То ",
2747
+ "Тоді "
2748
+ ],
2749
+ "when": [
2750
+ "* ",
2751
+ "Якщо ",
2752
+ "Коли "
2753
+ ]
2754
+ },
2755
+ "ur": {
2756
+ "and": [
2757
+ "* ",
2758
+ "اور "
2759
+ ],
2760
+ "background": [
2761
+ "پس منظر"
2762
+ ],
2763
+ "but": [
2764
+ "* ",
2765
+ "لیکن "
2766
+ ],
2767
+ "examples": [
2768
+ "مثالیں"
2769
+ ],
2770
+ "feature": [
2771
+ "صلاحیت",
2772
+ "کاروبار کی ضرورت",
2773
+ "خصوصیت"
2774
+ ],
2775
+ "given": [
2776
+ "* ",
2777
+ "اگر ",
2778
+ "بالفرض ",
2779
+ "فرض کیا "
2780
+ ],
2781
+ "name": "Urdu",
2782
+ "native": "اردو",
2783
+ "scenario": [
2784
+ "منظرنامہ"
2785
+ ],
2786
+ "scenarioOutline": [
2787
+ "منظر نامے کا خاکہ"
2788
+ ],
2789
+ "then": [
2790
+ "* ",
2791
+ "پھر ",
2792
+ "تب "
2793
+ ],
2794
+ "when": [
2795
+ "* ",
2796
+ "جب "
2797
+ ]
2798
+ },
2799
+ "uz": {
2800
+ "and": [
2801
+ "* ",
2802
+ "Ва "
2803
+ ],
2804
+ "background": [
2805
+ "Тарих"
2806
+ ],
2807
+ "but": [
2808
+ "* ",
2809
+ "Лекин ",
2810
+ "Бирок ",
2811
+ "Аммо "
2812
+ ],
2813
+ "examples": [
2814
+ "Мисоллар"
2815
+ ],
2816
+ "feature": [
2817
+ "Функционал"
2818
+ ],
2819
+ "given": [
2820
+ "* ",
2821
+ "Агар "
2822
+ ],
2823
+ "name": "Uzbek",
2824
+ "native": "Узбекча",
2825
+ "scenario": [
2826
+ "Сценарий"
2827
+ ],
2828
+ "scenarioOutline": [
2829
+ "Сценарий структураси"
2830
+ ],
2831
+ "then": [
2832
+ "* ",
2833
+ "Унда "
2834
+ ],
2835
+ "when": [
2836
+ "* ",
2837
+ "Агар "
2838
+ ]
2839
+ },
2840
+ "vi": {
2841
+ "and": [
2842
+ "* ",
2843
+ "Và "
2844
+ ],
2845
+ "background": [
2846
+ "Bối cảnh"
2847
+ ],
2848
+ "but": [
2849
+ "* ",
2850
+ "Nhưng "
2851
+ ],
2852
+ "examples": [
2853
+ "Dữ liệu"
2854
+ ],
2855
+ "feature": [
2856
+ "Tính năng"
2857
+ ],
2858
+ "given": [
2859
+ "* ",
2860
+ "Biết ",
2861
+ "Cho "
2862
+ ],
2863
+ "name": "Vietnamese",
2864
+ "native": "Tiếng Việt",
2865
+ "scenario": [
2866
+ "Tình huống",
2867
+ "Kịch bản"
2868
+ ],
2869
+ "scenarioOutline": [
2870
+ "Khung tình huống",
2871
+ "Khung kịch bản"
2872
+ ],
2873
+ "then": [
2874
+ "* ",
2875
+ "Thì "
2876
+ ],
2877
+ "when": [
2878
+ "* ",
2879
+ "Khi "
2880
+ ]
2881
+ },
2882
+ "zh-CN": {
2883
+ "and": [
2884
+ "* ",
2885
+ "而且",
2886
+ "并且",
2887
+ "同时"
2888
+ ],
2889
+ "background": [
2890
+ "背景"
2891
+ ],
2892
+ "but": [
2893
+ "* ",
2894
+ "但是"
2895
+ ],
2896
+ "examples": [
2897
+ "例子"
2898
+ ],
2899
+ "feature": [
2900
+ "功能"
2901
+ ],
2902
+ "given": [
2903
+ "* ",
2904
+ "假如",
2905
+ "假设",
2906
+ "假定"
2907
+ ],
2908
+ "name": "Chinese simplified",
2909
+ "native": "简体中文",
2910
+ "scenario": [
2911
+ "场景",
2912
+ "剧本"
2913
+ ],
2914
+ "scenarioOutline": [
2915
+ "场景大纲",
2916
+ "剧本大纲"
2917
+ ],
2918
+ "then": [
2919
+ "* ",
2920
+ "那么"
2921
+ ],
2922
+ "when": [
2923
+ "* ",
2924
+ "当"
2925
+ ]
2926
+ },
2927
+ "zh-TW": {
2928
+ "and": [
2929
+ "* ",
2930
+ "而且",
2931
+ "並且",
2932
+ "同時"
2933
+ ],
2934
+ "background": [
2935
+ "背景"
2936
+ ],
2937
+ "but": [
2938
+ "* ",
2939
+ "但是"
2940
+ ],
2941
+ "examples": [
2942
+ "例子"
2943
+ ],
2944
+ "feature": [
2945
+ "功能"
2946
+ ],
2947
+ "given": [
2948
+ "* ",
2949
+ "假如",
2950
+ "假設",
2951
+ "假定"
2952
+ ],
2953
+ "name": "Chinese traditional",
2954
+ "native": "繁體中文",
2955
+ "scenario": [
2956
+ "場景",
2957
+ "劇本"
2958
+ ],
2959
+ "scenarioOutline": [
2960
+ "場景大綱",
2961
+ "劇本大綱"
2962
+ ],
2963
+ "then": [
2964
+ "* ",
2965
+ "那麼"
2966
+ ],
2967
+ "when": [
2968
+ "* ",
2969
+ "當"
2970
+ ]
2971
+ }
2972
+ }