Skip to content

Commit

Permalink
Fix Georgian localization
Browse files Browse the repository at this point in the history
In cucumber/common#2041 only half a unicode glyph was
pasted to create `Მოცემულია `. This half glyph breaks code generation in other
projects, e.g:

https://github.com/cucumber/cucumber-jvm/actions/runs/3429109517/jobs/5714282373

This presumably (based on some searching) should have been `მოცემულია`.Though
I don't speak Georgian. Please send another pull request if this is not
correct.
  • Loading branch information
mpkorstanje committed Nov 9, 2022
1 parent 32089e3 commit bbd7d0e
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

## [Unreleased]

### Fixed
- Fix half-glyph in Georgian translations ([#44](https://github.com/cucumber/gherkin/pull/44))

## [25.0.1] - 2022-11-09
### Fixed
- Fix release process for perl and elixir
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 @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
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 @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
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 @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
Expand Down
2 changes: 1 addition & 1 deletion gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
Expand Down
4 changes: 2 additions & 2 deletions go/dialects_builtin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2784,7 +2784,7 @@ var builtinDialects = gherkinDialectMap{
given: {
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ ",
},
when: {
Expand Down Expand Up @@ -2812,7 +2812,7 @@ var builtinDialects = gherkinDialectMap{
map[string]messages.StepKeywordType{
"მოცემული ": messages.StepKeywordType_CONTEXT,

"Მოცემულია ": messages.StepKeywordType_CONTEXT,
"მოცემულია ": messages.StepKeywordType_CONTEXT,

"ვთქვათ ": messages.StepKeywordType_CONTEXT,

Expand Down
2 changes: 1 addition & 1 deletion javascript/src/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
Expand Down
2 changes: 1 addition & 1 deletion php/resources/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
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 @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
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 @@ -2005,7 +2005,7 @@
"given": [
"* ",
"მოცემული ",
"Მოცემულია ",
"მოცემულია ",
"ვთქვათ "
],
"name": "Georgian",
Expand Down

0 comments on commit bbd7d0e

Please sign in to comment.