Commit 01dee6ce authored by Antoine Cellerier's avatar Antoine Cellerier

Use appropriate help text.

parent fc2c2f41
...@@ -436,6 +436,8 @@ static int onTaskBarChange( vlc_object_t *pObj, const char *pVariable, ...@@ -436,6 +436,8 @@ static int onTaskBarChange( vlc_object_t *pObj, const char *pVariable,
#define SKINS2_TRANSPARENCY_LONG N_("You can disable all transparency effects"\ #define SKINS2_TRANSPARENCY_LONG N_("You can disable all transparency effects"\
" if you want. This is mainly useful when moving windows does not behave" \ " if you want. This is mainly useful when moving windows does not behave" \
" correctly.") " correctly.")
#define SKINS2_PLAYLIST N_("Use a skinned playlist")
#define SKINS2_PLAYLIST_LONG N_("Use a skinned playlist")
vlc_module_begin(); vlc_module_begin();
set_category( CAT_INTERFACE ); set_category( CAT_INTERFACE );
...@@ -456,8 +458,8 @@ vlc_module_begin(); ...@@ -456,8 +458,8 @@ vlc_module_begin();
SKINS2_TRANSPARENCY_LONG, VLC_FALSE ); SKINS2_TRANSPARENCY_LONG, VLC_FALSE );
#endif #endif
add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_TRANSPARENCY, add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_PLAYLIST,
SKINS2_TRANSPARENCY_LONG, VLC_FALSE ); SKINS2_PLAYLIST_LONG, VLC_FALSE );
set_shortname( _("Skins")); set_shortname( _("Skins"));
set_description( _("Skinnable Interface") ); set_description( _("Skinnable Interface") );
set_capability( "interface", 30 ); set_capability( "interface", 30 );
......
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