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 11// file examples: en, enGB, zh, zhHK
22// fallback example: current locale is zh-HK, fallback order is zhHK => zh => en
33export * from "./en" ;
4+ export * from "./it"
45export * from "@openblocks-ee/i18n/locales/zh" ;
56
67export * 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