File tree Expand file tree Collapse file tree 11 files changed +8480
-10
lines changed
client/packages/lowcoder/src/i18n/locales Expand file tree Collapse file tree 11 files changed +8480
-10
lines changed Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ import { enObj } from "./enObj" ;
2+ import { I18nObjects } from "./types" ;
3+
4+ export const esObj : I18nObjects = enObj ;
Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ export const zh = async ():Promise<object> => await import(viewMode() === "edit"
88export const ru = async ( ) :Promise < object > => await import ( viewMode ( ) === "edit" ? "./ruEditor" : viewMode ( ) === "view" ? "./ruViewer" : "./ru" ) . then ( module => module . ru ) ;
99
1010
11- export const enObj = async ( ) :Promise < object > => await import ( "./enObj" ) . then ( module => ( module . enObj ) ) ;
11+ export const enObj = async ( ) :Promise < object | undefined > => await import ( "./enObj" ) . then ( module => ( module . enObj ) ) ;
1212export const deObj = async ( ) :Promise < object | undefined > => await import ( "./deObj" ) . then ( module => ( module . deObj ) ) ;
13- export const itObj = async ( ) :Promise < object > => await import ( "./itObj" ) . then ( module => ( module . itObj ) ) ;
13+ export const itObj = async ( ) :Promise < object | undefined > => await import ( "./itObj" ) . then ( module => ( module . itObj ) ) ;
14+ export const ptObj = async ( ) :Promise < object | undefined > => await import ( "./ptObj" ) . then ( module => ( module . ptObj ) ) ;
15+ export const esObj = async ( ) :Promise < object | undefined > => await import ( "./esObj" ) . then ( module => ( module . esObj ) ) ;
1416export const zhObj = async ( ) :Promise < object | undefined > => await import ( "./zhObj" ) . then ( module => ( module . zhObj ) ) ;
17+ export const ruObj = async ( ) :Promise < object | undefined > => await import ( "./ruObj" ) . then ( module => ( module . ruObj ) ) ;
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 11import { I18nObjects } from "./types" ;
22
3- export const enObj : I18nObjects = {
3+ export const ptObj : I18nObjects = {
44 jsonForm : {
55 defaultSchema : {
66 title : "Informações do Usuário" ,
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ import { enObj } from "./enObj" ;
2+ import { I18nObjects } from "./types" ;
3+
4+ export const ruObj : I18nObjects = enObj ;
You can’t perform that action at this time.
0 commit comments