hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=964a57936fbb7aecb860a3426d47e7c789eece3d
commit 964a57936fbb7aecb860a3426d47e7c789eece3d Author: Taehyub Kim <taehyub....@samsung.com> Date: Tue Jun 28 13:53:12 2016 +0900 tools: change the description for the tools of live edit mode Summary: change the descrtipion for the tools for live edit mode Test Plan: 1. move the mouse cursor on part highlighting, dummy parts and mirror mode tools 2. see the tooltip messages Reviewers: Jaehyun_Cho, NikaWhite, bowonryu, Hermet Reviewed By: Hermet Differential Revision: https://phab.enlightenment.org/D4103 --- src/bin/tools.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/bin/tools.c b/src/bin/tools.c index 7b40bcd..1aaa63a 100644 --- a/src/bin/tools.c +++ b/src/bin/tools.c @@ -198,9 +198,9 @@ tools_init(Evas_Object *parent) Evas_Object *btn; btn = tools_btn_create(live_view_ly, "highlight", - _("Part Highlighting (Ctrl + H)<br>" - "Highlight effect on the selected part in the<br>" - "live view."), + _("Part highlighting (Ctrl + H)<br>" + "Show a highlight effect on the selected part<br>" + "in the live view."), highlight_cb); elm_object_tooltip_orient_set(btn, ELM_TOOLTIP_ORIENT_BOTTOM_RIGHT); evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); @@ -209,7 +209,7 @@ tools_init(Evas_Object *parent) td->highlight_btn = btn; btn = tools_btn_create(live_view_ly, "dummy", - _("Dummy Parts (Ctrl + W)<br>" + _("Dummy parts (Ctrl + W)<br>" "Display virtual images for the swallow and<br>" "spacer parts."), dummy_cb); @@ -220,10 +220,10 @@ tools_init(Evas_Object *parent) td->swallow_btn = btn; btn = tools_btn_create(live_view_ly, "mirror", - _("Mirror Mode (Ctrl + M)<br>" - "Invert layout horizontally. This previews <br>" - "design layout for the environemnt, RTL(Right<br>" - "to Left)/LTR(Left to Right) setting."), + _("Mirror mode (Ctrl + M)<br>" + "Invert the layout horizontally and review<br>" + "the designed layout in RTL(right-to-left)<br>" + "LTR(left-to-right) settings."), mirror_cb); 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); --