Fixed spelling of GTK.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1621 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2007-06-15 13:33:01 +00:00
parent fac8eb3241
commit c40c49e6f9
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-06-15 Enrico Tröger <enrico.troeger@uvena.de>
* geany.glade, src/interface.c, src/tools.c: Fixed spelling of GTK.
2007-06-14 Frank Lanitz <frank@frank.uvena.de>
* src/tools.c: Fixed a small typo.

View File

@ -1410,7 +1410,7 @@
<child>
<widget class="GtkMenuItem" id="menu_create_gtk_class">
<property name="visible">True</property>
<property name="label" translatable="yes">Gtk+ class</property>
<property name="label" translatable="yes">GTK+ class</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_menu_create_gtk_class_activate" last_modification_time="Mon, 11 Jun 2007 10:50:17 GMT"/>
</widget>

View File

@ -975,7 +975,7 @@ create_window1 (void)
gtk_widget_show (menu_create_cpp_class);
gtk_container_add (GTK_CONTAINER (menu_create_class1_menu), menu_create_cpp_class);
menu_create_gtk_class = gtk_menu_item_new_with_mnemonic (_("Gtk+ class"));
menu_create_gtk_class = gtk_menu_item_new_with_mnemonic (_("GTK+ class"));
gtk_widget_show (menu_create_gtk_class);
gtk_container_add (GTK_CONTAINER (menu_create_class1_menu), menu_create_gtk_class);

View File

@ -1081,7 +1081,7 @@ void tools_show_dialog_create_class(gint type)
g_signal_connect(G_OBJECT(cc_dlg->create_constructor_box), "toggled",
G_CALLBACK(on_set_sensitive_toggled), (gpointer)hbox);
label = gtk_label_new(_("Gtk+ constructor type"));
label = gtk_label_new(_("GTK+ constructor type"));
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
gtk_widget_show(label);