From cd7a7f9cd81ec863a4141712b3daf2aa09d2cc84 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Thu, 7 Sep 2017 17:07:40 +0900 Subject: [PATCH 01/16] Update package version to 0.1.170907 Change-Id: I35ee090d6dcb3ed528657b1e2b6afac07425a3d3 Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index 801deaf..e1ed2ee 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 8816db5..7770803 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.170904 +Version: 0.1.170907 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From 3526540a18c70afd9c305425a8f1163f786d2f92 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Mon, 11 Sep 2017 15:04:30 +0900 Subject: [PATCH 02/16] Fix build warning Change-Id: I94a806eec03070fa4f7a2b886592043cff3ef9f6 Signed-off-by: sungwook79.park --- CMakeLists.txt | 2 +- src/MoreOption.cpp | 4 ++-- src/w-input-keyboard.cpp | 9 +++++---- src/w-input-selector.cpp | 5 ++--- src/w-input-stt-voice.cpp | 20 -------------------- 5 files changed, 10 insertions(+), 30 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a2e1690..939043b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,7 +64,7 @@ FOREACH(flag ${INPUTDELEGATOR_PKGS_CFLAGS}) SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") ENDFOREACH(flag) -SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${EXTRA_CFLAGS} -fPIE -Wall") +SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${EXTRA_CFLAGS} -fPIE -Wall -Werror") #SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${EXTRA_CFLAGS} -finstrument-functions") SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g") SET(CMAKE_CXX_FLAGS_RELEASE "-O2 -g") diff --git a/src/MoreOption.cpp b/src/MoreOption.cpp index 39bc951..51089c1 100755 --- a/src/MoreOption.cpp +++ b/src/MoreOption.cpp @@ -153,8 +153,8 @@ MoreOption::MoreOption(Evas_Object *naviframe, void* voicedata) , more_option_layout(NULL) , item(NULL) , option_opened(EINA_FALSE) - , discard_popup_opened(EINA_FALSE) - , voicedata(voicedata) { + , voicedata(voicedata) + , discard_popup_opened(EINA_FALSE) { /** todo. implement constructor */ voice_input_back_agree = false; } diff --git a/src/w-input-keyboard.cpp b/src/w-input-keyboard.cpp index ba9a217..6c359c9 100755 --- a/src/w-input-keyboard.cpp +++ b/src/w-input-keyboard.cpp @@ -34,9 +34,9 @@ bool input_keyboard_init(app_control_h app_control) int ret = -1; char *default_text = NULL; char *guide_text = NULL; - char *return_key_type = "SEND"; + char *return_key_type = (char *)"SEND"; char *max_text_length = NULL; - char *cursor_position_set = "0"; + char *cursor_position_set = (char *)"0"; input_keyboard_deinit(); @@ -77,7 +77,7 @@ void input_keyboard_deinit(void) g_input_keyboard_data.default_text = NULL; g_input_keyboard_data.guide_text = NULL; - g_input_keyboard_data.return_key_type = "SEND"; + g_input_keyboard_data.return_key_type = (char *)"SEND"; g_input_keyboard_data.max_text_length = KEYBOARD_EDITOR_CHAR_COUNT_MAX; g_input_keyboard_data.cursor_position_set = 0; @@ -125,7 +125,8 @@ static void maxlength_cb(void *data, Evas_Object *obj, void *event_info) { LOGD("maxlength_cb : size = %d", KEYBOARD_EDITOR_CHAR_COUNT_MAX); char text[512]; - snprintf(text, sizeof(text), _(MAX_TEXT_LENGTH_REACH), g_input_keyboard_data.max_text_length); + const char *guide = _(MAX_TEXT_LENGTH_REACH); + snprintf(text, sizeof(text), guide, g_input_keyboard_data.max_text_length); show_popup_toast((const char *)text, false); } diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index 0bfbeff..05afb39 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -843,7 +843,6 @@ unsigned int _update_smartreply_items(void *user_data) App_Data* app_data; Elm_Object_Item *first; - Elm_Object_Item *menu; unsigned int i = 0; unsigned int len = 0; @@ -864,7 +863,7 @@ unsigned int _update_smartreply_items(void *user_data) /* Move to smartreply */ first = elm_genlist_first_item_get(app_data->genlist); - menu = elm_genlist_item_next_get(first); + elm_genlist_item_next_get(first); if (input_smartreply_is_enabled() == false) return item_size; @@ -885,7 +884,7 @@ unsigned int _update_smartreply_items(void *user_data) itc->func.del = NULL; for (i = 0; i < len; i++) { - char *reply = "hello"; + char *reply = (char *)"hello"; unsigned int j; bool matched; diff --git a/src/w-input-stt-voice.cpp b/src/w-input-stt-voice.cpp index 6f137e5..c01db72 100755 --- a/src/w-input-stt-voice.cpp +++ b/src/w-input-stt-voice.cpp @@ -70,8 +70,6 @@ static Elm_Genlist_Item_Class itc_title; static Elm_Genlist_Item_Class itc_1text; static Elm_Genlist_Item_Class itc_2text; -static bool sroll_bar_show = false; - static bool g_send_button_clicked = false; @@ -416,17 +414,6 @@ void start_by_press(VoiceData *voicedata) edje_object_signal_emit(_EDJ(voicedata->layout_main), "mouse,clicked,1", "background"); } -static void on_mic_button_press_cb(void *data, Evas_Object *obj, void *event_info) -{ - LOGD("on_mic_button_press_cb"); - VoiceData *voicedata = (VoiceData *)data; - if (!voicedata) return; - - edje_object_signal_emit(_EDJ(voicedata->layout_main), "mouse,clicked,1", "background"); - - return; -} - static void on_confirm_button_clicked_cb(void *data, Evas_Object *obj, void *event_info) { if (!data) @@ -479,13 +466,6 @@ static void on_confirm_button_clicked_cb(void *data, Evas_Object *obj, void *eve return; } -static void -_panel_cue_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source) -{ - PRINTFUNC(DLOG_DEBUG, "left cue clicked!!"); - on_confirm_button_clicked_cb(data, NULL, NULL); -} - void stt_feedback_initialize() { int ret = 0; -- 2.7.4 From 3cf38be1ab7362b33156f698c03a74a0678fb8cd Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Mon, 11 Sep 2017 20:24:36 +0900 Subject: [PATCH 03/16] Update package version to 0.1.170911 Change-Id: I3fd3e16da7f5255ddd0b504c02d62537ff3e67f5 Signed-off-by: Jihoon Kim --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index e1ed2ee..3a9ab18 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 7770803..373aa7a 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.170907 +Version: 0.1.170911 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From 88e6d5b32ebf1d2a5eea1d50cb60330f9c423145 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 20 Sep 2017 10:37:15 +0900 Subject: [PATCH 04/16] Use SECURE_LOGD Change-Id: Ieab397a6843878e6e741ec401766451a3ddfd6d8 Signed-off-by: sungwook79.park --- src/w-input-keyboard.cpp | 2 +- src/w-input-selector.cpp | 2 +- src/w-input-stt-voice.cpp | 10 +++++----- src/w-input-template.cpp | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/w-input-keyboard.cpp b/src/w-input-keyboard.cpp index 6c359c9..cbb816d 100755 --- a/src/w-input-keyboard.cpp +++ b/src/w-input-keyboard.cpp @@ -94,7 +94,7 @@ void exit_keyboard() } const char *getText = elm_entry_entry_get(entry); - LOGD("button key clicked!! : getText = %s", getText); + SECURE_LOGD("button key clicked!! : getText = %s", getText); char cursorPosition[512]; snprintf(cursorPosition, sizeof(cursorPosition), "%d", elm_entry_cursor_pos_get(entry)); diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index 05afb39..53576e0 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -894,7 +894,7 @@ unsigned int _update_smartreply_items(void *user_data) reply = input_smartreply_get_nth_item(i, &type); if (reply == NULL) continue; - PRINTFUNC(DLOG_DEBUG, "SmartReply = [%d]%s", i, reply); + SECURE_LOGD("SmartReply = [%d]%s", i, reply); for (j = 0; j < template_list.size(); j++) { const char *template_str; diff --git a/src/w-input-stt-voice.cpp b/src/w-input-stt-voice.cpp index c01db72..7ce7973 100755 --- a/src/w-input-stt-voice.cpp +++ b/src/w-input-stt-voice.cpp @@ -45,8 +45,8 @@ using namespace std; elm_genlist_item_append(obj, &(style), (void *)(uintptr_t)index, NULL, ELM_GENLIST_ITEM_NONE, cb, udata) #define VIRTUAL_TEXT_AREA_FONT_STYLE \ - "DEFAULT='font=Tizen:style=Regular font_size=32 color=#FFFFFF color_class=AT013 text_class=tizen wrap=mixed align=center' \ - newline='br' b='+ font=Tizen:style=Bold'link='+ underline=on underline_color=#FFFFFF'" + "DEFAULT = 'font = Tizen:style = Regular font_size = 32 color = #FFFFFF color_class = AT013 text_class = tizen wrap = mixed align = center' \ + newline = 'br' b = '+ font = Tizen:style = Bold'link = '+ underline = on underline_color = #FFFFFF'" #define TOP_PADDING_AREA 120 #define BOTTOM_PADDING_AREA 81 // Bottom Button H 78 + margin 3 @@ -367,7 +367,7 @@ void voice_get_string(const char *keyValue, _VoiceData *voicedata) strbuf = elm_entry_utf8_to_markup(keyValue); - PRINTFUNC(DLOG_DEBUG, "text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result); + SECURE_LOGD("text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result); if(strbuf){ if(voicedata->partial_result){ // partial_result is not Null so replace @@ -451,7 +451,7 @@ static void on_confirm_button_clicked_cb(void *data, Evas_Object *obj, void *eve result_text += " "; } - PRINTFUNC(DLOG_DEBUG, "result_text = %s", result_text.c_str()); + SECURE_LOGD("result_text = %s", result_text.c_str()); char *filePath = NULL; voice_recorder *vr = _voice_recorder_get_data(); @@ -640,7 +640,7 @@ static void set_cue_text(void *data) static void set_guide_text(VoiceData *vd, const char* text, bool translatable) { - PRINTFUNC(DLOG_DEBUG, "text = %s", text); + SECURE_LOGD("text = %s", text); if (!vd) return; diff --git a/src/w-input-template.cpp b/src/w-input-template.cpp index adb23e1..97bbbe2 100755 --- a/src/w-input-template.cpp +++ b/src/w-input-template.cpp @@ -159,7 +159,7 @@ static bool input_template_init_db_util(void) data.use_gettext = true; data.text = (char *)sqlite3_column_text(stmt, 3); - PRINTFUNC(DLOG_DEBUG, "db text %s", data.text.c_str()); + SECURE_LOGD("db text %s", data.text.c_str()); g_input_template.template_list.push_back(data); ret = sqlite3_step(stmt); -- 2.7.4 From 29be3daab7230287e415e8f86a84511bb3865b7c Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 20 Sep 2017 11:37:38 +0900 Subject: [PATCH 05/16] Update package version to 0.1.170920 Change-Id: Ibce02c1f68f065738b24106e142bcb73d3bc92cc Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index 3a9ab18..0d10d47 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 373aa7a..7655775 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.170911 +Version: 0.1.170920 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From c467addb58dc254d7844f105a57ee7dcf81a7a15 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 11 Oct 2017 15:16:40 +0900 Subject: [PATCH 06/16] Support localization Change-Id: Id076e43a98940ed3eac66e6a1dc3bd62ee09d8a1 Signed-off-by: sungwook79.park --- po/ar.po | 11 ++++++++++- po/as.po | 8 ++++++++ po/az.po | 11 ++++++++++- po/be_BY.po | 8 ++++++++ po/bg.po | 11 ++++++++++- po/bn.po | 8 ++++++++ po/bn_BD.po | 8 ++++++++ po/ca.po | 11 ++++++++++- po/cs.po | 11 ++++++++++- po/da.po | 11 ++++++++++- po/de.po | 11 ++++++++++- po/el_GR.po | 11 ++++++++++- po/en.po | 11 ++++++++++- po/en_PH.po | 11 ++++++++++- po/en_US.po | 11 ++++++++++- po/es_ES.po | 11 ++++++++++- po/es_US.po | 11 ++++++++++- po/et.po | 11 ++++++++++- po/eu.po | 11 ++++++++++- po/fa.po | 8 ++++++++ po/fi.po | 11 ++++++++++- po/fr.po | 11 ++++++++++- po/fr_CA.po | 11 ++++++++++- po/ga.po | 11 ++++++++++- po/gl.po | 11 ++++++++++- po/gu.po | 8 ++++++++ po/he.po | 8 ++++++++ po/hi.po | 11 ++++++++++- po/hr.po | 11 ++++++++++- po/hu.po | 11 ++++++++++- po/hy.po | 11 ++++++++++- po/id.po | 8 ++++++++ po/is.po | 11 ++++++++++- po/it_IT.po | 11 ++++++++++- po/ja_JP.po | 11 ++++++++++- po/ka.po | 11 ++++++++++- po/kk.po | 9 +++++++++ po/km.po | 8 ++++++++ po/kn.po | 8 ++++++++ po/ko_KR.po | 11 ++++++++++- po/ky_KG.po | 8 ++++++++ po/lo.po | 8 ++++++++ po/lt.po | 11 ++++++++++- po/lv.po | 11 ++++++++++- po/mk.po | 11 ++++++++++- po/ml.po | 8 ++++++++ po/mn_MN.po | 8 ++++++++ po/mr.po | 8 ++++++++ po/ms.po | 8 ++++++++ po/my_MM.po | 8 ++++++++ po/my_ZG.po | 8 ++++++++ po/nb.po | 11 ++++++++++- po/ne.po | 8 ++++++++ po/nl.po | 11 ++++++++++- po/or.po | 9 +++++++++ po/pa.po | 8 ++++++++ po/pl.po | 11 ++++++++++- po/pl_SP.po | 8 ++++++++ po/pt_BR.po | 11 ++++++++++- po/pt_PT.po | 11 ++++++++++- po/ro.po | 11 ++++++++++- po/ru_RU.po | 11 ++++++++++- po/si.po | 8 ++++++++ po/sk.po | 11 ++++++++++- po/sl.po | 11 ++++++++++- po/sq.po | 8 ++++++++ po/sr.po | 11 ++++++++++- po/sv.po | 11 ++++++++++- po/ta.po | 8 ++++++++ po/te.po | 8 ++++++++ po/tg_TJ.po | 8 ++++++++ po/th.po | 8 ++++++++ po/tk_TM.po | 8 ++++++++ po/tl.po | 8 ++++++++ po/tr_TR.po | 11 ++++++++++- po/uk.po | 11 ++++++++++- po/ur.po | 8 ++++++++ po/uz.po | 11 ++++++++++- po/vi.po | 8 ++++++++ po/zh_CN.po | 11 ++++++++++- po/zh_HK.po | 11 ++++++++++- po/zh_TW.po | 11 ++++++++++- src/w-input-emoticon.cpp | 6 +++--- src/w-input-keyboard.cpp | 4 ++-- src/w-input-selector.cpp | 13 ++----------- 85 files changed, 763 insertions(+), 65 deletions(-) diff --git a/po/ar.po b/po/ar.po index 0283829..c6b1212 100644 --- a/po/ar.po +++ b/po/ar.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "تأكد من أن تطبيق %s قيد التفعيل على هاتفك." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "تم تجاوز الحد الأقصى لعدد الأحرف (%d)." \ No newline at end of file +msgstr "تم تجاوز الحد الأقصى لعدد الأحرف (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "الرسم" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "رموز الإيموجي" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "الحديثة" \ No newline at end of file diff --git a/po/as.po b/po/as.po index a70fa1d..9efef62 100644 --- a/po/as.po +++ b/po/as.po @@ -256,3 +256,11 @@ msgstr "গীয়েৰ ইনপুট" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "আপোনাৰ ফোনত %s এপ সক্ৰিয় থকাটো নিশ্চিত কৰক।" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "অংকন" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ইম'জিচ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "শেহতীয়া" \ No newline at end of file diff --git a/po/az.po b/po/az.po index 7d59e8e..0104414 100644 --- a/po/az.po +++ b/po/az.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Telefonda %s proqramının aktiv olduğundan əmin ol." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Simvolların sayı maksimumu (%d) keçdi." \ No newline at end of file +msgstr "Simvolların sayı maksimumu (%d) keçdi." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Rəsm" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emosiyalar" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Sonuncu" \ No newline at end of file diff --git a/po/be_BY.po b/po/be_BY.po index a148750..cee5d9d 100644 --- a/po/be_BY.po +++ b/po/be_BY.po @@ -256,3 +256,11 @@ msgstr "Увод Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Упэўніцеся, што %s праграма актыўна на вашым тэлефоне." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Малюнак" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Эмодзі" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Апошнія" \ No newline at end of file diff --git a/po/bg.po b/po/bg.po index cf1ce05..cb56345 100644 --- a/po/bg.po +++ b/po/bg.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Уверете се, че приложението %s е активно в телефона." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Максималният брой знаци (%d) е надвишен." \ No newline at end of file +msgstr "Максималният брой знаци (%d) е надвишен." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Рисунка" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Емоджи" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Последни" \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index c2dbba4..1c71b54 100644 --- a/po/bn.po +++ b/po/bn.po @@ -256,3 +256,11 @@ msgstr "গিয়ার ইনপুট" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "%s অ্যাপটি আপনার ফোনে সক্রিয় আছে তা নিশ্চিত করুন।" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "অঙ্কন" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ইমোজিগুলি" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "সাম্প্রতিক" \ No newline at end of file diff --git a/po/bn_BD.po b/po/bn_BD.po index 656e6f9..4333ba8 100644 --- a/po/bn_BD.po +++ b/po/bn_BD.po @@ -256,3 +256,11 @@ msgstr "Gear-এর ইনপুট" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "নিশ্চিত করুন যে %s অ্যাপটি আপনার ফোনে সক্রিয় আছে৷" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "অঙ্কন" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ইমোজি" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "সাম্প্রতিক" \ No newline at end of file diff --git a/po/ca.po b/po/ca.po index 7f23fa6..8d239f0 100644 --- a/po/ca.po +++ b/po/ca.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Asseguri's que l'app %s estigui activa al telèfon." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "S'ha excedit el nombre màxim de caràcters (%d)." \ No newline at end of file +msgstr "S'ha excedit el nombre màxim de caràcters (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Dibuix" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recents" \ No newline at end of file diff --git a/po/cs.po b/po/cs.po index 77fabba..510f3d6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Zkontrolujte, zda je v telefonu aktivní aplikace %s." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Byl překročen maximální počet znaků (%d)." \ No newline at end of file +msgstr "Byl překročen maximální počet znaků (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Kreslení" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Poslední" \ No newline at end of file diff --git a/po/da.po b/po/da.po index ef1b75e..e12802f 100644 --- a/po/da.po +++ b/po/da.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Sørg for, at appen %s er aktiv på telefonen." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Det maksimale antal tegn er overskredet (%d)." \ No newline at end of file +msgstr "Det maksimale antal tegn er overskredet (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Tegning" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Seneste" diff --git a/po/de.po b/po/de.po index c10e87c..2ef749e 100644 --- a/po/de.po +++ b/po/de.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Stellen Sie sicher, dass die %s-App auf Ihrem Telefon aktiv ist." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maximale Anzahl von Zeichen (%d) überschritten." \ No newline at end of file +msgstr "Maximale Anzahl von Zeichen (%d) überschritten." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Zeichnung" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Kürzlich verwendet" \ No newline at end of file diff --git a/po/el_GR.po b/po/el_GR.po index fca2872..00de586 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Βεβαιωθείτε ότι η εφαρμογή %s είναι ενεργή στο τηλέφωνό σας." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Ξεπεράσατε το μέγιστο αριθμό χαρακτήρων (%d)." \ No newline at end of file +msgstr "Ξεπεράσατε το μέγιστο αριθμό χαρακτήρων (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Σχέδιο" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Πρόσφατα" \ No newline at end of file diff --git a/po/en.po b/po/en.po index 491b270..6e54d98 100644 --- a/po/en.po +++ b/po/en.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Make sure the %s app is active on your phone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maximum number of characters (%d) exceeded." \ No newline at end of file +msgstr "Maximum number of characters (%d) exceeded." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Drawing" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recent" \ No newline at end of file diff --git a/po/en_PH.po b/po/en_PH.po index 8c74d21..ac8d93e 100644 --- a/po/en_PH.po +++ b/po/en_PH.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Make sure the %s app is active on your phone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maximum number of characters (%d) exceeded." \ No newline at end of file +msgstr "Maximum number of characters (%d) exceeded." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Drawing" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recent" \ No newline at end of file diff --git a/po/en_US.po b/po/en_US.po index 8d82798..af8cf0c 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -263,4 +263,13 @@ msgid "IDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "Recent" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maximum number of characters (%d) exceeded." \ No newline at end of file +msgstr "Maximum number of characters (%d) exceeded." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Drawing" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recent" \ No newline at end of file diff --git a/po/es_ES.po b/po/es_ES.po index 6516753..eeb7899 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Asegúrese de que la aplicación %s está activa en el teléfono." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Se ha superado el número máximo de caracteres (%d)." \ No newline at end of file +msgstr "Se ha superado el número máximo de caracteres (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Dibujo" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recientes" \ No newline at end of file diff --git a/po/es_US.po b/po/es_US.po index 690639d..d132ac1 100644 --- a/po/es_US.po +++ b/po/es_US.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Compruebe que la aplicación %s está activa en el teléfono." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Se superó el número máximo de caracteres (%d)." \ No newline at end of file +msgstr "Se superó el número máximo de caracteres (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Dibujo" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recientes" \ No newline at end of file diff --git a/po/et.po b/po/et.po index 99e9a3b..9c81f0d 100644 --- a/po/et.po +++ b/po/et.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Veenduge, et rakendus %s oleks teie telefonis aktiivne." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maksimaalne tähemärkide arv (%d) on ületatud." \ No newline at end of file +msgstr "Maksimaalne tähemärkide arv (%d) on ületatud." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Joonistus" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji ikoonid" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Hiljutised" \ No newline at end of file diff --git a/po/eu.po b/po/eu.po index c92ad58..c7b9add 100644 --- a/po/eu.po +++ b/po/eu.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Ziurtatu %s aplikazioa telefonoan aktibo dagoela." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Gehienezko karaktere kopurua (%d) gainditu da." \ No newline at end of file +msgstr "Gehienezko karaktere kopurua (%d) gainditu da." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Marrazkia" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emotikonoak" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Azkenak" \ No newline at end of file diff --git a/po/fa.po b/po/fa.po index de9ff77..06d4660 100644 --- a/po/fa.po +++ b/po/fa.po @@ -256,3 +256,11 @@ msgstr "ورودی Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "مطمئن شوید برنامه %s در تلفن شما فعال باشد." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "طراحی" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "نمادهای احساسی" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "اخیر" \ No newline at end of file diff --git a/po/fi.po b/po/fi.po index ede3969..2e75664 100644 --- a/po/fi.po +++ b/po/fi.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Varmista, että %s -sovellus on käynnissä puhelimessa." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Merkkien enimmäismäärä (%d) on ylitetty." \ No newline at end of file +msgstr "Merkkien enimmäismäärä (%d) on ylitetty." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Piirros" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojit" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Uusimmat" \ No newline at end of file diff --git a/po/fr.po b/po/fr.po index 0f0cec8..5f754a2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Assurez-vous que l'application %s est active sur votre téléphone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Le nombre maximal de caractères (%d) a été dépassé." \ No newline at end of file +msgstr "Le nombre maximal de caractères (%d) a été dépassé." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Dessin" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Récents" \ No newline at end of file diff --git a/po/fr_CA.po b/po/fr_CA.po index e7233b3..8d8655b 100644 --- a/po/fr_CA.po +++ b/po/fr_CA.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Assurez-vous que l'application %s est active sur votre téléphone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Le nombre maximal de caractères (%d) a été dépassé." \ No newline at end of file +msgstr "Le nombre maximal de caractères (%d) a été dépassé." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Dessin" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Récents" \ No newline at end of file diff --git a/po/ga.po b/po/ga.po index ed7bfd4..27e3015 100644 --- a/po/ga.po +++ b/po/ga.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Cinntigh go bhfuil an feidhmchlár %s gníomhach ar d'fhón." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Uaslíon na gcarachtar (%d) sáraithe." \ No newline at end of file +msgstr "Uaslíon na gcarachtar (%d) sáraithe." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Líníocht" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Le déanaí" \ No newline at end of file diff --git a/po/gl.po b/po/gl.po index 3760442..a8bd345 100644 --- a/po/gl.po +++ b/po/gl.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Asegúrate de que a aplicación %s estea activa no teu teléfono." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Superouse o número máximo de caracteres (%d)." \ No newline at end of file +msgstr "Superouse o número máximo de caracteres (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Ilustración" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recente" \ No newline at end of file diff --git a/po/gu.po b/po/gu.po index ab881e3..7f8ec53 100644 --- a/po/gu.po +++ b/po/gu.po @@ -256,3 +256,11 @@ msgstr "ગિઅર ઇનપુટ" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ખાતરી કરો કે તમારા ફોન પર %s એપ સક્રિય છે." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ચિત્રકામ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ઇમોજીસ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "તાજેતરનું" \ No newline at end of file diff --git a/po/he.po b/po/he.po index 42573fa..29bf181 100644 --- a/po/he.po +++ b/po/he.po @@ -256,3 +256,11 @@ msgstr "Gear Input" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ודא שהיישום %s מופעל בטלפון." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ציור" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "סמלי אימוג'י" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "אחרונים" \ No newline at end of file diff --git a/po/hi.po b/po/hi.po index b1b3f25..77088e2 100644 --- a/po/hi.po +++ b/po/hi.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "सुनिश्चित करें कि आपके फोन पर %s एप सक्रिय है।" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "वर्णों की अधिकतम संख्या (%d) पार हो गई है।" \ No newline at end of file +msgstr "वर्णों की अधिकतम संख्या (%d) पार हो गई है।" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "चित्रकारी" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "इमोजिस" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "हाल ही" \ No newline at end of file diff --git a/po/hr.po b/po/hr.po index 514f251..82a32e1 100644 --- a/po/hr.po +++ b/po/hr.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Provjerite je li aplikacija %s aktivna na vašem telefonu." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Premašen je maksimalni broj znakova (%d)." \ No newline at end of file +msgstr "Premašen je maksimalni broj znakova (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Crtež" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emotikoni" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nedavno" \ No newline at end of file diff --git a/po/hu.po b/po/hu.po index ca5eda2..70e43ff 100644 --- a/po/hu.po +++ b/po/hu.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Indítsa el a %s alkalmazást a telefonon." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Túllépte a karakterek maximális számát (%d)." \ No newline at end of file +msgstr "Túllépte a karakterek maximális számát (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Rajz" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojik" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Legutóbbi" \ No newline at end of file diff --git a/po/hy.po b/po/hy.po index ce56265..20b4703 100644 --- a/po/hy.po +++ b/po/hy.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Համոզվեք, որ %s ծրագիրն ակտիվ է հեռախոսում:" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Նիշերի առավելագույն քանակը (%d) գերազանցվել է:" \ No newline at end of file +msgstr "Նիշերի առավելագույն քանակը (%d) գերազանցվել է:" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Գծագիր" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Էմոձիներ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Վերջերս" \ No newline at end of file diff --git a/po/id.po b/po/id.po index d66dd5d..6311b1d 100644 --- a/po/id.po +++ b/po/id.po @@ -256,3 +256,11 @@ msgstr "Input Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Pastikan aplikasi %s aktif di ponsel." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Lukisan" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Terbaru" \ No newline at end of file diff --git a/po/is.po b/po/is.po index d601d66..1bd2143 100644 --- a/po/is.po +++ b/po/is.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Gakktu úr skugga um að forritið %s sé virkt í símanum." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Hámarksfjölda stafa (%d) náð." \ No newline at end of file +msgstr "Hámarksfjölda stafa (%d) náð." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Teikning" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji-tákn" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nýlegt" diff --git a/po/it_IT.po b/po/it_IT.po index 868e769..cfbf965 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Assicuratevi che l'applicazione %s sia attiva sul dispositivo." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Il numero massimo di caratteri (%d) è stato superato." \ No newline at end of file +msgstr "Il numero massimo di caratteri (%d) è stato superato." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Disegno" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recenti" \ No newline at end of file diff --git a/po/ja_JP.po b/po/ja_JP.po index 947a368..831dcbe 100644 --- a/po/ja_JP.po +++ b/po/ja_JP.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "端末で%sアプリが実行されていることを確認してください。" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "最大文字数(%d文字)を超えています。" \ No newline at end of file +msgstr "最大文字数(%d文字)を超えています。" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "スケッチ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "絵文字" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "最近使用した絵文字" \ No newline at end of file diff --git a/po/ka.po b/po/ka.po index f49e785..9c0726e 100644 --- a/po/ka.po +++ b/po/ka.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "დარწმუნდით, რომ ტელეფონში აქტიურია %s აპლიკაცია." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "გადაჭარბებულია სიმბოლოების მაქსიმალური რაოდენობა (%d)." \ No newline at end of file +msgstr "გადაჭარბებულია სიმბოლოების მაქსიმალური რაოდენობა (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ხატვა" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "სიცილაკები" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ბოლოდროის" \ No newline at end of file diff --git a/po/kk.po b/po/kk.po index 052cbbf..f8e30c0 100644 --- a/po/kk.po +++ b/po/kk.po @@ -258,3 +258,12 @@ msgstr "%s қолданбасының телефоныңызда қосулы е msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" msgstr "Таңбалар ең көп (%d) санынан асып кетті." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Сызба" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Смайликтер" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Соңғы" diff --git a/po/km.po b/po/km.po index 7635cba..3a83120 100644 --- a/po/km.po +++ b/po/km.po @@ -256,3 +256,11 @@ msgstr "ការបញ្ចូល​នៃ Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ត្រូវ​ប្រាកដ​ថា កម្មវិធី %s សកម្ម លើ​ទូរសព្ទ​របស់​អ្នក។" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ការគូស" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ថ្មីៗ" \ No newline at end of file diff --git a/po/kn.po b/po/kn.po index 8b33dc6..0570ecb 100644 --- a/po/kn.po +++ b/po/kn.po @@ -256,3 +256,11 @@ msgstr "ಗೇರ್ ಇನ್‌ಪುಟ್" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ಫೋನ್‌ನಲ್ಲಿ %s ಅನ್ವಯಿಸುವಿಕೆಯು ಸಕ್ರಿಯವಾಗಿದೆಯೇ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ಡ್ರಾಯಿಂಗ್" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ಎಮೋಜಿಗಳು" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ಇತ್ತೀಚಿನ" \ No newline at end of file diff --git a/po/ko_KR.po b/po/ko_KR.po index 1def068..79fbb48 100644 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "폰에서 %s 앱이 실행되어 있는지 확인하세요." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "최대 글자 수(%d)를 초과했습니다." \ No newline at end of file +msgstr "최대 글자 수(%d)를 초과했습니다." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "그리기" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "이모티콘" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "최근 보낸 이모티콘" \ No newline at end of file diff --git a/po/ky_KG.po b/po/ky_KG.po index b5ceead..cd404ed 100644 --- a/po/ky_KG.po +++ b/po/ky_KG.po @@ -256,3 +256,11 @@ msgstr "Gear Киргизүүсү" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "%s колдонмосу телефонуңузда иштеп жаткандыгын текшериңиз." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Тартуу" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Эмоджилер" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Акыркы" \ No newline at end of file diff --git a/po/lo.po b/po/lo.po index be66044..94deaf6 100644 --- a/po/lo.po +++ b/po/lo.po @@ -256,3 +256,11 @@ msgstr "ການປ້ອນຂໍ້ມູນເກຍ" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ເຮັດໃຫ້ແນ່ໃຈວ່າແອັບ %s ເປີດໃຊ້ງານຢູ່ເທິງໂທລະສັບຂອງທ່ານ." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ການແຕ້ມ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ອີໂມຈີ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ຫຼ້າສຸດ" \ No newline at end of file diff --git a/po/lt.po b/po/lt.po index 8ce18c8..849b0c0 100644 --- a/po/lt.po +++ b/po/lt.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Įsitikinkite, kad telefone suaktyvinta %s programa." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Viršytas didžiausias simbolių skaičius (%d)." \ No newline at end of file +msgstr "Viršytas didžiausias simbolių skaičius (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Piešinys" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Jaustukai" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Naujausi" \ No newline at end of file diff --git a/po/lv.po b/po/lv.po index d134eda..da84ed7 100644 --- a/po/lv.po +++ b/po/lv.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Aktivizējiet tālrunī programmu %s." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Pārsniegts maksimālais rakstzīmju skaits (%d)." \ No newline at end of file +msgstr "Pārsniegts maksimālais rakstzīmju skaits (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Zīmējums" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emocijzīmes" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Jaunākās" \ No newline at end of file diff --git a/po/mk.po b/po/mk.po index e790aba..814d447 100644 --- a/po/mk.po +++ b/po/mk.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Осигурете се дека апликацијата %s е активна на телефонот." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Надминат е максималниот број на знаци (%d)." \ No newline at end of file +msgstr "Надминат е максималниот број на знаци (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Цртеж" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Емоџија" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Последни" \ No newline at end of file diff --git a/po/ml.po b/po/ml.po index 6c3de7c..6f216b8 100644 --- a/po/ml.po +++ b/po/ml.po @@ -256,3 +256,11 @@ msgstr "ഗിയർ ഇൻപുട്ട്" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "നിങ്ങളുടെ ഫോണിൽ %s ആപ്ലിക്കേഷൻ സജീവമാണെന്ന് ഉറപ്പാക്കുക." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ഡ്രോയിംഗ്" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ഇമോജികൾ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "സമീപകാലം" \ No newline at end of file diff --git a/po/mn_MN.po b/po/mn_MN.po index 5e939e3..28a0052 100644 --- a/po/mn_MN.po +++ b/po/mn_MN.po @@ -256,3 +256,11 @@ msgstr "Gear-н Оролт" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Утсан дээрээ %s хэрэглүүрийг идэвхжүүлсэн эсэхээ нягтална уу." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Зурах" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Эможи" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Саяхан" \ No newline at end of file diff --git a/po/mr.po b/po/mr.po index 2797fce..4f52734 100644 --- a/po/mr.po +++ b/po/mr.po @@ -256,3 +256,11 @@ msgstr "गिअर निविष्‍ट" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "आपल्या फोनवर %s अनुप्रयोग सक्रिय असल्याची खात्री करा." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "रेखांकन" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "इमोजीस" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "अलीकडील" \ No newline at end of file diff --git a/po/ms.po b/po/ms.po index 6fb6812..da99eb4 100644 --- a/po/ms.po +++ b/po/ms.po @@ -256,3 +256,11 @@ msgstr "Input Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Pastikan aplikasi %s aktif pada telefon anda." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Melukis" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Terkini" \ No newline at end of file diff --git a/po/my_MM.po b/po/my_MM.po index a5d2dee..55ea20f 100644 --- a/po/my_MM.po +++ b/po/my_MM.po @@ -256,3 +256,11 @@ msgstr "Gear ထည့်သွင်းမှု" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "သင့်ဖုန်းတွင် %s အက်ပ် သက်ဝင်လုပ်ဆောင်နေကြောင်း သေချာစေပါ။" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ပုံဆွဲခြင်း" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ခံစားချက်ပြပုံများ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "လတ်တလော" \ No newline at end of file diff --git a/po/my_ZG.po b/po/my_ZG.po index adc9f6a..3022b69 100644 --- a/po/my_ZG.po +++ b/po/my_ZG.po @@ -256,3 +256,11 @@ msgstr "Gear ထည့္သြင္းမႈ" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "သင့္ဖုန္းတြင္ %s အက္ပ္ သက္ဝင္လုပ္ေဆာင္ေနေၾကာင္း ေသခ်ာေစပါ။" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ပံုဆြဲျခင္း" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ခံစားခ်က္ျပပံုမ်ား" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "လတ္တေလာ" \ No newline at end of file diff --git a/po/nb.po b/po/nb.po index 68e2219..c3b5a26 100644 --- a/po/nb.po +++ b/po/nb.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Pass på at %s-appen er aktiv på telefonen." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maksimalt antall tegn (%d) er oversteget." \ No newline at end of file +msgstr "Maksimalt antall tegn (%d) er oversteget." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Tegning" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Humørikoner" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nylige" \ No newline at end of file diff --git a/po/ne.po b/po/ne.po index 9625f5f..60cf322 100644 --- a/po/ne.po +++ b/po/ne.po @@ -256,3 +256,11 @@ msgstr "गियर इन्पुट" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "तपाईको फोनमा %s एप सक्रिय छ भनेर सुनिश्चित गर्नुहोस्।" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "रेखाचित्र" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "इमोजीहरू" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "हालको" diff --git a/po/nl.po b/po/nl.po index 0ad134f..80708cc 100644 --- a/po/nl.po +++ b/po/nl.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Controleer of de app %s actief is op uw telefoon." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maximumaantal tekens (%d) overschreden." \ No newline at end of file +msgstr "Maximumaantal tekens (%d) overschreden." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Tekening" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recent" diff --git a/po/or.po b/po/or.po index 8f37ee5..88220f6 100644 --- a/po/or.po +++ b/po/or.po @@ -256,3 +256,12 @@ msgstr "ଗିଅର୍‍ ଇନପୁଟ୍" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "%s ଆପ୍ଲିକେସନ୍‌ ଆପଣଙ୍କ ଫୋନରେ ସକ୍ରିୟ ଅଛି ନିଶ୍ଚିତ କରନ୍ତୁ।" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ଚିତ୍ରାଙ୍କନ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ଇମୋଜିଗୁଡିକ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ସମ୍ପ୍ରତି" + diff --git a/po/pa.po b/po/pa.po index 86ac522..b0048cc 100644 --- a/po/pa.po +++ b/po/pa.po @@ -256,3 +256,11 @@ msgstr "ਗੇਅਰ ਇਨਪੁਟ" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ %s ਐਪ ਤੁਹਾਡੇ ਫ਼ੋਨ ਤੇ ਕਿਰਿਆਸ਼ੀਲ ਹੋਵੇ।" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ਡ੍ਰਾਇੰਗ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ਇਮੋਜਿਸ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ਹਾਲ ਹੀ ਦੇ" \ No newline at end of file diff --git a/po/pl.po b/po/pl.po index 99b3b99..03fb001 100644 --- a/po/pl.po +++ b/po/pl.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Upewnij się, że aplikacja %s jest aktywna w telefonie." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Przekroczono maksymalną liczbę znaków (%d)." \ No newline at end of file +msgstr "Przekroczono maksymalną liczbę znaków (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Rysunek" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Ikony emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Ostatnie" \ No newline at end of file diff --git a/po/pl_SP.po b/po/pl_SP.po index 6a75493..067349f 100644 --- a/po/pl_SP.po +++ b/po/pl_SP.po @@ -256,3 +256,11 @@ msgstr "Wprowadzanie Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Upewnij się, że aplikacja %s jest aktywna w telefonie." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Szkryflōnek" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Ikōny emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Niydŏwne" \ No newline at end of file diff --git a/po/pt_BR.po b/po/pt_BR.po index 42cabcc..f0720b2 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Verifique se o aplicativo %s está ativo no telefone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "O número máximo de caracteres (%d) foi excedido." \ No newline at end of file +msgstr "O número máximo de caracteres (%d) foi excedido." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Desenho" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recente" \ No newline at end of file diff --git a/po/pt_PT.po b/po/pt_PT.po index bf861e9..e7934ef 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Certifique-se de que a aplicação %s está activa no seu telefone." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Número máximo de caracteres (%d) excedido." \ No newline at end of file +msgstr "Número máximo de caracteres (%d) excedido." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Desenho" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recentes" \ No newline at end of file diff --git a/po/ro.po b/po/ro.po index f449e08..7dfb222 100644 --- a/po/ro.po +++ b/po/ro.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Asiguraţi-vă că aplicaţia %s este activă pe telefon." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "A fost depășit numărul maxim de caractere (%d)." \ No newline at end of file +msgstr "A fost depășit numărul maxim de caractere (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Desen" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Recente" \ No newline at end of file diff --git a/po/ru_RU.po b/po/ru_RU.po index f15c9d5..9a6d712 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "На телефоне должно быть запущено приложение %s." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Превышено максимальное число символов (%d)." \ No newline at end of file +msgstr "Превышено максимальное число символов (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Рисунок" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Эмодзи" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Последние" \ No newline at end of file diff --git a/po/si.po b/po/si.po index d737f4d..000a413 100644 --- a/po/si.po +++ b/po/si.po @@ -256,3 +256,11 @@ msgstr "ගියර් ආදානය" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "%s යෙදුම ඔබේ දුරකථනයේ සක්‍රිය වන බවට වග බලා ගන්න." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "චිත්‍රය" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ඉමෝජි" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "මෑතකාලීන" \ No newline at end of file diff --git a/po/sk.po b/po/sk.po index b805618..7ee13a9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Skontrolujte, či je v telefóne aktívna aplikácia %s." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Prekročil sa maximálny počet znakov (%d)." \ No newline at end of file +msgstr "Prekročil sa maximálny počet znakov (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Kresba" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emotikony" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nedávne" \ No newline at end of file diff --git a/po/sl.po b/po/sl.po index 0c2b3dd..c817457 100644 --- a/po/sl.po +++ b/po/sl.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Preverite, ali je aplikacija %s aktivna v telefonu." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Največje dovoljeno število znakov (%d) je preseženo." \ No newline at end of file +msgstr "Največje dovoljeno število znakov (%d) je preseženo." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Risba" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emotikoni Emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nedavni" \ No newline at end of file diff --git a/po/sq.po b/po/sq.po index 28b56fd..f4637e4 100644 --- a/po/sq.po +++ b/po/sq.po @@ -256,3 +256,11 @@ msgstr "Futja në Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Sigurohu që app-i %s është aktiv në telefon." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Vizatim" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emoji-t" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Së fundi" \ No newline at end of file diff --git a/po/sr.po b/po/sr.po index 21f2542..4790eb9 100644 --- a/po/sr.po +++ b/po/sr.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Proverite da li je aplikacija %s aktivna na telefonu." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Prekoračen je maksimalan broj karaktera (%d)." \ No newline at end of file +msgstr "Prekoračen je maksimalan broj karaktera (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Crtež" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emotikoni" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Nedavno" \ No newline at end of file diff --git a/po/sv.po b/po/sv.po index 0f60ae1..34cd98e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Se till att programmet %s är aktivt på telefonen." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Max antal tecken (%d) överskreds." \ No newline at end of file +msgstr "Max antal tecken (%d) överskreds." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Teckning" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojier" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Senaste" \ No newline at end of file diff --git a/po/ta.po b/po/ta.po index 1dc4899..37bdcd2 100644 --- a/po/ta.po +++ b/po/ta.po @@ -256,3 +256,11 @@ msgstr "கியர் உள்ளீடு" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "உங்கள் ஃபோனில் %s பயன்பாடு செயல்படுவதை உறுதிசெய்து கொள்ளவும்." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "வரைபடங்கள்" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "எமோஜிகள்" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "சமீபத்தியவை" \ No newline at end of file diff --git a/po/te.po b/po/te.po index 61fb3af..9a9398d 100644 --- a/po/te.po +++ b/po/te.po @@ -256,3 +256,11 @@ msgstr "గేర్ ఇన్‌పుట్" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "మీ ఫోన్‌లో %s అప్లికేషన్ సక్రియంగా ఉన్నట్లు నిర్ధారించుకోండి." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "డ్రాయింగ్" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ఎమోజీలు" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ఇటీవలివి" \ No newline at end of file diff --git a/po/tg_TJ.po b/po/tg_TJ.po index a3abce6..6a21b45 100644 --- a/po/tg_TJ.po +++ b/po/tg_TJ.po @@ -256,3 +256,11 @@ msgstr "Вуруди Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Боварӣ ҳосил кунед, ки барномаи %s дар телефон фаъол аст." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Нақша" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Эмоҷиҳо" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Охирин" \ No newline at end of file diff --git a/po/th.po b/po/th.po index 18fc642..9e77f52 100644 --- a/po/th.po +++ b/po/th.po @@ -256,3 +256,11 @@ msgstr "อินพุต Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "ตรวจสอบให้แน่ใจว่าแอพ %s ทำงานอยู่ในโทรศัพท์ของคุณ" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "รูปวาด" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "อีโมจิ" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "ไม่นานมานี้" \ No newline at end of file diff --git a/po/tk_TM.po b/po/tk_TM.po index 788334d..7a92bd7 100644 --- a/po/tk_TM.po +++ b/po/tk_TM.po @@ -256,3 +256,11 @@ msgstr "Gear giriziş" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Telefonda %s goýmasy işjeň dursun." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Çyzgy" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojiler" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Soňky" \ No newline at end of file diff --git a/po/tl.po b/po/tl.po index fc49caa..6297468 100644 --- a/po/tl.po +++ b/po/tl.po @@ -256,3 +256,11 @@ msgstr "Input ng Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Tiyakin na tumatakbo ang %s app sa telepono mo." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Drawing" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Mga emoji" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Kamakailan" \ No newline at end of file diff --git a/po/tr_TR.po b/po/tr_TR.po index a915b97..5b3e974 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "%s uygulamasının telefonunuzda etkin olduğundan emin olun." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Maksimum karakter sayısı (%d) aşıldı." \ No newline at end of file +msgstr "Maksimum karakter sayısı (%d) aşıldı." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Çizim" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojiler" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Son kullanılan" \ No newline at end of file diff --git a/po/uk.po b/po/uk.po index 7619449..a86ac1d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "На телефоні потрібно відкрити програму %s." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Перевищено максимальну кількість символів (%d)." \ No newline at end of file +msgstr "Перевищено максимальну кількість символів (%d)." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Малюнок" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Емодзі" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Останні" \ No newline at end of file diff --git a/po/ur.po b/po/ur.po index 8b924b0..8789927 100644 --- a/po/ur.po +++ b/po/ur.po @@ -256,3 +256,11 @@ msgstr "گیئر ان پٹ" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "یقینی بنائیں کہ %s ایپلیکیشن آپ کے فون میں فعال ہے۔" +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "ڈرائنگ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "ایموجیز" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "حالیہ" \ No newline at end of file diff --git a/po/uz.po b/po/uz.po index d29f33a..9572d68 100644 --- a/po/uz.po +++ b/po/uz.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Telefonda %s ilovasi yoqilganligiga ishonch hosil qiling." msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "Belgilar soni maksimal miqdordan (%d) oshib ketdi." \ No newline at end of file +msgstr "Belgilar soni maksimal miqdordan (%d) oshib ketdi." + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Chizish" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojilar" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Oxirgi" \ No newline at end of file diff --git a/po/vi.po b/po/vi.po index b6f9a45..8552907 100644 --- a/po/vi.po +++ b/po/vi.po @@ -256,3 +256,11 @@ msgstr "Nhập trên Gear" msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "Hãy đảm bảo ứng dụng %s đang chạy trên điện thoại." +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "Hình vẽ" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "Emojis" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "Gần đây" \ No newline at end of file diff --git a/po/zh_CN.po b/po/zh_CN.po index 15551c6..a1f1f2a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "请确保 %s 应用程序已在您的手机上运行。" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "已超过字符数上限 (%d)。" \ No newline at end of file +msgstr "已超过字符数上限 (%d)。" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "绘画" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "表情符号" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "最近记录" \ No newline at end of file diff --git a/po/zh_HK.po b/po/zh_HK.po index 0078af9..cb500de 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "請確保 %s 應用程式已在手機上啟動。" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "已超過字元數目上限 (%d)。" \ No newline at end of file +msgstr "已超過字元數目上限 (%d)。" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "繪製" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "表情文字" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "最近" \ No newline at end of file diff --git a/po/zh_TW.po b/po/zh_TW.po index a798590..e96e11f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -257,4 +257,13 @@ msgid "WDS_WMGR_POP_MAKE_SURE_THE_PS_APP_IS_ACTIVE_ON_YOUR_PHONE" msgstr "請確認手機上已執行 %s 應用程式。" msgid "WDS_MSG_BODY_MAXIMUM_NUMBER_OF_CHARACTERS_HPD_EXCEEDED" -msgstr "已超過字數上限 (%d)。" \ No newline at end of file +msgstr "已超過字數上限 (%d)。" + +msgid "WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB" +msgstr "繪圖" + +msgid "WDS_IME_HEADER_EMOJIS_ABB" +msgstr "表情符號" + +msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" +msgstr "最近" \ No newline at end of file diff --git a/src/w-input-emoticon.cpp b/src/w-input-emoticon.cpp index 2a19150..8ffd747 100755 --- a/src/w-input-emoticon.cpp +++ b/src/w-input-emoticon.cpp @@ -918,7 +918,7 @@ void _update_emoticon_items(void *data) // Drawing if (app_data->mime_type == MIME_TYPE_ALL) { - it_drawing = elm_genlist_item_append(gl, itc_1text_1icon, "Doodle", NULL, ELM_GENLIST_ITEM_NONE, _drawing_item_clicked_cb, (void *)app_data); + it_drawing = elm_genlist_item_append(gl, itc_1text_1icon, (void*)"WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB", NULL, ELM_GENLIST_ITEM_NONE, _drawing_item_clicked_cb, (void *)app_data); first_it = it_drawing; } @@ -928,7 +928,7 @@ void _update_emoticon_items(void *data) } // Group Recents - it_emoticon_recent_group = elm_genlist_item_append(gl, itc_group, (void*)"IDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB", NULL, ELM_GENLIST_ITEM_NONE, NULL, (void *)2); + it_emoticon_recent_group = elm_genlist_item_append(gl, itc_group, (void*)"WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB", NULL, ELM_GENLIST_ITEM_NONE, NULL, (void *)2); elm_genlist_item_select_mode_set(it, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY); if (first_it == NULL) first_it = it_emoticon_recent_group; @@ -942,7 +942,7 @@ void _update_emoticon_items(void *data) } // Group Emoticons - it_emoticon_emoji_group = elm_genlist_item_append(gl, itc_group, (void*)"IDS_IME_HEADER_EMOJIS_ABB", NULL, ELM_GENLIST_ITEM_NONE, NULL, (void *)2); + it_emoticon_emoji_group = elm_genlist_item_append(gl, itc_group, (void*)"WDS_IME_HEADER_EMOJIS_ABB", NULL, ELM_GENLIST_ITEM_NONE, NULL, (void *)2); elm_genlist_item_select_mode_set(it, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY); if (first_it == NULL) first_it = it_emoticon_emoji_group; diff --git a/src/w-input-keyboard.cpp b/src/w-input-keyboard.cpp index cbb816d..0d7afa8 100755 --- a/src/w-input-keyboard.cpp +++ b/src/w-input-keyboard.cpp @@ -34,7 +34,7 @@ bool input_keyboard_init(app_control_h app_control) int ret = -1; char *default_text = NULL; char *guide_text = NULL; - char *return_key_type = (char *)"SEND"; + char *return_key_type = _("IDS_AMEMO_BUTTON_SEND"); char *max_text_length = NULL; char *cursor_position_set = (char *)"0"; @@ -77,7 +77,7 @@ void input_keyboard_deinit(void) g_input_keyboard_data.default_text = NULL; g_input_keyboard_data.guide_text = NULL; - g_input_keyboard_data.return_key_type = (char *)"SEND"; + g_input_keyboard_data.return_key_type = _("IDS_AMEMO_BUTTON_SEND"); g_input_keyboard_data.max_text_length = KEYBOARD_EDITOR_CHAR_COUNT_MAX; g_input_keyboard_data.cursor_position_set = 0; diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index 53576e0..a9f33b9 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -710,15 +710,6 @@ static void _item_position_changed_cb(void *data, Evas_Object *obj, void *event_ } } -static char * -_main_menu_title_text_get(void *data, Evas_Object *obj, const char *part) -{ - char buf[1024]; - - snprintf(buf, 1023, "%s", "Select method"); - return strdup(buf); -} - void _create_genlist_items(void* user_data) { App_Data* app_data = (App_Data*) user_data; @@ -732,8 +723,8 @@ void _create_genlist_items(void* user_data) elm_genlist_clear(app_data->genlist); Elm_Genlist_Item_Class * itc0 = elm_genlist_item_class_new(); - itc0->item_style = "title"; - itc0->func.text_get = _main_menu_title_text_get; + itc0->item_style = NULL; + itc0->func.text_get = NULL; itc0->func.content_get = NULL; itc0->func.state_get = NULL; itc0->func.del = NULL; -- 2.7.4 From 588163ca8386f6b7b595939b770af4e12db75e61 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 11 Oct 2017 16:20:58 +0900 Subject: [PATCH 07/16] Update package version 0.1.171011 Change-Id: Icd59fafdf07f1a8386fbfdce5224a4786cda782a Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index 0d10d47..4ce9878 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 7655775..ca08284 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.170920 +Version: 0.1.171011 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From d70e7d6263f49dc8b8433b8b5f42b325f42ae18e Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Fri, 13 Oct 2017 15:42:03 +0900 Subject: [PATCH 08/16] Fix issue that showed wrong discard message popup for voice input Change-Id: I31ef9cb4c0bf852b8d9fcd9931859664bfa323e4 Signed-off-by: sungwook79.park --- po/ar.po | 5 ++++- po/as.po | 5 ++++- po/az.po | 5 ++++- po/be_BY.po | 5 ++++- po/bg.po | 5 ++++- po/bn.po | 5 ++++- po/bn_BD.po | 5 ++++- po/ca.po | 3 +++ po/cs.po | 3 +++ po/da.po | 3 +++ po/de.po | 5 ++++- po/el_GR.po | 5 ++++- po/en.po | 3 +++ po/en_PH.po | 5 ++++- po/en_US.po | 5 ++++- po/es_ES.po | 5 ++++- po/es_US.po | 5 ++++- po/et.po | 5 ++++- po/eu.po | 5 ++++- po/fa.po | 5 ++++- po/fi.po | 5 ++++- po/fr.po | 5 ++++- po/fr_CA.po | 5 ++++- po/ga.po | 5 ++++- po/gl.po | 5 ++++- po/gu.po | 5 ++++- po/he.po | 5 ++++- po/hi.po | 5 ++++- po/hr.po | 5 ++++- po/hu.po | 5 ++++- po/hy.po | 5 ++++- po/id.po | 5 ++++- po/is.po | 3 +++ po/it_IT.po | 5 ++++- po/ja_JP.po | 5 ++++- po/ka.po | 5 ++++- po/kk.po | 3 +++ po/km.po | 5 ++++- po/kn.po | 5 ++++- po/ko_KR.po | 5 ++++- po/ky_KG.po | 5 ++++- po/lo.po | 5 ++++- po/lt.po | 5 ++++- po/lv.po | 5 ++++- po/mk.po | 5 ++++- po/ml.po | 5 ++++- po/mn_MN.po | 5 ++++- po/mr.po | 5 ++++- po/ms.po | 5 ++++- po/my_MM.po | 5 ++++- po/my_ZG.po | 5 ++++- po/nb.po | 5 ++++- po/ne.po | 3 +++ po/nl.po | 3 +++ po/or.po | 2 ++ po/pa.po | 5 ++++- po/pl.po | 5 ++++- po/pl_SP.po | 5 ++++- po/pt_BR.po | 5 ++++- po/pt_PT.po | 5 ++++- po/ro.po | 5 ++++- po/ru_RU.po | 5 ++++- po/si.po | 5 ++++- po/sk.po | 5 ++++- po/sl.po | 5 ++++- po/sq.po | 5 ++++- po/sr.po | 5 ++++- po/sv.po | 5 ++++- po/ta.po | 5 ++++- po/te.po | 5 ++++- po/tg_TJ.po | 5 ++++- po/th.po | 5 ++++- po/tk_TM.po | 5 ++++- po/tl.po | 5 ++++- po/tr_TR.po | 5 ++++- po/uk.po | 5 ++++- po/ur.po | 5 ++++- po/uz.po | 5 ++++- po/vi.po | 5 ++++- po/zh_CN.po | 5 ++++- po/zh_HK.po | 5 ++++- po/zh_TW.po | 5 ++++- res/mobile/images/tw_ic_popup_btn_check.png | Bin 0 -> 1392 bytes res/mobile/images/tw_ic_popup_btn_delete.png | Bin 0 -> 1457 bytes res/tv/images/tw_ic_popup_btn_check.png | Bin 0 -> 1392 bytes res/tv/images/tw_ic_popup_btn_delete.png | Bin 0 -> 1457 bytes res/wearable/images/tw_ic_popup_btn_check.png | Bin 0 -> 1392 bytes res/wearable/images/tw_ic_popup_btn_delete.png | Bin 0 -> 1457 bytes src/MoreOption.cpp | 9 +++++++-- 89 files changed, 325 insertions(+), 75 deletions(-) create mode 100644 res/mobile/images/tw_ic_popup_btn_check.png create mode 100644 res/mobile/images/tw_ic_popup_btn_delete.png create mode 100644 res/tv/images/tw_ic_popup_btn_check.png create mode 100644 res/tv/images/tw_ic_popup_btn_delete.png create mode 100644 res/wearable/images/tw_ic_popup_btn_check.png create mode 100644 res/wearable/images/tw_ic_popup_btn_delete.png diff --git a/po/ar.po b/po/ar.po index c6b1212..a4e665b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "رموز الإيموجي" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "الحديثة" \ No newline at end of file +msgstr "الحديثة" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "سيتم تجاهل كلّ التغييرات." \ No newline at end of file diff --git a/po/as.po b/po/as.po index 9efef62..46df79b 100644 --- a/po/as.po +++ b/po/as.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ইম'জিচ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "শেহতীয়া" \ No newline at end of file +msgstr "শেহতীয়া" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "সকলো পৰিৱৰ্তন পৰিত্যাগ কৰা হ'ব৷" \ No newline at end of file diff --git a/po/az.po b/po/az.po index 0104414..529d284 100644 --- a/po/az.po +++ b/po/az.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emosiyalar" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Sonuncu" \ No newline at end of file +msgstr "Sonuncu" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Bütün dəyişikliklər silinəcək." \ No newline at end of file diff --git a/po/be_BY.po b/po/be_BY.po index cee5d9d..c69f609 100644 --- a/po/be_BY.po +++ b/po/be_BY.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Эмодзі" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Апошнія" \ No newline at end of file +msgstr "Апошнія" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Усе змены будуць скасаваны." \ No newline at end of file diff --git a/po/bg.po b/po/bg.po index cb56345..3c101cd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Емоджи" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Последни" \ No newline at end of file +msgstr "Последни" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Всички промени ще бъдат отхвърлени." \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index 1c71b54..9ad04e5 100644 --- a/po/bn.po +++ b/po/bn.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ইমোজিগুলি" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "সাম্প্রতিক" \ No newline at end of file +msgstr "সাম্প্রতিক" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "সমস্ত পরিবর্তন পরিত্যাগ করা হবে।" \ No newline at end of file diff --git a/po/bn_BD.po b/po/bn_BD.po index 4333ba8..6fa6555 100644 --- a/po/bn_BD.po +++ b/po/bn_BD.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ইমোজি" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "সাম্প্রতিক" \ No newline at end of file +msgstr "সাম্প্রতিক" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "সব পরিবর্তন পরিত্যাগ করা হবে।" \ No newline at end of file diff --git a/po/ca.po b/po/ca.po index 8d239f0..b3bd870 100644 --- a/po/ca.po +++ b/po/ca.po @@ -241,6 +241,9 @@ msgstr "Gat" msgid "IDS_IME_BODY_CHICKEN_M_EMOTICON_NAME" msgstr "Pollastre" +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Es descartaran tots els canvis." + msgid "IDS_IME_BODY_SPOUTING_WHALE_M_EMOTICON_NAME" msgstr "Balena llençant aigua" diff --git a/po/cs.po b/po/cs.po index 510f3d6..14086bc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -241,6 +241,9 @@ msgstr "Kočka" msgid "IDS_IME_BODY_CHICKEN_M_EMOTICON_NAME" msgstr "Kuře" +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Všechny změny budou zrušeny." + msgid "IDS_IME_BODY_SPOUTING_WHALE_M_EMOTICON_NAME" msgstr "Tryskající velryba" diff --git a/po/da.po b/po/da.po index e12802f..924b197 100644 --- a/po/da.po +++ b/po/da.po @@ -267,3 +267,6 @@ msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "Seneste" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Alle ændringer bliver kasseret." diff --git a/po/de.po b/po/de.po index 2ef749e..a05ffe2 100644 --- a/po/de.po +++ b/po/de.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Kürzlich verwendet" \ No newline at end of file +msgstr "Kürzlich verwendet" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Alle Änderungen werden verworfen." \ No newline at end of file diff --git a/po/el_GR.po b/po/el_GR.po index 00de586..803d24b 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Πρόσφατα" \ No newline at end of file +msgstr "Πρόσφατα" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Όλες οι αλλαγές θα απορριφθούν." \ No newline at end of file diff --git a/po/en.po b/po/en.po index 6e54d98..b5754fd 100644 --- a/po/en.po +++ b/po/en.po @@ -241,6 +241,9 @@ msgstr "Cat" msgid "IDS_IME_BODY_CHICKEN_M_EMOTICON_NAME" msgstr "Chicken" +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "All changes will be discarded." + msgid "IDS_IME_BODY_SPOUTING_WHALE_M_EMOTICON_NAME" msgstr "Spouting whale" diff --git a/po/en_PH.po b/po/en_PH.po index ac8d93e..218e992 100644 --- a/po/en_PH.po +++ b/po/en_PH.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recent" \ No newline at end of file +msgstr "Recent" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "All changes will be discarded." \ No newline at end of file diff --git a/po/en_US.po b/po/en_US.po index af8cf0c..345353c 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -272,4 +272,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recent" \ No newline at end of file +msgstr "Recent" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "All changes will be discarded." \ No newline at end of file diff --git a/po/es_ES.po b/po/es_ES.po index eeb7899..6a1350d 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recientes" \ No newline at end of file +msgstr "Recientes" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Se descartarán todos los cambios." \ No newline at end of file diff --git a/po/es_US.po b/po/es_US.po index d132ac1..875be71 100644 --- a/po/es_US.po +++ b/po/es_US.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recientes" \ No newline at end of file +msgstr "Recientes" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Se descartarán los cambios." \ No newline at end of file diff --git a/po/et.po b/po/et.po index 9c81f0d..11bddb4 100644 --- a/po/et.po +++ b/po/et.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji ikoonid" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Hiljutised" \ No newline at end of file +msgstr "Hiljutised" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Kõikidest muudatustest loobutakse." \ No newline at end of file diff --git a/po/eu.po b/po/eu.po index c7b9add..27869c3 100644 --- a/po/eu.po +++ b/po/eu.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emotikonoak" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Azkenak" \ No newline at end of file +msgstr "Azkenak" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Aldaketa guztiak baztertuko dira." \ No newline at end of file diff --git a/po/fa.po b/po/fa.po index 06d4660..5c3ebc4 100644 --- a/po/fa.po +++ b/po/fa.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "نمادهای احساسی" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "اخیر" \ No newline at end of file +msgstr "اخیر" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "همه تغییرات کنار گذاشته می‌شوند." \ No newline at end of file diff --git a/po/fi.po b/po/fi.po index 2e75664..54798b0 100644 --- a/po/fi.po +++ b/po/fi.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojit" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Uusimmat" \ No newline at end of file +msgstr "Uusimmat" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Kaikki muutokset hylätään." \ No newline at end of file diff --git a/po/fr.po b/po/fr.po index 5f754a2..b616a63 100644 --- a/po/fr.po +++ b/po/fr.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Récents" \ No newline at end of file +msgstr "Récents" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Toutes les modifications vont être ignorées." \ No newline at end of file diff --git a/po/fr_CA.po b/po/fr_CA.po index 8d8655b..8fddc56 100644 --- a/po/fr_CA.po +++ b/po/fr_CA.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Récents" \ No newline at end of file +msgstr "Récents" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Toutes les modifications vont être ignorées." \ No newline at end of file diff --git a/po/ga.po b/po/ga.po index 27e3015..6d4ee17 100644 --- a/po/ga.po +++ b/po/ga.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Le déanaí" \ No newline at end of file +msgstr "Le déanaí" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Cuileálfar gach athrú." \ No newline at end of file diff --git a/po/gl.po b/po/gl.po index a8bd345..17d025d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recente" \ No newline at end of file +msgstr "Recente" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Descartaranse todos os cambios." \ No newline at end of file diff --git a/po/gu.po b/po/gu.po index 7f8ec53..59eec07 100644 --- a/po/gu.po +++ b/po/gu.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ઇમોજીસ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "તાજેતરનું" \ No newline at end of file +msgstr "તાજેતરનું" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "બધા ફેરફારો કાઢી નાખવામાં આવશે." \ No newline at end of file diff --git a/po/he.po b/po/he.po index 29bf181..927968b 100644 --- a/po/he.po +++ b/po/he.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "סמלי אימוג'י" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "אחרונים" \ No newline at end of file +msgstr "אחרונים" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "כל השינויים יושלכו." \ No newline at end of file diff --git a/po/hi.po b/po/hi.po index 77088e2..b8957d5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "इमोजिस" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "हाल ही" \ No newline at end of file +msgstr "हाल ही" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "सभी बदलाव निरस्त कर दिए जाएँगें।" \ No newline at end of file diff --git a/po/hr.po b/po/hr.po index 82a32e1..b97e2a9 100644 --- a/po/hr.po +++ b/po/hr.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emotikoni" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Nedavno" \ No newline at end of file +msgstr "Nedavno" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Sve će se promjene odbaciti." \ No newline at end of file diff --git a/po/hu.po b/po/hu.po index 70e43ff..fdbf5e1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojik" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Legutóbbi" \ No newline at end of file +msgstr "Legutóbbi" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Minden változtatást elvet." \ No newline at end of file diff --git a/po/hy.po b/po/hy.po index 20b4703..58c52d3 100644 --- a/po/hy.po +++ b/po/hy.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Էմոձիներ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Վերջերս" \ No newline at end of file +msgstr "Վերջերս" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Բոլոր փոփոխությունները կանտեսվեն:" \ No newline at end of file diff --git a/po/id.po b/po/id.po index 6311b1d..9029881 100644 --- a/po/id.po +++ b/po/id.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Terbaru" \ No newline at end of file +msgstr "Terbaru" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Semua perubahan akan dibuang." \ No newline at end of file diff --git a/po/is.po b/po/is.po index 1bd2143..58dbc3e 100644 --- a/po/is.po +++ b/po/is.po @@ -267,3 +267,6 @@ msgstr "Emoji-tákn" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "Nýlegt" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Öllum breytingum verður fleygt." diff --git a/po/it_IT.po b/po/it_IT.po index cfbf965..1e940de 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recenti" \ No newline at end of file +msgstr "Recenti" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Ogni modifica sarà annullata." \ No newline at end of file diff --git a/po/ja_JP.po b/po/ja_JP.po index 831dcbe..c434352 100644 --- a/po/ja_JP.po +++ b/po/ja_JP.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "絵文字" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "最近使用した絵文字" \ No newline at end of file +msgstr "最近使用した絵文字" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "全ての変更を破棄します。" \ No newline at end of file diff --git a/po/ka.po b/po/ka.po index 9c0726e..3890712 100644 --- a/po/ka.po +++ b/po/ka.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "სიცილაკები" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ბოლოდროის" \ No newline at end of file +msgstr "ბოლოდროის" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ყველა ცვლილება გაუქმდება." \ No newline at end of file diff --git a/po/kk.po b/po/kk.po index f8e30c0..14fd2c1 100644 --- a/po/kk.po +++ b/po/kk.po @@ -267,3 +267,6 @@ msgstr "Смайликтер" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "Соңғы" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Барлық өзгерістер алынып тасталады." diff --git a/po/km.po b/po/km.po index 3a83120..e79c361 100644 --- a/po/km.po +++ b/po/km.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ថ្មីៗ" \ No newline at end of file +msgstr "ថ្មីៗ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "នឹង​ចោល​ការប្ដូរ​ទាំងអស់។" \ No newline at end of file diff --git a/po/kn.po b/po/kn.po index 0570ecb..c4de3cd 100644 --- a/po/kn.po +++ b/po/kn.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ಎಮೋಜಿಗಳು" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ಇತ್ತೀಚಿನ" \ No newline at end of file +msgstr "ಇತ್ತೀಚಿನ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ಎಲ್ಲ ಬದಲಾವಣೆಗಳನ್ನು ತ್ಯಜಿಸಲಾಗುವುದು." \ No newline at end of file diff --git a/po/ko_KR.po b/po/ko_KR.po index 79fbb48..7276b0e 100644 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "이모티콘" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "최근 보낸 이모티콘" \ No newline at end of file +msgstr "최근 보낸 이모티콘" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "변경사항을 저장하지 않습니다." \ No newline at end of file diff --git a/po/ky_KG.po b/po/ky_KG.po index cd404ed..3f8b33f 100644 --- a/po/ky_KG.po +++ b/po/ky_KG.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Эмоджилер" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Акыркы" \ No newline at end of file +msgstr "Акыркы" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Бардык өзгөртүүлөр четке кагылат." diff --git a/po/lo.po b/po/lo.po index 94deaf6..42626d8 100644 --- a/po/lo.po +++ b/po/lo.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ອີໂມຈີ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ຫຼ້າສຸດ" \ No newline at end of file +msgstr "ຫຼ້າສຸດ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ການປ່ຽນແປງທັງໝົດຈະຖືກລຶບ." \ No newline at end of file diff --git a/po/lt.po b/po/lt.po index 849b0c0..4088d35 100644 --- a/po/lt.po +++ b/po/lt.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Jaustukai" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Naujausi" \ No newline at end of file +msgstr "Naujausi" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Visi pakeitimai bus panaikinti." \ No newline at end of file diff --git a/po/lv.po b/po/lv.po index da84ed7..152bfa8 100644 --- a/po/lv.po +++ b/po/lv.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emocijzīmes" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Jaunākās" \ No newline at end of file +msgstr "Jaunākās" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Visas izmaiņas tiks atmestas." \ No newline at end of file diff --git a/po/mk.po b/po/mk.po index 814d447..763f696 100644 --- a/po/mk.po +++ b/po/mk.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Емоџија" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Последни" \ No newline at end of file +msgstr "Последни" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Сите промени ќе се отфрлат." \ No newline at end of file diff --git a/po/ml.po b/po/ml.po index 6f216b8..7cceb24 100644 --- a/po/ml.po +++ b/po/ml.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ഇമോജികൾ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "സമീപകാലം" \ No newline at end of file +msgstr "സമീപകാലം" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "എല്ലാ മാറ്റങ്ങളും ഒഴിവാക്കപ്പെടും." \ No newline at end of file diff --git a/po/mn_MN.po b/po/mn_MN.po index 28a0052..5b290ba 100644 --- a/po/mn_MN.po +++ b/po/mn_MN.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Эможи" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Саяхан" \ No newline at end of file +msgstr "Саяхан" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Бүх өөрчлөлт орхигдоно." \ No newline at end of file diff --git a/po/mr.po b/po/mr.po index 4f52734..4e749fd 100644 --- a/po/mr.po +++ b/po/mr.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "इमोजीस" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "अलीकडील" \ No newline at end of file +msgstr "अलीकडील" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "सर्व बदल काढून टाकले जातील." \ No newline at end of file diff --git a/po/ms.po b/po/ms.po index da99eb4..510d3fa 100644 --- a/po/ms.po +++ b/po/ms.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Terkini" \ No newline at end of file +msgstr "Terkini" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Semua perubahan akan dibuang." \ No newline at end of file diff --git a/po/my_MM.po b/po/my_MM.po index 55ea20f..be1e445 100644 --- a/po/my_MM.po +++ b/po/my_MM.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ခံစားချက်ပြပုံများ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "လတ်တလော" \ No newline at end of file +msgstr "လတ်တလော" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ပြောင်းလဲမှုများအားလုံးကို ဖယ်ထုတ်သွားမည်။" \ No newline at end of file diff --git a/po/my_ZG.po b/po/my_ZG.po index 3022b69..846c6d9 100644 --- a/po/my_ZG.po +++ b/po/my_ZG.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ခံစားခ်က္ျပပံုမ်ား" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "လတ္တေလာ" \ No newline at end of file +msgstr "လတ္တေလာ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ေျပာင္းလဲမႈမ်ားအားလုံးကို ဖယ္ထုတ္သြားမည္။" \ No newline at end of file diff --git a/po/nb.po b/po/nb.po index c3b5a26..1faf8fe 100644 --- a/po/nb.po +++ b/po/nb.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Humørikoner" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Nylige" \ No newline at end of file +msgstr "Nylige" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Alle endringer blir forkastet." \ No newline at end of file diff --git a/po/ne.po b/po/ne.po index 60cf322..f2b82ef 100644 --- a/po/ne.po +++ b/po/ne.po @@ -264,3 +264,6 @@ msgstr "इमोजीहरू" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "हालको" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "सबै परिवर्तनहरू खारेज गरिनेछ।" diff --git a/po/nl.po b/po/nl.po index 80708cc..cf939eb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -267,3 +267,6 @@ msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "Recent" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Alle wijzigingen worden verwijderd." diff --git a/po/or.po b/po/or.po index 88220f6..fbf5f12 100644 --- a/po/or.po +++ b/po/or.po @@ -265,3 +265,5 @@ msgstr "ଇମୋଜିଗୁଡିକ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" msgstr "ସମ୍ପ୍ରତି" +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ସମସ୍ତ ପରିବର୍ତ୍ତନ ପ୍ରତ୍ୟାଖିତ ହେବ।" \ No newline at end of file diff --git a/po/pa.po b/po/pa.po index b0048cc..63848b9 100644 --- a/po/pa.po +++ b/po/pa.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ਇਮੋਜਿਸ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ਹਾਲ ਹੀ ਦੇ" \ No newline at end of file +msgstr "ਹਾਲ ਹੀ ਦੇ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "ਸਭ ਬਦਲਾਵ ਖਾਰਿਜ ਹੋ ਜਾਣਗੇ।" diff --git a/po/pl.po b/po/pl.po index 03fb001..93f83e6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Ikony emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Ostatnie" \ No newline at end of file +msgstr "Ostatnie" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Wszystkie zmiany zostaną odrzucone." \ No newline at end of file diff --git a/po/pl_SP.po b/po/pl_SP.po index 067349f..13018f9 100644 --- a/po/pl_SP.po +++ b/po/pl_SP.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Ikōny emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Niydŏwne" \ No newline at end of file +msgstr "Niydŏwne" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Wszyjske zmiany ôstanōm ôdciepniynte." \ No newline at end of file diff --git a/po/pt_BR.po b/po/pt_BR.po index f0720b2..1613923 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recente" \ No newline at end of file +msgstr "Recente" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Todas as alterações serão descartadas." \ No newline at end of file diff --git a/po/pt_PT.po b/po/pt_PT.po index e7934ef..f822221 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recentes" \ No newline at end of file +msgstr "Recentes" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "As alterações serão todas eliminadas." \ No newline at end of file diff --git a/po/ro.po b/po/ro.po index 7dfb222..9330101 100644 --- a/po/ro.po +++ b/po/ro.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Recente" \ No newline at end of file +msgstr "Recente" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Toate schimbările vor fi anulate." \ No newline at end of file diff --git a/po/ru_RU.po b/po/ru_RU.po index 9a6d712..9314dfc 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Эмодзи" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Последние" \ No newline at end of file +msgstr "Последние" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Все изменения будут отменены." \ No newline at end of file diff --git a/po/si.po b/po/si.po index 000a413..1adc3b1 100644 --- a/po/si.po +++ b/po/si.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ඉමෝජි" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "මෑතකාලීන" \ No newline at end of file +msgstr "මෑතකාලීන" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "වෙනස්කම් සියල්ල බැහැර කෙරෙනු ඇත." \ No newline at end of file diff --git a/po/sk.po b/po/sk.po index 7ee13a9..6505e22 100644 --- a/po/sk.po +++ b/po/sk.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emotikony" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Nedávne" \ No newline at end of file +msgstr "Nedávne" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Všetky zmeny sa zahodia." \ No newline at end of file diff --git a/po/sl.po b/po/sl.po index c817457..21593d9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emotikoni Emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Nedavni" \ No newline at end of file +msgstr "Nedavni" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Vse spremembe bodo zavržene." \ No newline at end of file diff --git a/po/sq.po b/po/sq.po index f4637e4..c9e3c2a 100644 --- a/po/sq.po +++ b/po/sq.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emoji-t" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Së fundi" \ No newline at end of file +msgstr "Së fundi" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Gjithë ndryshimet do shpërfillen." \ No newline at end of file diff --git a/po/sr.po b/po/sr.po index 4790eb9..c4ddb51 100644 --- a/po/sr.po +++ b/po/sr.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emotikoni" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Nedavno" \ No newline at end of file +msgstr "Nedavno" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Sve promene će biti odbačene." \ No newline at end of file diff --git a/po/sv.po b/po/sv.po index 34cd98e..21f3597 100644 --- a/po/sv.po +++ b/po/sv.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojier" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Senaste" \ No newline at end of file +msgstr "Senaste" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Alla ändringar ignoreras." \ No newline at end of file diff --git a/po/ta.po b/po/ta.po index 37bdcd2..c674a89 100644 --- a/po/ta.po +++ b/po/ta.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "எமோஜிகள்" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "சமீபத்தியவை" \ No newline at end of file +msgstr "சமீபத்தியவை" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "அனைத்து மாற்றங்களும் தவிர்க்கப்படும்." \ No newline at end of file diff --git a/po/te.po b/po/te.po index 9a9398d..2bbfd7d 100644 --- a/po/te.po +++ b/po/te.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ఎమోజీలు" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ఇటీవలివి" \ No newline at end of file +msgstr "ఇటీవలివి" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "అన్ని మార్పులు విస్మరించబడతాయి." \ No newline at end of file diff --git a/po/tg_TJ.po b/po/tg_TJ.po index 6a21b45..5f74607 100644 --- a/po/tg_TJ.po +++ b/po/tg_TJ.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Эмоҷиҳо" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Охирин" \ No newline at end of file +msgstr "Охирин" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Ҳамаи тағйирот бекор карда мешавад." diff --git a/po/th.po b/po/th.po index 9e77f52..8614ef6 100644 --- a/po/th.po +++ b/po/th.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "อีโมจิ" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "ไม่นานมานี้" \ No newline at end of file +msgstr "ไม่นานมานี้" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "การ​เปลี่ยน​แปลง​ทั้ง​หมด​ จะ​ถูก​ละทิ้ง" \ No newline at end of file diff --git a/po/tk_TM.po b/po/tk_TM.po index 7a92bd7..3c8726b 100644 --- a/po/tk_TM.po +++ b/po/tk_TM.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojiler" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Soňky" \ No newline at end of file +msgstr "Soňky" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Ähli üýtgetmeler öçüriler." \ No newline at end of file diff --git a/po/tl.po b/po/tl.po index 6297468..66291c2 100644 --- a/po/tl.po +++ b/po/tl.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Mga emoji" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Kamakailan" \ No newline at end of file +msgstr "Kamakailan" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Idi-discard ang lahat ng pagbabago." \ No newline at end of file diff --git a/po/tr_TR.po b/po/tr_TR.po index 5b3e974..efde8b5 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojiler" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Son kullanılan" \ No newline at end of file +msgstr "Son kullanılan" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Tüm değişiklikler silinecek." \ No newline at end of file diff --git a/po/uk.po b/po/uk.po index a86ac1d..e06f4b0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Емодзі" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Останні" \ No newline at end of file +msgstr "Останні" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Усі зміни буде скасовано." \ No newline at end of file diff --git a/po/ur.po b/po/ur.po index 8789927..71109c0 100644 --- a/po/ur.po +++ b/po/ur.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "ایموجیز" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "حالیہ" \ No newline at end of file +msgstr "حالیہ" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "سبھی تبدیلیاں رد کردی جائیں گی۔" \ No newline at end of file diff --git a/po/uz.po b/po/uz.po index 9572d68..13d0506 100644 --- a/po/uz.po +++ b/po/uz.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojilar" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Oxirgi" \ No newline at end of file +msgstr "Oxirgi" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Barcha o‘zgartirishlar bekor qilinadi." \ No newline at end of file diff --git a/po/vi.po b/po/vi.po index 8552907..04d0431 100644 --- a/po/vi.po +++ b/po/vi.po @@ -263,4 +263,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "Emojis" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "Gần đây" \ No newline at end of file +msgstr "Gần đây" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "Mọi thay đổi sẽ không được lưu." \ No newline at end of file diff --git a/po/zh_CN.po b/po/zh_CN.po index a1f1f2a..8d1d026 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "表情符号" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "最近记录" \ No newline at end of file +msgstr "最近记录" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "将放弃全部更改。" \ No newline at end of file diff --git a/po/zh_HK.po b/po/zh_HK.po index cb500de..19d398b 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "表情文字" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "最近" \ No newline at end of file +msgstr "最近" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "將捨棄所有變更。" \ No newline at end of file diff --git a/po/zh_TW.po b/po/zh_TW.po index e96e11f..79900a1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -266,4 +266,7 @@ msgid "WDS_IME_HEADER_EMOJIS_ABB" msgstr "表情符號" msgid "WDS_IME_HEADER_RECENT_M_RECETLY_SENT_EMOJIS_ABB" -msgstr "最近" \ No newline at end of file +msgstr "最近" + +msgid "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED" +msgstr "將捨棄所有變更。" \ No newline at end of file diff --git a/res/mobile/images/tw_ic_popup_btn_check.png b/res/mobile/images/tw_ic_popup_btn_check.png new file mode 100644 index 0000000000000000000000000000000000000000..f20f62e7f8872c282aa2bb8135b3393de9dff42f GIT binary patch literal 1392 zcmbVMZA=?=7(aoHm&u?Sw6bZ=gJp@*-b=49cT(WEYgr@ZrEMH8e&BjN=%rk*-W|47 zRE8#2Hg)oWWeI}Gf*NCR(?pCirpdBpya;A7OSX)ez@~F!#QK6{!+3?3`GM?%m%ID_ z|IauP*+$`S^xk*p=%%G(N-k&>K;vw^M`&-0Z4kR23!EozIqp5!Fa$fk6RF)^Z{0id!v7Gb#%uY!KQT?pHu z9@WLdNXSx?NJ+ zr^GM>uB)gaJG2p0i@OP=C7B1!M#R7&78JDLMifT~oTvaX1VvyJgAuC%MM$%iL{Kn& zL7F!?&_;R~XWEx`vO_^tjgT-LjYf@8lTnh}VU!>U7{Oo+GiVwHr7NtmF+*4>%UED| zg_DJdDo9~4Ws&tuovIzuBHc(qjJVyKhQmslD2*~W#ztV&h`^$l%4=O)Q9b;Wt1L)sT(KnRcyim^Bd z6vs_w+<~KLt%ETW6y~&=EDVKPv5bwau!zZILl84X*lZMvI&h-4*6F}4gsIj{5EjIi z!MehV%7!^U<5$r9rm@6*u_P_?tSZSqN$SXSKvPgsB_$|DK-z0IqM)1Qgm6ldD$qv0 z3@-~W@d2kSiQqcJq_9N_qpW*XZ5V1@X1lADu`AD0dAh}}M|uZ~aw9?&_$2XCLa>wFa}!}))X_kMCsSu3^`RQAZz zr}l1NJ@8Q1W#Ij9UpbtZXj|UZ;(kinb)xJK6UOWg{Wbpj*N3|My}^scXwJy7g?ArJ zhDMXFtc0CDGc%l^XHf5n+jNxxoRkt@0rr_oxxv5tqxs;@H?AD%zVOj_sOJXWe15EZ z>P{YVs`>b84qKX>$f_Uyz5Hs!v-9mezaDyL@fl(A&Q7pl-1~?6_N0c#kZNwP|r;n;w|WU0S;JTJg=)KhWi9U`A_Od;bN2{Oh;? literal 0 HcmV?d00001 diff --git a/res/mobile/images/tw_ic_popup_btn_delete.png b/res/mobile/images/tw_ic_popup_btn_delete.png new file mode 100644 index 0000000000000000000000000000000000000000..58de36c9192d1dc72e3689fd31d3338faa624cff GIT binary patch literal 1457 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2nC-$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%qp275hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8hm3bwJ6}oxF$}kgLQj3#|G7CyF^YauyCMG83 zmzLNn0bL65LT&-v*t}wBFaZNhzap_f-%!s00+w{G(#^lGsVi;%)-dj(Z$)x&CuM?(AC7z+|1I|*~GxY z(ACt;%+(2|*Cju>G&eP`1g19yq1OecUQlAlEdbi=l3J8mmYU*Ll%J~r_Ow+dZnrq% zG!Lpb1-DzAaO%|uIz}H9wMbD769T3m5EGtofgE_!Pt60S_ab1zel}6*Cj$eMvZsq< zNX4x;H!r$72gC`a8Gy-QT%)Z(G^#^S`_KT>9?a&*$7f)U)w|%@wB%KQCt! z7ZCc#qQd^tA*kzlX#15VZW7wN6FyB~{Jly}Mb|J)t@K-L^`gfq0?ywyzY|H|yYc?k z@+KFB@SLi<&PFT^9n6PTDP2{c)cQsCpXYt$w)Pc)_o9?$tnogg*mPs*zrKi*Gqzve zQZ?a7LI=NOi*yHvntF$Yn}GGE&qdYo%g-*qwneJIp!*7kz5w@SXM;+1m&1u?q?bG@ zvx}3Tt;v$S#=4dBNGBHy>yblulx8gIv~U%Oj(hI7RVjIfx`(^!A&(gwx+k@4QDi;% z`uK$06Ok9Tee9oLdgALELAO@XFI$D4sRz3V%%1Rhf&7|#itFd>?{BVi>T!;mu<3y5 z(gjXEoMx=*62c6>nGW82y74fxLfWBB1D5k2Se{%;oGalNrcii-^|@5MxC_rmCe7RH zdJ7F!*Evo)Ay^@lc)TPuAw*%GqH0Rcl;+6!qDLI=D0HMYUhh!)tsgG&>g>ZwN3tbn zm~EPQCxCUK%MC-_uDOOsGYd2>l|M?D6=ztd>|!X&<-zXwg!A^&8=6H&vYB?}p5g5f zysiIPV&0d5{buU99PxNx%t&UUuuye5dG)>qG0Qk T^Uv(91Qnv5u6{1-oD!MuP*+$`S^xk*p=%%G(N-k&>K;vw^M`&-0Z4kR23!EozIqp5!Fa$fk6RF)^Z{0id!v7Gb#%uY!KQT?pHu z9@WLdNXSx?NJ+ zr^GM>uB)gaJG2p0i@OP=C7B1!M#R7&78JDLMifT~oTvaX1VvyJgAuC%MM$%iL{Kn& zL7F!?&_;R~XWEx`vO_^tjgT-LjYf@8lTnh}VU!>U7{Oo+GiVwHr7NtmF+*4>%UED| zg_DJdDo9~4Ws&tuovIzuBHc(qjJVyKhQmslD2*~W#ztV&h`^$l%4=O)Q9b;Wt1L)sT(KnRcyim^Bd z6vs_w+<~KLt%ETW6y~&=EDVKPv5bwau!zZILl84X*lZMvI&h-4*6F}4gsIj{5EjIi z!MehV%7!^U<5$r9rm@6*u_P_?tSZSqN$SXSKvPgsB_$|DK-z0IqM)1Qgm6ldD$qv0 z3@-~W@d2kSiQqcJq_9N_qpW*XZ5V1@X1lADu`AD0dAh}}M|uZ~aw9?&_$2XCLa>wFa}!}))X_kMCsSu3^`RQAZz zr}l1NJ@8Q1W#Ij9UpbtZXj|UZ;(kinb)xJK6UOWg{Wbpj*N3|My}^scXwJy7g?ArJ zhDMXFtc0CDGc%l^XHf5n+jNxxoRkt@0rr_oxxv5tqxs;@H?AD%zVOj_sOJXWe15EZ z>P{YVs`>b84qKX>$f_Uyz5Hs!v-9mezaDyL@fl(A&Q7pl-1~?6_N0c#kZNwP|r;n;w|WU0S;JTJg=)KhWi9U`A_Od;bN2{Oh;? literal 0 HcmV?d00001 diff --git a/res/tv/images/tw_ic_popup_btn_delete.png b/res/tv/images/tw_ic_popup_btn_delete.png new file mode 100644 index 0000000000000000000000000000000000000000..58de36c9192d1dc72e3689fd31d3338faa624cff GIT binary patch literal 1457 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2nC-$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%qp275hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8hm3bwJ6}oxF$}kgLQj3#|G7CyF^YauyCMG83 zmzLNn0bL65LT&-v*t}wBFaZNhzap_f-%!s00+w{G(#^lGsVi;%)-dj(Z$)x&CuM?(AC7z+|1I|*~GxY z(ACt;%+(2|*Cju>G&eP`1g19yq1OecUQlAlEdbi=l3J8mmYU*Ll%J~r_Ow+dZnrq% zG!Lpb1-DzAaO%|uIz}H9wMbD769T3m5EGtofgE_!Pt60S_ab1zel}6*Cj$eMvZsq< zNX4x;H!r$72gC`a8Gy-QT%)Z(G^#^S`_KT>9?a&*$7f)U)w|%@wB%KQCt! z7ZCc#qQd^tA*kzlX#15VZW7wN6FyB~{Jly}Mb|J)t@K-L^`gfq0?ywyzY|H|yYc?k z@+KFB@SLi<&PFT^9n6PTDP2{c)cQsCpXYt$w)Pc)_o9?$tnogg*mPs*zrKi*Gqzve zQZ?a7LI=NOi*yHvntF$Yn}GGE&qdYo%g-*qwneJIp!*7kz5w@SXM;+1m&1u?q?bG@ zvx}3Tt;v$S#=4dBNGBHy>yblulx8gIv~U%Oj(hI7RVjIfx`(^!A&(gwx+k@4QDi;% z`uK$06Ok9Tee9oLdgALELAO@XFI$D4sRz3V%%1Rhf&7|#itFd>?{BVi>T!;mu<3y5 z(gjXEoMx=*62c6>nGW82y74fxLfWBB1D5k2Se{%;oGalNrcii-^|@5MxC_rmCe7RH zdJ7F!*Evo)Ay^@lc)TPuAw*%GqH0Rcl;+6!qDLI=D0HMYUhh!)tsgG&>g>ZwN3tbn zm~EPQCxCUK%MC-_uDOOsGYd2>l|M?D6=ztd>|!X&<-zXwg!A^&8=6H&vYB?}p5g5f zysiIPV&0d5{buU99PxNx%t&UUuuye5dG)>qG0Qk T^Uv(91Qnv5u6{1-oD!MuP*+$`S^xk*p=%%G(N-k&>K;vw^M`&-0Z4kR23!EozIqp5!Fa$fk6RF)^Z{0id!v7Gb#%uY!KQT?pHu z9@WLdNXSx?NJ+ zr^GM>uB)gaJG2p0i@OP=C7B1!M#R7&78JDLMifT~oTvaX1VvyJgAuC%MM$%iL{Kn& zL7F!?&_;R~XWEx`vO_^tjgT-LjYf@8lTnh}VU!>U7{Oo+GiVwHr7NtmF+*4>%UED| zg_DJdDo9~4Ws&tuovIzuBHc(qjJVyKhQmslD2*~W#ztV&h`^$l%4=O)Q9b;Wt1L)sT(KnRcyim^Bd z6vs_w+<~KLt%ETW6y~&=EDVKPv5bwau!zZILl84X*lZMvI&h-4*6F}4gsIj{5EjIi z!MehV%7!^U<5$r9rm@6*u_P_?tSZSqN$SXSKvPgsB_$|DK-z0IqM)1Qgm6ldD$qv0 z3@-~W@d2kSiQqcJq_9N_qpW*XZ5V1@X1lADu`AD0dAh}}M|uZ~aw9?&_$2XCLa>wFa}!}))X_kMCsSu3^`RQAZz zr}l1NJ@8Q1W#Ij9UpbtZXj|UZ;(kinb)xJK6UOWg{Wbpj*N3|My}^scXwJy7g?ArJ zhDMXFtc0CDGc%l^XHf5n+jNxxoRkt@0rr_oxxv5tqxs;@H?AD%zVOj_sOJXWe15EZ z>P{YVs`>b84qKX>$f_Uyz5Hs!v-9mezaDyL@fl(A&Q7pl-1~?6_N0c#kZNwP|r;n;w|WU0S;JTJg=)KhWi9U`A_Od;bN2{Oh;? literal 0 HcmV?d00001 diff --git a/res/wearable/images/tw_ic_popup_btn_delete.png b/res/wearable/images/tw_ic_popup_btn_delete.png new file mode 100644 index 0000000000000000000000000000000000000000..58de36c9192d1dc72e3689fd31d3338faa624cff GIT binary patch literal 1457 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2nC-$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%qp275hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8hm3bwJ6}oxF$}kgLQj3#|G7CyF^YauyCMG83 zmzLNn0bL65LT&-v*t}wBFaZNhzap_f-%!s00+w{G(#^lGsVi;%)-dj(Z$)x&CuM?(AC7z+|1I|*~GxY z(ACt;%+(2|*Cju>G&eP`1g19yq1OecUQlAlEdbi=l3J8mmYU*Ll%J~r_Ow+dZnrq% zG!Lpb1-DzAaO%|uIz}H9wMbD769T3m5EGtofgE_!Pt60S_ab1zel}6*Cj$eMvZsq< zNX4x;H!r$72gC`a8Gy-QT%)Z(G^#^S`_KT>9?a&*$7f)U)w|%@wB%KQCt! z7ZCc#qQd^tA*kzlX#15VZW7wN6FyB~{Jly}Mb|J)t@K-L^`gfq0?ywyzY|H|yYc?k z@+KFB@SLi<&PFT^9n6PTDP2{c)cQsCpXYt$w)Pc)_o9?$tnogg*mPs*zrKi*Gqzve zQZ?a7LI=NOi*yHvntF$Yn}GGE&qdYo%g-*qwneJIp!*7kz5w@SXM;+1m&1u?q?bG@ zvx}3Tt;v$S#=4dBNGBHy>yblulx8gIv~U%Oj(hI7RVjIfx`(^!A&(gwx+k@4QDi;% z`uK$06Ok9Tee9oLdgALELAO@XFI$D4sRz3V%%1Rhf&7|#itFd>?{BVi>T!;mu<3y5 z(gjXEoMx=*62c6>nGW82y74fxLfWBB1D5k2Se{%;oGalNrcii-^|@5MxC_rmCe7RH zdJ7F!*Evo)Ay^@lc)TPuAw*%GqH0Rcl;+6!qDLI=D0HMYUhh!)tsgG&>g>ZwN3tbn zm~EPQCxCUK%MC-_uDOOsGYd2>l|M?D6=ztd>|!X&<-zXwg!A^&8=6H&vYB?}p5g5f zysiIPV&0d5{buU99PxNx%t&UUuuye5dG)>qG0Qk T^Uv(91Qnv5u6{1-oD!Mnaviframe); elm_object_style_set(popup, "circle"); -// uxt_popup_set_rotary_event_enabled(popup, EINA_TRUE); eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, popup_hide_cb, NULL); evas_object_smart_callback_add(popup, "dismissed", popup_hide_finished_cb, NULL); evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); layout = elm_layout_add(popup); elm_layout_theme_set(layout, "layout", "popup", "content/circle/buttons2"); - elm_object_domain_translatable_part_text_set(layout, "elm.text", PACKAGE, "IDS_ST_SK_OK"); + elm_object_domain_translatable_part_text_set(layout, "elm.text", PACKAGE, "WDS_WNOTI_POP_ALL_CHANGES_WILL_BE_DISCARDED"); elm_object_content_set(popup, layout); evas_object_show(layout); -- 2.7.4 From d6cdfb7aa0e934f3ad11e505911cc0866c87262f Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Fri, 13 Oct 2017 16:27:50 +0900 Subject: [PATCH 09/16] Update package version to 0.1.171013 Change-Id: Ifcde571420a915641ee9ebfca546ecd113f9d1db Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index 4ce9878..3dcc4a2 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index ca08284..d79f212 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.171011 +Version: 0.1.171013 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From e1925b93021c6b340e2e8175fd709cbe79c3a1bd Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Mon, 16 Oct 2017 15:46:54 +0900 Subject: [PATCH 10/16] Fix issue that can't select last item in genlist Change-Id: Iff8c9aa00409ab11a7cd72688c0d73b009d757ac Signed-off-by: sungwook79.park --- src/w-input-selector.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index a9f33b9..77e12c1 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -989,6 +989,20 @@ unsigned int _update_template_items(void *user_data) item_size++; } elm_genlist_item_class_free(itc); + + // dummy item for empty space + Elm_Genlist_Item_Class * itc0 = elm_genlist_item_class_new(); + itc0->item_style = "title"; + itc0->func.text_get = NULL; + itc0->func.content_get = NULL; + itc0->func.state_get = NULL; + itc0->func.del = NULL; + + it_empty = elm_genlist_item_append(app_data->genlist, itc0, + NULL, NULL, + ELM_GENLIST_ITEM_NONE, + NULL, NULL); + elm_genlist_item_class_free(itc0); } return item_size; -- 2.7.4 From ed8449eeec7aebf38e633f30640edd647faa61cc Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Tue, 17 Oct 2017 14:27:45 +0900 Subject: [PATCH 11/16] Update package version to 0.1.171017 Change-Id: I1179897cae4c0133f122746233bd3c0d9817f7b2 Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index 3dcc4a2..b972f89 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index d79f212..5fa6bd9 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.171013 +Version: 0.1.171017 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From c2e9fe8ffc69191f3ce36b07e6caa967b6ed954f Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 18 Oct 2017 15:03:35 +0900 Subject: [PATCH 12/16] Add app-specific input method to quick response list Change-Id: I00a6a94dba8b64b79371e1a9b88f14a2811f0f6e Signed-off-by: sungwook79.park --- src/w-input-selector.cpp | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index 77e12c1..23db269 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -462,6 +462,39 @@ static void __ise_gl_lang_changed(void *data, Evas_Object *obj, void *event_info elm_genlist_realized_items_update(obj); } +static char * __ise_drawing_text_get(void *data, Evas_Object *obj, const char *part) +{ + if(!strcmp(part, "elm.text")) { + return(strdup(gettext("WDS_IME_MBODY_DRAWING_M_EMOTICON_ABB"))); + } + return NULL; +} + +static Evas_Object * __ise_drawing_content_get(void *data, Evas_Object *obj, const char *part) +{ + if (!strcmp(part, "elm.icon")) { + Evas_Object* btn = elm_button_add(obj); + evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); + evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL); + Evas_Object* ic = elm_image_add(btn); + elm_image_resizable_set(ic, EINA_TRUE, EINA_TRUE); + string path = get_resource_path(); + if (_WEARABLE) + path = path + "wearable/"; + else if (_TV) + path = path + "tv/"; + else + path = path + "mobile/"; + elm_object_style_set(btn, "ime_button_drawing"); + string path_ic = path + "images/wi_drawing_icon.png"; + elm_image_file_set(ic, path_ic.c_str(), NULL); + elm_object_content_set(btn, ic); + evas_object_layer_set(btn, 32000); + return btn; + } + return NULL; +} + void set_source_caller_app_id(app_control_h app_control) { if (!app_control){ @@ -921,6 +954,15 @@ unsigned int _update_smartreply_items(void *user_data) return item_size; } +static void _drawing_item_clicked_cb(void *data, Evas_Object * obj, void *event_info) +{ + PRINTFUNC(DLOG_DEBUG, "%s", __func__); + App_Data* ad = (App_Data*) data; + if (!ad) + return; + + launch_drawing_app(ad); +} unsigned int _update_template_items(void *user_data) { @@ -990,6 +1032,28 @@ unsigned int _update_template_items(void *user_data) } elm_genlist_item_class_free(itc); + // drawing button (+) + if (app_data->mime_type == MIME_TYPE_ALL) { + Elm_Genlist_Item_Class *itc; + itc = elm_genlist_item_class_new(); + + itc->item_style = "1text.1icon"; + itc->func.text_get = __ise_drawing_text_get;; + itc->func.content_get = __ise_drawing_content_get; + itc->func.state_get = NULL; + itc->func.del = NULL; + + elm_genlist_item_append(app_data->genlist, + itc, + NULL, + NULL, + ELM_GENLIST_ITEM_NONE, + _drawing_item_clicked_cb, + app_data); + + elm_genlist_item_class_free(itc); + } + // dummy item for empty space Elm_Genlist_Item_Class * itc0 = elm_genlist_item_class_new(); itc0->item_style = "title"; -- 2.7.4 From 1f648d3e3b22a71adb0dff013df9c1ecb5542856 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 18 Oct 2017 15:32:49 +0900 Subject: [PATCH 13/16] Update package version to 0.1.171018 Change-Id: I4b1fa2c8b60ab77b695ea17a62bdbff09ad74e05 Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index b972f89..e55bf7c 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 5fa6bd9..7d1cc28 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.171017 +Version: 0.1.171018 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From c3fe22e4247c789ff4f999895078642887145767 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Mon, 23 Oct 2017 13:41:41 +0900 Subject: [PATCH 14/16] Support screen reader Change-Id: Ib7757d4686e67d1da49ff390ff193217a7032d7e Signed-off-by: sungwook79.park --- src/w-input-selector.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/w-input-selector.cpp b/src/w-input-selector.cpp index 23db269..51a15af 100755 --- a/src/w-input-selector.cpp +++ b/src/w-input-selector.cpp @@ -305,13 +305,22 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj, if (!strcmp(first_input_type, "input_voice")) { elm_object_style_set(btn, "ime_button_stt"); path_ic = path + "images/w_mode_stt_ic.png"; + evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(first_input_type, "input_emoticon")) { elm_object_style_set(btn, "ime_button_emoticon"); path_ic = path + "images/Delta_w_mode_emoticon_ic.png"; + evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(first_input_type, "input_keyboard")) { elm_object_style_set(btn, "ime_button_keyboard"); path_ic = path + "images/w_mode_keyboard_ic.png"; evas_object_propagate_events_set(btn, EINA_FALSE); + evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } elm_image_file_set(ic, path_ic.c_str(), NULL); elm_object_content_set(btn, ic); @@ -321,13 +330,22 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj, if (!strcmp(second_input_type, "input_voice")) { elm_object_style_set(btn, "ime_button_stt"); path_ic = path + "images/w_mode_stt_ic.png"; + evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(second_input_type, "input_emoticon")) { elm_object_style_set(btn, "ime_button_emoticon"); path_ic = path + "images/Delta_w_mode_emoticon_ic.png"; + evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(second_input_type, "input_keyboard")) { elm_object_style_set(btn, "ime_button_keyboard"); path_ic = path + "images/w_mode_keyboard_ic.png"; evas_object_propagate_events_set(btn, EINA_FALSE); + evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } elm_image_file_set(ic, path_ic.c_str(), NULL); elm_object_content_set(btn, ic); @@ -344,21 +362,33 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj, evas_object_layer_set(btn, 32000); if (!strcmp(first_input_type, "input_voice")) { evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(first_input_type, "input_emoticon")) { evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(first_input_type, "input_keyboard")) { evas_object_propagate_events_set(btn, EINA_FALSE); evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } } else if (!strcmp(part, "elm.icon.2.touch_area")){ evas_object_layer_set(btn, 32000); if (!strcmp(second_input_type, "input_voice")) { evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(second_input_type, "input_emoticon")) { evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(second_input_type, "input_keyboard")) { evas_object_propagate_events_set(btn, EINA_FALSE); evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } } return btn; @@ -392,6 +422,9 @@ static Evas_Object * __ise_gl_3button_content_get(void *data, Evas_Object *obj, elm_image_file_set(ic, path_ic.c_str(), NULL); elm_object_content_set(btn, ic); evas_object_layer_set(btn, 32000); + evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(part, "elm.icon.2")){ elm_object_style_set(btn, "ime_button_emoticon"); @@ -399,6 +432,9 @@ static Evas_Object * __ise_gl_3button_content_get(void *data, Evas_Object *obj, elm_image_file_set(ic, path_ic.c_str(), NULL); elm_object_content_set(btn, ic); evas_object_layer_set(btn, 32000); + evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(part, "elm.icon.3")){ elm_object_style_set(btn, "ime_button_keyboard"); @@ -407,6 +443,9 @@ static Evas_Object * __ise_gl_3button_content_get(void *data, Evas_Object *obj, elm_object_content_set(btn, ic); evas_object_layer_set(btn, 32000); evas_object_propagate_events_set(btn, EINA_FALSE); + evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } return btn; @@ -419,14 +458,20 @@ static Evas_Object * __ise_gl_3button_content_get(void *data, Evas_Object *obj, if (!strcmp(part, "elm.icon.1.touch_area")) { evas_object_layer_set(btn, 32000); evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_IME_MBODY_VOICE_INPUT"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(part, "elm.icon.2.touch_area")){ evas_object_layer_set(btn, 32000); evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_HEADER_EMOTICON"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } else if (!strcmp(part, "elm.icon.3.touch_area")) { evas_object_layer_set(btn, 32000); evas_object_propagate_events_set(btn, EINA_FALSE); evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data); + elm_atspi_accessible_name_set(btn, "IDS_COM_OPT_KEYBOARD"); + elm_atspi_accessible_translation_domain_set(btn, PACKAGE); } return btn; -- 2.7.4 From 74f2cf16e8e8591f7ecee1e854e6a94a17442921 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Mon, 23 Oct 2017 17:45:25 +0900 Subject: [PATCH 15/16] Update package version to 0.1.171023 Change-Id: I9ba79fedb99ac06a62ead530638434bb27da6297 Signed-off-by: sungwook79.park --- org.tizen.inputdelegator.xml | 2 +- packaging/org.tizen.inputdelegator.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.inputdelegator.xml b/org.tizen.inputdelegator.xml index e55bf7c..2ff211c 100755 --- a/org.tizen.inputdelegator.xml +++ b/org.tizen.inputdelegator.xml @@ -1,5 +1,5 @@ - + diff --git a/packaging/org.tizen.inputdelegator.spec b/packaging/org.tizen.inputdelegator.spec index 7d1cc28..92a1380 100755 --- a/packaging/org.tizen.inputdelegator.spec +++ b/packaging/org.tizen.inputdelegator.spec @@ -9,7 +9,7 @@ Name: org.tizen.inputdelegator Summary: Input Delegator Application -Version: 0.1.171018 +Version: 0.1.171023 Release: 1 Group: Applications License: Apache-2.0 -- 2.7.4 From 0fb68a71c8b61f3a5fdf4599e31d130b1445f043 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Wed, 25 Oct 2017 18:37:44 +0900 Subject: [PATCH 16/16] Fix issue that voice recording file is crashed Change-Id: Ic17b9e6938dc62f93d84604bd3383e8cb1bef0f1 Signed-off-by: sungwook79.park --- src/voice-recorder.cpp | 2 +- src/w-input-stt-voice.cpp | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/voice-recorder.cpp b/src/voice-recorder.cpp index ef2c017..23139df 100644 --- a/src/voice-recorder.cpp +++ b/src/voice-recorder.cpp @@ -18,7 +18,7 @@ #include #include #include -#include +#include "Debug.h" #include #include "voice-recorder.h" diff --git a/src/w-input-stt-voice.cpp b/src/w-input-stt-voice.cpp index 7ce7973..5e3f576 100755 --- a/src/w-input-stt-voice.cpp +++ b/src/w-input-stt-voice.cpp @@ -452,11 +452,13 @@ static void on_confirm_button_clicked_cb(void *data, Evas_Object *obj, void *eve } SECURE_LOGD("result_text = %s", result_text.c_str()); + stop_voice_recorder(); char *filePath = NULL; voice_recorder *vr = _voice_recorder_get_data(); - if (!vr) + if (vr) filePath = vr->file_path; + char *path[] = {filePath, }; reply_to_sender_by_callback(result_text.c_str(), "voice", (const char **)path, NULL); destroy_voice(); -- 2.7.4