]> git.sesse.net Git - vlc/commitdiff
Add a i18n'able name.
authorChristophe Mutricy <xtophe@videolan.org>
Thu, 24 Sep 2009 21:40:52 +0000 (22:40 +0100)
committerChristophe Mutricy <xtophe@videolan.org>
Thu, 24 Sep 2009 21:59:58 +0000 (22:59 +0100)
It's nice to have a translatable name (and a capital letter) for all modules who have config options

modules/video_filter/canvas.c
modules/video_filter/croppadd.c

index a083b182892401b62b5ccdee18a2b3a9265892cf..acb8bd3829ae79b6f62ea4b8b7019c529f8b0083 100644 (file)
@@ -101,6 +101,7 @@ static int alloc_init( filter_t *, void * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin ()
+    set_shortname( N_("Canvas") )
     set_description( N_("Automatically resize and pad a video") )
     set_capability( "video filter2", 0 )
     set_callbacks( Activate, Destroy )
index b24af5fdbd8dac28d945793d3f3038b5651cfc1c..5d505d9968602465891f5b2599f43a07796a2dfb 100644 (file)
@@ -75,6 +75,7 @@ static picture_t *Filter( filter_t *, picture_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin ()
+    set_shortname( N_("Cropadd") )
     set_description( N_("Video scaling filter") )
     set_capability( "video filter2", 0 )
     set_callbacks( OpenFilter, CloseFilter )