[vlc-commits] vlc_es: remove translated strings
Francois Cartegnie
git at videolan.org
Sun Dec 25 19:04:19 CET 2016
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Dec 25 18:43:59 2016 +0100| [61b4b3c619c978b5528270ee2dab0354bc796e8f] | committer: Francois Cartegnie
vlc_es: remove translated strings
Useless
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=61b4b3c619c978b5528270ee2dab0354bc796e8f
---
src/input/es_out.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index 324b5fd..1432107 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -3044,9 +3044,9 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
static const char *primaries_names[] = { N_("Undefined"),
N_("ITU-R BT.601 (525 lines, 60 Hz)"),
N_("ITU-R BT.601 (625 lines, 50 Hz)"),
- N_("ITU-R BT.709"),
- N_("ITU-R BT.2020"),
- N_("DCI/P3 D65"),
+ "ITU-R BT.709",
+ "ITU-R BT.2020",
+ "DCI/P3 D65",
};
info_category_AddInfo( p_cat, _("Color primaries"), "%s",
_(primaries_names[fmt->video.primaries]) );
@@ -3055,8 +3055,8 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
{
static const char *func_names[] = { N_("Undefined"),
N_("Linear"),
- N_("sRGB"),
- N_("ITU-R BT.709 or BT.2020"),
+ "sRGB",
+ "ITU-R BT.709, ITU-R BT.2020",
};
info_category_AddInfo( p_cat, _("Color transfer function"), "%s",
_(func_names[fmt->video.transfer]) );
@@ -3064,9 +3064,9 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
if( fmt->video.space != COLOR_SPACE_UNDEF )
{
static const char *space_names[] = { N_("Undefined"),
- N_("ITU-R BT.601"),
- N_("ITU-R BT.709"),
- N_("ITU-R BT.2020"),
+ "ITU-R BT.601",
+ "ITU-R BT.709",
+ "ITU-R BT.2020",
};
static const char *range_names[] = {
N_("Limited Range"),
More information about the vlc-commits
mailing list