Rearrange text for warning when moving a partition

This commit is contained in:
Curtis Gedak 2010-10-13 09:04:20 -06:00
parent d7e1f295a9
commit 1cdb40e70d
1 changed files with 6 additions and 3 deletions

View File

@ -1438,14 +1438,17 @@ void Win_GParted::activate_resize()
{
//Warn that move operation might break boot process
Gtk::MessageDialog dialog( *this
/*TO TRANSLATORS: looks like You queued an operation to move the start sector of partition /dev/sda3. */
, String::ucompose( _( "You have queued an operation to move the start sector of partition %1." ), operation ->partition_original .get_path() )
, _( "Moving a partition might cause your operating system to fail to boot." )
, false
, Gtk::MESSAGE_WARNING
, Gtk::BUTTONS_OK
, true
) ;
Glib::ustring tmp_msg = _( "Moving a partition might cause your operating system to fail to boot." ) ;
Glib::ustring tmp_msg =
/*TO TRANSLATORS: looks like You queued an operation to move the start sector of partition /dev/sda3. */
String::ucompose( _( "You have queued an operation to move the start sector of partition %1." )
, operation ->partition_original .get_path()
) ;
tmp_msg += " Failure to boot is most likely to occur if you move the GNU/Linux partition containing /boot, or if you move the Windows system partition C:." ;
tmp_msg += "\n" ;
tmp_msg += _( "You can learn how to repair the boot configuration in the GParted FAQ." ) ;