diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 14:03:29 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 14:03:29 +0100 |
commit | c17489d9fc412f779631fad1ad97b15fbffa5276 (patch) | |
tree | 6e7b046311310a9a191260f819ff174c4a218fae /src/xine-engine/load_plugins.c | |
parent | 5b812f5ae063e9e6dadb4eff65bbbe78e977c6f3 (diff) | |
download | xine-lib-c17489d9fc412f779631fad1ad97b15fbffa5276.tar.gz xine-lib-c17489d9fc412f779631fad1ad97b15fbffa5276.tar.bz2 |
Use dgettext to localise the description string for plugins.
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 22d199295..3e6708e65 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 ic->description; \ + return dgettext(ic->textdomain ? : XINE_TEXTDOMAIN, ic->description); \ } \ } \ return NULL; \ |