mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-19 11:54:22 -04:00
Added whitespace to strings
This commit is contained in:
parent
a5182252af
commit
7005126f56
1 changed files with 4 additions and 4 deletions
|
@ -202,7 +202,7 @@ PluginManager::pluginWidget(QString pluginName)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QString em=tr("Error: instance '%1'can't create a widget")
|
QString em=tr("Error: instance '%1' can't create a widget")
|
||||||
.arg( pluginName );
|
.arg( pluginName );
|
||||||
emit errorAppeared( em );
|
emit errorAppeared( em );
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -286,7 +286,7 @@ PluginManager::removePlugin(QString pluginName)
|
||||||
if (!fl.remove())
|
if (!fl.remove())
|
||||||
{
|
{
|
||||||
QString em = tr("Error: failed to remove file %1"
|
QString em = tr("Error: failed to remove file %1"
|
||||||
"(uninstalling plugin '%2')")
|
" (uninstalling plugin '%2')")
|
||||||
.arg(fn).arg(pluginName);
|
.arg(fn).arg(pluginName);
|
||||||
emit errorAppeared( em);
|
emit errorAppeared( em);
|
||||||
}
|
}
|
||||||
|
@ -298,7 +298,7 @@ PluginManager::removePlugin(QString pluginName)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QString em = tr("Error(uninstall): no plugin with name '%1' found")
|
QString em = tr("Error (uninstall): no plugin with name '%1' found")
|
||||||
.arg(pluginName);
|
.arg(pluginName);
|
||||||
emit errorAppeared( em );
|
emit errorAppeared( em );
|
||||||
}
|
}
|
||||||
|
@ -313,7 +313,7 @@ PluginManager::installPlugin(QString fileName)
|
||||||
|
|
||||||
if (!QFile::exists( fileName) )
|
if (!QFile::exists( fileName) )
|
||||||
{
|
{
|
||||||
QString em = tr("Error(installation): plugin file %1 doesn't exist")
|
QString em = tr("Error (installation): plugin file %1 doesn't exist")
|
||||||
.arg( fileName );
|
.arg( fileName );
|
||||||
|
|
||||||
emit errorAppeared( em );
|
emit errorAppeared( em );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue