Skip to content

Commit

Permalink
i18n: Add 'ed' to Italian (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coedice authored Sep 7, 2023
1 parent c595389 commit ba08a12
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 10 deletions.
4 changes: 2 additions & 2 deletions c/src/dialect.c
Original file line number Diff line number Diff line change
Expand Up @@ -1880,8 +1880,8 @@ static const Dialect is_dialect = {
&is_then_keywords,
&is_when_keywords };

static const wchar_t* const it_and_KEYWORDS[] = { L"* ", L"E " };
static const Keywords it_and_keywords = { 2, it_and_KEYWORDS };
static const wchar_t* const it_and_KEYWORDS[] = { L"* ", L"E ", L"Ed " };
static const Keywords it_and_keywords = { 3, it_and_KEYWORDS };

static const wchar_t* const it_background_KEYWORDS[] = { L"Contesto" };
static const Keywords it_background_keywords = { 1, it_background_KEYWORDS };
Expand Down
3 changes: 2 additions & 1 deletion dart/assets/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion dotnet/Gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion elixir/priv/gherkin_languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 3 additions & 0 deletions go/dialects_builtin.go

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

3 changes: 2 additions & 1 deletion javascript/src/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion php/resources/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion python/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down
3 changes: 2 additions & 1 deletion ruby/lib/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,8 @@
"it": {
"and": [
"* ",
"E "
"E ",
"Ed "
],
"background": [
"Contesto"
Expand Down

0 comments on commit ba08a12

Please sign in to comment.