diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-09-20 21:10:49 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-09-20 21:10:49 +0200 |
commit | e5064128cc7ff5950f58d38710461194780d2bf8 (patch) | |
tree | 39930b884adb5fe73ac34a0cafc457e29f617965 /plugins/gtkui | |
parent | 7d15f468647606dc26fcadcbaab7f0e2ff29c928 (diff) |
changed "File number" column title to "Item index"
Diffstat (limited to 'plugins/gtkui')
-rw-r--r-- | plugins/gtkui/deadbeef.glade | 2 | ||||
-rw-r--r-- | plugins/gtkui/interface.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade index 6dc8ed1a..34e4ace4 100644 --- a/plugins/gtkui/deadbeef.glade +++ b/plugins/gtkui/deadbeef.glade @@ -2092,7 +2092,7 @@ <child> <widget class="GtkComboBox" id="id"> <property name="visible">True</property> - <property name="items" translatable="yes">File number + <property name="items" translatable="yes">Item Index Playing Album Art Artist - Album diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c index 4749f4e7..7c90804c 100644 --- a/plugins/gtkui/interface.c +++ b/plugins/gtkui/interface.c @@ -1427,7 +1427,7 @@ create_editcolumndlg (void) id = gtk_combo_box_new_text (); gtk_widget_show (id); gtk_box_pack_start (GTK_BOX (hbox30), id, TRUE, TRUE, 0); - gtk_combo_box_append_text (GTK_COMBO_BOX (id), _("File number")); + gtk_combo_box_append_text (GTK_COMBO_BOX (id), _("Item Index")); gtk_combo_box_append_text (GTK_COMBO_BOX (id), _("Playing")); gtk_combo_box_append_text (GTK_COMBO_BOX (id), _("Album Art")); gtk_combo_box_append_text (GTK_COMBO_BOX (id), _("Artist - Album")); |