|
|
@ -167,6 +167,10 @@ PartitionModel::data( const QModelIndex& index, int role ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return CalamaresUtils::Partition::prettyNameForFileSystemType( partition->fileSystem().type() );
|
|
|
|
return CalamaresUtils::Partition::prettyNameForFileSystemType( partition->fileSystem().type() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( col == FileSystemLabelColumn )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return partition->fileSystem().label();
|
|
|
|
|
|
|
|
}
|
|
|
|
if ( col == MountPointColumn )
|
|
|
|
if ( col == MountPointColumn )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return PartitionInfo::mountPoint( partition );
|
|
|
|
return PartitionInfo::mountPoint( partition );
|
|
|
@ -296,6 +300,8 @@ PartitionModel::headerData( int section, Qt::Orientation, int role ) const
|
|
|
|
return tr( "Name" );
|
|
|
|
return tr( "Name" );
|
|
|
|
case FileSystemColumn:
|
|
|
|
case FileSystemColumn:
|
|
|
|
return tr( "File System" );
|
|
|
|
return tr( "File System" );
|
|
|
|
|
|
|
|
case FileSystemLabelColumn:
|
|
|
|
|
|
|
|
return tr( "File System Label" );
|
|
|
|
case MountPointColumn:
|
|
|
|
case MountPointColumn:
|
|
|
|
return tr( "Mount Point" );
|
|
|
|
return tr( "Mount Point" );
|
|
|
|
case SizeColumn:
|
|
|
|
case SizeColumn:
|
|
|
|