change some phrases and words 42/78842/1 accepted/tizen/mobile/20160707.114138 submit/tizen/20160707.091123
authorKyoungyong Lee <bluevox@naver.com>
Thu, 7 Jul 2016 05:48:33 +0000 (14:48 +0900)
committerKyoungyong Lee <bluevox@naver.com>
Thu, 7 Jul 2016 05:48:38 +0000 (14:48 +0900)
Change-Id: I11ce9586815b8413ab6f2907bcaaf5cb7cb9b739

ui/include/privacy_setting.h
ui/src/privacy_guard_list_view.c
ui/src/privacy_guard_package_list_view.c
ui/src/privacy_menu_view.c

index 2bc91b81d7204b126529911c67dc2c06688b9a9d..3aaabf434dc8dfa3fe3d3d9a025d9fb5e2ac4d54 100755 (executable)
@@ -30,7 +30,7 @@
 #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;
index 1aa17f9e1b79f1775413d7ee21d030b517a76c3a..50e335e46b83a34f2fc109300205d96fb604107e 100755 (executable)
@@ -88,7 +88,7 @@ void create_privacy_guard_list_view(struct app_data_s *ad)
        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);
 }
index 9bffe03b8f4ef0920e313847fcab858bb3041619..399e92887584a12eef1d1106f214036f3380553e 100755 (executable)
@@ -174,7 +174,7 @@ void create_privacy_guard_package_list_view(struct app_data_s* ad)
                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);
 
index 9dc6cd19b44d716f6103777c6ef2e08e52f5da3f..b550369d55b47304a637c48c8d8a379d2b4310a7 100755 (executable)
@@ -72,7 +72,7 @@ static void menu_selected_cb(void *data, Evas_Object *obj, void *event_info)
 
        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);
@@ -90,7 +90,7 @@ void create_privacy_menu_view(struct app_data_s *ad)
        /* 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";