Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7d51de

Browse files
authored
Merge pull request lowcoder-org#217 from ggbond2077/i18n_lt
feat(i18n) add Italian trans files
2 parents d47465b + 9b51e61 commit e7d51de

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// file examples: en, enGB, zh, zhHK
22
// fallback example: current locale is zh-HK, fallback order is zhHK => zh => en
33
export * from "./en";
4+
export * from "./it"
45
export * from "@openblocks-ee/i18n/locales/zh";
56

67
export * from "./enObj";
7-
export * from "@openblocks-ee/i18n/locales/zhObj";
8+
export * from "./itObj";
9+
export * from "@openblocks-ee/i18n/locales/zhObj";
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { en } from "./en";
2+
3+
export const it: typeof en = {
4+
...en,
5+
cancel: "Annulla",
6+
table: {
7+
...en.table,
8+
saveChanges: "Salvare le modifiche",
9+
cancelChanges: "Annulla modifiche",
10+
saveChangesNotBind:
11+
"Nessun gestore eventi configurato per il salvataggio delle modifiche. Associa almeno un gestore di eventi prima del clic.",
12+
},
13+
};
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { enObj } from "./enObj";
2+
import { I18nObjects } from "./types";
3+
4+
export const itObj: I18nObjects = enObj;

0 commit comments

Comments
 (0)