hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2391268f5b09da0f6f116fcc5fb3d0078b374c32
commit 2391268f5b09da0f6f116fcc5fb3d0078b374c32 Author: Taehyub Kim <taehyub....@samsung.com> Date: Tue Jun 28 13:49:56 2016 +0900 tools: change the description of window layout Summary: change the description of window layout Test Plan: 1. move the mouse cursor on EDC Navigator and Status item of tools 2. see the tooltip messages Reviewers: Hermet, Jaehyun_Cho, NikaWhite, bowonryu Differential Revision: https://phab.enlightenment.org/D4098 --- src/bin/tools.c | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/bin/tools.c b/src/bin/tools.c index 46ecef6..7b40bcd 100644 --- a/src/bin/tools.c +++ b/src/bin/tools.c @@ -320,11 +320,10 @@ tools_init(Evas_Object *parent) td->template_btn = btn; btn = tools_btn_create(text_editor_ly, "console", - _("Console Box (Alt + Down)<br>" - "Display Console box. Console box displays<br>" - "edc build logs such as error messages. It pops<br>" - "up automatically when compliation errors are<br>" - "occurred."), + _("Console box (Alt + Down)<br>" + "Display the console box, which shows the EDC<br>" + "build logs, such as error messages. It pops<br>" + "up automatically when compliation errors occur."), console_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); @@ -332,8 +331,8 @@ tools_init(Evas_Object *parent) td->console_btn = btn; btn = tools_btn_create(text_editor_ly, "file_browser", - _("File Browser (F9)<br>" - "Display File Browser which displays a file list<br>" + _("File browser (F9)<br>" + "Display the file browser, which shows a file list<br>" "in current workspace."), file_browser_cb); evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); @@ -342,10 +341,10 @@ tools_init(Evas_Object *parent) td->file_browser_btn = btn; btn = tools_btn_create(text_editor_ly, "edc_navigator", - _("EDC Navigator (F10)<br>" - "Display EDC Navigator. EDC Navigator displays<br>" - "a current group hierarchy tree that contains<br>" - "parts, descriptions, programs lists"), + _("EDC navigator (F10)<br>" + "Display the EDC navigator, which shows the current<br>" + "group hierarchy tree that contains parts,<br>" + "descriptions and programs lists."), edc_navigator_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); @@ -355,9 +354,8 @@ tools_init(Evas_Object *parent) btn = tools_btn_create(text_editor_ly, "status", _("Status (F11)<br>" - "Display Status bar on the bottom area.<br>" - "Status bar displays subsidiary information for<br>" - "editing."), + "Display the status bar, which shows subsidiary<br>" + "information for editing in the bottom area."), status_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); @@ -365,8 +363,8 @@ tools_init(Evas_Object *parent) td->status_btn = btn; btn = tools_btn_create(text_editor_ly, "menu", - _("Enventor Menu (Esc)<br>" - "Open Enventor Main Menu."), + _("Enventor menu (Esc)<br>" + "Open the Enventor main menu."), menu_cb); elm_object_tooltip_orient_set(btn, ELM_TOOLTIP_ORIENT_BOTTOM_LEFT); evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); --