Many minor improvements

This commit is contained in:
2026-02-01 20:09:54 +07:00
parent 99344a82e6
commit 639a8417e6
20 changed files with 540 additions and 157 deletions
+30
View File
@@ -21,6 +21,23 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get addExistingDevice => 'Add existing device';
@override
String get nfcDisabled => 'NFC is disabled on your device!';
@override
String get nfcRequired =>
'This app requires NFC as part of the core functionality.';
@override
String get nfcUnsupported => 'Your device does not support NFC';
@override
String get nfcReady => 'NFC is ready!';
@override
String get nfcReadyDescription =>
'You can tap the device with the NFC scanner now.';
@override
String get registerDevice => 'Register Device';
@@ -79,6 +96,16 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get reconfigureNetwork => 'Reconfigure Network';
@override
String get factoryReset => 'Factory Reset';
@override
String get resetConfirm =>
'Are you sure you want to proceed with the factory reset? Your data will be lost and unrecoverable, and you must setup the device again.';
@override
String get reset => 'Reset';
@override
String get status => 'Status: ';
@@ -100,4 +127,7 @@ class AppLocalizationsEn extends AppLocalizations {
String routerSsid(String ssid) {
return 'Router SSID: $ssid';
}
@override
String get activityLogs => 'Activity Logs';
}