|
|
|
@ -82,6 +82,7 @@ Supported filesystems
|
|
|
|
|
nfs
|
|
|
|
|
ext2
|
|
|
|
|
ext3
|
|
|
|
|
ext4
|
|
|
|
|
reiserfs
|
|
|
|
|
vfat
|
|
|
|
|
ntfs
|
|
|
|
@ -1047,6 +1048,7 @@ class MountEntry(object):
|
|
|
|
|
|
|
|
|
|
'ext2' : (MountEntryExtCommonUnixLocal,i18n("Ext2 - Second Extended FS")),
|
|
|
|
|
'ext3' : (MountEntryExtCommonUnixLocal,i18n("Ext3 - Third Extended FS")),
|
|
|
|
|
'ext4' : (MountEntryExtCommonUnixLocal,i18n("Ext4 - Fourth Extended FS")),
|
|
|
|
|
'reiserfs' : (MountEntryExtCommonUnixLocal,i18n("ReiserFS")),
|
|
|
|
|
'reiser4' : (MountEntryExtCommonUnixLocal,i18n("Reiser4")),
|
|
|
|
|
'xfs' : (MountEntryExtCommonUnixLocal,i18n("XFS - SGI's journaling filesystem")),
|
|
|
|
@ -2389,6 +2391,7 @@ class MountEntryDialog(KDialogBase):
|
|
|
|
|
MountTypeEditorsDisk = {
|
|
|
|
|
'ext2' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|
'ext3' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|
'ext4' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|
'reiserfs' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|
'reiser4' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|
'xfs' : MountEntryDialogOptionsCommonUnix,
|
|
|
|
|