Fix translate issue for quickpanel 80/68880/2 accepted/tizen/common/20160530.132231 accepted/tizen/mobile/20160512.051243 accepted/tizen/wearable/20160512.051221 submit/tizen_common/20160511.101315 submit/tizen_common/20160511.151915 submit/tizen_common/20160530.122415 submit/tizen_mobile/20160510.080826 submit/tizen_tv/20160510.080833 submit/tizen_wearable/20160510.080841
authormin7.choi <min7.choi@samsung.com>
Tue, 10 May 2016 07:25:47 +0000 (16:25 +0900)
committerMinseok Choi <min7.choi@samsung.com>
Tue, 10 May 2016 07:59:11 +0000 (00:59 -0700)
[issue] http://suprem.sec.samsung.net/jira/browse/TSAM-2558
[Problem] not translate
[Solution] changed statusTextId
[Verify] test after install again in 0502.2 binary

Change-Id: Ia89c89edcb6a3e6f74fe39a981cbda1491c8c6db
Signed-off-by: min7.choi <min7.choi@samsung.com>
.gbs.conf
CMakeLists.txt
packaging/org.tizen.download-manager.spec
src/download-manager-notification.cpp

index 949c671..54368f8 100755 (executable)
--- a/.gbs.conf
+++ b/.gbs.conf
@@ -214,12 +214,16 @@ url = http://download.tizen.org/snapshots/tizen/mobile/latest/repos/arm-wayland/
 obs = obs.tizen_v3.0
 repos = repo.public_3.0_base_arm_mirror, repo.tzm0_v3.0_arm-wayland_mirror
 buildroot = ~/GBS-ROOT-3.0-MOBILE-arm-wayland
+user = min7.choi
+passwdx = QlpoOTFBWSZTWcZ0gRoAAAIJgHQAIBQcACAAIgaGmEAMKNjFx9MXckU4UJDGdIEa
 
 [repo.public_3.0_base_arm_mirror]
-url = http://10.113.63.117/snapshots/base/latest/repos/arm/packages/
+#url = http://10.113.63.117/snapshots/base/latest/repos/arm/packages/
+url = http://165.213.149.200/download/public_mirror/tizen/base/latest/repos/arm/packages/
 
 [repo.tzm0_v3.0_arm-wayland_mirror]
-url = http://10.113.63.117/snapshots/mobile/latest/repos/target-TM1/packages/
+#url = http://10.113.63.117/snapshots/mobile/latest/repos/target-TM1/packages/
+url = http://165.213.149.200/download/public_mirror/tizen/mobile/latest/repos/target-TM1/packages/
 
 
 
index deb3457..62dc35f 100755 (executable)
@@ -22,7 +22,7 @@ ENDIF(TIZEN_2_3_UX)
 SET(IMAGEDIR "${RESDIR}/images")
 SET(DATADIR "${PREFIX}/data")
 SET(DBDATADIR "/home/owner/apps_rw/${PKGNAME}/data")
-SET(LOCALEDIR "${RESDIR}/locale")
+SET(LOCALEDIR "${PREFIX}/shared/res/locale")
 SET(ICONDIR "/usr/share/icons/default/small/")
 SET(HISTORYDB ".download-history.db")
 
index dd746bb..d6f5b36 100755 (executable)
@@ -51,7 +51,7 @@ Application for support of the content download
 %define _edjedir %{_res_path}/edje
 %define _tabledir %{_res_path}/tables
 %endif
-%define _localedir %{_res_path}/locale
+%define _localedir %{_default_path}/shared/res/locale
 %define _pkgxmldir /usr/share/packages
 %define _icondir /usr/share/icons/default/small
 %define _licensedir /usr/share/license
index ad780e5..35e7329 100755 (executable)
@@ -375,10 +375,10 @@ notification_h DownloadNoti::createNoti(NOTIFICATION_TYPE::TYPE type)
 
        if (NOTIFICATION_TYPE::NOTI_COMPLETED == type) {
                statusText = DM_POP_TEXT_DOWNLOAD_COMPLETE;
-               statusTextId = __("IDS_DM_HEADER_DOWNLOAD_COMPLETE");
+               statusTextId = "IDS_DM_HEADER_DOWNLOAD_COMPLETE";
        } else if (NOTIFICATION_TYPE::NOTI_FAILED == type) {
                statusText = DM_POP_TEXT_DOWNLOAD_FAILED;
-               statusTextId = __("IDS_DM_BODY_DOWNLOAD_FAILED_M_STATUS_ABB");
+               statusTextId = "IDS_DM_BODY_DOWNLOAD_FAILED_M_STATUS_ABB";
        }
 
 #ifdef _TIZEN_2_3_UX