Skip to content

Commit

Permalink
Improvements to the security warning on plugin install dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored and nyalldawson committed Jun 28, 2020
1 parent 94bea56 commit dff0af4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -1522,7 +1522,8 @@ void QgsPluginManager::buttonInstallFromZip_clicked()
QMessageBox msgbox;
if ( showInstallFromZipWarning )
{
msgbox.setText( tr( "Security warning: installing a plugin from an untrusted source can lead to data loss and/or leak. Continue?" ) );
msgbox.setWindowTitle( tr( "Security warning" ) );
msgbox.setText( tr( "Installing a plugin from an untrusted source can harm your computer. Only continue if you received the plugin from a source you trust. Continue?" ) );
msgbox.setIcon( QMessageBox::Icon::Warning );
msgbox.addButton( QMessageBox::Yes );
msgbox.addButton( QMessageBox::No );
Expand Down

0 comments on commit dff0af4

Please sign in to comment.