summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-18 22:09:31 +0200
committerwm4 <wm4@nowhere>2013-10-18 22:38:10 +0200
commite046fa584a5fd695e652570725cab5eb6ef5c17d (patch)
tree83818adb14ef535316910f833dd1083d3d2e54f2 /video
parentfd0ffa7b40b8b2fa038e5748cadda35092530a49 (diff)
downloadmpv-e046fa584a5fd695e652570725cab5eb6ef5c17d.tar.bz2
mpv-e046fa584a5fd695e652570725cab5eb6ef5c17d.tar.xz
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.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
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;
};