File tree Expand file tree Collapse file tree 10 files changed +7178
-9
lines changed
client/packages/lowcoder/src/i18n/locales Expand file tree Collapse file tree 10 files changed +7178
-9
lines changed 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"
8
8
export const ru = async ( ) :Promise < object > => await import ( viewMode ( ) === "edit" ? "./ruEditor" : viewMode ( ) === "view" ? "./ruViewer" : "./ru" ) . then ( module => module . ru ) ;
9
9
10
10
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 ) ) ;
12
12
export 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 ) ) ;
14
16
export 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 1
1
import { I18nObjects } from "./types" ;
2
2
3
- export const enObj : I18nObjects = {
3
+ export const ptObj : I18nObjects = {
4
4
jsonForm : {
5
5
defaultSchema : {
6
6
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 ;
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments