feat:添加国际化

This commit is contained in:
anfe 2024-05-16 18:05:56 +08:00
parent a5a9b9e4fd
commit 4a7c825640
4 changed files with 13 additions and 7 deletions

View File

@ -853,6 +853,7 @@
"开锁事件":"Unlock event",
"异常事件":"Abnormal event",
"门铃事件":"Doorbell event",
"视频事件":"Video event"
"视频事件":"Video event",
"请开启蓝牙":"Please turn on Bluetooth"
}

View File

@ -881,5 +881,6 @@
"开锁事件":"开锁事件",
"异常事件":"异常事件",
"门铃事件":"门铃事件",
"视频事件":"视频事件"
"视频事件":"视频事件",
"请开启蓝牙":"请开启蓝牙"
}

View File

@ -851,5 +851,6 @@
"开锁事件":"开锁事件",
"异常事件":"异常事件",
"门铃事件":"门铃事件",
"视频事件":"视频事件"
"视频事件":"视频事件",
"请开启蓝牙":"请开启蓝牙"
}

View File

@ -1,9 +1,13 @@
import 'dart:async';
import 'dart:io';
import 'package:app_settings/app_settings.dart';
import 'package:flutter_easyloading/flutter_easyloading.dart';
import 'package:get/get.dart';
import 'package:star_lock/app_settings/app_settings.dart';
import 'package:star_lock/tools/showTipView.dart';
import 'package:star_lock/widget/permission/permission_dialog.dart';
import 'package:url_launcher/url_launcher.dart';
import 'io_tool/io_model.dart';
import 'io_tool/io_tool.dart';
@ -657,12 +661,11 @@ class BlueManage {
//
Future<void> writeNull() async {
List<BluetoothService> services =
await bluetoothConnectDevice!.discoverServices();
await bluetoothConnectDevice!.discoverServices();
for (BluetoothService service in services) {
if (service.uuid == _serviceIdConnect) {
for (BluetoothCharacteristic characteristic
in service.characteristics) {
in service.characteristics) {
if (characteristic.characteristicUuid == _characteristicIdWrite) {
try {
List<int> valueList = [1];
@ -739,7 +742,7 @@ class BlueManage {
await FlutterBluePlus.turnOn();
}
if (Platform.isIOS) {
EasyLoading.showToast("请开启蓝牙", duration: 2000.milliseconds);
EasyLoading.showToast("请开启蓝牙".tr, duration: 2000.milliseconds);
}
}