Add another reason to list when unable to detect file system

This commit is contained in:
Curtis Gedak 2011-01-16 11:15:35 -07:00
parent 340d506c04
commit 09848775f4
1 changed files with 6 additions and 3 deletions

View File

@ -1148,12 +1148,15 @@ GParted::FILESYSTEM GParted_Core::get_filesystem()
//no file system found....
temp = _( "Unable to detect file system! Possible reasons are:" ) ;
temp += "\n-";
temp += "\n- ";
temp += _( "The file system is damaged" ) ;
temp += "\n-" ;
temp += "\n- " ;
temp += _( "The file system is unknown to GParted" ) ;
temp += "\n-";
temp += "\n- ";
temp += _( "There is no file system available (unformatted)" ) ;
temp += "\n- ";
/* TO TRANSLATORS: looks like The device entry /dev/sda5 is missing */
temp += String::ucompose( _( "The device entry %1 is missing" ), get_partition_path( lp_partition ) ) ;
partition_temp .messages .push_back( temp ) ;