Skip to content

Commit 181d441

Browse files
committedFeb 26, 2018
Fix string capitalization
(cherry-picked from e1a344)
1 parent 167b608 commit 181d441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgisapp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2365,13 +2365,13 @@ void QgisApp::refreshProfileMenu()
23652365

23662366
mConfigMenu->addSeparator( );
23672367

2368-
QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open active profile folder" ) );
2368+
QAction *openProfileFolderAction = mConfigMenu->addAction( tr( "Open Active Profile Folder" ) );
23692369
connect( openProfileFolderAction, &QAction::triggered, this, [this]()
23702370
{
23712371
QDesktopServices::openUrl( QUrl::fromLocalFile( userProfileManager()->userProfile()->folder() ) );
23722372
} );
23732373

2374-
QAction *newProfileAction = mConfigMenu->addAction( tr( "New profile" ) );
2374+
QAction *newProfileAction = mConfigMenu->addAction( tr( "New Profile…" ) );
23752375
connect( newProfileAction, &QAction::triggered, this, &QgisApp::newProfile );
23762376
}
23772377

0 commit comments

Comments
 (0)
Please sign in to comment.