1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Fix application name in about dialog boxes.
Author: Unknown.
Index: gnomekiss-2.0/src/interface.c
===================================================================
--- gnomekiss-2.0.orig/src/interface.c 2009-04-06 16:55:53.000000000 -0400
+++ gnomekiss-2.0/src/interface.c 2009-04-06 17:00:34.000000000 -0400
@@ -305,7 +305,7 @@
tooltips = gtk_tooltips_new ();
- application = gnome_app_new ("Gnomekiss", _("GnomeKiss"));
+ application = gnome_app_new ("GnomeKiss", _("GnomeKiss"));
gtk_widget_set_name (application, "application");
application_icon_pixbuf = create_pixbuf ("gnomekiss/besito_sinfondo.png");
if (application_icon_pixbuf)
@@ -1241,7 +1241,7 @@
about = gtk_about_dialog_new ();
gtk_widget_set_name (about, "about");
gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (about), VERSION);
- gtk_about_dialog_set_name (GTK_ABOUT_DIALOG (about), _("Gnomekiss"));
+ gtk_about_dialog_set_name (GTK_ABOUT_DIALOG (about), _("GnomeKiss"));
gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about), _("Copyright 2000-2005 Nick Lamb"));
gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (about), _("A KiSS viewer for the GNOME desktop"));
gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about), _("This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."));
|