fix(i18n): device rotation

This commit is contained in:
AkiChase 2024-05-22 09:23:26 +08:00
parent a4da2d4ebe
commit b8dbabb8f3
3 changed files with 5 additions and 3 deletions

View File

@ -79,7 +79,7 @@ onMounted(async () => {
} else { } else {
store.screenSizeW = payload.width; store.screenSizeW = payload.width;
store.screenSizeH = payload.height; store.screenSizeH = payload.height;
message.info("设备旋转"); message.info(t("pages.Device.deviceRotation"));
} }
break; break;
default: default:

View File

@ -36,7 +36,8 @@
"wsClose": "Close", "wsClose": "Close",
"wsConnect": "Control", "wsConnect": "Control",
"adbDeviceError": "Unable to get available devices", "adbDeviceError": "Unable to get available devices",
"adbConnectError": "Wireless connection failed" "adbConnectError": "Wireless connection failed",
"deviceRotation": "Device rotation"
}, },
"Mask": { "Mask": {
"inputBoxPlaceholder": "Input text and then press enter/esc", "inputBoxPlaceholder": "Input text and then press enter/esc",

View File

@ -36,7 +36,8 @@
"wsClose": "断开", "wsClose": "断开",
"wsConnect": "控制", "wsConnect": "控制",
"adbDeviceError": "无法获取可用设备", "adbDeviceError": "无法获取可用设备",
"adbConnectError": "无线连接失败" "adbConnectError": "无线连接失败",
"deviceRotation": "设备旋转"
}, },
"Mask": { "Mask": {
"keyconfigException": "按键方案异常,请删除此方案", "keyconfigException": "按键方案异常,请删除此方案",