From a0e5015be79b7eb1b700c1a472fe939dd6933d93 Mon Sep 17 00:00:00 2001 From: "sung1103.park" Date: Wed, 29 Aug 2012 18:38:10 +0900 Subject: [PATCH] add language files --- daemon/indicator_ui.h | 3 +++ modules/clock/clock.c | 4 ++-- po/CMakeLists.txt | 7 +++++-- po/ar.po | 6 ++++++ po/az.po | 6 ++++++ po/bg.po | 6 ++++++ po/ca.po | 6 ++++++ po/cs.po | 6 ++++++ po/da.po | 6 ++++++ po/de_DE.po | 9 --------- po/el_GR.po | 9 --------- po/en.po | 9 --------- po/en_PH.po | 6 ++++++ po/en_US.po | 6 ++++++ po/es_ES.po | 9 --------- po/es_US.po | 6 ++++++ po/et.po | 6 ++++++ po/eu.po | 6 ++++++ po/fi.po | 6 ++++++ po/fr_CA.po | 6 ++++++ po/fr_FR.po | 9 --------- po/ga.po | 6 ++++++ po/gl.po | 6 ++++++ po/hi.po | 6 ++++++ po/hr.po | 6 ++++++ po/hu.po | 6 ++++++ po/hy.po | 6 ++++++ po/is.po | 6 ++++++ po/it_IT.po | 9 --------- po/ja_JP.po | 13 ++----------- po/ka.po | 6 ++++++ po/kk.po | 6 ++++++ po/ko_KR.po | 9 --------- po/lt.po | 6 ++++++ po/lv.po | 6 ++++++ po/mk.po | 6 ++++++ po/nb.po | 6 ++++++ po/nl_NL.po | 9 --------- po/pl.po | 6 ++++++ po/pt_BR.po | 6 ++++++ po/pt_PT.po | 9 --------- po/ro.po | 6 ++++++ po/ru_RU.po | 9 --------- po/sk.po | 6 ++++++ po/sl.po | 6 ++++++ po/sr.po | 6 ++++++ po/sv.po | 6 ++++++ po/tr_TR.po | 9 --------- po/uk.po | 6 ++++++ po/uz.po | 6 ++++++ po/zh_CN.po | 13 ++----------- po/zh_HK.po | 9 --------- po/zh_SG.po | 6 ++++++ po/zh_TW.po | 13 ++----------- 54 files changed, 232 insertions(+), 145 deletions(-) create mode 100755 po/ar.po create mode 100755 po/az.po create mode 100755 po/bg.po create mode 100755 po/ca.po create mode 100755 po/cs.po create mode 100755 po/da.po create mode 100755 po/en_PH.po create mode 100755 po/en_US.po create mode 100755 po/es_US.po create mode 100755 po/et.po create mode 100755 po/eu.po create mode 100755 po/fi.po create mode 100755 po/fr_CA.po create mode 100755 po/ga.po create mode 100755 po/gl.po create mode 100755 po/hi.po create mode 100755 po/hr.po create mode 100755 po/hu.po create mode 100755 po/hy.po create mode 100755 po/is.po create mode 100755 po/ka.po create mode 100755 po/kk.po create mode 100755 po/lt.po create mode 100755 po/lv.po create mode 100755 po/mk.po create mode 100755 po/nb.po create mode 100755 po/pl.po create mode 100755 po/pt_BR.po create mode 100755 po/ro.po create mode 100755 po/sk.po create mode 100755 po/sl.po create mode 100755 po/sr.po create mode 100755 po/sv.po create mode 100755 po/uk.po create mode 100755 po/uz.po create mode 100755 po/zh_SG.po diff --git a/daemon/indicator_ui.h b/daemon/indicator_ui.h index 2ceabee..2733ced 100755 --- a/daemon/indicator_ui.h +++ b/daemon/indicator_ui.h @@ -42,6 +42,9 @@ #define ICON_THEME_FILE EDJDIR"/"PACKAGE"_icon_theme.edj" #define ICON_NONFIXED_THEME_FILE EDJDIR"/"PACKAGE"_icon_nonfixed_theme.edj" +#define _S(str) dgettext("sys_string", str) +#define _(str) gettext(str) + #define HOME_SCREEN_NAME "com.samsung.live-magazine" #define MENU_SCREEN_NAME "com.samsung.menu-screen" #define LOCK_SCREEN_NAME "com.samsung.idle-lock" diff --git a/modules/clock/clock.c b/modules/clock/clock.c index b80bf24..e80aa2c 100755 --- a/modules/clock/clock.c +++ b/modules/clock/clock.c @@ -107,11 +107,11 @@ static void indicator_clock_changed_cb(void *data) if (ts->tm_hour >= 0 && ts->tm_hour < 12) snprintf(ampm_buf, sizeof(ampm_buf), LABEL_STRING, AMPM_FONT_SIZE, - "AM"); + _("IDS_COM_POP_AM_M_ABB")); else snprintf(ampm_buf, sizeof(ampm_buf), LABEL_STRING, AMPM_FONT_SIZE, - "PM"); + _("IDS_COM_POP_PM_M_ABB")); strftime(time_str, sizeof(time_str), "%I:%M", ts); } else { strftime(time_str, sizeof(time_str), "%H:%M", ts); diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index 1957cf7..1697e96 100755 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -1,7 +1,10 @@ # for i18n -SET(POFILES en.po nl_NL.po de_DE.po zh_HK.po zh_CN.po ru_RU.po ko_KR.po zh_TW.po -ja_JP.po es_ES.po el_GR.po it_IT.po tr_TR.po pt_PT.po fr_FR.po) +SET(POFILES et.po is.po hy.po hu.po hr.po hi.po nb.po ga.po fr_FR.po fr_CA.po fi.po +eu.po it_IT.po es_US.po es_ES.po en_US.po en_PH.po en.po el_GR.po de_DE.po da.po +ca.po bg.po az.po ar.po ja_JP.po zh_TW.po zh_SG.po zh_HK.po zh_CN.po uz.po cs.po +uk.po tr_TR.po sv.po sr.po sl.po sk.po ru_RU.po ka.po pt_PT.po pt_BR.po pl.po +nl_NL.po gl.po mk.po lv.po lt.po ko_KR.po kk.po ro.po) SET(MSGFMT "/usr/bin/msgfmt") diff --git a/po/ar.po b/po/ar.po new file mode 100755 index 0000000..33733d9 --- /dev/null +++ b/po/ar.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "ص" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "م" + diff --git a/po/az.po b/po/az.po new file mode 100755 index 0000000..fc600fa --- /dev/null +++ b/po/az.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "Günortadan əvvəl" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "Günortadan sonra" + diff --git a/po/bg.po b/po/bg.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/ca.po b/po/ca.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/cs.po b/po/cs.po new file mode 100755 index 0000000..65a8b16 --- /dev/null +++ b/po/cs.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "dop." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "odp." + diff --git a/po/da.po b/po/da.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/da.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/de_DE.po b/po/de_DE.po index b1d061f..f737ee8 100755 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Keine SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Suche" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Kein Netz" - diff --git a/po/el_GR.po b/po/el_GR.po index 17ce6af..18373d2 100755 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Δεν βρέθηκε SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Αναζήτηση" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "ΠΜ" msgid "IDS_COM_POP_PM_M_ABB" msgstr "ΜΜ" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Μη διαθέσιμη υπηρεσία" - diff --git a/po/en.po b/po/en.po index 9a46113..f737ee8 100755 --- a/po/en.po +++ b/po/en.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "No SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Searching" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "No service" - diff --git a/po/en_PH.po b/po/en_PH.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/en_PH.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/en_US.po b/po/en_US.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/en_US.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/es_ES.po b/po/es_ES.po index fa3c3a3..f737ee8 100755 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "No hay SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Buscando" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Sin servicio" - diff --git a/po/es_US.po b/po/es_US.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/es_US.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/et.po b/po/et.po new file mode 100755 index 0000000..a370d8a --- /dev/null +++ b/po/et.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "EL" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PL" + diff --git a/po/eu.po b/po/eu.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/fi.po b/po/fi.po new file mode 100755 index 0000000..9919049 --- /dev/null +++ b/po/fi.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AP" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "IP" + diff --git a/po/fr_CA.po b/po/fr_CA.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/fr_CA.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/fr_FR.po b/po/fr_FR.po index aa8b7c2..f737ee8 100755 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Pas de carte SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Recherche" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Aucun service" - diff --git a/po/ga.po b/po/ga.po new file mode 100755 index 0000000..e7a20cf --- /dev/null +++ b/po/ga.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "R.N." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "I.N." + diff --git a/po/gl.po b/po/gl.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/gl.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/hi.po b/po/hi.po new file mode 100755 index 0000000..df239eb --- /dev/null +++ b/po/hi.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "ए ऍम" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/hr.po b/po/hr.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/hr.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/hu.po b/po/hu.po new file mode 100755 index 0000000..a7144c9 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "de." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "du." + diff --git a/po/hy.po b/po/hy.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/hy.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/is.po b/po/is.po new file mode 100755 index 0000000..948f57b --- /dev/null +++ b/po/is.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "f.h." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "e.h." + diff --git a/po/it_IT.po b/po/it_IT.po index 39a8463..f737ee8 100755 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Nessuna SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Ricerca" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Nessun servizio" - diff --git a/po/ja_JP.po b/po/ja_JP.po index d4e40f5..f737ee8 100755 --- a/po/ja_JP.po +++ b/po/ja_JP.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "SIM​が​ありません" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "検索中" - msgid "IDS_COM_POP_AM_M_ABB" -msgstr "午前" +msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" -msgstr "午後" - -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "サービス​が​利用​できません" +msgstr "PM" diff --git a/po/ka.po b/po/ka.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/ka.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/kk.po b/po/kk.po new file mode 100755 index 0000000..5da92b7 --- /dev/null +++ b/po/kk.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "ТД" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "TK" + diff --git a/po/ko_KR.po b/po/ko_KR.po index 365b696..3829da0 100755 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "SIM이 없습니다" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "검색 중..." - msgid "IDS_COM_POP_AM_M_ABB" msgstr "오전" msgid "IDS_COM_POP_PM_M_ABB" msgstr "오후" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "서비스 지역이 아닙니다" - diff --git a/po/lt.po b/po/lt.po new file mode 100755 index 0000000..b3a746d --- /dev/null +++ b/po/lt.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "АМ" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/lv.po b/po/lv.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/mk.po b/po/mk.po new file mode 100755 index 0000000..b3a746d --- /dev/null +++ b/po/mk.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "АМ" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/nb.po b/po/nb.po new file mode 100755 index 0000000..ebd3280 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "Formiddag" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "Ettermiddag" + diff --git a/po/nl_NL.po b/po/nl_NL.po index dc9d6a9..f737ee8 100755 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Geen SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Zoeken" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Geen netwerk" - diff --git a/po/pl.po b/po/pl.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/pl.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/pt_PT.po b/po/pt_PT.po index 2dde9b0..f737ee8 100755 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Sem SIM" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "A procurar" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Sem serviço" - diff --git a/po/ro.po b/po/ro.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/ro.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/ru_RU.po b/po/ru_RU.po index cf8f0b4..f737ee8 100755 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "Нет SIM-карты" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Поиск" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Нет сети" - diff --git a/po/sk.po b/po/sk.po new file mode 100755 index 0000000..65a8b16 --- /dev/null +++ b/po/sk.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "dop." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "odp." + diff --git a/po/sl.po b/po/sl.po new file mode 100755 index 0000000..313c31b --- /dev/null +++ b/po/sl.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "Dop." + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/sr.po b/po/sr.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/sv.po b/po/sv.po new file mode 100755 index 0000000..a99cad8 --- /dev/null +++ b/po/sv.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "FM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "EM" + diff --git a/po/tr_TR.po b/po/tr_TR.po index c82104e..f737ee8 100755 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "SIM yok" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "Aranıyor" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "AM" msgid "IDS_COM_POP_PM_M_ABB" msgstr "PM" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "Servis yok" - diff --git a/po/uk.po b/po/uk.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/uz.po b/po/uz.po new file mode 100755 index 0000000..f737ee8 --- /dev/null +++ b/po/uz.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "AM" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "PM" + diff --git a/po/zh_CN.po b/po/zh_CN.po index d2ca0ea..a467f15 100755 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "无 SIM 卡" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "正在搜索" - msgid "IDS_COM_POP_AM_M_ABB" -msgstr "AM" +msgstr "上午" msgid "IDS_COM_POP_PM_M_ABB" -msgstr "PM" - -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "无服务" +msgstr "下午" diff --git a/po/zh_HK.po b/po/zh_HK.po index ddb9f8a..a467f15 100755 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "無 SIM 卡" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "正在搜尋" - msgid "IDS_COM_POP_AM_M_ABB" msgstr "上午" msgid "IDS_COM_POP_PM_M_ABB" msgstr "下午" -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "無服務" - diff --git a/po/zh_SG.po b/po/zh_SG.po new file mode 100755 index 0000000..a467f15 --- /dev/null +++ b/po/zh_SG.po @@ -0,0 +1,6 @@ +msgid "IDS_COM_POP_AM_M_ABB" +msgstr "上午" + +msgid "IDS_COM_POP_PM_M_ABB" +msgstr "下午" + diff --git a/po/zh_TW.po b/po/zh_TW.po index e5d4cca..a467f15 100755 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,15 +1,6 @@ -msgid "IDS_COM_BODY_NO_SIM" -msgstr "無 SIM 卡" - -msgid "IDS_COM_BODY_SEARCHING" -msgstr "正在搜尋" - msgid "IDS_COM_POP_AM_M_ABB" -msgstr "AM" +msgstr "上午" msgid "IDS_COM_POP_PM_M_ABB" -msgstr "PM" - -msgid "IDS_CALL_POP_NOSERVICE" -msgstr "無服務" +msgstr "下午" -- 2.7.4