From 467e910e1d03724c745ffb7c1688c5709c0f6101 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Thu, 12 Jun 2008 22:22:29 +0000 Subject: [PATCH] Fixed 3 grammatical errors by replacing periods with dashes svn path=/trunk/; revision=854 --- ChangeLog | 5 +++++ src/GParted_Core.cc | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cda53e4f..33c0568a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-12 Curtis Gedak + + * src/GParted_Core.cc: Changed 3 grammatical errors to dashes. + - Closes GParted bug #533637 + 2008-06-10 Curtis Gedak * src/main.cc: Changed wording of root privilege required warning. diff --git a/src/GParted_Core.cc b/src/GParted_Core.cc index d24558d7..6c787881 100644 --- a/src/GParted_Core.cc +++ b/src/GParted_Core.cc @@ -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 ) ) ;