diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 10:58:08 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 10:58:08 +0100 |
commit | 051c26d8e93ce4eacf071c068b32fe9c06b3739d (patch) | |
tree | f516710a35fc0f7a25c9946821d492c110de2c52 /src/xine-engine/load_plugins.c | |
parent | 60e025ce15431f04955502084bc54c18d69c7d6a (diff) | |
download | xine-lib-051c26d8e93ce4eacf071c068b32fe9c06b3739d.tar.gz xine-lib-051c26d8e93ce4eacf071c068b32fe9c06b3739d.tar.bz2 |
Leave to the plugin the call to gettext exactly as before.
This way external plugins can use their own gettext catalog for i18n.
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 1c59099a5..22d199295 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -2299,7 +2299,7 @@ const char *const *xine_list_post_plugins_typed(xine_t *xine, uint32_t type) { else \ return NULL; \ } \ - return gettext(ic->description); \ + return ic->description; \ } \ } \ return NULL; \ |