From e9992714a199df0efedd6c44df5ffe499c330c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20PORTAY?= Date: Fri, 15 May 2020 01:42:17 -0400 Subject: [PATCH] Fix typos --- src/jobs/setpartitionlabeljob.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jobs/setpartitionlabeljob.cpp b/src/jobs/setpartitionlabeljob.cpp index 6a7fb4e..03539c6 100644 --- a/src/jobs/setpartitionlabeljob.cpp +++ b/src/jobs/setpartitionlabeljob.cpp @@ -67,11 +67,11 @@ bool SetPartitionLabelJob::run(Report& parent) partition().setLabel(m_Label); backendPartitionTable->commit(); } else - report->line() << xi18nc("@info:progress", "Failed to set the system type for the file system on partition %1.", partition().deviceNode()); + report->line() << xi18nc("@info:progress", "Failed to set the name for the partition %1.", partition().deviceNode()); } else - report->line() << xi18nc("@info:progress", "Could not open partition table on device %1 to set the system type for partition %2.", device().deviceNode(), partition().deviceNode()); + report->line() << xi18nc("@info:progress", "Could not open partition table on device %1 to set the name for the partition %2.", device().deviceNode(), partition().deviceNode()); } else - report->line() << xi18nc("@info:progress", "Could not open device %1 to set the system type for partition %2.", device().deviceNode(), partition().deviceNode()); + report->line() << xi18nc("@info:progress", "Could not open device %1 to set the name for partition %2.", device().deviceNode(), partition().deviceNode()); }