summaryrefslogtreecommitdiff
path: root/plugins/gtkui
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gtkui')
-rw-r--r--plugins/gtkui/callbacks.c4
-rw-r--r--plugins/gtkui/deadbeef.glade4
-rw-r--r--plugins/gtkui/interface.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/gtkui/callbacks.c b/plugins/gtkui/callbacks.c
index d2882b70..e2453bb6 100644
--- a/plugins/gtkui/callbacks.c
+++ b/plugins/gtkui/callbacks.c
@@ -1408,7 +1408,7 @@ void
on_gpl1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
- show_info_window (DOCDIR "/COPYING", "GNU GENERAL PUBLIC LICENSE Version 2", &gplwindow);
+ show_info_window (DOCDIR "/COPYING.GPLv2", "GNU GENERAL PUBLIC LICENSE Version 2", &gplwindow);
}
static GtkWidget *lgplwindow;
@@ -1417,7 +1417,7 @@ void
on_lgpl1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
- show_info_window (DOCDIR "/lgpl-2.1.txt", "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1", &lgplwindow);
+ show_info_window (DOCDIR "/COPYING.LGPLv2.1", "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1", &lgplwindow);
}
diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade
index 811b013b..cfd07055 100644
--- a/plugins/gtkui/deadbeef.glade
+++ b/plugins/gtkui/deadbeef.glade
@@ -540,7 +540,7 @@
<child>
<widget class="GtkMenuItem" id="gpl1">
<property name="visible">True</property>
- <property name="label" translatable="yes">_GPL</property>
+ <property name="label" translatable="yes">_GPLv2</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_gpl1_activate" last_modification_time="Wed, 06 Jan 2010 20:30:20 GMT"/>
</widget>
@@ -549,7 +549,7 @@
<child>
<widget class="GtkMenuItem" id="lgpl1">
<property name="visible">True</property>
- <property name="label" translatable="yes">_LGPL</property>
+ <property name="label" translatable="yes">_LGPLv2.1</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_lgpl1_activate" last_modification_time="Wed, 06 Jan 2010 20:30:20 GMT"/>
</widget>
diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c
index fa26a5c8..0b614e97 100644
--- a/plugins/gtkui/interface.c
+++ b/plugins/gtkui/interface.c
@@ -389,11 +389,11 @@ create_mainwin (void)
gtk_container_add (GTK_CONTAINER (menuitem4_menu), separator10);
gtk_widget_set_sensitive (separator10, FALSE);
- gpl1 = gtk_menu_item_new_with_mnemonic ("_GPL");
+ gpl1 = gtk_menu_item_new_with_mnemonic ("_GPLv2");
gtk_widget_show (gpl1);
gtk_container_add (GTK_CONTAINER (menuitem4_menu), gpl1);
- lgpl1 = gtk_menu_item_new_with_mnemonic ("_LGPL");
+ lgpl1 = gtk_menu_item_new_with_mnemonic ("_LGPLv2.1");
gtk_widget_show (lgpl1);
gtk_container_add (GTK_CONTAINER (menuitem4_menu), lgpl1);