Reworded caution message when applying operations

svn path=/trunk/; revision=1033
This commit is contained in:
Curtis Gedak 2009-01-19 20:38:22 +00:00
parent cffe42bc44
commit 1723bfd723
2 changed files with 11 additions and 2 deletions

View File

@ -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>

View File

@ -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 );