This commit is contained in:
yuding
2025-12-22 14:31:23 +08:00
parent 9d1ebfd817
commit 005535a26d
14 changed files with 548 additions and 401 deletions

View File

@@ -30,5 +30,10 @@ export const enUS: TranslationDictionary = {
},
constructTree: {
title: 'Construct Tree',
}
},
tab: {
component: 'Component',
system: 'System',
space: 'Space',
}
};

View File

@@ -33,6 +33,11 @@ export interface TranslationDictionary {
constructTree: {
title: string;
}
tab: {
component: string;
system: string;
space: string;
}
}
/**

View File

@@ -30,5 +30,10 @@ export const zhCN: TranslationDictionary = {
},
constructTree: {
title: '目录树',
},
tab: {
component: '构件',
system: '系统',
space: '空间',
}
};