From 39e419a36e4c1b058d24b0cf9deecd5c3cfe802d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Mon, 18 Jul 2016 12:21:06 +0100 Subject: [PATCH] Use KUIT tags. --- src/fs/btrfs.cpp | 2 +- src/fs/jfs.cpp | 2 +- src/fs/nilfs2.cpp | 2 +- src/fs/xfs.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fs/btrfs.cpp b/src/fs/btrfs.cpp index 585fa6b..417159c 100644 --- a/src/fs/btrfs.cpp +++ b/src/fs/btrfs.cpp @@ -157,7 +157,7 @@ bool btrfs::resize(Report& report, const QString& deviceNode, qint64 length) con ExternalCommand unmountCmd(report, QStringLiteral("umount"), { tempDir.path() }); if (!unmountCmd.run(-1) && unmountCmd.exitCode() == 0) - report.line() << xi18nc("@info:progress", "Warning: Resizing Btrfs file system on partition %1: Unmount failed.", deviceNode); + report.line() << xi18nc("@info:progress", "Resizing Btrfs file system on partition %1: Unmount failed.", deviceNode); } else report.line() << xi18nc("@info:progress", "Resizing Btrfs file system on partition %1 failed: Initial mount failed.", deviceNode); diff --git a/src/fs/jfs.cpp b/src/fs/jfs.cpp index b0732c6..c5bb47e 100644 --- a/src/fs/jfs.cpp +++ b/src/fs/jfs.cpp @@ -175,7 +175,7 @@ bool jfs::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 JFS file system on partition %1: Unmount failed.", deviceNode); + report.line() << xi18nc("@info:progress", "Resizing JFS file system on partition %1: Unmount failed.", deviceNode); } else report.line() << xi18nc("@info:progress", "Resizing JFS file system on partition %1 failed: Initial mount failed.", deviceNode); diff --git a/src/fs/nilfs2.cpp b/src/fs/nilfs2.cpp index c9c05b6..fa99df1 100644 --- a/src/fs/nilfs2.cpp +++ b/src/fs/nilfs2.cpp @@ -162,7 +162,7 @@ bool nilfs2::resize(Report& report, const QString& deviceNode, qint64 length) co ExternalCommand unmountCmd(report, QStringLiteral("umount"), { tempDir.path() }); if (!unmountCmd.run(-1) && unmountCmd.exitCode() == 0) - report.line() << xi18nc("@info:progress", "Warning: Resizing NILFS2 file system on partition %1: Unmount failed.", deviceNode); + report.line() << xi18nc("@info:progress", "Resizing NILFS2 file system on partition %1: Unmount failed.", deviceNode); } else report.line() << xi18nc("@info:progress", "Resizing NILFS2 file system on partition %1 failed: Initial mount failed.", deviceNode); diff --git a/src/fs/xfs.cpp b/src/fs/xfs.cpp index dda0bac..baaf1de 100644 --- a/src/fs/xfs.cpp +++ b/src/fs/xfs.cpp @@ -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 %1: Unmount failed.", deviceNode); + report.line() << xi18nc("@info:progress", "Resizing XFS file system on partition %1: Unmount failed.", deviceNode); } else report.line() << xi18nc("@info:progress", "Resizing XFS file system on partition %1 failed: Initial mount failed.", deviceNode);