tasn pushed a commit to branch master.

http://git.enlightenment.org/apps/ecrire.git/commit/?id=e89d8b4f13683cda4f952c2296e5d627d70113d2

commit e89d8b4f13683cda4f952c2296e5d627d70113d2
Author: Wojciech Jabłoński <wojablon...@gmail.com>
Date:   Tue Jun 2 10:46:11 2015 +0100

    Ecrire: some cosmetic work on wording and correct icon name.
    
    Summary:
    Shrink some Toolbar captions so the icons are closer together.
    Also one icon had wrong name, I believe. ___ Couldn't test it coz make
    fails here. I mean it fails even without my changes. Anyway, I hope it's
    good and applies, if not I hope for understanding
    
    Reviewers: tasn
    
    Differential Revision: https://phab.enlightenment.org/D2595
---
 src/bin/main.c             | 4 ++--
 src/bin/ui/goto_dialog.c   | 6 +++---
 src/bin/ui/search_dialog.c | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/bin/main.c b/src/bin/main.c
index 0b6c091..e2fe161 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -725,9 +725,9 @@ main(int argc, char *argv[])
       elm_toolbar_item_append(tbar, "edit-paste", _("Paste"), _paste, 
main_ec_ent);
    elm_toolbar_item_separator_set(
          elm_toolbar_item_append(tbar, "", "", NULL, NULL), EINA_TRUE);
-   elm_toolbar_item_append(tbar, "edit-find-replace", _("Find & Replace"),
+   elm_toolbar_item_append(tbar, "edit-find-replace", _("Search"),
          _find, main_ec_ent);
-   elm_toolbar_item_append(tbar, "gotoline", _("Goto Line"), _goto_line, 
main_ec_ent);
+   elm_toolbar_item_append(tbar, "go-jump", _("Jump to"), _goto_line, 
main_ec_ent);
    elm_toolbar_item_separator_set(
          elm_toolbar_item_append(tbar, "", "", NULL, NULL), EINA_TRUE);
    elm_toolbar_item_append(tbar, "preferences-system", _("Settings"),
diff --git a/src/bin/ui/goto_dialog.c b/src/bin/ui/goto_dialog.c
index 5386772..da22e95 100644
--- a/src/bin/ui/goto_dialog.c
+++ b/src/bin/ui/goto_dialog.c
@@ -55,9 +55,9 @@ ui_goto_dialog_open(Evas_Object *parent, Ecrire_Entry *ent)
         return goto_win;
      }
 
-   goto_win = win = elm_win_add(parent, "Go to line", ELM_WIN_TOOLBAR);
+   goto_win = win = elm_win_add(parent, "jump-to", ELM_WIN_TOOLBAR);
    elm_win_autodel_set(win, EINA_TRUE);
-   elm_win_title_set(win, _("Go to"));
+   elm_win_title_set(win, _("Jump to"));
    evas_object_smart_callback_add(win, "delete,request", _my_win_del, entry);
 
    bg = elm_bg_add(win);
@@ -79,7 +79,7 @@ ui_goto_dialog_open(Evas_Object *parent, Ecrire_Entry *ent)
    elm_box_pack_end(bx, hbx);
 
    lbl = elm_label_add(win);
-   elm_object_text_set(lbl, _("Go to line:"));
+   elm_object_text_set(lbl, _("Jump to line:"));
    evas_object_size_hint_align_set(lbl, EVAS_HINT_FILL, 0.5);
    evas_object_size_hint_weight_set(lbl, 0.0, 0.0);
    elm_box_pack_end(hbx, lbl);
diff --git a/src/bin/ui/search_dialog.c b/src/bin/ui/search_dialog.c
index d420712..2f2064f 100644
--- a/src/bin/ui/search_dialog.c
+++ b/src/bin/ui/search_dialog.c
@@ -143,9 +143,9 @@ ui_find_dialog_open(Evas_Object *parent, Ecrire_Entry *ent)
         return search_win;
      }
 
-   search_win = win = elm_win_add(parent, "find-replace", ELM_WIN_TOOLBAR);
+   search_win = win = elm_win_add(parent, "search", ELM_WIN_TOOLBAR);
    elm_win_autodel_set(win, EINA_TRUE);
-   elm_win_title_set(win, _("Find & Replace"));
+   elm_win_title_set(win, _("Search"));
    evas_object_smart_callback_add(win, "delete,request", my_win_del, entry);
 
    bg = elm_bg_add(win);

-- 


Reply via email to