minor changes to a few strings
This commit is contained in:
parent
9a9a00a0fe
commit
3fc4d5b74d
|
@ -1,3 +1,8 @@
|
||||||
|
2004-10-01 Bart Hakvoort <gparted@users.sf.net>
|
||||||
|
|
||||||
|
* src/Dialog_About.cc,
|
||||||
|
src/TreeView_Detail.cc: minor changes to a few strings
|
||||||
|
|
||||||
2004-10-01 Hendrik Brandt <hebra@cvs.gnome.org>
|
2004-10-01 Hendrik Brandt <hebra@cvs.gnome.org>
|
||||||
|
|
||||||
* configure.in: added "de" (German) to ALL_LINGUAS
|
* configure.in: added "de" (German) to ALL_LINGUAS
|
||||||
|
|
|
@ -61,7 +61,7 @@ void Dialog_About::Show_Credits()
|
||||||
{
|
{
|
||||||
Gtk::Dialog dialog( _("Credits"), *this ) ;
|
Gtk::Dialog dialog( _("Credits"), *this ) ;
|
||||||
Gtk::Notebook notebook_credits;
|
Gtk::Notebook notebook_credits;
|
||||||
Gtk::VBox vbox_written, vbox_documented, vbox_translators ;
|
Gtk::VBox vbox_written, vbox_translators ;
|
||||||
Gtk::Label label_writers, label_translators ;
|
Gtk::Label label_writers, label_translators ;
|
||||||
|
|
||||||
//written by
|
//written by
|
||||||
|
@ -71,18 +71,14 @@ void Dialog_About::Show_Credits()
|
||||||
label_writers .set_alignment( Gtk::ALIGN_LEFT ) ;
|
label_writers .set_alignment( Gtk::ALIGN_LEFT ) ;
|
||||||
vbox_written .pack_start( label_writers, Gtk::PACK_SHRINK ) ;
|
vbox_written .pack_start( label_writers, Gtk::PACK_SHRINK ) ;
|
||||||
notebook_credits .set_size_request( -1, 200 ) ;
|
notebook_credits .set_size_request( -1, 200 ) ;
|
||||||
|
|
||||||
/*TO TRANSLATORS: tablabel in aboutdialog */
|
/*TO TRANSLATORS: tablabel in aboutdialog */
|
||||||
notebook_credits .append_page( vbox_written, _("Written by") ) ;
|
notebook_credits .append_page( vbox_written, _("Written by") ) ;
|
||||||
|
|
||||||
//documented by
|
|
||||||
/*TO TRANSLATORS: tablabel in aboutdialog */
|
|
||||||
// notebook_credits .append_page( vbox_documented, _("Documented by") ) ;
|
|
||||||
|
|
||||||
//translated by
|
|
||||||
/*TO TRANSLATORS: your name(s) here please, if there are more translators put newlines (\n) between the names */
|
/*TO TRANSLATORS: your name(s) here please, if there are more translators put newlines (\n) between the names */
|
||||||
label_translators .set_text( _( "translator_credits") ) ;
|
label_translators .set_text( _( "translator-credits") ) ;
|
||||||
label_translators .set_selectable( true );
|
label_translators .set_selectable( true );
|
||||||
if ( label_translators .get_text() != "translator_credits" )
|
if ( label_translators .get_text() != "translator-credits" )
|
||||||
{
|
{
|
||||||
label_translators .set_alignment( Gtk::ALIGN_LEFT ) ;
|
label_translators .set_alignment( Gtk::ALIGN_LEFT ) ;
|
||||||
vbox_translators .pack_start( label_translators, Gtk::PACK_SHRINK ) ;
|
vbox_translators .pack_start( label_translators, Gtk::PACK_SHRINK ) ;
|
||||||
|
|
|
@ -30,9 +30,9 @@ TreeView_Detail::TreeView_Detail( )
|
||||||
//append columns
|
//append columns
|
||||||
this->append_column( _("Partition"), treeview_detail_columns.partition );
|
this->append_column( _("Partition"), treeview_detail_columns.partition );
|
||||||
this->append_column( _("Type"), treeview_detail_columns.type_square );
|
this->append_column( _("Type"), treeview_detail_columns.type_square );
|
||||||
this->append_column( (Glib::ustring) _("Size") + "(MB)", treeview_detail_columns.size );
|
this->append_column( _("Size(MB)"), treeview_detail_columns.size );
|
||||||
this->append_column( (Glib::ustring) _("Used") + "(MB)", treeview_detail_columns.used );
|
this->append_column( _("Used(MB)"), treeview_detail_columns.used );
|
||||||
this->append_column( (Glib::ustring) _("Unused") + "(MB)", treeview_detail_columns.unused );
|
this->append_column( _("Unused(MB)"), treeview_detail_columns.unused );
|
||||||
this->append_column( _("Flags"), treeview_detail_columns.flags );
|
this->append_column( _("Flags"), treeview_detail_columns.flags );
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue