Skip to content

Commit

Permalink
Attribution for #352,#707,#708. Copy dialects.
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Sep 25, 2019
1 parent b91195d commit 307034a
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 28 deletions.
9 changes: 9 additions & 0 deletions gherkin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

### Added

* New keywords for German
([#352](https://github.com/cucumber/cucumber/pull/352)
[#707](https://github.com/cucumber/cucumber/issues/707)
[#708](https://github.com/cucumber/cucumber/pull/708)
[coderbyheart]
[Haukinger])

### Changed

* Upgrade cucumber-messages to 6.0.0
Expand Down Expand Up @@ -573,12 +580,14 @@ to Gherkin 2.
[badeball]: https://github.com/badeball
[brasmusson]: https://github.com/brasmusson
[charlierudolph]: https://github.com/charlierudolph
[coderbyheart]: https://github.com/coderbyheart
[cyocum]: https://github.com/cyocum
[danilat]: https://github.com/danilat
[dobiedad]: https://github.com/dobiedad
[ehpc]: https://github.com/ehpc
[enkessler]: https://github.com/enkessler
[gabanz]: https://github.com/gabanz
[Haukinger]: https://github.com/Haukinger
[jargalan]: https://github.com/jargalan
[jmezach]: https://github.com/jmezach
[joscha]: https://github.com/joscha
Expand Down
14 changes: 10 additions & 4 deletions gherkin/c/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/dotnet/Gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
6 changes: 6 additions & 0 deletions gherkin/go/dialects_builtin.go
Original file line number Diff line number Diff line change
Expand Up @@ -624,19 +624,25 @@ var buildinDialects = gherkinDialectMap{
"de", "German", "Deutsch", map[string][]string{
feature: []string{
"Funktionalität",
"Funktion",
},
rule: []string{
"Rule",
"Regel",
},
background: []string{
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen",
},
scenario: []string{
"Beispiel",
"Szenario",
},
scenarioOutline: []string{
"Szenariogrundriss",
"Szenarien",
},
examples: []string{
"Beispiele",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/go/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/objective-c/GherkinLanguages/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/perl/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/python/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down
14 changes: 10 additions & 4 deletions gherkin/ruby/lib/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@
"Und "
],
"background": [
"Grundlage"
"Grundlage",
"Hintergrund",
"Voraussetzungen",
"Vorbedingungen"
],
"but": [
"* ",
Expand All @@ -615,7 +618,8 @@
"Beispiele"
],
"feature": [
"Funktionalität"
"Funktionalität",
"Funktion"
],
"given": [
"* ",
Expand All @@ -626,14 +630,16 @@
"name": "German",
"native": "Deutsch",
"rule": [
"Rule"
"Rule",
"Regel"
],
"scenario": [
"Beispiel",
"Szenario"
],
"scenarioOutline": [
"Szenariogrundriss"
"Szenariogrundriss",
"Szenarien"
],
"then": [
"* ",
Expand Down

0 comments on commit 307034a

Please sign in to comment.