From 6c3ad4ba26b92b8baeb4312051bbb9514797d556 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Thu, 6 Feb 2025 06:37:27 +1000 Subject: [PATCH] Use translated wallet name --- src/core/auth/qgsauthmanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/auth/qgsauthmanager.cpp b/src/core/auth/qgsauthmanager.cpp index c5bb84face1b..eebc614f1d46 100644 --- a/src/core/auth/qgsauthmanager.cpp +++ b/src/core/auth/qgsauthmanager.cpp @@ -440,13 +440,13 @@ bool QgsAuthManager::createAndStoreRandomMasterPasswordInKeyChain() } else { - emit passwordHelperMessageLog( tr( "Master password could not be written to your %1" ).arg( AUTH_PASSWORD_HELPER_DISPLAY_NAME ), authManTag(), Qgis::MessageLevel::Warning ); + emit passwordHelperMessageLog( tr( "Master password could not be written to your %1" ).arg( passwordHelperDisplayName() ), authManTag(), Qgis::MessageLevel::Warning ); return false; } if ( !verifyMasterPassword() ) { - emit passwordHelperMessageLog( tr( "Master password was written to the %1 but could not be verified" ).arg( AUTH_PASSWORD_HELPER_DISPLAY_NAME ), authManTag(), Qgis::MessageLevel::Warning ); + emit passwordHelperMessageLog( tr( "Master password was written to the %1 but could not be verified" ).arg( passwordHelperDisplayName() ), authManTag(), Qgis::MessageLevel::Warning ); return false; }