From e046fa584a5fd695e652570725cab5eb6ef5c17d Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 18 Oct 2013 22:09:31 +0200 Subject: mp_msg: remove gettext() support Was disabled by default, was never used, internal support was inconsistent and poor, and there has been virtually no interest in creating translations. And I don't even think that a terminal program should be translated. This is something for (hypothetical) GUIs. --- video/out/vo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video') diff --git a/video/out/vo.c b/video/out/vo.c index 6892ee5bf6..65f3f680b4 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -151,7 +151,7 @@ static struct vo *vo_create(struct mpv_global *global, struct mp_log *log = mp_log_new(NULL, global->log, "vo"); struct m_obj_desc desc; if (!m_obj_list_find(&desc, &vo_obj_list, bstr0(name))) { - mp_tmsg_log(log, MSGL_ERR, "Video output %s not found!\n", name); + mp_msg_log(log, MSGL_ERR, "Video output %s not found!\n", name); talloc_free(log); return NULL; }; -- cgit v1.2.3