]> git.sesse.net Git - vlc/blobdiff - src/libvlc-module.c
Fix --vout-event value descriptions
[vlc] / src / libvlc-module.c
index 66ca6fc455ff8784b4414d5c8e53f64891764c41..e16acc5073863665c244d45a045784c57d45b1fd 100644 (file)
@@ -571,7 +571,7 @@ static const char *const ppsz_pos_descriptions[] =
 
 static const int pi_vout_event_values[] = { 1, 2, 3 };
 static const char *const ppsz_vout_event_descriptions[] =
-     { N_("FullSupport"), N_("Fullscreen-Only"), N_("None") };
+     { N_("Full support"), N_("Fullscreen-only"), N_("None") };
 
 /*****************************************************************************
  * Input
@@ -1574,6 +1574,7 @@ vlc_module_begin ()
               QUIET_SYNCHRO_LONGTEXT, true )
     add_integer( "vout-event", 1, NULL, VOUT_EVENT_TEXT, VOUT_EVENT_LONGTEXT, true )
         change_integer_list( pi_vout_event_values, ppsz_vout_event_descriptions, NULL )
+        add_deprecated_alias( "x11-event" ) /* renamed since 1.0.0 */
 #ifndef __APPLE__
     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, false )
 #endif