Skip to content

Commit

Permalink
Remove duplicate scenario keyword from sr-Cyrl (#264)
Browse files Browse the repository at this point in the history
Fixes: #263
  • Loading branch information
mpkorstanje committed Aug 9, 2024
1 parent 9c90236 commit bfea03b
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
- (i18n) Provide trailing space in Irish step keywords ([#243](https://github.com/cucumber/gherkin/pull/243))
- (i18n) Provide trailing space in Korean step keywords ([#254](https://github.com/cucumber/gherkin/pull/254))
- (i18n) Tamil "And" and "But" translations should have single trailing space ([#243](https://github.com/cucumber/gherkin/pull/243))
- (i18n) Remove duplicate scenario keyword from "sr-Cyrl" ([#264](https://github.com/cucumber/gherkin/pull/264))
- Intermittent failure of cpp test jobs in CI ([#217](https://github.com/cucumber/gherkin/issues/217))

### Changed
Expand Down
4 changes: 2 additions & 2 deletions c/src/dialect.c
Original file line number Diff line number Diff line change
Expand Up @@ -2935,8 +2935,8 @@ static const Keywords sr_Cyrl_given_keywords = { 4, sr_Cyrl_given_KEYWORDS };
static const wchar_t* const sr_Cyrl_rule_KEYWORDS[] = { L"Правило" };
static const Keywords sr_Cyrl_rule_keywords = { 1, sr_Cyrl_rule_KEYWORDS };

static const wchar_t* const sr_Cyrl_scenario_KEYWORDS[] = { L"Пример", L"Сценарио", L"Пример" };
static const Keywords sr_Cyrl_scenario_keywords = { 3, sr_Cyrl_scenario_KEYWORDS };
static const wchar_t* const sr_Cyrl_scenario_KEYWORDS[] = { L"Сценарио", L"Пример" };
static const Keywords sr_Cyrl_scenario_keywords = { 2, sr_Cyrl_scenario_KEYWORDS };

static const wchar_t* const sr_Cyrl_scenarioOutline_KEYWORDS[] = { L"Структура сценарија", L"Скица", L"Концепт" };
static const Keywords sr_Cyrl_scenarioOutline_keywords = { 3, sr_Cyrl_scenarioOutline_KEYWORDS };
Expand Down
1 change: 0 additions & 1 deletion dart/assets/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion dotnet/Gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion elixir/priv/gherkin_languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion go/dialects_builtin.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion javascript/src/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion php/resources/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion python/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion ruby/lib/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down

0 comments on commit bfea03b

Please sign in to comment.