Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate scenario keyword from sr-Cyrl #264

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading