feat: enhance description component, update property panel with tabs, and refine docs
This commit is contained in:
@@ -39,11 +39,14 @@ export const enUS: TranslationDictionary = {
|
||||
},
|
||||
panel: {
|
||||
property: {
|
||||
title: 'Property Panel',
|
||||
title: 'Component Details',
|
||||
base: 'Basic Info',
|
||||
material: 'Material',
|
||||
advanced: 'Advanced'
|
||||
advanced: 'Advanced',
|
||||
tab: {
|
||||
props: 'Properties',
|
||||
material: 'Material'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
@@ -26,6 +26,10 @@ export interface TranslationDictionary {
|
||||
base: string;
|
||||
material: string;
|
||||
advanced: string;
|
||||
tab: {
|
||||
props: string;
|
||||
material: string;
|
||||
}
|
||||
}
|
||||
};
|
||||
dialog: {
|
||||
@@ -50,6 +54,6 @@ export interface TranslationDictionary {
|
||||
}
|
||||
|
||||
/**
|
||||
* 语言代码类型
|
||||
* 语言<EFBFBD><EFBFBD>码类型
|
||||
*/
|
||||
export type LocaleType = 'zh-CN' | 'en-US';
|
||||
export type LocaleType = 'zh-CN' | 'en-US';
|
||||
@@ -39,10 +39,14 @@ export const zhCN: TranslationDictionary = {
|
||||
},
|
||||
panel: {
|
||||
property: {
|
||||
title: '属性面板',
|
||||
title: '构件详情',
|
||||
base: '基本属性',
|
||||
material: '材质信息',
|
||||
advanced: '高级设置'
|
||||
advanced: '高级设置',
|
||||
tab: {
|
||||
props: '属性',
|
||||
material: '材质'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user