gherkin 4.0.0 → 4.1.0

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