X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvideo_filter%2Frss.c;h=3d725919a184683010c4bf4931c71cc25b2bde31;hb=61f0547b72d3ba80039f09064249d89fa8f2b0f7;hp=f00eed1e36c12a7883fcc5ab4c3dff35475f6d95;hpb=d466fd4185ffd791413658e948205e2676d2f470;p=vlc diff --git a/modules/video_filter/rss.c b/modules/video_filter/rss.c index f00eed1e36..3d725919a1 100644 --- a/modules/video_filter/rss.c +++ b/modules/video_filter/rss.c @@ -167,6 +167,8 @@ struct filter_sys_t #define TITLE_TEXT N_("Title display mode") #define TITLE_LONGTEXT N_("Title display mode. Default is 0 (hidden) if the feed has an image and feed images are enabled, 1 otherwise.") +#define RSS_HELP N_("Display a RSS or ATOM Feed on your video") + static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; static const char *const ppsz_pos_descriptions[] = { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"), @@ -189,7 +191,8 @@ static const char *const ppsz_title_modes[] = *****************************************************************************/ vlc_module_begin () set_capability( "sub filter", 1 ) - set_shortname( "RSS / Atom" ) + set_shortname( N_("RSS / Atom") ) + set_help(RSS_HELP) set_callbacks( CreateFilter, DestroyFilter ) set_category( CAT_VIDEO ) set_subcategory( SUBCAT_VIDEO_SUBPIC )