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. --- audio/out/ao.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio') diff --git a/audio/out/ao.c b/audio/out/ao.c index 566ab0fea9..416bec43f0 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -130,7 +130,7 @@ static struct ao *ao_create(bool probing, struct mpv_global *global, struct mp_log *log = mp_log_new(NULL, global->log, "ao"); struct m_obj_desc desc; if (!m_obj_list_find(&desc, &ao_obj_list, bstr0(name))) { - mp_tmsg_log(log, MSGL_ERR, "Audio output %s not found!\n", name); + mp_msg_log(log, MSGL_ERR, "Audio output %s not found!\n", name); talloc_free(log); return NULL; }; -- cgit v1.2.3