Reworded caution message when applying operations
svn path=/trunk/; revision=1033
This commit is contained in:
parent
cffe42bc44
commit
1723bfd723
|
@ -1,3 +1,8 @@
|
|||
2009-01-19 Curtis Gedak <gedakc@gmail.com>
|
||||
|
||||
* src/Win_GParted.cc: Reworded message when applying operations.
|
||||
- Closes GParted bug #564952
|
||||
|
||||
2009-01-13 Curtis Gedak <gedakc@gmail.com>
|
||||
|
||||
* src/Win_GParted.cc: Removed space between menu entry and periods.
|
||||
|
@ -23,7 +28,7 @@
|
|||
- In a recent upgrade to eclipse 3.4.0, I did not realize that
|
||||
the default save option was to remove trailing whitespace, and
|
||||
ensure newline at end of file. This resulted in way too many
|
||||
difference showing up in the file.
|
||||
differences showing up in the file.
|
||||
|
||||
2009-01-03 Curtis Gedak <gedakc@gmail.com>
|
||||
|
||||
|
|
|
@ -1922,7 +1922,11 @@ void Win_GParted::activate_apply()
|
|||
Gtk::MESSAGE_WARNING,
|
||||
Gtk::BUTTONS_NONE,
|
||||
true );
|
||||
dialog .set_secondary_text( _( "It is recommended to backup valuable data before proceeding.") ) ;
|
||||
Glib::ustring temp;
|
||||
temp = _( "Editing partitions has the potential to cause LOSS of DATA.") ;
|
||||
temp += "\n" ;
|
||||
temp += _( "You are advised to backup your data before proceeding." ) ;
|
||||
dialog .set_secondary_text( temp ) ;
|
||||
dialog .set_title( _( "Apply operations to device" ) );
|
||||
|
||||
dialog .add_button( Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL );
|
||||
|
|
Loading…
Reference in New Issue