diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-02-27 22:14:11 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-02-27 22:14:11 -0500 |
| commit | 92f23264c78f759052fd6d1376961382c55699e4 (patch) | |
| tree | fad2c0d290b5cef55f8efca4f304992a2282537a /openbox/actions | |
| parent | fbacc56d9d0792631b5160df1244ee10214db37d (diff) | |
change the yes/no buttons to Exit/Cancel for the exit prompt
Diffstat (limited to 'openbox/actions')
| -rw-r--r-- | openbox/actions/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/exit.c b/openbox/actions/exit.c index 8430729b..19b78e9c 100644 --- a/openbox/actions/exit.c +++ b/openbox/actions/exit.c @@ -43,8 +43,8 @@ static gboolean run_func(ObActionsData *data, gpointer options) if (o->prompt) { ObPrompt *p; ObPromptAnswer answers[] = { - { _("No"), 0 }, - { _("Yes"), 1 } + { _("Cancel"), 0 }, + { _("Exit"), 1 } }; p = prompt_new(_("Are you sure you want to exit Openbox?"), |
