From 8d3a20189613f243b3171c4ada24264e156657fe Mon Sep 17 00:00:00 2001 From: Bart Hakvoort Date: Thu, 7 Oct 2004 14:59:22 +0000 Subject: [PATCH] unmarked 'Copyright' string for translation and replaced (c) with UTF-8 * src/Dialog_About.cc: unmarked 'Copyright' string for translation and replaced (c) with UTF-8 copyright symbol --- ChangeLog | 4 ++++ src/Dialog_About.cc | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fd5a578b..5521b4d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-10-07 Bart Hakvoort + + * src/Dialog_About.cc: unmarked 'Copyright' string for translation and replaced (c) with © + 2004-10-07 Bart Hakvoort * include/Utils.h: added support for colored text to mk_label diff --git a/src/Dialog_About.cc b/src/Dialog_About.cc index 69a68a76..c4b7157a 100644 --- a/src/Dialog_About.cc +++ b/src/Dialog_About.cc @@ -31,8 +31,8 @@ Dialog_About::Dialog_About() this ->get_vbox() ->pack_start( * mk_label( "\nlogo here ;)\n", true, false ), Gtk::PACK_SHRINK ); this ->get_vbox() ->pack_start( * mk_label( "" + (Glib::ustring) _( "GParted" ) + " " + VERSION + "", true, false ) ,Gtk::PACK_SHRINK ); this ->get_vbox() ->pack_start( * mk_label( "\n" + (Glib::ustring) _( "Gnome Partition Editor based on libparted" ) + "\n", false, false ) ,Gtk::PACK_SHRINK ); - this ->get_vbox() ->pack_start( * mk_label( "" + (Glib::ustring) _( "Copyright (c)" ) + " 2004 Bart Hakvoort", true, false ) ,Gtk::PACK_SHRINK ); - this ->get_vbox() ->pack_start( * mk_label( "http://gparted.sourceforge.net", true, false ) ,Gtk::PACK_SHRINK ); + this ->get_vbox() ->pack_start( * mk_label( "Copyright © 2004 Bart Hakvoort", true, false ), Gtk::PACK_SHRINK ); + this ->get_vbox() ->pack_start( * mk_label( "http://gparted.sourceforge.net", true, false ), Gtk::PACK_SHRINK ); button_credits.add_pixlabel( "/usr/share/icons/hicolor/16x16/stock/generic/stock_about.png", "Credits", 0, 0.5 ) ; button_credits.signal_clicked() .connect( sigc::mem_fun( this, &Dialog_About::Show_Credits ) ) ;