Fixed 3 grammatical errors by replacing periods with dashes

svn path=/trunk/; revision=854
This commit is contained in:
Curtis Gedak 2008-06-12 22:22:29 +00:00
parent 8f0d85a4a7
commit 467e910e1d
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-06-12 Curtis Gedak <gedakc@gmail.com>
* src/GParted_Core.cc: Changed 3 grammatical errors to dashes.
- Closes GParted bug #533637
2008-06-10 Curtis Gedak <gedakc@gmail.com>
* src/main.cc: Changed wording of root privilege required warning.

View File

@ -1230,7 +1230,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 positition -- skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;
@ -1435,7 +1435,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 -- skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;
@ -1538,7 +1538,7 @@ bool GParted_Core::resize_filesystem( const Partition & partition_old,
operationdetail .add_child( OperationDetail( _("resize filesystem") ) ) ;
operationdetail .get_last_child() .add_child(
OperationDetail(
_("new and old filesystem have the same size. skipping this operation"),
_("new and old filesystem have the same size -- skipping this operation"),
STATUS_NONE,
FONT_ITALIC ) ) ;