diff options
author | Hye Kyoung Hwang <cookie@samsung.com> | 2016-01-08 01:12:42 -0800 |
---|---|---|
committer | Hye Kyoung Hwang <cookie@samsung.com> | 2016-01-08 01:12:42 -0800 |
commit | d02a6b1dd3584817ea3ade85f5cea5a086734612 (patch) | |
tree | 69db2eadc211b10bc09d573ac963c27bc5ce8630 /services/SettingsUI | |
parent | beff0b3842abe8aef9d261e7d21e62fbb78087c8 (diff) | |
download | browser-d02a6b1dd3584817ea3ade85f5cea5a086734612.tar.gz browser-d02a6b1dd3584817ea3ade85f5cea5a086734612.tar.bz2 browser-d02a6b1dd3584817ea3ade85f5cea5a086734612.zip |
It have the build error in TV
Revert "Translation script"
This reverts commit beff0b3842abe8aef9d261e7d21e62fbb78087c8.
Change-Id: Idb8f5c22d714fc425cd1d7ace72c3aa1d5100385
Diffstat (limited to 'services/SettingsUI')
-rw-r--r-- | services/SettingsUI/AutoFillForm/AutoFillFormComposeView.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/services/SettingsUI/AutoFillForm/AutoFillFormComposeView.cpp b/services/SettingsUI/AutoFillForm/AutoFillFormComposeView.cpp index f470a04b..aab211cb 100644 --- a/services/SettingsUI/AutoFillForm/AutoFillFormComposeView.cpp +++ b/services/SettingsUI/AutoFillForm/AutoFillFormComposeView.cpp @@ -18,7 +18,6 @@ #include "AutoFillFormComposeView.h" #include "AutoFillFormListView.h" #include "BrowserLogger.h" -#include "app_i18n.h" #include <Ecore.h> #include <Elementary.h> @@ -288,11 +287,11 @@ char *AutoFillFormComposeView::__text_get_cb(void* data, Evas_Object* /*obj*/, c if (type == profile_composer_title_full_name) return strdup("Full Name" /*BR_STRING_AUTO_FILL_DATA_FULL_NAME*/); else if (type == profile_composer_title_company_name) - return strdup(_("IDS_BR_BODY_COMPANY_NAME_ABB") /*BR_STRING_AUTO_FILL_DATA_COMPANY_NAME*/); + return strdup("Company name" /*BR_STRING_AUTO_FILL_DATA_COMPANY_NAME*/); else if (type == profile_composer_title_address_line_1) - return strdup(_("IDS_BR_BODY_ADDRESS_LINE_1_ABB") /*BR_STRING_AUTO_FILL_DATA_ADDRESS_LINE_1*/); + return strdup("Address line 1" /*BR_STRING_AUTO_FILL_DATA_ADDRESS_LINE_1*/); else if (type == profile_composer_title_address_line_2) - return strdup(_("IDS_BR_BODY_ADDRESS_LINE_2_ABB") /*BR_STRING_AUTO_FILL_DATA_ADDRESS_LINE_2*/); + return strdup("Address line 2" /*BR_STRING_AUTO_FILL_DATA_ADDRESS_LINE_2*/); else if (type == profile_composer_title_city_town) return strdup("City town" /*BR_STRING_TOWN_AUTO_FILL_CITY_COUNTY*/); else if (type == profile_composer_title_county_region) @@ -302,9 +301,9 @@ char *AutoFillFormComposeView::__text_get_cb(void* data, Evas_Object* /*obj*/, c else if (type == profile_composer_title_country) return strdup("Country" /*BR_STRING_AUTO_FILL_DATA_COUNTRY*/); else if (type == profile_composer_title_phone) - return strdup(_("IDS_BR_BODY_PHONE") /*BR_STRING_AUTO_FILL_DATA_PHONE*/); + return strdup("Phone" /*BR_STRING_AUTO_FILL_DATA_PHONE*/); else if (type == profile_composer_title_email) - return strdup(_("IDS_BR_OPT_SENDURLVIA_EMAIL") /*BR_STRING_AUTO_FILL_DATA_EMAIL*/); + return strdup("Email" /*BR_STRING_AUTO_FILL_DATA_EMAIL*/); } return NULL; |