From: sooyeon.kim Date: Wed, 7 Oct 2020 10:57:12 +0000 (+0900) Subject: [tbtcoreapp][stt] Add a description about network disconnection X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F45%2F245345%2F2;p=test%2Ftct%2Fnative%2Fbehavior.git [tbtcoreapp][stt] Add a description about network disconnection Change-Id: If4103edb65c82da5b20e74fb136cb12ce4422332 Signed-off-by: sooyeon.kim --- diff --git a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk index f37742d..d73ec95 100755 Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-1.0.0-arm.tpk differ diff --git a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk index ec28071..4df6929 100755 Binary files a/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-1.0.0-x86.tpk differ diff --git a/tbtcoreapp/src/model/tbt-list.c b/tbtcoreapp/src/model/tbt-list.c index f3793bb..25ff2e4 100644 --- a/tbtcoreapp/src/model/tbt-list.c +++ b/tbtcoreapp/src/model/tbt-list.c @@ -2381,9 +2381,10 @@ static tbt_info tbtapps[] = .parent = "TTS/STT", .apptype = TBT_APP_STT_ERROR, .icon_name = "dummy", - .info = "1. Disconnect Internet.
" - "2. Press Speak button.
" - "3. An error message will be shown in top", + .info = "1. Open a target shell. (Press ctrl + shift + s)
" + "2. Input a command to disconnect Internet. (# vconftool set -t int memory/dnet/status 0 -f)
" + "3. Press Speak button.
" + "4. An error message will be shown in top", .result = 0 }, #endif diff --git a/tbtcoreapp/src/view/tbt-stt-view.c b/tbtcoreapp/src/view/tbt-stt-view.c index e25c233..20480d1 100644 --- a/tbtcoreapp/src/view/tbt-stt-view.c +++ b/tbtcoreapp/src/view/tbt-stt-view.c @@ -191,7 +191,7 @@ stt_view *stt_view_add(Evas_Object *navi, tbt_info *tbt_info, Elm_Object_Item *i } else if(this->view->tbt_info->apptype == TBT_APP_STT_ERROR) { - ui_utils_label_set_text(this->input_text, "Disconnect Internet, Then press Speak button", "left"); + ui_utils_label_set_text(this->input_text, "Disconnect Internet (Turn off wifi or Input a command 'vconftool set -t int memory/dnet/status 0 -f' in target shell), Then press Speak button", "left"); } elm_object_part_content_set(this->view->layout, "txt_part_1", this->input_text);