mirror of
https://abf.rosa.ru/djam/calamares.git
synced 2025-02-23 23:52:50 +00:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 6c7f75979de1150e36fe0011401b82d3261af79c Mon Sep 17 00:00:00 2001
|
|
From: Teo Mrnjavac <teo@kde.org>
|
|
Date: Fri, 10 Apr 2015 13:07:14 +0200
|
|
Subject: [PATCH 14/18] Better Summary message in FormatPartitionJob.
|
|
|
|
---
|
|
src/modules/partition/jobs/FormatPartitionJob.cpp | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/modules/partition/jobs/FormatPartitionJob.cpp b/src/modules/partition/jobs/FormatPartitionJob.cpp
|
|
index b706251..70ad355 100644
|
|
--- a/src/modules/partition/jobs/FormatPartitionJob.cpp
|
|
+++ b/src/modules/partition/jobs/FormatPartitionJob.cpp
|
|
@@ -56,7 +56,8 @@ FormatPartitionJob::prettyName() const
|
|
QString
|
|
FormatPartitionJob::prettyDescription() const
|
|
{
|
|
- return tr( "Format <b>%3MB</b> partition <b>%1</b> with file system <b>%2</b>." )
|
|
+ return tr( "Format <strong>%3MB</strong> partition <strong>%1</strong> with "
|
|
+ "file system <strong>%2</strong>." )
|
|
.arg( m_partition->partitionPath() )
|
|
.arg( m_partition->fileSystem().name() )
|
|
.arg( m_partition->capacity() / 1024 / 1024 );
|
|
--
|
|
1.9.0
|
|
|