Commit f06802bb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Translate help, short name and description

parent 76774f67
...@@ -109,15 +109,15 @@ int vlc_module_set (module_t *module, int propid, ...) ...@@ -109,15 +109,15 @@ int vlc_module_set (module_t *module, int propid, ...)
} }
case VLC_MODULE_SHORTNAME: case VLC_MODULE_SHORTNAME:
module->psz_shortname = va_arg (ap, char *); module->psz_shortname = dgettext (PACKAGE, va_arg (ap, char *));
break; break;
case VLC_MODULE_DESCRIPTION: case VLC_MODULE_DESCRIPTION:
module->psz_longname = va_arg (ap, char *); module->psz_longname = dgettext (PACKAGE, va_arg (ap, char *));
break; break;
case VLC_MODULE_HELP: case VLC_MODULE_HELP:
module->psz_help = va_arg (ap, char *); module->psz_help = dgettext (PACKAGE, va_arg (ap, char *));
break; break;
case VLC_MODULE_CAPABILITY: case VLC_MODULE_CAPABILITY:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment