Skip to content

Commit f11c6dd

Browse files
committedOct 24, 2017
[auth] translate menu actions
1 parent 7a070ac commit f11c6dd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
 

‎src/gui/auth/qgsautheditorwidgets.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,15 @@ void QgsAuthEditorWidgets::setupUtilitiesMenu()
141141
this, &QgsAuthEditorWidgets::authMessageOut );
142142

143143
// set up utility actions menu
144-
mActionSetMasterPassword = new QAction( QStringLiteral( "Input master password" ), this );
145-
mActionClearCachedMasterPassword = new QAction( QStringLiteral( "Clear cached master password" ), this );
146-
mActionResetMasterPassword = new QAction( QStringLiteral( "Reset master password" ), this );
147-
mActionClearCachedAuthConfigs = new QAction( QStringLiteral( "Clear cached authentication configurations" ), this );
148-
mActionRemoveAuthConfigs = new QAction( QStringLiteral( "Remove all authentication configurations" ), this );
149-
mActionEraseAuthDatabase = new QAction( QStringLiteral( "Erase authentication database" ), this );
150-
151-
mActionClearAccessCacheNow = new QAction( QStringLiteral( "Clear network authentication access cache" ), this );
152-
mActionAutoClearAccessCache = new QAction( QStringLiteral( "Automatically clear network authentication access cache on SSL errors" ), this );
144+
mActionSetMasterPassword = new QAction( tr( "Input master password" ), this );
145+
mActionClearCachedMasterPassword = new QAction( tr( "Clear cached master password" ), this );
146+
mActionResetMasterPassword = new QAction( tr( "Reset master password" ), this );
147+
mActionClearCachedAuthConfigs = new QAction( tr( "Clear cached authentication configurations" ), this );
148+
mActionRemoveAuthConfigs = new QAction( tr( "Remove all authentication configurations" ), this );
149+
mActionEraseAuthDatabase = new QAction( tr( "Erase authentication database" ), this );
150+
151+
mActionClearAccessCacheNow = new QAction( tr( "Clear network authentication access cache" ), this );
152+
mActionAutoClearAccessCache = new QAction( tr( "Automatically clear network authentication access cache on SSL errors" ), this );
153153
mActionAutoClearAccessCache->setCheckable( true );
154154
mActionAutoClearAccessCache->setChecked( QgsSettings().value( QStringLiteral( "clear_auth_cache_on_errors" ), true, QgsSettings::Section::Auth ).toBool( ) );
155155

0 commit comments

Comments
 (0)
Please sign in to comment.