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

i18n: Add 'ed' to Italian #160

Merged
merged 1 commit into from
Sep 7, 2023
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
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
Loading