Fixed some spelling mistakes
svn path=/trunk/; revision=951
This commit is contained in:
parent
ecddf94ed1
commit
a5839e5746
|
@ -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>
|
||||
|
|
|
@ -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 ) ;
|
||||
|
|
|
@ -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 ) ) ;
|
||||
|
||||
|
@ -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 ) ;
|
||||
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue