Fixed some spelling mistakes

svn path=/trunk/; revision=951
This commit is contained in:
Curtis Gedak 2008-11-04 22:16:06 +00:00
parent ecddf94ed1
commit a5839e5746
4 changed files with 15 additions and 11 deletions

View File

@ -1,5 +1,9 @@
2008-11-04 Curtis Gedak <gedakc@gmail.com>
* 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 <gedakc@gmail.com>

View File

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

View File

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

View File

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