]> git.sesse.net Git - vlc/blobdiff - include/vlc_config_cat.h
Add a method to set playlist in loop mode.
[vlc] / include / vlc_config_cat.h
index 96eac42adb36e0b028cdfccf74befa9deeb3ac87..e6530f4d495faf2f99990ddec739ad3b8f7cb4f7 100644 (file)
@@ -39,7 +39,7 @@
 #define INTF_TITLE N_("Interface")
 #define INTF_HELP  N_( "Settings for VLC's interfaces" )
 
-#define INTF_GENERAL_HELP N_( "General interface setttings" )
+#define INTF_GENERAL_HELP N_( "General interface settings" )
 
 #define INTF_MAIN_TITLE  N_( "Main interfaces" )
 #define INTF_MAIN_HELP N_( "Settings for the main interface" )
 
 #define SOUT_PACKET_TITLE N_( "Packetizers" )
 #define SOUT_PACKET_HELP N_( \
-`       "Packetizers are used to \"preprocess\" the elementary "\
+        "Packetizers are used to \"preprocess\" the elementary "\
         "streams before muxing. " \
         "This setting allows you to always force a packetizer. " \
         "You should probably not do that.\n" \
     "In this section you can force the behavior of the subtitle demuxer, " \
     "for example by setting the subtitles type or file name.")
 
-#define VIDEO_FILTER2_TITLE N_("Video filters settings")
-#define VIDEO_FILTER2_HELP " "
-
 /*
  *  A little help for modules with unknown capabilities
  */
@@ -352,7 +349,7 @@ inline char *config_CategoryNameGet( int i_value )
     {
         if( categories_array[i].i_id == i_value )
         {
-            return categories_array[i].psz_name;
+            return _(categories_array[i].psz_name);
         }
         i++;
     }
@@ -366,7 +363,7 @@ inline char *config_CategoryHelpGet( int i_value )
     {
         if( categories_array[i].i_id == i_value )
         {
-            return categories_array[i].psz_help;
+            return _(categories_array[i].psz_help);
         }
         i++;
     }