diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-06-25 19:50:05 +0200 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-06-25 19:50:28 +0200 |
commit | ed1d8f2fa9f174780cdfb518f1a144bb0aaf42e9 (patch) | |
tree | 3ce343ca5e7180ea18be3c2673a8624ea0307093 /plugins/gtkui | |
parent | e4dcbc4a3285130b14853da94dab5ea23c11119d (diff) |
gtkui: fixed "Set custom title" string
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 57dd0cbe..d95ca35f 100644 --- a/plugins/gtkui/deadbeef.glade +++ b/plugins/gtkui/deadbeef.glade @@ -6349,7 +6349,7 @@ if you don't press Apply.</property> <widget class="GtkCheckButton" id="set_custom_title"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">Set custom title</property> + <property name="label" translatable="yes">Set Custom Title</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c index c4c02b73..b4b58f99 100644 --- a/plugins/gtkui/interface.c +++ b/plugins/gtkui/interface.c @@ -3225,7 +3225,7 @@ create_addlocationdlg (void) hbox122 = gtk_hbox_new (FALSE, 8); gtk_box_pack_start (GTK_BOX (vbox45), hbox122, TRUE, TRUE, 0); - set_custom_title = gtk_check_button_new_with_mnemonic (_("Set custom title")); + set_custom_title = gtk_check_button_new_with_mnemonic (_("Set Custom Title")); gtk_widget_show (set_custom_title); gtk_box_pack_start (GTK_BOX (hbox122), set_custom_title, FALSE, FALSE, 0); |