]> git.sesse.net Git - vlc/commitdiff
WTF ?
authorClément Stenac <zorglub@videolan.org>
Fri, 22 Sep 2006 21:37:59 +0000 (21:37 +0000)
committerClément Stenac <zorglub@videolan.org>
Fri, 22 Sep 2006 21:37:59 +0000 (21:37 +0000)
include/vlc_config_cat.h

index f963a3f069158e1363fa3e8cc23ae46308721fd2..e6530f4d495faf2f99990ddec739ad3b8f7cb4f7 100644 (file)
@@ -349,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++;
     }
@@ -363,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++;
     }