summaryrefslogtreecommitdiff
path: root/xfce4-session
diff options
context:
space:
mode:
authorSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2019-04-27 00:42:54 +0200
committerSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2019-04-27 00:42:54 +0200
commit6a14b2b63393820835c963ddbe791e04f475af65 (patch)
treef887540e7828108eef6dc5d273d1640148a523e3 /xfce4-session
parent30846a081d7bfb69cb4fa8760dbe19650a15bfbd (diff)
downloadxfce4-session-6a14b2b63393820835c963ddbe791e04f475af65.tar.gz
Fix case in session chooser buttons
Diffstat (limited to 'xfce4-session')
-rw-r--r--xfce4-session/xfsm-chooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfce4-session/xfsm-chooser.c b/xfce4-session/xfsm-chooser.c
index e3e02b2a..39738a2f 100644
--- a/xfce4-session/xfsm-chooser.c
+++ b/xfce4-session/xfsm-chooser.c
@@ -212,7 +212,7 @@ xfsm_chooser_init (XfsmChooser *chooser)
gtk_widget_show (chooser->tree);
/* "Logout" button */
- button = xfce_gtk_button_new_mixed ("application-exit", _("Log out"));
+ button = xfce_gtk_button_new_mixed ("application-exit", _("Log Out"));
gtk_widget_set_tooltip_text (button,
_("Cancel the login attempt and return to "
"the login screen."));
@@ -221,7 +221,7 @@ xfsm_chooser_init (XfsmChooser *chooser)
gtk_widget_show (button);
/* "New" button */
- button = xfce_gtk_button_new_mixed ("document-new", _("Create new session"));
+ button = xfce_gtk_button_new_mixed ("document-new", _("Create New Session"));
gtk_widget_set_tooltip_text (button, _("Create a new session."));
gtk_dialog_add_action_widget (GTK_DIALOG (chooser), button,
XFSM_RESPONSE_NEW);