#include <app.h>
#define PRIVACY_MENU_SETTING "Privacy Setting"
-#define PRIVACY_MENU_GUARD_SETTING "Privacy Usage"
+#define PRIVACY_MENU_ACCESS "Privacy Access"
struct app_data_s {
Evas_Object *parent_layout;
evas_object_show(genlist);
/* Change "Privacy Setting" to proper DID : use dgettext() */
- Elm_Object_Item *nf_it = elm_naviframe_item_push(ad->nf, PRIVACY_MENU_GUARD_SETTING, common_back_btn_add(ad), NULL, genlist, NULL);
+ Elm_Object_Item *nf_it = elm_naviframe_item_push(ad->nf, PRIVACY_MENU_ACCESS, common_back_btn_add(ad), NULL, genlist, NULL);
elm_object_item_domain_text_translatable_set(nf_it, PACKAGE, EINA_TRUE);
}
pg_item_data_s *description_item = calloc(sizeof(pg_item_data_s), 1);
description_item->index = 0;
char tmp[256] = {'\0',};
- snprintf(tmp, sizeof(tmp), "<wrap=word><ellipsis=-1.0><font_size=30><color=#A9A9A9FF>The apps checked below record the number of privacy usages.</color></font_size></ellipsis></wrap>");
+ snprintf(tmp, sizeof(tmp), "<wrap=word><ellipsis=-1.0><font_size=30><color=#A9A9A9FF>The recording of privacy access will be enabled for the selected apps.</color></font_size></ellipsis></wrap>");
description_item->label = strdup(tmp);
it = elm_genlist_item_append(genlist, itc, description_item, NULL, ELM_GENLIST_ITEM_NONE, _privacy_package_selected_cb, description_item);
if (strstr(selected_id->title, PRIVACY_MENU_SETTING) != NULL) {
create_privacy_list_view(ad);
- } else if (strstr(selected_id->title, PRIVACY_MENU_GUARD_SETTING) != NULL) {/* privacy guard */
+ } else if (strstr(selected_id->title, PRIVACY_MENU_ACCESS) != NULL) {/* privacy guard */
create_privacy_guard_list_view(ad);
} else {
LOGE("selected_id->title = %s, no matching menu", selected_id->title);
/* Set privacy menu list */
privacy_menu_list = NULL;
privacy_menu_list = g_list_append(privacy_menu_list, PRIVACY_MENU_SETTING);
- privacy_menu_list = g_list_append(privacy_menu_list, PRIVACY_MENU_GUARD_SETTING);
+ privacy_menu_list = g_list_append(privacy_menu_list, PRIVACY_MENU_ACCESS);
Elm_Genlist_Item_Class *itc = elm_genlist_item_class_new();
itc->item_style = "default";