Fixed incorrect spelling of filesystem and mountpoint

svn path=/trunk/; revision=970
This commit is contained in:
Curtis Gedak 2008-11-18 23:58:17 +00:00
parent 54611e93e4
commit c4bc4430c7
19 changed files with 124 additions and 105 deletions

View File

@ -1,5 +1,24 @@
2008-11-18 Curtis Gedak <gedakc@gmail.com> 2008-11-18 Curtis Gedak <gedakc@gmail.com>
* include/Partition.h,
include/Utils.h,
src/Dialog_Partition_Info.cc,
src/Dialog_Partition_New.cc,
src/Dialog_Partition_Resize_Move.cc,
src/ext2.cc,
src/ext3.cc,
src/fat16.cc,
src/fat32.cc,
src/GParted_Core.cc,
src/jfs.cc,
src/linux_swap.cc,
src/ntfs.cc,
src/OperationCheck.cc,
src/reiserfs.cc,
src/TreeView_Detail.cc,
src/Win_GParted.cc,
src/xfs.cc: Fixed incorrect spelling of filesystem and mountpoint.
* src/DialogFeatures.cc: Added translator comment. * src/DialogFeatures.cc: Added translator comment.
- Renamed button to improve clarity of meaning. - Renamed button to improve clarity of meaning.
- Closes GParted bug #561350 - Closes GParted bug #561350

View File

@ -148,7 +148,7 @@ void Dialog_Partition_Info::Display_Info()
this ->get_vbox() ->pack_start( *table, Gtk::PACK_SHRINK ) ; this ->get_vbox() ->pack_start( *table, Gtk::PACK_SHRINK ) ;
//filesystem //filesystem
table ->attach( * Utils::mk_label( "<b>" + Glib::ustring( _("Filesystem:") ) + "</b>" ), table ->attach( * Utils::mk_label( "<b>" + Glib::ustring( _("File System:") ) + "</b>" ),
0, 1, 0, 1,
top, bottom, top, bottom,
Gtk::FILL ) ; Gtk::FILL ) ;

View File

@ -89,7 +89,7 @@ void Dialog_Partition_New::Set_Data( const Partition & partition,
table_create .attach( optionmenu_type, 1, 2, 0, 1, Gtk::FILL ); table_create .attach( optionmenu_type, 1, 2, 0, 1, Gtk::FILL );
//file systems to choose from //file systems to choose from
table_create .attach( * Utils::mk_label( static_cast<Glib::ustring>( _("Filesystem:") ) + "\t" ), table_create .attach( * Utils::mk_label( static_cast<Glib::ustring>( _("File System:") ) + "\t" ),
0, 1, 1, 2, 0, 1, 1, 2,
Gtk::FILL ); Gtk::FILL );

View File

@ -32,8 +32,8 @@ TreeView_Detail::TreeView_Detail()
//append columns //append columns
append_column( _("Partition"), treeview_detail_columns .path ); append_column( _("Partition"), treeview_detail_columns .path );
append_column( _("Filesystem"), treeview_detail_columns .color ); append_column( _("File System"), treeview_detail_columns .color );
append_column( _("Mountpoint"), treeview_detail_columns .mountpoint ); append_column( _("Mount Point"), treeview_detail_columns .mountpoint );
append_column( _("Label"), treeview_detail_columns .label ); append_column( _("Label"), treeview_detail_columns .label );
append_column( _("Size"), treeview_detail_columns .size ); append_column( _("Size"), treeview_detail_columns .size );
append_column( _("Used"), treeview_detail_columns .used ); append_column( _("Used"), treeview_detail_columns .used );
@ -55,7 +55,7 @@ TreeView_Detail::TreeView_Detail()
//file system text //file system text
get_column( 1 ) ->pack_start( treeview_detail_columns .filesystem, true ); get_column( 1 ) ->pack_start( treeview_detail_columns .filesystem, true );
//colored text in Filesystem column //colored text in File System column
std::vector<Gtk::CellRenderer*> renderers = get_column( 1 ) ->get_cell_renderers() ; std::vector<Gtk::CellRenderer*> renderers = get_column( 1 ) ->get_cell_renderers() ;
cell_renderer_text = dynamic_cast<Gtk::CellRendererText*>( renderers .back() ) ; cell_renderer_text = dynamic_cast<Gtk::CellRendererText*>( renderers .back() ) ;
get_column( 1 ) ->add_attribute( cell_renderer_text ->property_foreground(), get_column( 1 ) ->add_attribute( cell_renderer_text ->property_foreground(),

View File

@ -134,7 +134,7 @@ bool jfs::resize( const Partition & partition_new, OperationDetail & operationde
{ {
bool return_value = false ; bool return_value = false ;
Glib::ustring error ; Glib::ustring error ;
Glib::ustring TEMP_MP = Glib::get_tmp_dir() + "/gparted_tmp_jfs_mountpoint" ; Glib::ustring TEMP_MP = Glib::get_tmp_dir() + "/gparted_tmp_jfs_mount_point" ;
//create mount point... //create mount point...
operationdetail .add_child( OperationDetail( String::ucompose( _("create temporary mount point (%1)"), TEMP_MP ) ) ) ; operationdetail .add_child( OperationDetail( String::ucompose( _("create temporary mount point (%1)"), TEMP_MP ) ) ) ;

View File

@ -146,7 +146,7 @@ bool xfs::resize( const Partition & partition_new, OperationDetail & operationde
{ {
bool return_value = false ; bool return_value = false ;
Glib::ustring error ; Glib::ustring error ;
Glib::ustring TEMP_MP = Glib::get_tmp_dir() + "/gparted_tmp_xfs_mountpoint" ; Glib::ustring TEMP_MP = Glib::get_tmp_dir() + "/gparted_tmp_xfs_mount_point" ;
//create mount point... //create mount point...
operationdetail .add_child( OperationDetail( String::ucompose( _("create temporary mount point (%1)"), TEMP_MP ) ) ) ; operationdetail .add_child( OperationDetail( String::ucompose( _("create temporary mount point (%1)"), TEMP_MP ) ) ) ;
@ -227,8 +227,8 @@ bool xfs::copy( const Glib::ustring & src_part_path,
{ {
bool return_value = false ; bool return_value = false ;
Glib::ustring error ; Glib::ustring error ;
Glib::ustring SRC = Glib::get_tmp_dir() + "/gparted_tmp_xfs_src_mountpoint" ; Glib::ustring SRC = Glib::get_tmp_dir() + "/gparted_tmp_xfs_src_mount_point" ;
Glib::ustring DST = Glib::get_tmp_dir() + "/gparted_tmp_xfs_dest_mountpoint" ; Glib::ustring DST = Glib::get_tmp_dir() + "/gparted_tmp_xfs_dest_mount_point" ;
//create xfs file system on destination.. //create xfs file system on destination..
/*TO TRANSLATORS: looks like Create new xfs file system */ /*TO TRANSLATORS: looks like Create new xfs file system */