From 23b55d611bcfdbd25dc22228f3e7f885d063f0b1 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Thu, 6 Feb 2025 06:40:16 +1000 Subject: [PATCH] Use translated string --- src/gui/auth/qgsauthmasterpassresetdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/auth/qgsauthmasterpassresetdialog.cpp b/src/gui/auth/qgsauthmasterpassresetdialog.cpp index f96869e5f2a0..6fd4c34d0924 100644 --- a/src/gui/auth/qgsauthmasterpassresetdialog.cpp +++ b/src/gui/auth/qgsauthmasterpassresetdialog.cpp @@ -51,7 +51,7 @@ QgsMasterPasswordResetDialog::QgsMasterPasswordResetDialog( QWidget *parent ) QString warning = tr( "Your authentication database will be duplicated and re-encrypted using the new password." ); if ( QgsApplication::authManager()->passwordHelperEnabled() ) { - warning += QStringLiteral( "

%1

" ).arg( tr( "Your new password will automatically be stored in the system %1." ).arg( QgsAuthManager::AUTH_PASSWORD_HELPER_DISPLAY_NAME ) ); + warning += QStringLiteral( "

%1

" ).arg( tr( "Your new password will automatically be stored in the system %1." ).arg( QgsAuthManager::passwordHelperDisplayName() ) ); } lblWarning->setText( warning );