Fix create volume group job description.

This commit is contained in:
Andrius Štikonas 2016-11-03 22:08:32 +00:00
parent 1543c9395d
commit 58cec6040f
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ QString CreateVolumeGroupJob::description() const
{
QString tmp = QString();
for (const auto &p : pvList()) {
tmp += QStringLiteral(", ") + p->deviceNode();
tmp += p->deviceNode() + QStringLiteral(", ");
}
tmp.chop(2);
return xi18nc("@info/plain", "Create a new Volume Group: <filename>%1</filename> with PV: %2", vgName(), tmp);