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()); }