初始化

This commit is contained in:
yuding
2025-12-25 15:47:57 +08:00
parent 04a5e74284
commit 9b6959585d
28 changed files with 6464 additions and 4197 deletions

View File

@@ -15,6 +15,9 @@ export const enUS: TranslationDictionary = {
location: 'Location',
setting: 'Settings',
walk: 'Walk',
map: 'Map',
property: 'Property',
fullscreen: 'Fullscreen',
walkPerson: 'Person',
walkBird: 'Bird Eye',
walkMenu: 'Menu',
@@ -139,5 +142,27 @@ export const enUS: TranslationDictionary = {
y: 'Y',
z: 'Z'
}
},
walkControl: {
speed: 'Speed:',
gravity: 'Gravity',
collision: 'Collision',
characterModel: {
label: 'Construction Worker',
constructionWorker: 'Construction Worker',
officeMale: 'Office Male'
},
walkMode: {
label: 'Walk Mode',
walk: 'Walk',
run: 'Run'
},
exit: 'Exit',
path: {
dialogTitle: 'Path Walk'
}
},
map: {
dialogTitle: 'Map'
}
};

View File

@@ -18,6 +18,9 @@ export interface TranslationDictionary {
location: string;
setting: string;
walk: string;
map: string;
property: string;
fullscreen: string;
walkMenu: string;
walkPerson: string;
walkBird: string;
@@ -163,6 +166,28 @@ export interface TranslationDictionary {
z: string;
};
};
walkControl: {
speed: string;
gravity: string;
collision: string;
characterModel: {
label: string;
constructionWorker: string;
officeMale: string;
};
walkMode: {
label: string;
walk: string;
run: string;
};
exit: string;
path: {
dialogTitle: string;
};
};
map: {
dialogTitle: string;
};
}
/**

View File

@@ -15,6 +15,9 @@ export const zhCN: TranslationDictionary = {
location: '定位',
setting: '设置',
walk: '漫游',
map: '地图',
property: '构件详情',
fullscreen: '全屏',
walkMenu: '漫游菜单',
walkPerson: '第一人称',
walkBird: '第三人称',
@@ -139,5 +142,27 @@ export const zhCN: TranslationDictionary = {
y: 'Y',
z: 'Z'
}
},
walkControl: {
speed: '移动速度:',
gravity: '重力',
collision: '碰撞',
characterModel: {
label: '建筑工人',
constructionWorker: '建筑工人',
officeMale: '办公室男性'
},
walkMode: {
label: '行走模式',
walk: '行走模式',
run: '奔跑模式'
},
exit: '退出',
path: {
dialogTitle: '路径漫游'
}
},
map: {
dialogTitle: '地图'
}
};