summaryrefslogtreecommitdiff
path: root/src/fileselection.c
diff options
context:
space:
mode:
authorArx Cruz <acruz@redhat.com>2015-04-21 13:51:23 +0200
committerArx Cruz <acruz@redhat.com>2015-04-21 13:51:23 +0200
commita0fa643f1c980e8a70938d977600f935b9c215f6 (patch)
treefc05bba2f68a6f6bb0accbf25405e6ee4f55d216 /src/fileselection.c
parentADD gchar **extra_label TO struct ZenityData (diff)
parentsrc/tree.c: avoid a compilation warning (diff)
downloadzenity-a0fa643f1c980e8a70938d977600f935b9c215f6.tar.gz
zenity-a0fa643f1c980e8a70938d977600f935b9c215f6.tar.bz2
zenity-a0fa643f1c980e8a70938d977600f935b9c215f6.zip
Merge branch 'jjardon/no_deprecated'
Conflicts: src/msg.c
Diffstat (limited to 'src/fileselection.c')
-rw-r--r--src/fileselection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileselection.c b/src/fileselection.c
index fbf0e5de..3ccd11dd 100644
--- a/src/fileselection.c
+++ b/src/fileselection.c
@@ -52,8 +52,8 @@ void zenity_fileselection (ZenityData *data, ZenityFileData *file_data)
dialog = gtk_file_chooser_dialog_new (NULL, NULL,
action,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
- GTK_STOCK_OK, GTK_RESPONSE_OK,
+ _("_Cancel"), GTK_RESPONSE_CANCEL,
+ _("_OK"), GTK_RESPONSE_OK,
NULL);
gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
bgstack15