Add more warning tags.

This commit is contained in:
Andrius Štikonas 2016-07-18 12:50:52 +01:00
parent 39e419a36e
commit 99886f32fc
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ bool xfs::resize(Report& report, const QString& deviceNode, qint64) const
ExternalCommand unmountCmd(report, QStringLiteral("umount"), { tempDir.path() });
if (!unmountCmd.run(-1))
report.line() << xi18nc("@info:progress", "<warning>Resizing XFS file system on partition <filename>%1</filename>: Unmount failed.</warning>", deviceNode);
report.line() << xi18nc("@info:progress", "<warning>Resizing XFS file system on partition <filename>%1</filename> failed: Unmount failed.</warning>", deviceNode);
} else
report.line() << xi18nc("@info:progress", "Resizing XFS file system on partition <filename>%1</filename> failed: Initial mount failed.", deviceNode);

View File

@ -154,7 +154,7 @@ bool CopyOperation::execute(Report& parent)
// if maximizing doesn't work, just warn the user, don't fail
if (!maximizeJob()->run(*report)) {
report->line() << xi18nc("@info:status", "Warning: Maximizing file system on target partition <filename>%1</filename> to the size of the partition failed.", copiedPartition().deviceNode());
report->line() << xi18nc("@info:status", "<warning>Maximizing file system on target partition <filename>%1</filename> to the size of the partition failed.</warning>", copiedPartition().deviceNode());
warning = true;
}
} else