]> git.sesse.net Git - vlc/commitdiff
Qt4 - Preferences: give a description better than "FIXME" for options.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 1 Aug 2007 15:37:04 +0000 (15:37 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 1 Aug 2007 15:37:04 +0000 (15:37 +0000)
modules/gui/qt4/qt4.cpp

index c5e2c827c4f1f82487109561984c7ffe4e3a743b..f38dea0824a56406dd1dae017088cbdbde63610e 100644 (file)
@@ -43,6 +43,12 @@ static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
+#define ALWAYS_VIDEO_TEXT N_("Always show a video screen, with a cone " \
+                                "when there is audio only.")
+#define ALWAYS_VIDEO_LONGTEXT N_("Start VLC with a cone image, and display it" \
+                                   " when there is no video track. " \
+                                    "Visualisations are enabled." )
+
 #define ADVANCED_PREFS_TEXT N_("Show advanced prefs over simple")
 #define ADVANCED_PREFS_LONGTEXT N_("Show advanced preferences and not simple" \
                                    "preferences when opening the preferences " \
@@ -86,8 +92,8 @@ vlc_module_begin();
     add_submodule();
         set_description( "Dialogs provider" );
         set_capability( "dialogs provider", 51 );
-        add_bool( "qt-always-video", VLC_FALSE, NULL, "FIXME", "FIXME",
-                VLC_TRUE );
+        add_bool( "qt-always-video", VLC_FALSE, NULL, ALWAYS_VIDEO_TEXT, 
+                ALWAYS_VIDEO_LONGTEXT, VLC_TRUE );
         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,