Skip to content

Commit

Permalink
Use translated wallet name
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 5, 2025
1 parent 87ad160 commit 1473d76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/auth/qgsauthmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1473d76

Please sign in to comment.