Skip to content

Commit

Permalink
[auth] translate menu actions
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Oct 24, 2017
1 parent 7a070ac commit f11c6dd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/gui/auth/qgsautheditorwidgets.cpp
Expand Up @@ -141,15 +141,15 @@ void QgsAuthEditorWidgets::setupUtilitiesMenu()
this, &QgsAuthEditorWidgets::authMessageOut );

// set up utility actions menu
mActionSetMasterPassword = new QAction( QStringLiteral( "Input master password" ), this );
mActionClearCachedMasterPassword = new QAction( QStringLiteral( "Clear cached master password" ), this );
mActionResetMasterPassword = new QAction( QStringLiteral( "Reset master password" ), this );
mActionClearCachedAuthConfigs = new QAction( QStringLiteral( "Clear cached authentication configurations" ), this );
mActionRemoveAuthConfigs = new QAction( QStringLiteral( "Remove all authentication configurations" ), this );
mActionEraseAuthDatabase = new QAction( QStringLiteral( "Erase authentication database" ), this );

mActionClearAccessCacheNow = new QAction( QStringLiteral( "Clear network authentication access cache" ), this );
mActionAutoClearAccessCache = new QAction( QStringLiteral( "Automatically clear network authentication access cache on SSL errors" ), this );
mActionSetMasterPassword = new QAction( tr( "Input master password" ), this );
mActionClearCachedMasterPassword = new QAction( tr( "Clear cached master password" ), this );
mActionResetMasterPassword = new QAction( tr( "Reset master password" ), this );
mActionClearCachedAuthConfigs = new QAction( tr( "Clear cached authentication configurations" ), this );
mActionRemoveAuthConfigs = new QAction( tr( "Remove all authentication configurations" ), this );
mActionEraseAuthDatabase = new QAction( tr( "Erase authentication database" ), this );

mActionClearAccessCacheNow = new QAction( tr( "Clear network authentication access cache" ), this );
mActionAutoClearAccessCache = new QAction( tr( "Automatically clear network authentication access cache on SSL errors" ), this );
mActionAutoClearAccessCache->setCheckable( true );
mActionAutoClearAccessCache->setChecked( QgsSettings().value( QStringLiteral( "clear_auth_cache_on_errors" ), true, QgsSettings::Section::Auth ).toBool( ) );

Expand Down

0 comments on commit f11c6dd

Please sign in to comment.