From 1723bfd7236ce5487bfa99d5841224fe74024840 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Mon, 19 Jan 2009 20:38:22 +0000 Subject: [PATCH] Reworded caution message when applying operations svn path=/trunk/; revision=1033 --- ChangeLog | 7 ++++++- src/Win_GParted.cc | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 865a44f2..4cc03305 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-01-19 Curtis Gedak + + * src/Win_GParted.cc: Reworded message when applying operations. + - Closes GParted bug #564952 + 2009-01-13 Curtis Gedak * 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 diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc index 23b57c7b..c9cf7b5b 100644 --- a/src/Win_GParted.cc +++ b/src/Win_GParted.cc @@ -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 );