Skip to content

Commit

Permalink
Followup fa40e78, make strings translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Feb 15, 2016
1 parent fa40e78 commit 8a3e943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgspluginregistry.cpp
Expand Up @@ -525,7 +525,7 @@ void QgsPluginRegistry::restoreSessionPlugins( const QString& thePluginDirString

if ( mySettings.value( "/PythonPlugins/watchDog/" + packageName ).isValid() )
{
mQgisInterface->messageBar()->pushWarning( "Plugin " + packageName, "The plugin will be disabled because it crashed QGIS during last startup. Please report an issue and re-enable the plugin when the problem has been solved." );
mQgisInterface->messageBar()->pushWarning( QObject::tr( "Plugin %1" ).arg( packageName ), QObject::tr( "The plugin will be disabled because it crashed QGIS during last startup. Please report an issue and re-enable the plugin when the problem has been solved." ) );
mySettings.setValue( "/PythonPlugins/" + packageName, false );
}
// check if the plugin was active on last session
Expand Down

0 comments on commit 8a3e943

Please sign in to comment.