summaryrefslogtreecommitdiffstats
path: root/audio
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 /audio
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 'audio')
-rw-r--r--audio/out/ao.c2
1 files changed, 1 insertions, 1 deletions
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;
};