[partition] Use untranslated name of filesystem
- Patch from Gabriel Craciunescu
This commit is contained in:
parent
ffeed05a5d
commit
c055e1da49
1
CHANGES
1
CHANGES
@ -8,6 +8,7 @@ website will have to do for older versions.
|
|||||||
This release contains contributions from (alphabetically by first name):
|
This release contains contributions from (alphabetically by first name):
|
||||||
- Anke Boersma
|
- Anke Boersma
|
||||||
- Camilo Higuita
|
- Camilo Higuita
|
||||||
|
- Gabriel Craciunescu
|
||||||
|
|
||||||
## Core ##
|
## Core ##
|
||||||
- *Assamese* translation has been completed.
|
- *Assamese* translation has been completed.
|
||||||
|
@ -89,7 +89,7 @@ mapForPartition( Partition* partition, const QString& uuid )
|
|||||||
map[ "fs" ] = partition->fileSystem().name( { QStringLiteral("C") } ); // Untranslated
|
map[ "fs" ] = partition->fileSystem().name( { QStringLiteral("C") } ); // Untranslated
|
||||||
if ( partition->fileSystem().type() == FileSystem::Luks &&
|
if ( partition->fileSystem().type() == FileSystem::Luks &&
|
||||||
dynamic_cast< FS::luks& >( partition->fileSystem() ).innerFS() )
|
dynamic_cast< FS::luks& >( partition->fileSystem() ).innerFS() )
|
||||||
map[ "fs" ] = dynamic_cast< FS::luks& >( partition->fileSystem() ).innerFS()->name();
|
map[ "fs" ] = dynamic_cast< FS::luks& >( partition->fileSystem() ).innerFS()->name( { QStringLiteral("C") } );
|
||||||
map[ "uuid" ] = uuid;
|
map[ "uuid" ] = uuid;
|
||||||
|
|
||||||
// Debugging for inside the loop in createPartitionList(),
|
// Debugging for inside the loop in createPartitionList(),
|
||||||
|
Loading…
Reference in New Issue
Block a user