From 651364b19172e4696bee6819801a349ac689cc3e Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sat, 26 Jul 2014 20:11:53 +0200 Subject: [PATCH] don't translate VLC and fix Gstreamer 1.X option's name --- po/fr.po | 4 ---- po/terminology.pot | 4 ---- src/bin/options_video.c | 4 ++-- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/po/fr.po b/po/fr.po index 2e822531..75b4f0f3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -586,10 +586,6 @@ msgstr "" msgid "Automatic" msgstr "" -#: src/bin/options_video.c:164 -msgid "VLC" -msgstr "" - #: src/bin/options_wallpaper.c:101 msgid "None" msgstr "" diff --git a/po/terminology.pot b/po/terminology.pot index e8c9525e..53d3f4ff 100644 --- a/po/terminology.pot +++ b/po/terminology.pot @@ -586,10 +586,6 @@ msgstr "" msgid "Automatic" msgstr "" -#: src/bin/options_video.c:164 -msgid "VLC" -msgstr "" - #: src/bin/options_wallpaper.c:101 msgid "None" msgstr "" diff --git a/src/bin/options_video.c b/src/bin/options_video.c index 90e2afaf..3fb81e9a 100644 --- a/src/bin/options_video.c +++ b/src/bin/options_video.c @@ -161,7 +161,7 @@ options_video(Evas_Object *opbox, Evas_Object *term) o = elm_radio_add(opbox); 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, _("VLC")); + elm_object_text_set(o, "VLC"); elm_radio_state_value_set(o, 3); elm_radio_group_add(o, op_vidmod); elm_box_pack_end(bx0, o); @@ -172,7 +172,7 @@ options_video(Evas_Object *opbox, Evas_Object *term) o = elm_radio_add(opbox); 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, "Gstreamer 1.0"); + elm_object_text_set(o, "Gstreamer 1.X"); elm_radio_state_value_set(o, 4); elm_radio_group_add(o, op_vidmod); elm_box_pack_end(bx0, o);