Skip to content

Commit

Permalink
improve text translatability
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Fehr committed Feb 12, 2013
1 parent 15cb825 commit 94189fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/IscsiLioServer.ycp
Expand Up @@ -177,7 +177,11 @@ y2milestone("Service status = %1", statusOnStart);
if (!statusOnStart)
{
if( !Service::Start("target"))
Popup::Error( _("Could not start service \"/etc/init.d/target\"") );
{
string txt = sformat( ("Could not start service \"%1\""),
"/etc/init.d/target" );
Popup::Error( txt );
}
}
return ret;
}
Expand Down

0 comments on commit 94189fd

Please sign in to comment.