billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=ca9b866f4a414b986156723fdce4d3b7434bc9f7
commit ca9b866f4a414b986156723fdce4d3b7434bc9f7 Author: Boris Faure <[email protected]> Date: Sun Jul 27 15:24:54 2014 +0200 improve option names --- po/terminology.pot | 4 ++-- src/bin/options_behavior.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/po/terminology.pot b/po/terminology.pot index 53d3f4f..fe52975 100644 --- a/po/terminology.pot +++ b/po/terminology.pot @@ -228,11 +228,11 @@ msgid "Behavior" msgstr "" #: src/bin/options_behavior.c:325 -msgid "Jump on change" +msgid "Scroll to bottom on new content" msgstr "" #: src/bin/options_behavior.c:335 -msgid "Jump on key" +msgid "Scroll to bottom when a key is pressed" msgstr "" #: src/bin/options_behavior.c:345 diff --git a/src/bin/options_behavior.c b/src/bin/options_behavior.c index d9a36f3..c3840f3 100644 --- a/src/bin/options_behavior.c +++ b/src/bin/options_behavior.c @@ -322,7 +322,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) o = elm_check_add(bx); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); - elm_object_text_set(o, _("Jump on change")); + elm_object_text_set(o, _("Scroll to bottom on new content")); elm_check_state_set(o, config->jump_on_change); elm_box_pack_end(bx, o); evas_object_show(o); @@ -332,7 +332,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) o = elm_check_add(bx); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); - elm_object_text_set(o, _("Jump on key")); + elm_object_text_set(o, _("Scroll to bottom when a key is pressed")); elm_check_state_set(o, config->jump_on_keypress); elm_box_pack_end(bx, o); evas_object_show(o); --
