Skip to content

Commit 8a3e943

Browse files
committed
Followup fa40e78, make strings translatable
1 parent fa40e78 commit 8a3e943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgspluginregistry.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ void QgsPluginRegistry::restoreSessionPlugins( const QString& thePluginDirString
525525

526526
if ( mySettings.value( "/PythonPlugins/watchDog/" + packageName ).isValid() )
527527
{
528-
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." );
528+
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." ) );
529529
mySettings.setValue( "/PythonPlugins/" + packageName, false );
530530
}
531531
// check if the plugin was active on last session

0 commit comments

Comments
 (0)