Téléverser les fichiers vers "workstation-setup/src"
This commit is contained in:
@@ -709,7 +709,7 @@ Kirigami.ApplicationWindow {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Item { Layout.preferredHeight: 8 }
|
Item { Layout.preferredHeight: 8 }
|
||||||
FieldLabel { text: "Votre mot de passe personnel actuel" }
|
FieldLabel { text: "Nouveau mot de passe choisi à l’étape 1" }
|
||||||
SecretField { id: fidoPassword }
|
SecretField { id: fidoPassword }
|
||||||
FieldLabel { text: "Code PIN de la YubiKey" }
|
FieldLabel { text: "Code PIN de la YubiKey" }
|
||||||
SecretField { id: fidoPin }
|
SecretField { id: fidoPin }
|
||||||
|
|||||||
@@ -419,7 +419,7 @@ void ProvisioningBackend::enrollFido(const QString ¤tPassword,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (currentPassword.isEmpty() || pin.size() < 4) {
|
if (currentPassword.isEmpty() || pin.size() < 4) {
|
||||||
emit fidoEnrollmentFinished(false, QStringLiteral("Saisissez votre mot de passe actuel et le code PIN de la YubiKey."));
|
emit fidoEnrollmentFinished(false, QStringLiteral("Saisissez le nouveau mot de passe choisi à l’étape 1 et le code PIN de la YubiKey."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (containsLineBreak(currentPassword) || containsLineBreak(pin)) {
|
if (containsLineBreak(currentPassword) || containsLineBreak(pin)) {
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ int main(int argc, char *argv[])
|
|||||||
QGuiApplication::setOrganizationName(QStringLiteral("Raspot"));
|
QGuiApplication::setOrganizationName(QStringLiteral("Raspot"));
|
||||||
QGuiApplication::setOrganizationDomain(QStringLiteral("raspot.in"));
|
QGuiApplication::setOrganizationDomain(QStringLiteral("raspot.in"));
|
||||||
QGuiApplication::setApplicationName(QStringLiteral("NixOS Workstations Setup"));
|
QGuiApplication::setApplicationName(QStringLiteral("NixOS Workstations Setup"));
|
||||||
QGuiApplication::setApplicationVersion(QStringLiteral("1.8.6"));
|
QGuiApplication::setApplicationVersion(QStringLiteral("1.8.7"));
|
||||||
QGuiApplication::setDesktopFileName(QStringLiteral("org.raspot.nixosworkstations.setup"));
|
QGuiApplication::setDesktopFileName(QStringLiteral("org.raspot.nixosworkstations.setup"));
|
||||||
|
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
|
|||||||
Reference in New Issue
Block a user