From ca9b866f4a414b986156723fdce4d3b7434bc9f7 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sun, 27 Jul 2014 15:24:54 +0200 Subject: [PATCH] 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 53d3f4ff..fe529752 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 d9a36f39..c3840f39 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);