From ce0707c149c37c87f29d21b408f29cc414fa20c0 Mon Sep 17 00:00:00 2001 From: Bart Hakvoort Date: Tue, 24 Jan 2006 12:47:11 +0000 Subject: [PATCH] replaced translatable string 'umount' with 'unmount' (#328419) * src/jfs.cc, src/xfs.cc: replaced translatable string 'umount' with 'unmount' (#328419) --- ChangeLog | 6 ++++++ src/jfs.cc | 2 +- src/xfs.cc | 6 +++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7490ce12..1b281e86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-01-24 Bart Hakvoort + + * src/jfs.cc, + src/xfs.cc: replaced translatable string 'umount' with 'unmount' + (#328419) + 2006-01-24 Bart Hakvoort * use Glib::get_tmp_dir() instead of hardcoding it as '/tmp' diff --git a/src/jfs.cc b/src/jfs.cc index e188e8b0..73edc64e 100644 --- a/src/jfs.cc +++ b/src/jfs.cc @@ -152,7 +152,7 @@ bool jfs::Resize( const Partition & partition_new, //and unmount it... operation_details .back() .sub_details .push_back( - OperationDetails( String::ucompose( _("umount %1"), partition_new .partition ) ) ) ; + OperationDetails( String::ucompose( _("unmount %1"), partition_new .partition ) ) ) ; if ( Utils::unmount( partition_new .partition, TEMP_MP, error ) ) { operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ; diff --git a/src/xfs.cc b/src/xfs.cc index 8cbd02fa..dcb167e1 100644 --- a/src/xfs.cc +++ b/src/xfs.cc @@ -153,7 +153,7 @@ bool xfs::Resize( const Partition & partition_new, //and unmount it... operation_details .back() .sub_details .push_back( - OperationDetails( String::ucompose( _("umount %1"), partition_new .partition ) ) ) ; + OperationDetails( String::ucompose( _("unmount %1"), partition_new .partition ) ) ) ; if ( Utils::unmount( partition_new .partition, TEMP_MP, error ) ) { operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ; @@ -265,7 +265,7 @@ bool xfs::Copy( const Glib::ustring & src_part_path, //unmount destination partition operation_details .back() .sub_details .push_back( - OperationDetails( String::ucompose( _("umount %1"), dest_part_path ) ) ) ; + OperationDetails( String::ucompose( _("unmount %1"), dest_part_path ) ) ) ; if ( Utils::unmount( dest_part_path, DST, error ) ) { operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ; @@ -288,7 +288,7 @@ bool xfs::Copy( const Glib::ustring & src_part_path, //unmount source partition operation_details .back() .sub_details .push_back( - OperationDetails( String::ucompose( _("umount %1"), src_part_path ) ) ) ; + OperationDetails( String::ucompose( _("unmount %1"), src_part_path ) ) ) ; if ( Utils::unmount( src_part_path, SRC, error ) ) { operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;