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_);
}