mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[partition] Fix partitioning summary
- the %4 is left-over from the feature-summary string, - replace it with ""; don't change the source string because that will break translations right now.
This commit is contained in:
parent
788c84dc41
commit
117418fe60
1 changed files with 2 additions and 1 deletions
|
@ -264,7 +264,8 @@ FillGlobalStorageJob::prettyDescription() const
|
|||
"<strong>%2</strong>%4." )
|
||||
.arg( path )
|
||||
.arg( mountPoint )
|
||||
.arg( fsType ) );
|
||||
.arg( fsType )
|
||||
.arg( QString() );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue