diff --git a/BitFun-Installer/src-tauri/tauri.conf.json b/BitFun-Installer/src-tauri/tauri.conf.json
index 5a25428a..f57357c9 100644
--- a/BitFun-Installer/src-tauri/tauri.conf.json
+++ b/BitFun-Installer/src-tauri/tauri.conf.json
@@ -32,9 +32,11 @@
{
"label": "installer",
"title": "Install BitFun",
- "width": 700,
- "height": 480,
- "resizable": false,
+ "width": 760,
+ "height": 560,
+ "minWidth": 700,
+ "minHeight": 480,
+ "resizable": true,
"maximizable": false,
"decorations": false,
"center": true
diff --git a/BitFun-Installer/src/pages/LanguageSelect.tsx b/BitFun-Installer/src/pages/LanguageSelect.tsx
index 491e4a74..6a863676 100644
--- a/BitFun-Installer/src/pages/LanguageSelect.tsx
+++ b/BitFun-Installer/src/pages/LanguageSelect.tsx
@@ -8,7 +8,7 @@ interface LanguageSelectProps {
const LANGUAGES = [
{ code: 'en', label: 'English', native: 'English' },
- { code: 'zh', label: 'Chinese', native: '简体中文' },
+ { code: 'zh', label: 'Chinese', native: '\u7b80\u4f53\u4e2d\u6587' },
];
export function LanguageSelect({ onSelect }: LanguageSelectProps) {
@@ -26,7 +26,7 @@ export function LanguageSelect({ onSelect }: LanguageSelectProps) {
return (
-
-
-
- Select Language / 选择语言
-
+
+
+
+
+
+ Select Language / {'\u9009\u62e9\u8bed\u8a00'}
+
-
- {LANGUAGES.map((lang) => {
- const isSelected = selected === lang.code;
- return (
-
- );
- })}
+
+ {LANGUAGES.map((lang) => {
+ const isSelected = selected === lang.code;
+ return (
+
+ );
+ })}
+
+
+
+