From a5839e574682afc1f107bd476f6b74b380b27509 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Tue, 4 Nov 2008 22:16:06 +0000 Subject: [PATCH] Fixed some spelling mistakes svn path=/trunk/; revision=951 --- ChangeLog | 4 ++++ src/Dialog_Progress.cc | 2 +- src/GParted_Core.cc | 14 +++++++------- src/Win_GParted.cc | 6 +++--- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 21139071..0fcfe84e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-11-04 Curtis Gedak + * src/Dialog_Progress.cc, + src/GParted_Core.cc, + src/Win_GParted.cc: Fixed some spelling mistakes + * src/Win_GParted.cc: Added label update for paste to existing partition 2008-10-31 Curtis Gedak diff --git a/src/Dialog_Progress.cc b/src/Dialog_Progress.cc index 39b6b420..43d8baa6 100644 --- a/src/Dialog_Progress.cc +++ b/src/Dialog_Progress.cc @@ -315,7 +315,7 @@ void Dialog_Progress::on_cancel() Gtk::BUTTONS_NONE, true ) ; - dialog .set_secondary_text( _("Cancelling an operation may cause SEVERE file system damage.") ) ; + dialog .set_secondary_text( _("Canceling an operation might cause SEVERE file system damage.") ) ; dialog .add_button( _("Continue Operation"), Gtk::RESPONSE_NONE ) ; dialog .add_button( _("Cancel Operation"), Gtk::RESPONSE_CANCEL ) ; diff --git a/src/GParted_Core.cc b/src/GParted_Core.cc index 82a37097..d9a6304c 100644 --- a/src/GParted_Core.cc +++ b/src/GParted_Core.cc @@ -1294,7 +1294,7 @@ bool GParted_Core::move( const Device & device, { if ( ! move_filesystem( partition_old, partition_new, operationdetail ) ) { - operationdetail .add_child( OperationDetail( _("rollback last change to the partitiontable") ) ) ; + operationdetail .add_child( OperationDetail( _("rollback last change to the partition table") ) ) ; if ( resize_move_partition( partition_new, partition_old, operationdetail .get_last_child() ) ) operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ; @@ -1330,7 +1330,7 @@ bool GParted_Core::move_filesystem( const Partition & partition_old, { operationdetail .add_child( OperationDetail( _("move filesystem") ) ) ; operationdetail .get_last_child() .add_child( - OperationDetail( _("new and old filesystem have the same positition -- skipping this operation"), + OperationDetail( _("new and old filesystem have the same position -- skipping this operation"), STATUS_NONE, FONT_ITALIC ) ) ; @@ -1697,7 +1697,7 @@ bool GParted_Core::copy( const Partition & partition_src, if ( partition_dst .get_length() < partition_src .get_length() ) { operationdetail .add_child( OperationDetail( - _("the destination is smaller than the sourcepartition"), STATUS_ERROR, FONT_ITALIC ) ) ; + _("the destination is smaller than the source partition"), STATUS_ERROR, FONT_ITALIC ) ) ; return false ; } @@ -1755,7 +1755,7 @@ bool GParted_Core::copy_filesystem_simulation( const Partition & partition_src, const Partition & partition_dst, OperationDetail & operationdetail ) { - operationdetail .add_child( OperationDetail( _("perform readonly test") ) ) ; + operationdetail .add_child( OperationDetail( _("perform read-only test") ) ) ; bool succes = copy_filesystem( partition_src, partition_dst, operationdetail .get_last_child(), true ) ; @@ -1949,7 +1949,7 @@ bool GParted_Core::check_repair_filesystem( const Partition & partition, Operati bool GParted_Core::set_partition_type( const Partition & partition, OperationDetail & operationdetail ) { operationdetail .add_child( OperationDetail( - String::ucompose( _("set partitiontype on %1"), partition .get_path() ) ) ) ; + String::ucompose( _("set partition type on %1"), partition .get_path() ) ) ) ; bool return_value = false ; @@ -1971,7 +1971,7 @@ bool GParted_Core::set_partition_type( const Partition & partition, OperationDet commit() ) { operationdetail .get_last_child() .add_child( - OperationDetail( String::ucompose( _("new partitiontype: %1"), + OperationDetail( String::ucompose( _("new partition type: %1"), lp_partition ->fs_type ->name ), STATUS_NONE, FONT_ITALIC ) ) ; @@ -2333,7 +2333,7 @@ bool GParted_Core::update_bootsector( const Partition & partition, OperationDeta if ( partition .filesystem == FS_NTFS ) { operationdetail .add_child( OperationDetail( - String::ucompose( _("updating bootsector of %1 filesystem on %2"), + String::ucompose( _("updating boot sector of %1 filesystem on %2"), Utils::get_filesystem_string( partition .filesystem ), partition .get_path() ) ) ) ; diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc index aff6f11b..84729f6b 100644 --- a/src/Win_GParted.cc +++ b/src/Win_GParted.cc @@ -1011,7 +1011,7 @@ void Win_GParted::menu_gparted_refresh_devices() { Gtk::MessageDialog dialog( *this, - _("The kernel is unable to re-read the partitiontables on the following devices:") + + _("The kernel is unable to re-read the partition tables on the following devices:") + Glib::build_path( "", readonly_paths ), false, Gtk::MESSAGE_WARNING, @@ -1212,7 +1212,7 @@ void Win_GParted::menu_help_about() strings .clear() ; /*TO TRANSLATORS: your name(s) here please, if there are more translators put newlines (\n) between the names. - It's a good idea to provide the url of your translationteam as well. Thanks! */ + It's a good idea to provide the url of your translation team as well. Thanks! */ Glib::ustring str_credits = _("translator-credits") ; if ( str_credits != "translator-credits" ) dialog .set_translator_credits( str_credits ) ; @@ -1904,7 +1904,7 @@ void Win_GParted::activate_apply() Gtk::BUTTONS_NONE, true ); dialog .set_secondary_text( _( "It is recommended to backup valuable data before proceeding.") ) ; - dialog .set_title( _( "Apply operations to harddisk" ) ); + dialog .set_title( _( "Apply operations to device" ) ); dialog .add_button( Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL ); dialog .add_button( Gtk::Stock::APPLY, Gtk::RESPONSE_OK );