Change em dashes to period with new sentence

With the em dashes in the translatable strings, a 'make distcheck'
would fail.  Hence these have been change to be a period followed by a
new sentence.
This commit is contained in:
Curtis Gedak 2009-10-26 15:19:04 -06:00
parent c85de03ee3
commit 33d7e31d3c
2 changed files with 4 additions and 4 deletions

View File

@ -1557,7 +1557,7 @@ bool GParted_Core::move_filesystem( const Partition & partition_old,
{
operationdetail .add_child( OperationDetail( _("move file system") ) ) ;
operationdetail .get_last_child() .add_child(
OperationDetail( _("new and old file system have the same position skipping this operation"),
OperationDetail( _("new and old file system have the same position. Hence skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;
@ -1762,7 +1762,7 @@ bool GParted_Core::resize_move_partition( const Partition & partition_old,
if ( action == NONE )
{
operationdetail .get_last_child() .add_child(
OperationDetail( _("new and old partition have the same size and position skipping this operation"),
OperationDetail( _("new and old partition have the same size and position. Hence skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;
@ -1881,7 +1881,7 @@ bool GParted_Core::resize_filesystem( const Partition & partition_old,
operationdetail .add_child( OperationDetail( _("resize file system") ) ) ;
operationdetail .get_last_child() .add_child(
OperationDetail(
_("new and old file system have the same size skipping this operation"),
_("new and old file system have the same size. Hence skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;

View File

@ -84,7 +84,7 @@ void OperationResizeMove::create_description()
case NONE :
description = String::ucompose( _("resize/move %1"), partition_original .get_path() ) ;
description += " (" ;
description += _("new and old partition have the same size and position continuing anyway") ;
description += _("new and old partition have the same size and position. Hence continuing anyway") ;
description += ")" ;
break ;
case MOVE_RIGHT :