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

Irish translation for Rule #216

Merged
merged 3 commits into from
Jan 19, 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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

### Added
- [Python] Added release workflow for releasing to Pypi ([#213](https://github.com/cucumber/gherkin/pull/213))
- (i18n) Added Vietnamese translation of "Rule"
- (i18n) Added Vietnamese translation of "Rule" ([#204](https://github.com/cucumber/gherkin/pull/204))
- (i18n) Added Irish translation of "Rule" ([#216](https://github.com/cucumber/gherkin/pull/216))

## [27.0.0] - 2023-09-15
### Added
Expand Down
2 changes: 1 addition & 1 deletion c/src/dialect.c
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,7 @@ static const Keywords ga_feature_keywords = { 1, ga_feature_KEYWORDS };
static const wchar_t* const ga_given_KEYWORDS[] = { L"* ", L"Cuir i gcás go", L"Cuir i gcás nach", L"Cuir i gcás gur", L"Cuir i gcás nár" };
static const Keywords ga_given_keywords = { 5, ga_given_KEYWORDS };

static const wchar_t* const ga_rule_KEYWORDS[] = { L"Rule" };
static const wchar_t* const ga_rule_KEYWORDS[] = { L"Riail" };
static const Keywords ga_rule_keywords = { 1, ga_rule_KEYWORDS };

static const wchar_t* const ga_scenario_KEYWORDS[] = { L"Sampla", L"Cás" };
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/lib/gherkin/cucumber/gherkin/dialect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ all_keywords()
{ "examples", { "Samplaí" } },
{ "feature", { "Gné" } },
{ "given", { "* ", "Cuir i gcás go", "Cuir i gcás nach", "Cuir i gcás gur", "Cuir i gcás nár" } },
{ "rule", { "Rule" } },
{ "rule", { "Riail" } },
{ "scenario", { "Sampla", "Cás" } },
{ "scenarioOutline", { "Cás Achomair" } },
{ "then", { "* ", "Ansin" } },
Expand Down
2 changes: 1 addition & 1 deletion dart/assets/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion elixir/priv/gherkin_languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion go/dialects_builtin.go

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

2 changes: 1 addition & 1 deletion javascript/src/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion objective-c/GherkinLanguages/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Gherkin/Generated/Languages.pm

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion php/resources/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion python/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@
"name": "Irish",
"native": "Gaeilge",
"rule": [
"Rule"
"Riail"
],
"scenario": [
"Sampla",
Expand Down
Loading