Files
liteauthconfig/lib/l10n/app_localizations_en.dart

191 lines
4.4 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 status => 'Status: ';
@override
String get online => 'Online';
@override
String get offline => 'Offline';
@override
String get refresh => 'Refresh';
@override
String cannotBeEmpty(String field) {
return '$field cannot be empty!';
}
@override
String get tokenForbidden =>
'Token cannot be requested. Please manually enter the token or physically factory reset the device.';
@override
String requestFailedWithCode(int code) {
return 'Request failed with code $code';
}
@override
String get additionalActions => 'Additional Actions';
@override
String get dangerousActions => 'Dangerous Actions';
@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';
@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 resetSuccessful => 'Reset Successful';
@override
String resetFailedCode(int code) {
return 'Reset failed with code $code';
}
@override
String get token => 'Token';
@override
String get manageToken => 'Manage Token';
@override
String get tokenNotFound =>
'Token not found. Please enter one or do a manual factory reset.';
@override
String get viewTokenWarn =>
'Tokens are sensitive. Please do not share this token publicly.';
@override
String get showToken => 'Show Token';
@override
String get copyToken => 'Copy Token';
@override
String get copied => 'Copied';
@override
String get saveToken => 'Save Token';
@override
String get saved => 'Saved!';
}