Téléverser les fichiers vers "workstation-setup/src"

This commit is contained in:
2026-08-19 17:27:39 +02:00
parent 9cfe19c885
commit 4a3a288a17
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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 &currentPassword,
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)) {
+1 -1
View File
@@ -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;