Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
Implement the Choose a security key -page (#1115)
Browse files Browse the repository at this point in the history
Ref: #34
  • Loading branch information
jpnurmi committed Sep 21, 2022
1 parent 88e03e7 commit b8fcc5b
Show file tree
Hide file tree
Showing 90 changed files with 908 additions and 27 deletions.
2 changes: 2 additions & 0 deletions packages/ubuntu_desktop_installer/lib/l10n/app_en.arb
Expand Up @@ -80,6 +80,7 @@
"dontInstallDriverSoftwareNowDescription": "You can install it later from Software & Updates.",
"configureSecureBootSecurityKeyRequired": "Security key is required",
"secureBootSecurityKeysDontMatch": "Security keys do not match",
"showSecurityKey": "Show security key",
"connectToInternetPageTitle": "Connect to internet",
"connectToInternetDescription": "Connecting this computer to the internet will help Ubuntu install any extra software needed and help choose your time zone.\n\nConnect by ethernet cable, or choose a Wi-Fi network",
"useWiredConnection": "Use wired connection",
Expand Down Expand Up @@ -176,6 +177,7 @@
}
},
"installationTypeLVMSelected": "LVM selected",
"installationTypeLVMEncryptionSelected": "LVM and encryption selected",
"installationTypeEncrypt": "Encrypt the new {RELEASE} installation for security",
"@installationTypeEncrypt": {
"type": "text",
Expand Down
12 changes: 12 additions & 0 deletions packages/ubuntu_desktop_installer/lib/l10n/app_localizations.dart
Expand Up @@ -464,6 +464,12 @@ abstract class AppLocalizations {
/// **'Security keys do not match'**
String get secureBootSecurityKeysDontMatch;

/// No description provided for @showSecurityKey.
///
/// In en, this message translates to:
/// **'Show security key'**
String get showSecurityKey;

/// No description provided for @connectToInternetPageTitle.
///
/// In en, this message translates to:
Expand Down Expand Up @@ -746,6 +752,12 @@ abstract class AppLocalizations {
/// **'LVM selected'**
String get installationTypeLVMSelected;

/// No description provided for @installationTypeLVMEncryptionSelected.
///
/// In en, this message translates to:
/// **'LVM and encryption selected'**
String get installationTypeLVMEncryptionSelected;

/// No description provided for @installationTypeEncrypt.
///
/// In en, this message translates to:
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsAm extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsAm extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsAr extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsAr extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsBe extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsBe extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsBg extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsBg extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsBn extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsBn extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsBo extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsBo extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsBs extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsBs extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsCa extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsCa extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'Seleccionat LVM';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsCs extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Do každé z kolonek pro klíč zabezpečení jste napsali něco jiného';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Připojit k Internetu';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsCs extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'Vybráno LVM';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Zabezpečit novou instalaci $RELEASE šifrováním';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsCy extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsCy extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsDa extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsDa extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Die Sicherheitsschlüssel stimmen nicht überein';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Mit dem Internet verbinden';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM ausgewählt';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Die neue $RELEASE -Installation zur Sicherheit verschlüsseln';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsDz extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsDz extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsEl extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsEl extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Security keys do not match';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Connect to internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM selected';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Encrypt the new $RELEASE installation for security';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsEo extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'La sekurigaj ŝlosiloj ne kongruas';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Konekti al Interreto';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsEo extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'LVM elektita';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Ĉifri la novan instalaĵon de $RELEASE por sekurigi ĝin';
Expand Down
Expand Up @@ -132,6 +132,9 @@ class AppLocalizationsEs extends AppLocalizations {
@override
String get secureBootSecurityKeysDontMatch => 'Las claves de seguridad no coinciden';

@override
String get showSecurityKey => 'Show security key';

@override
String get connectToInternetPageTitle => 'Conectarse a Internet';

Expand Down Expand Up @@ -289,6 +292,9 @@ class AppLocalizationsEs extends AppLocalizations {
@override
String get installationTypeLVMSelected => 'Se seleccionó LVM';

@override
String get installationTypeLVMEncryptionSelected => 'LVM and encryption selected';

@override
String installationTypeEncrypt(Object RELEASE) {
return 'Cifrar la instalación nueva de $RELEASE por seguridad';
Expand Down

0 comments on commit b8fcc5b

Please sign in to comment.