File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
client/packages/openblocks/src/i18n/locales Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
// file examples: en, enGB, zh, zhHK
2
2
// fallback example: current locale is zh-HK, fallback order is zhHK => zh => en
3
3
export * from "./en" ;
4
+ export * from "./it"
4
5
export * from "@openblocks-ee/i18n/locales/zh" ;
5
6
6
7
export * from "./enObj" ;
7
- export * from "@openblocks-ee/i18n/locales/zhObj" ;
8
+ export * from "./itObj" ;
9
+ export * from "@openblocks-ee/i18n/locales/zhObj" ;
Original file line number Diff line number Diff line change
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
+ } ;
Original file line number Diff line number Diff line change
1
+ import { enObj } from "./enObj" ;
2
+ import { I18nObjects } from "./types" ;
3
+
4
+ export const itObj : I18nObjects = enObj ;
You can’t perform that action at this time.
0 commit comments