diff options
author | Boris Faure <billiob@gmail.com> | 2014-07-27 15:24:54 +0200 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2014-07-27 15:24:54 +0200 |
commit | ca9b866f4a414b986156723fdce4d3b7434bc9f7 (patch) | |
tree | 988501527481b16a299af94b76783ef587cd6e8b | |
parent | 2067e35a5d15642e1891feaf31d264492c3d294d (diff) |
improve option names
Diffstat (limited to '')
-rw-r--r-- | po/terminology.pot | 4 | ||||
-rw-r--r-- | 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" | |||
228 | msgstr "" | 228 | msgstr "" |
229 | 229 | ||
230 | #: src/bin/options_behavior.c:325 | 230 | #: src/bin/options_behavior.c:325 |
231 | msgid "Jump on change" | 231 | msgid "Scroll to bottom on new content" |
232 | msgstr "" | 232 | msgstr "" |
233 | 233 | ||
234 | #: src/bin/options_behavior.c:335 | 234 | #: src/bin/options_behavior.c:335 |
235 | msgid "Jump on key" | 235 | msgid "Scroll to bottom when a key is pressed" |
236 | msgstr "" | 236 | msgstr "" |
237 | 237 | ||
238 | #: src/bin/options_behavior.c:345 | 238 | #: 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) | |||
322 | o = elm_check_add(bx); | 322 | o = elm_check_add(bx); |
323 | evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); | 323 | evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); |
324 | evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); | 324 | evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); |
325 | elm_object_text_set(o, _("Jump on change")); | 325 | elm_object_text_set(o, _("Scroll to bottom on new content")); |
326 | elm_check_state_set(o, config->jump_on_change); | 326 | elm_check_state_set(o, config->jump_on_change); |
327 | elm_box_pack_end(bx, o); | 327 | elm_box_pack_end(bx, o); |
328 | evas_object_show(o); | 328 | evas_object_show(o); |
@@ -332,7 +332,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) | |||
332 | o = elm_check_add(bx); | 332 | o = elm_check_add(bx); |
333 | evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); | 333 | evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); |
334 | evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); | 334 | evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); |
335 | elm_object_text_set(o, _("Jump on key")); | 335 | elm_object_text_set(o, _("Scroll to bottom when a key is pressed")); |
336 | elm_check_state_set(o, config->jump_on_keypress); | 336 | elm_check_state_set(o, config->jump_on_keypress); |
337 | elm_box_pack_end(bx, o); | 337 | elm_box_pack_end(bx, o); |
338 | evas_object_show(o); | 338 | evas_object_show(o); |