From e8fee1ab3253e79e588d0ec0bcb00e39a758598c Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 14 Nov 2013 23:16:52 +0900 Subject: [PATCH] main: Dismiss -> Close for popup as it's common words for normal users. --- src/bin/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index d79e45a..3ad74c1 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -1452,7 +1452,7 @@ show_gui_help(Zone *zone) elm_object_content_set(popup, help); bt = elm_button_add(popup); - elm_object_text_set(bt, "Dismiss"); + elm_object_text_set(bt, "Close"); evas_object_smart_callback_add(bt, "clicked", _popup_dismiss_cb, popup); elm_object_part_content_set(popup, "button1", bt); @@ -1716,7 +1716,7 @@ _create_screenshot_notify_show(Zone *zone, double timeout, const char *msg) elm_box_pack_end(bx, o); o = elm_button_add(bx); - elm_object_text_set(o, "Dismiss"); + elm_object_text_set(o, "Close"); evas_object_smart_callback_add(o, "clicked", _create_screenshot_notify_dismiss_cb, notify); evas_object_show(o);