hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=f1d5e5605dd9b29aa975e295eff70e805e070175

commit f1d5e5605dd9b29aa975e295eff70e805e070175
Author: Taehyub Kim <taehyub....@samsung.com>
Date:   Tue Jun 28 13:48:37 2016 +0900

    statusbar: change the description
    
    Summary: change the description
    
    Test Plan:
    1. move the mouse cursor on each statusbar item
       (Resize, Swap and Group)
    2. see the tooltip messages
    
    Reviewers: Hermet, Jaehyun_Cho, NikaWhite, bowonryu
    
    Differential Revision: https://phab.enlightenment.org/D4097
---
 src/bin/statusbar.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/bin/statusbar.c b/src/bin/statusbar.c
index 4e14c0e..4271370 100644
--- a/src/bin/statusbar.c
+++ b/src/bin/statusbar.c
@@ -319,18 +319,18 @@ stats_init(Evas_Object *parent)
 
    //View Scale button
    create_statusbar_btn(layout, "expand", "scale_btn",
-                        _("View Zoom Level (Ctrl + Mouse Wheel)<br>"
-                          "Zooming live view in or out."),
+                        _("View zoom level (Ctrl + Mouse Wheel)<br>"
+                          "Zoom the live view in or out."),
                         ELM_TOOLTIP_ORIENT_TOP_RIGHT,
                         view_scale_btn_cb, sd);
    //View Resize Button
    create_statusbar_btn(layout, "expand", "resize_btn",
-                        _("Resize live view width and height."),
+                        _("Resize the width and height of the live view."),
                         ELM_TOOLTIP_ORIENT_TOP,
                         view_resize_btn_cb, sd);
    //View Invert Button
    create_statusbar_btn(layout, "invert", "invert_btn",
-                        _("Swap the live view width and height."),
+                        _("Swap the width and height of the live view."),
                         ELM_TOOLTIP_ORIENT_TOP,
                         view_invert_btn_cb, sd);
 
@@ -341,7 +341,7 @@ stats_init(Evas_Object *parent)
                                arrow_tooltip);
    elm_object_tooltip_text_set(arrow_tooltip,
                                 _("Mouse cursor position in live view.<br>"
-                                  "Absolute Coordinate | Relative 
Coordinate"));
+                                  "Absolute coordinate | Relative 
coordinate."));
    elm_object_tooltip_orient_set(arrow_tooltip, ELM_TOOLTIP_ORIENT_TOP);
    elm_object_focus_allow_set(arrow_tooltip, EINA_FALSE);
 
@@ -351,7 +351,7 @@ stats_init(Evas_Object *parent)
    elm_object_part_content_set(layout, "elm.swallow.group_icon.tooltip",
                                group_tooltip);
    elm_object_tooltip_text_set(group_tooltip,
-                               _("Current editing group name."));
+                               _("Name of the current editing group."));
    elm_object_tooltip_orient_set(group_tooltip, ELM_TOOLTIP_ORIENT_TOP);
    elm_object_focus_allow_set(group_tooltip, EINA_FALSE);
 

-- 


Reply via email to