134 lines
3.2 KiB
Dart
134 lines
3.2 KiB
Dart
// ignore: unused_import
|
|
import 'package:intl/intl.dart' as intl;
|
|
import 'app_localizations.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
/// The translations for English (`en`).
|
|
class AppLocalizationsEn extends AppLocalizations {
|
|
AppLocalizationsEn([String locale = 'en']) : super(locale);
|
|
|
|
@override
|
|
String get deviceList => 'Device List';
|
|
|
|
@override
|
|
String get noDevices =>
|
|
'It seems that you have no devices! You can register one with the big plus button.';
|
|
|
|
@override
|
|
String get setupNewDevice => 'Setup new device';
|
|
|
|
@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';
|
|
|
|
@override
|
|
String get deviceName => 'Name';
|
|
|
|
@override
|
|
String get networkName => 'Network Name (SSID)';
|
|
|
|
@override
|
|
String get routerMacAddress => 'Router MAC Address (BSSID)';
|
|
|
|
@override
|
|
String get networkPassword => 'Network Password';
|
|
|
|
@override
|
|
String get networkLimitation => 'Only 2.4 GHz networks allowed!';
|
|
|
|
@override
|
|
String get networkLimitationDesc =>
|
|
'We suspect that your network may be 5 GHz based on the name. Please note that liteauth can only connect to 2.4 GHz networks.';
|
|
|
|
@override
|
|
String get networkInitHeadline => 'Network Initialization';
|
|
|
|
@override
|
|
String get networkInitDetails =>
|
|
'Broadcasting network information to your liteauth device, This will be done in a minute or two. Please also make sure your device is powered on.';
|
|
|
|
@override
|
|
String get networkInfoHeadline => 'Network Information';
|
|
|
|
@override
|
|
String get networkInfoPrompt =>
|
|
'Do you wish to automatically fill in the current network information? The app will ask to access your fine location if you continue.';
|
|
|
|
@override
|
|
String get continueText => 'Continue';
|
|
|
|
@override
|
|
String get cancel => 'Cancel';
|
|
|
|
@override
|
|
String get deviceInfo => 'Device Information';
|
|
|
|
@override
|
|
String get delete => 'Delete';
|
|
|
|
@override
|
|
String get deletion => 'Deletion';
|
|
|
|
@override
|
|
String get deviceDeleteConfirm =>
|
|
'Are you sure you want to delete this device forever?';
|
|
|
|
@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: ';
|
|
|
|
@override
|
|
String get online => 'Online';
|
|
|
|
@override
|
|
String get offline => 'Offline';
|
|
|
|
@override
|
|
String get refresh => 'Refresh';
|
|
|
|
@override
|
|
String lastKnownIP(String ip) {
|
|
return 'Last Known IP: $ip';
|
|
}
|
|
|
|
@override
|
|
String routerSsid(String ssid) {
|
|
return 'Router SSID: $ssid';
|
|
}
|
|
|
|
@override
|
|
String get activityLogs => 'Activity Logs';
|
|
}
|