Commit 3a004ff7 authored by Clément Stenac's avatar Clément Stenac

WTF ?

parent d7d799b8
...@@ -349,7 +349,7 @@ inline char *config_CategoryNameGet( int i_value ) ...@@ -349,7 +349,7 @@ inline char *config_CategoryNameGet( int i_value )
{ {
if( categories_array[i].i_id == i_value ) if( categories_array[i].i_id == i_value )
{ {
return categories_array[i].psz_name; return _(categories_array[i].psz_name);
} }
i++; i++;
} }
...@@ -363,7 +363,7 @@ inline char *config_CategoryHelpGet( int i_value ) ...@@ -363,7 +363,7 @@ inline char *config_CategoryHelpGet( int i_value )
{ {
if( categories_array[i].i_id == i_value ) if( categories_array[i].i_id == i_value )
{ {
return categories_array[i].psz_help; return _(categories_array[i].psz_help);
} }
i++; i++;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment