gherkin 4.1.3 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.rsync +2 -1
  3. data/.travis.yml +9 -12
  4. data/Makefile +2 -5
  5. data/gherkin.berp +6 -15
  6. data/gherkin.gemspec +1 -1
  7. data/lib/gherkin/gherkin-languages.json +3 -1
  8. data/lib/gherkin/parser.rb +49 -56
  9. data/lib/gherkin/pickles/compiler.rb +2 -6
  10. data/lib/gherkin/stream/gherkin_events.rb +7 -5
  11. data/lib/gherkin/stream/source_events.rb +6 -6
  12. data/spec/gherkin/stream/gherkin_events_spec.rb +27 -0
  13. data/spec/gherkin/stream/test_fr.feature +3 -0
  14. data/testdata/bad/inconsistent_cell_count.feature.errors.ndjson +2 -2
  15. data/testdata/bad/invalid_language.feature.errors.ndjson +1 -1
  16. data/testdata/bad/multiple_parser_errors.feature.errors.ndjson +2 -2
  17. data/testdata/bad/not_gherkin.feature.errors.ndjson +1 -1
  18. data/testdata/bad/single_parser_error.feature.errors.ndjson +1 -1
  19. data/testdata/bad/unexpected_eof.feature.errors.ndjson +1 -1
  20. data/testdata/good/background.feature.source.ndjson +1 -1
  21. data/testdata/good/datatables.feature.source.ndjson +1 -1
  22. data/testdata/good/descriptions.feature.source.ndjson +1 -1
  23. data/testdata/good/docstrings.feature.source.ndjson +1 -1
  24. data/testdata/good/empty.feature.source.ndjson +1 -1
  25. data/testdata/good/escaped_pipes.feature.source.ndjson +1 -1
  26. data/testdata/good/example_token_multiple.feature.source.ndjson +1 -1
  27. data/testdata/good/example_tokens_everywhere.feature.source.ndjson +1 -1
  28. data/testdata/good/i18n_emoji.feature.source.ndjson +1 -1
  29. data/testdata/good/i18n_fr.feature.source.ndjson +1 -1
  30. data/testdata/good/i18n_no.feature.source.ndjson +1 -1
  31. data/testdata/good/incomplete_background_1.feature.source.ndjson +1 -1
  32. data/testdata/good/incomplete_background_2.feature.source.ndjson +1 -1
  33. data/testdata/good/incomplete_feature_1.feature.source.ndjson +1 -1
  34. data/testdata/good/incomplete_feature_2.feature.source.ndjson +1 -1
  35. data/testdata/good/incomplete_feature_3.feature.source.ndjson +1 -1
  36. data/testdata/good/incomplete_scenario.feature.pickles.ndjson +1 -0
  37. data/testdata/good/incomplete_scenario.feature.source.ndjson +1 -1
  38. data/testdata/good/incomplete_scenario_outline.feature.pickles.ndjson +1 -0
  39. data/testdata/good/incomplete_scenario_outline.feature.source.ndjson +1 -1
  40. data/testdata/good/language.feature.source.ndjson +1 -1
  41. data/testdata/good/minimal.feature.source.ndjson +1 -1
  42. data/testdata/good/readme_example.feature.source.ndjson +1 -1
  43. data/testdata/good/scenario_outline.feature.source.ndjson +1 -1
  44. data/testdata/good/scenario_outline_no_newline.feature.source.ndjson +1 -1
  45. data/testdata/good/scenario_outlines_with_tags.feature.source.ndjson +1 -1
  46. data/testdata/good/several_examples.feature.pickles.ndjson +1 -0
  47. data/testdata/good/several_examples.feature.source.ndjson +1 -1
  48. data/testdata/good/spaces_in_language.feature.source.ndjson +1 -1
  49. data/testdata/good/tagged_feature_with_scenario_outline.feature +10 -0
  50. data/testdata/good/tagged_feature_with_scenario_outline.feature.ast.ndjson +1 -0
  51. data/testdata/good/tagged_feature_with_scenario_outline.feature.pickles.ndjson +2 -0
  52. data/testdata/good/tagged_feature_with_scenario_outline.feature.source.ndjson +1 -0
  53. data/testdata/good/tagged_feature_with_scenario_outline.feature.tokens +11 -0
  54. data/testdata/good/tags.feature.source.ndjson +1 -1
  55. metadata +12 -4
  56. data/gherkin-languages.json +0 -3191
@@ -24,9 +24,7 @@ module Gherkin
24
24
  private
25
25
 
26
26
  def compile_scenario(feature_tags, background_steps, scenario, language, pickles)
27
- return if scenario[:steps].empty?
28
-
29
- steps = [].concat(background_steps)
27
+ steps = scenario[:steps].empty? ? [] : [].concat(background_steps)
30
28
 
31
29
  tags = [].concat(feature_tags).concat(scenario[:tags])
32
30
 
@@ -45,13 +43,11 @@ module Gherkin
45
43
  end
46
44
 
47
45
  def compile_scenario_outline(feature_tags, background_steps, scenario_outline, language, pickles)
48
- return if scenario_outline[:steps].empty?
49
-
50
46
  scenario_outline[:examples].reject { |examples| examples[:tableHeader].nil? }.each do |examples|
51
47
  variable_cells = examples[:tableHeader][:cells]
52
48
  examples[:tableBody].each do |values|
53
49
  value_cells = values[:cells]
54
- steps = [].concat(background_steps)
50
+ steps = scenario_outline[:steps].empty? ? [] : [].concat(background_steps)
55
51
  tags = [].concat(feature_tags).concat(scenario_outline[:tags]).concat(examples[:tags])
56
52
 
57
53
  scenario_outline[:steps].each do |scenario_outline_step|
@@ -1,21 +1,23 @@
1
1
  require 'gherkin/parser'
2
+ require 'gherkin/token_matcher'
2
3
  require 'gherkin/pickles/compiler'
3
4
 
4
5
  module Gherkin
5
6
  module Stream
6
7
  class GherkinEvents
7
- def initialize(options)
8
+ def initialize(options, language='en')
8
9
  @options = options
9
10
  @parser = Gherkin::Parser.new
10
11
  @compiler = Gherkin::Pickles::Compiler.new
12
+ @language = language
11
13
  end
12
14
 
13
15
  def enum(source_event)
14
16
  Enumerator.new do |y|
15
- uri = source_event['uri']
16
- source = source_event['data']
17
+ uri = source_event[:uri]
18
+ source = source_event[:data]
17
19
  begin
18
- gherkin_document = @parser.parse(source)
20
+ gherkin_document = @parser.parse(source, TokenMatcher.new(@language))
19
21
 
20
22
  if (@options[:print_source])
21
23
  y.yield source_event
@@ -59,7 +61,7 @@ module Gherkin
59
61
  data: error.message,
60
62
  media: {
61
63
  encoding: 'utf-8',
62
- type: 'text/vnd.cucumber.stacktrace+plain'
64
+ type: 'text/x.cucumber.stacktrace+plain'
63
65
  }
64
66
  })
65
67
  end
@@ -9,12 +9,12 @@ module Gherkin
9
9
  Enumerator.new do |y|
10
10
  @paths.each do |path|
11
11
  event = {
12
- 'type' => 'source',
13
- 'uri' => path,
14
- 'data' => File.open(path, 'r:UTF-8', &:read),
15
- 'media' => {
16
- 'encoding' => 'utf-8',
17
- 'type' => 'text/vnd.cucumber.gherkin+plain'
12
+ type: 'source',
13
+ uri: path,
14
+ data: File.open(path, 'r:UTF-8', &:read),
15
+ media: {
16
+ encoding: 'utf-8',
17
+ type: 'text/x.cucumber.gherkin+plain'
18
18
  }
19
19
  }
20
20
  y.yield(event)
@@ -0,0 +1,27 @@
1
+ require 'rspec'
2
+ require 'gherkin/stream/gherkin_events'
3
+ require 'gherkin/stream/source_events'
4
+
5
+ module Gherkin
6
+ module Stream
7
+ describe GherkinEvents do
8
+ it "accepts a language parameter" do
9
+ source_events = SourceEvents.new([File.dirname(__FILE__) + '/test_fr.feature'])
10
+ gherkin_events = GherkinEvents.new({
11
+ print_source: true,
12
+ print_ast: true,
13
+ print_pickles: true
14
+ }, 'fr')
15
+
16
+ event_types = []
17
+ source_events.enum.each do |source_event|
18
+ gherkin_events.enum(source_event).each do |event|
19
+ event_types << event[:type]
20
+ end
21
+ end
22
+
23
+ expect(event_types).to eq(['source', 'gherkin-document', 'pickle'])
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,3 @@
1
+ Fonctionnalité: Bonjour
2
+ Scénario: Monde
3
+ Soit une étape
@@ -1,2 +1,2 @@
1
- {"data":"(6:7): inconsistent cell count within the table","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":7,"line":6},"uri":"testdata/bad/inconsistent_cell_count.feature"},"type":"attachment"}
2
- {"data":"(14:5): inconsistent cell count within the table","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":5,"line":14},"uri":"testdata/bad/inconsistent_cell_count.feature"},"type":"attachment"}
1
+ {"data":"(6:7): inconsistent cell count within the table","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":7,"line":6},"uri":"testdata/bad/inconsistent_cell_count.feature"},"type":"attachment"}
2
+ {"data":"(14:5): inconsistent cell count within the table","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":5,"line":14},"uri":"testdata/bad/inconsistent_cell_count.feature"},"type":"attachment"}
@@ -1 +1 @@
1
- {"data":"(1:1): Language not supported: no-such","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":1},"uri":"testdata/bad/invalid_language.feature"},"type":"attachment"}
1
+ {"data":"(1:1): Language not supported: no-such","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":1},"uri":"testdata/bad/invalid_language.feature"},"type":"attachment"}
@@ -1,2 +1,2 @@
1
- {"data":"(2:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'invalid line here'","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":2},"uri":"testdata/bad/multiple_parser_errors.feature"},"type":"attachment"}
2
- {"data":"(9:1): expected: #EOF, #TableRow, #DocStringSeparator, #StepLine, #TagLine, #ScenarioLine, #ScenarioOutlineLine, #Comment, #Empty, got 'another invalid line here'","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":9},"uri":"testdata/bad/multiple_parser_errors.feature"},"type":"attachment"}
1
+ {"data":"(2:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'invalid line here'","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":2},"uri":"testdata/bad/multiple_parser_errors.feature"},"type":"attachment"}
2
+ {"data":"(9:1): expected: #EOF, #TableRow, #DocStringSeparator, #StepLine, #TagLine, #ScenarioLine, #ScenarioOutlineLine, #Comment, #Empty, got 'another invalid line here'","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":9},"uri":"testdata/bad/multiple_parser_errors.feature"},"type":"attachment"}
@@ -1 +1 @@
1
- {"data":"(1:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'not gherkin'","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":1},"uri":"testdata/bad/not_gherkin.feature"},"type":"attachment"}
1
+ {"data":"(1:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'not gherkin'","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":1},"uri":"testdata/bad/not_gherkin.feature"},"type":"attachment"}
@@ -1 +1 @@
1
- {"data":"(2:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'invalid line here'","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":2},"uri":"testdata/bad/single_parser_error.feature"},"type":"attachment"}
1
+ {"data":"(2:1): expected: #EOF, #Language, #TagLine, #FeatureLine, #Comment, #Empty, got 'invalid line here'","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":1,"line":2},"uri":"testdata/bad/single_parser_error.feature"},"type":"attachment"}
@@ -1 +1 @@
1
- {"data":"(7:0): unexpected end of file, expected: #TagLine, #ScenarioLine, #ScenarioOutlineLine, #Comment, #Empty","media":{"encoding":"utf-8","type":"text/vnd.cucumber.stacktrace+plain"},"source":{"start":{"column":0,"line":7},"uri":"testdata/bad/unexpected_eof.feature"},"type":"attachment"}
1
+ {"data":"(7:0): unexpected end of file, expected: #TagLine, #ScenarioLine, #ScenarioOutlineLine, #Comment, #Empty","media":{"encoding":"utf-8","type":"text/x.cucumber.stacktrace+plain"},"source":{"start":{"column":0,"line":7},"uri":"testdata/bad/unexpected_eof.feature"},"type":"attachment"}
@@ -1 +1 @@
1
- {"data":"Feature: Background\n\n Background: a simple background\n Given the minimalism inside a background\n\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/background.feature"}
1
+ {"data":"Feature: Background\n\n Background: a simple background\n Given the minimalism inside a background\n\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/background.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: DataTables\n\n Scenario: minimalistic\n Given a simple data table\n | foo | bar |\r\n | boz | boo |\n And a data table with a single cell\n | foo |\n And a data table with different fromatting\n | foo|bar| boz | \n And a data table with an empty cell\n |foo||boz|\n And a data table with comments and newlines inside\n | foo | bar |\r\n\r\n | boz | boo |\r\n # this is a comment\r\n | boz2 | boo2 |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/datatables.feature"}
1
+ {"data":"Feature: DataTables\n\n Scenario: minimalistic\n Given a simple data table\n | foo | bar |\r\n | boz | boo |\n And a data table with a single cell\n | foo |\n And a data table with different fromatting\n | foo|bar| boz | \n And a data table with an empty cell\n |foo||boz|\n And a data table with comments and newlines inside\n | foo | bar |\r\n\r\n | boz | boo |\r\n # this is a comment\r\n | boz2 | boo2 |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/datatables.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Descriptions everywhere\n This is a single line description\n\n Scenario: two lines\n This description\n has two lines and indented with two spaces\n Given the minimalism\n\nScenario: without indentation\nThis is a description without indentation\n Given the minimalism\n\n Scenario: empty lines in the middle\n This description\n\n has an empty line in the middle\n Given the minimalism\n\n Scenario: empty lines around\n\n This description\n has an empty lines around\n\n Given the minimalism\n\n Scenario: comment after description\n This description\n has a comment after\n\n# this is a comment\n Given the minimalism\n\n Scenario: comment right after description\n This description\n has a comment right after\n # this is another comment\n\n Given the minimalism\n\n Scenario: description with escaped docstring separator\n This description has an \\\"\\\"\\\" (escaped docstring sparator)\n\n Given the minimalism\n\n Scenario Outline: scenario outline with a description\nThis is a scenario outline description\n Given the minimalism\n\n Examples: examples with description\nThis is an examples description\n | foo |\r\n | bar |\r\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/descriptions.feature"}
1
+ {"data":"Feature: Descriptions everywhere\n This is a single line description\n\n Scenario: two lines\n This description\n has two lines and indented with two spaces\n Given the minimalism\n\nScenario: without indentation\nThis is a description without indentation\n Given the minimalism\n\n Scenario: empty lines in the middle\n This description\n\n has an empty line in the middle\n Given the minimalism\n\n Scenario: empty lines around\n\n This description\n has an empty lines around\n\n Given the minimalism\n\n Scenario: comment after description\n This description\n has a comment after\n\n# this is a comment\n Given the minimalism\n\n Scenario: comment right after description\n This description\n has a comment right after\n # this is another comment\n\n Given the minimalism\n\n Scenario: description with escaped docstring separator\n This description has an \\\"\\\"\\\" (escaped docstring sparator)\n\n Given the minimalism\n\n Scenario Outline: scenario outline with a description\nThis is a scenario outline description\n Given the minimalism\n\n Examples: examples with description\nThis is an examples description\n | foo |\r\n | bar |\r\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/descriptions.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: DocString variations\n\n Scenario: minimalistic\n Given a simple DocString\n \"\"\"\n first line (no indent)\n second line (indented with two spaces)\n\n third line was empty\n \"\"\"\n Given a DocString with content type\n \"\"\"xml\n <foo>\n <bar />\n </foo>\n \"\"\"\n And a DocString with wrong indentation\n \"\"\"\n wrongly indented line\n \"\"\"\n And a DocString with alternative separator\n ```\n first line\n second line\n ```\n And a DocString with normal separator inside\n ```\n first line\n \"\"\"\n third line\n ```\n And a DocString with alternative separator inside\n \"\"\"\n first line\n ```\n third line\n \"\"\"\n And a DocString with escaped separator inside\n \"\"\"\n first line\n \\\"\\\"\\\"\n third line\n \"\"\"\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/docstrings.feature"}
1
+ {"data":"Feature: DocString variations\n\n Scenario: minimalistic\n Given a simple DocString\n \"\"\"\n first line (no indent)\n second line (indented with two spaces)\n\n third line was empty\n \"\"\"\n Given a DocString with content type\n \"\"\"xml\n <foo>\n <bar />\n </foo>\n \"\"\"\n And a DocString with wrong indentation\n \"\"\"\n wrongly indented line\n \"\"\"\n And a DocString with alternative separator\n ```\n first line\n second line\n ```\n And a DocString with normal separator inside\n ```\n first line\n \"\"\"\n third line\n ```\n And a DocString with alternative separator inside\n \"\"\"\n first line\n ```\n third line\n \"\"\"\n And a DocString with escaped separator inside\n \"\"\"\n first line\n \\\"\\\"\\\"\n third line\n \"\"\"\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/docstrings.feature"}
@@ -1 +1 @@
1
- {"data":"","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/empty.feature"}
1
+ {"data":"","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/empty.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Escaped pipes\n The \\-character will be considered as an escape in table cell\n iff it is followed by a |-character, a \\-character or an n.\n\n Scenario: They are the future\n Given they have arrived\n | æ | o |\n | a | ø |\n Given they have arrived\n | \\|æ\\\\n | \\o\\no\\ |\n | \\\\\\|a\\\\\\\\n | ø\\\\\\nø\\\\|\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/escaped_pipes.feature"}
1
+ {"data":"Feature: Escaped pipes\n The \\-character will be considered as an escape in table cell\n iff it is followed by a |-character, a \\-character or an n.\n\n Scenario: They are the future\n Given they have arrived\n | æ | o |\n | a | ø |\n Given they have arrived\n | \\|æ\\\\n | \\o\\no\\ |\n | \\\\\\|a\\\\\\\\n | ø\\\\\\nø\\\\|\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/escaped_pipes.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Example token used multiple times\n\n Scenario Outline: Token used twice in a single step\n Given <what> <what>\n\n Examples:\n | what |\n | usage |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/example_token_multiple.feature"}
1
+ {"data":"Feature: Example token used multiple times\n\n Scenario Outline: Token used twice in a single step\n Given <what> <what>\n\n Examples:\n | what |\n | usage |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/example_token_multiple.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Example tokens everywhere\n\n Scenario Outline: the <one>\n Given the <two>:\n \"\"\"\n <three>\n \"\"\"\n Given the <four>:\n | <five> |\n\n Examples:\n | one | two | three | four | five |\n | un | deux | trois | quatre | cinq |\n | uno | dos | tres | quatro | cinco |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/example_tokens_everywhere.feature"}
1
+ {"data":"Feature: Example tokens everywhere\n\n Scenario Outline: the <one>\n Given the <two>:\n \"\"\"\n <three>\n \"\"\"\n Given the <four>:\n | <five> |\n\n Examples:\n | one | two | three | four | five |\n | un | deux | trois | quatre | cinq |\n | uno | dos | tres | quatro | cinco |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/example_tokens_everywhere.feature"}
@@ -1 +1 @@
1
- {"data":"# language: em\n📚: 🙈🙉🙊\n\n 📕: 💃\n 😐🎸\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_emoji.feature"}
1
+ {"data":"# language: em\n📚: 🙈🙉🙊\n\n 📕: 💃\n 😐🎸\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_emoji.feature"}
@@ -1 +1 @@
1
- {"data":"#language:fr\nFonctionnalité: i18n support\n\n Scénario: Support des caractères spéciaux\n Soit un exemple de scénario en français\n Quand j'ai 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Etant donné que \"\n Etant donné que j'aime les gâteaux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Etant donné qu'\"\n Etant donné qu'offrir un gâteau rend heureux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Étant donné que \"\n Étant donné que j'aime les gâteaux \n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Étant donné qu'\"\n Étant donné qu'offrir un gâteau rend heureux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Et que \"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Et que quelqu'un m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Et qu'\"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Et qu'on m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Et \"\n Soit un exemple de scénario en français\n Quand j'ai 2 gâteaux\n Et quelqu'un m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Mais que \"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Mais que quelqu'un me vole 1 gâteau\n Alors j'ai 1 gâteau\n\n Scénario: Support du mot-clef \"Mais qu'\"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Mais qu'on me vole 1 gâteau\n Alors j'ai 1 gâteau\n\n Scénario: Support du mot-clef \"Mais \"\n Soit un exemple de scénario en français\n Quand j'ai 2 gâteaux\n Mais quelqu'un me vole 1 gâteau\n Alors j'ai 1 gâteau\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_fr.feature"}
1
+ {"data":"#language:fr\nFonctionnalité: i18n support\n\n Scénario: Support des caractères spéciaux\n Soit un exemple de scénario en français\n Quand j'ai 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Etant donné que \"\n Etant donné que j'aime les gâteaux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Etant donné qu'\"\n Etant donné qu'offrir un gâteau rend heureux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Étant donné que \"\n Étant donné que j'aime les gâteaux \n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Étant donné qu'\"\n Étant donné qu'offrir un gâteau rend heureux\n Lorsqu'on m'offre 1 gâteau\n Alors je suis heureux\n\n Scénario: Support du mot-clef \"Et que \"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Et que quelqu'un m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Et qu'\"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Et qu'on m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Et \"\n Soit un exemple de scénario en français\n Quand j'ai 2 gâteaux\n Et quelqu'un m'offre 1 gâteau\n Alors j'ai 3 gâteaux\n\n Scénario: Support du mot-clef \"Mais que \"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Mais que quelqu'un me vole 1 gâteau\n Alors j'ai 1 gâteau\n\n Scénario: Support du mot-clef \"Mais qu'\"\n Soit un exemple de scénario en français\n Lorsque j'ai 2 gâteaux\n Mais qu'on me vole 1 gâteau\n Alors j'ai 1 gâteau\n\n Scénario: Support du mot-clef \"Mais \"\n Soit un exemple de scénario en français\n Quand j'ai 2 gâteaux\n Mais quelqu'un me vole 1 gâteau\n Alors j'ai 1 gâteau\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_fr.feature"}
@@ -1 +1 @@
1
- {"data":"#language:no\nEgenskap: i18n support\n\n Scenario: Parsing many languages\n Gitt Gherkin supports many languages\n Når Norwegian keywords are parsed\n Så they should be recognized\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_no.feature"}
1
+ {"data":"#language:no\nEgenskap: i18n support\n\n Scenario: Parsing many languages\n Gitt Gherkin supports many languages\n Når Norwegian keywords are parsed\n Så they should be recognized\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/i18n_no.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Incomplete backgrounds, Part 1\n\n Background: no steps\n\n Scenario: still pickles up\n * a step\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_background_1.feature"}
1
+ {"data":"Feature: Incomplete backgrounds, Part 1\n\n Background: no steps\n\n Scenario: still pickles up\n * a step\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_background_1.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Incomplete backgrounds, Part 2\n\n Background: just a description\n A short description\n\n Scenario: still pickles up\n * a step\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_background_2.feature"}
1
+ {"data":"Feature: Incomplete backgrounds, Part 2\n\n Background: just a description\n A short description\n\n Scenario: still pickles up\n * a step\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_background_2.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Just a description\n A short description\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_1.feature"}
1
+ {"data":"Feature: Just a description\n A short description\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_1.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Empty feature\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_2.feature"}
1
+ {"data":"Feature: Empty feature\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_2.feature"}
@@ -1 +1 @@
1
- {"data":"# Just a comment","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_3.feature"}
1
+ {"data":"# Just a comment","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_feature_3.feature"}
@@ -0,0 +1 @@
1
+ {"pickle":{"language":"en","locations":[{"column":3,"line":6}],"name":"no steps","steps":[],"tags":[]},"type":"pickle","uri":"testdata/good/incomplete_scenario.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Incomplete scenarios\n\n Background: Adding a background won't make a pickle\n * a step\n\n Scenario: no steps\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_scenario.feature"}
1
+ {"data":"Feature: Incomplete scenarios\n\n Background: Adding a background won't make a pickle\n * a step\n\n Scenario: no steps\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_scenario.feature"}
@@ -0,0 +1 @@
1
+ {"pickle":{"language":"en","locations":[{"column":5,"line":24},{"column":3,"line":20}],"name":"no steps, one example header","steps":[],"tags":[]},"type":"pickle","uri":"testdata/good/incomplete_scenario_outline.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Incomplete scenario outlines\n\n Background: Adding a background won't make a pickle\n * a step\n\n Scenario Outline: steps, no examples\n Given a step\n\n Scenario Outline: no steps, no examples\n\n Scenario Outline: no steps, no table\n\n Examples:\n\n Scenario Outline: no steps, only table header\n\n Examples:\n | what |\n\n Scenario Outline: no steps, one example header\n\n Examples:\n | nope |\n | nada |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_scenario_outline.feature"}
1
+ {"data":"Feature: Incomplete scenario outlines\n\n Background: Adding a background won't make a pickle\n * a step\n\n Scenario Outline: steps, no examples\n Given a step\n\n Scenario Outline: no steps, no examples\n\n Scenario Outline: no steps, no table\n\n Examples:\n\n Scenario Outline: no steps, only table header\n\n Examples:\n | what |\n\n Scenario Outline: no steps, one example header\n\n Examples:\n | nope |\n | nada |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/incomplete_scenario_outline.feature"}
@@ -1 +1 @@
1
- {"data":"#language:en\n\nFeature: Explicit language specification\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/language.feature"}
1
+ {"data":"#language:en\n\nFeature: Explicit language specification\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/language.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Minimal\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/minimal.feature"}
1
+ {"data":"Feature: Minimal\n\n Scenario: minimalistic\n Given the minimalism\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/minimal.feature"}
@@ -1 +1 @@
1
- {"data":"@a\nFeature:\n @b @c\n Scenario Outline:\n Given <x>\n\n Examples:\n | x |\n | y |\n\n @d @e\n Scenario Outline:\n Given <m>\n\n @f\n Examples:\n | m |\n | n |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/readme_example.feature"}
1
+ {"data":"@a\nFeature:\n @b @c\n Scenario Outline:\n Given <x>\n\n Examples:\n | x |\n | y |\n\n @d @e\n Scenario Outline:\n Given <m>\n\n @f\n Examples:\n | m |\n | n |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/readme_example.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Minimal Scenario Outline\n\nScenario Outline: minimalistic\n Given the <what>\n\nExamples:\n | what |\n | minimalism |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outline.feature"}
1
+ {"data":"Feature: Minimal Scenario Outline\n\nScenario Outline: minimalistic\n Given the <what>\n\nExamples:\n | what |\n | minimalism |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outline.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Minimal Scenario Outline\n\nScenario Outline: minimalistic\n Given the <what>\n\nExamples:\n | what |\n | minimalism |","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outline_no_newline.feature"}
1
+ {"data":"Feature: Minimal Scenario Outline\n\nScenario Outline: minimalistic\n Given the <what>\n\nExamples:\n | what |\n | minimalism |","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outline_no_newline.feature"}
@@ -1 +1 @@
1
- {"data":"@a\nFeature:\n @b @c\n Scenario Outline:\n Given <x>\n\n Examples:\n | x |\n | y |\n\n @d @e\n Scenario Outline:\n Given <m>\n\n @f\n Examples:\n | m |\n | n |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outlines_with_tags.feature"}
1
+ {"data":"@a\nFeature:\n @b @c\n Scenario Outline:\n Given <x>\n\n Examples:\n | x |\n | y |\n\n @d @e\n Scenario Outline:\n Given <m>\n\n @f\n Examples:\n | m |\n | n |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/scenario_outlines_with_tags.feature"}
@@ -1,2 +1,3 @@
1
1
  {"pickle":{"language":"en","locations":[{"column":7,"line":9},{"column":3,"line":3}],"name":"minimalistic","steps":[{"arguments":[],"locations":[{"column":7,"line":9},{"column":11,"line":4}],"text":"the foo"}],"tags":[{"location":{"column":5,"line":6},"name":"@foo"}]},"type":"pickle","uri":"testdata/good/several_examples.feature"}
