Commit 1f50361f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix plugin strings translation

parent 5f1e2f74
......@@ -81,8 +81,8 @@ static void Close (vlc_object_t *);
* Module descriptor
*/
vlc_module_begin ()
set_shortname (_("RTP"))
set_description (_("Real-Time Protocol (RTP) input"))
set_shortname (N_("RTP"))
set_description (N_("Real-Time Protocol (RTP) input"))
set_category (CAT_INPUT)
set_subcategory (SUBCAT_INPUT_DEMUX)
set_capability ("access_demux", 0)
......
......@@ -45,12 +45,12 @@ vlc_module_begin()
set_shortname( "Zip" )
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_STREAM_FILTER )
set_description( _( "Zip files filter" ) )
set_description( N_( "Zip files filter" ) )
set_capability( "stream_filter", 1 )
set_callbacks( StreamOpen, StreamClose )
add_submodule()
set_subcategory( SUBCAT_INPUT_ACCESS )
set_description( _( "Zip access" ) )
set_description( N_( "Zip access" ) )
set_capability( "access", 0 )
add_shortcut( "unzip" )
add_shortcut( "zip" )
......
......@@ -100,7 +100,7 @@ vlc_module_begin ()
set_callbacks( Create, Close )
add_submodule ()
set_description( _("Audio filter for band-limited interpolation resampling") )
set_description( N_("Audio filter for band-limited interpolation resampling") )
set_capability( "audio filter2", 20 )
set_callbacks( OpenFilter, CloseFilter )
vlc_module_end ()
......
......@@ -45,7 +45,7 @@ vlc_module_begin ()
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_ACODEC )
set_description( _("AES3/SMPTE 302M audio decoder") )
set_description( N_("AES3/SMPTE 302M audio decoder") )
set_capability( "decoder", 100 )
set_callbacks( OpenDecoder, Close )
......
......@@ -43,10 +43,10 @@ LRESULT CALLBACK WMHOTKEYPROC( HWND, UINT, WPARAM, LPARAM );
* Module descriptor
*****************************************************************************/
vlc_module_begin()
set_shortname( _("Global Hotkeys") )
set_shortname( N_("Global Hotkeys") )
set_category( CAT_INTERFACE )
set_subcategory( SUBCAT_INTERFACE_HOTKEYS )
set_description( _("Global Hotkeys interface") )
set_description( N_("Global Hotkeys interface") )
set_capability( "interface", 0 )
set_callbacks( Open, Close )
vlc_module_end()
......
......@@ -44,10 +44,10 @@ static void Close( vlc_object_t *p_this );
* Module descriptor
*****************************************************************************/
vlc_module_begin()
set_shortname( _("Global Hotkeys") )
set_shortname( N_("Global Hotkeys") )
set_category( CAT_INTERFACE )
set_subcategory( SUBCAT_INTERFACE_HOTKEYS )
set_description( _("Global Hotkeys interface") )
set_description( N_("Global Hotkeys interface") )
set_capability( "interface", 0 )
set_callbacks( Open, Close )
vlc_module_end()
......
......@@ -45,24 +45,24 @@
*****************************************************************************/
vlc_module_begin ()
set_shortname( _("Stats"))
set_description( _("Stats encoder function") )
set_shortname( N_("Stats"))
set_description( N_("Stats encoder function") )
set_capability( "encoder", 0 )
add_shortcut( "stats" )
set_callbacks( OpenEncoder, CloseEncoder )
add_submodule ()
set_section( N_( "Stats decoder" ), NULL )
set_description( _("Stats decoder function") )
set_description( N_("Stats decoder function") )
set_capability( "decoder", 0 )
set_callbacks( OpenDecoder, CloseDecoder )
add_submodule ()
set_section( N_( "Stats demux" ), NULL )
set_description( _("Stats demux function") )
set_description( N_("Stats demux function") )
set_capability( "demux", 0 )
set_callbacks( OpenDemux, CloseDemux )
add_submodule ()
set_section( N_( "Stats video output" ), NULL )
set_description( _("Stats video output function") )
set_description( N_("Stats video output function") )
set_capability( "video output", 0 )
set_callbacks( OpenVideo, NULL )
vlc_module_end ()
......
......@@ -74,9 +74,9 @@ vlc_module_begin ()
COLOR_LONGTEXT, false )
change_integer_list( pi_color_values, ppsz_color_descriptions, NULL )
add_integer( CFG_PREFIX "saturationthres", 20, NULL,
_("Saturaton threshold"), "", false )
N_("Saturaton threshold"), "", false )
add_integer( CFG_PREFIX "similaritythres", 15, NULL,
_("Similarity threshold"), "", false )
N_("Similarity threshold"), "", false )
set_callbacks( Create, Destroy )
vlc_module_end ()
......
......@@ -63,8 +63,7 @@ static int PPNameCallback( vlc_object_t *, char const *,
"better looking pictures." )
#define NAME_TEXT N_("FFmpeg post processing filter chains")
/* defined by libpostproc */
#define NAME_LONGTEXT pp_help
#define NAME_LONGTEXT NAME_TEXT
#define FILTER_PREFIX "postproc-"
......
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