WorldClock: add menu translation 64/125964/1
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Wed, 19 Apr 2017 07:52:47 +0000 (09:52 +0200)
committerLukasz Stanislawski <l.stanislaws@samsung.com>
Wed, 19 Apr 2017 07:52:47 +0000 (09:52 +0200)
Change-Id: Ieb273628e476dbd2b97fb27ae4038cdce3f140b7

clock/src/View/WorldClockView.cpp

index 54507ead1e334388b3c810ed9149b03739c4d017..fafc6387227b33a2d0e1b9f2c84684026273f8a3 100644 (file)
@@ -383,9 +383,11 @@ void WorldClockView::ShowMorePopup(MoreMenuOptions options)
        evas_object_show(list);
 
        if (options & MoreMenuOptions::DELETE_OPTION_ENABLED)
-               elm_list_item_append(list, "Delete", NULL, NULL, MorePopupDeleteItemCallback, this);
+               elm_list_item_append(list, Translate::Sprintf("IDS_COM_SK_DELETE").c_str(),
+                                     NULL, NULL, MorePopupDeleteItemCallback, this);
        if (options & MoreMenuOptions::REORDER_OPTION_ENABLED)
-               elm_list_item_append(list, "Reorder", NULL, NULL, MorePopupReorderItemCallback, this);
+               elm_list_item_append(list, Translate::Sprintf("IDS_CLOCK_HEADER_REORDER_ABB").c_str(),
+                                     NULL, NULL, MorePopupReorderItemCallback, this);
        elm_object_content_set(more_popup_, list);
        evas_object_show(more_popup_);
 }