SVN commit 1170454 by aseigo: include the plugin name for easier use in scripts M +2 -1 interactiveconsole.cpp --- trunk/KDE/kdebase/workspace/plasma/desktop/shell/interactiveconsole.cpp #1170453:1170454 @@ -312,7 +312,8 @@ Plasma::Package package(path, templateStructure); const QString scriptFile = package.filePath("mainscript"); if (!scriptFile.isEmpty()) { - QAction *action = m_snippetsMenu->addAction(info.name()); + QAction *action = m_snippetsMenu->addAction(i18nc("A script template name and the internal plugin name for use in the user's scripts", + "%1 (%2)", info.name(), info.pluginName())); action->setData(scriptFile); } }