2
2
  {"pickle":{"language":"en","locations":[{"column":7,"line":14},{"column":3,"line":3}],"name":"minimalistic","steps":[{"arguments":[],"locations":[{"column":7,"line":14},{"column":11,"line":4}],"text":"the bar"}],"tags":[{"location":{"column":5,"line":11},"name":"@bar"}]},"type":"pickle","uri":"testdata/good/several_examples.feature"}
3
+ {"pickle":{"language":"en","locations":[{"column":3,"line":17}],"name":"ha ok","steps":[],"tags":[{"location":{"column":3,"line":16},"name":"@zap"}]},"type":"pickle","uri":"testdata/good/several_examples.feature"}
@@ -1 +1 @@
1
- {"data":"Feature: Tagged Examples\n\n Scenario Outline: minimalistic\n Given the <what>\n\n @foo\n Examples:\n | what |\n | foo |\n\n @bar\n Examples:\n | what |\n | bar |\n\n @zap\n Scenario: ha ok\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/several_examples.feature"}
1
+ {"data":"Feature: Tagged Examples\n\n Scenario Outline: minimalistic\n Given the <what>\n\n @foo\n Examples:\n | what |\n | foo |\n\n @bar\n Examples:\n | what |\n | bar |\n\n @zap\n Scenario: ha ok\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/several_examples.feature"}
@@ -1 +1 @@
1
- {"data":" # language : en-lol\nOH HAI: STUFFING\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/spaces_in_language.feature"}
1
+ {"data":" # language : en-lol\nOH HAI: STUFFING\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/spaces_in_language.feature"}
@@ -0,0 +1,10 @@
1
+ @sometag
2
+ Feature: Foo
3
+
4
+ Scenario Outline: Bar
5
+ Then Baz
6
+
7
+ Examples:
8
+ | name |
9
+ | X |
10
+ | Y |
@@ -0,0 +1 @@
1
+ {"document":{"comments":[],"feature":{"children":[{"examples":[{"keyword":"Examples","location":{"column":5,"line":7},"name":"","tableBody":[{"cells":[{"location":{"column":7,"line":9},"type":"TableCell","value":"X"}],"location":{"column":5,"line":9},"type":"TableRow"},{"cells":[{"location":{"column":7,"line":10},"type":"TableCell","value":"Y"}],"location":{"column":5,"line":10},"type":"TableRow"}],"tableHeader":{"cells":[{"location":{"column":7,"line":8},"type":"TableCell","value":"name"}],"location":{"column":5,"line":8},"type":"TableRow"},"tags":[],"type":"Examples"}],"keyword":"Scenario Outline","location":{"column":3,"line":4},"name":"Bar","steps":[{"keyword":"Then ","location":{"column":5,"line":5},"text":"Baz","type":"Step"}],"tags":[],"type":"ScenarioOutline"}],"keyword":"Feature","language":"en","location":{"column":1,"line":2},"name":"Foo","tags":[{"location":{"column":1,"line":1},"name":"@sometag","type":"Tag"}],"type":"Feature"},"type":"GherkinDocument"},"type":"gherkin-document","uri":"testdata/good/tagged_feature_with_scenario_outline.feature"}
@@ -0,0 +1,2 @@
1
+ {"pickle":{"language":"en","locations":[{"column":5,"line":9},{"column":3,"line":4}],"name":"Bar","steps":[{"arguments":[],"locations":[{"column":5,"line":9},{"column":10,"line":5}],"text":"Baz"}],"tags":[{"location":{"column":1,"line":1},"name":"@sometag"}]},"type":"pickle","uri":"testdata/good/tagged_feature_with_scenario_outline.feature"}
2
+ {"pickle":{"language":"en","locations":[{"column":5,"line":10},{"column":3,"line":4}],"name":"Bar","steps":[{"arguments":[],"locations":[{"column":5,"line":10},{"column":10,"line":5}],"text":"Baz"}],"tags":[{"location":{"column":1,"line":1},"name":"@sometag"}]},"type":"pickle","uri":"testdata/good/tagged_feature_with_scenario_outline.feature"}
@@ -0,0 +1 @@
1
+ {"data":"@sometag\nFeature: Foo\n\n Scenario Outline: Bar\n Then Baz\n\n Examples:\n | name |\n | X |\n | Y |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/tagged_feature_with_scenario_outline.feature"}
@@ -0,0 +1,11 @@
1
+ (1:1)TagLine://1:@sometag
2
+ (2:1)FeatureLine:Feature/Foo/
3
+ (3:1)Empty://
4
+ (4:3)ScenarioOutlineLine:Scenario Outline/Bar/
5
+ (5:5)StepLine:Then /Baz/
6
+ (6:1)Empty://
7
+ (7:5)ExamplesLine:Examples//
8
+ (8:5)TableRow://7:name
9
+ (9:5)TableRow://7:X
10
+ (10:5)TableRow://7:Y
11
+ EOF
@@ -1 +1 @@
1
- {"data":"@feature_tag1 @feature_tag2\n @feature_tag3\nFeature: Minimal Scenario Outline\n\n@scenario_tag1 @scenario_tag2\n @scenario_tag3\nScenario: minimalistic\n Given the minimalism\n\n@so_tag1 @so_tag2 \n @so_tag3\nScenario Outline: minimalistic outline\n Given the <what>\n\n@ex_tag1 @ex_tag2\n @ex_tag3\nExamples: \n | what |\n | minimalism |\n\n@ex_tag4 @ex_tag5\n @ex_tag6\nExamples: \n | what |\n | more minimalism |\n","media":{"encoding":"utf-8","type":"text/vnd.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/tags.feature"}
1
+ {"data":"@feature_tag1 @feature_tag2\n @feature_tag3\nFeature: Minimal Scenario Outline\n\n@scenario_tag1 @scenario_tag2\n @scenario_tag3\nScenario: minimalistic\n Given the minimalism\n\n@so_tag1 @so_tag2 \n @so_tag3\nScenario Outline: minimalistic outline\n Given the <what>\n\n@ex_tag1 @ex_tag2\n @ex_tag3\nExamples: \n | what |\n | minimalism |\n\n@ex_tag4 @ex_tag5\n @ex_tag6\nExamples: \n | what |\n | more minimalism |\n","media":{"encoding":"utf-8","type":"text/x.cucumber.gherkin+plain"},"type":"source","uri":"testdata/good/tags.feature"}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gherkin
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.3
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gáspár Nagy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-05-04 00:00:00.000000000 Z
13
+ date: 2017-10-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -92,7 +92,6 @@ files:
92
92
  - bin/gherkin
93
93
  - bin/gherkin-generate-tokens
94
94
  - bin/gherkin-ruby
95
- - gherkin-languages.json
96
95
  - gherkin-ruby.razor
97
96
  - gherkin.berp
98
97
  - gherkin.gemspec
@@ -113,6 +112,8 @@ files:
113
112
  - spec/capture_warnings.rb
114
113
  - spec/coverage.rb
115
114
  - spec/gherkin/parser_spec.rb
115
+ - spec/gherkin/stream/gherkin_events_spec.rb
116
+ - spec/gherkin/stream/test_fr.feature
116
117
  - testdata/bad/inconsistent_cell_count.feature
117
118
  - testdata/bad/inconsistent_cell_count.feature.errors.ndjson
118
119
  - testdata/bad/invalid_language.feature
@@ -255,6 +256,11 @@ files:
255
256
  - testdata/good/spaces_in_language.feature.pickles.ndjson
256
257
  - testdata/good/spaces_in_language.feature.source.ndjson
257
258
  - testdata/good/spaces_in_language.feature.tokens
259
+ - testdata/good/tagged_feature_with_scenario_outline.feature
260
+ - testdata/good/tagged_feature_with_scenario_outline.feature.ast.ndjson
261
+ - testdata/good/tagged_feature_with_scenario_outline.feature.pickles.ndjson
262
+ - testdata/good/tagged_feature_with_scenario_outline.feature.source.ndjson
263
+ - testdata/good/tagged_feature_with_scenario_outline.feature.tokens
258
264
  - testdata/good/tags.feature
259
265
  - testdata/good/tags.feature.ast.ndjson
260
266
  - testdata/good/tags.feature.pickles.ndjson
@@ -284,8 +290,10 @@ rubyforge_project:
284
290
  rubygems_version: 2.6.8
285
291
  signing_key:
286
292
  specification_version: 4
287
- summary: gherkin-4.1.3
293
+ summary: gherkin-5.0.0
288
294
  test_files:
289
295
  - spec/capture_warnings.rb
290
296
  - spec/coverage.rb
291
297
  - spec/gherkin/parser_spec.rb
298
+ - spec/gherkin/stream/gherkin_events_spec.rb
299
+ - spec/gherkin/stream/test_fr.feature
@@ -1,3191 +0,0 @@
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
- }