removed 'EXPERIMENTAL' from move-message to prevent incorrect

* src/GParted_Core.cc: removed 'EXPERIMENTAL' from move-message to
  prevent incorrect translations.
This commit is contained in:
Bart Hakvoort 2006-06-04 13:41:06 +00:00
parent b92ac20232
commit 65f0a16eb2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-06-04 Bart Hakvoort <hakvoort@cvs.gnome.org>
* src/GParted_Core.cc: removed 'EXPERIMENTAL' from move-message to
prevent incorrect translations.
2006-05-31 Bart Hakvoort <hakvoort@cvs.gnome.org>
* include/GParted_Core.h,

View File

@ -770,7 +770,7 @@ bool GParted_Core::move_partition( const Partition & partition_old,
Partition & partition_new,
std::vector<OperationDetails> & operation_details )
{
operation_details .push_back( OperationDetails( _("Moving partition and filesystem. EXPERIMENTAL!!") ) ) ;
operation_details .push_back( OperationDetails( _("Moving partition and filesystem.") ) ) ;
//FIXME: add support for dynamic blocksizes..
bool succes = false ;
char buf[1024] ;