Initial commit
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
// 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 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 lastKnownIP(String ip) {
|
||||
return 'Last Known IP: $ip';
|
||||
}
|
||||
|
||||
@override
|
||||
String routerSsid(String ssid) {
|
||||
return 'Router SSID: $ssid';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user