Commit bcb8ad99 authored by Clément Stenac's avatar Clément Stenac

String stuff

parent 3ac2dcd0
...@@ -90,7 +90,7 @@ static void Close( vlc_object_t * ); ...@@ -90,7 +90,7 @@ static void Close( vlc_object_t * );
#define CABAC_LONGTEXT N_( "CABAC (Context-Adaptive Binary Arithmetic "\ #define CABAC_LONGTEXT N_( "CABAC (Context-Adaptive Binary Arithmetic "\
"Coding). Slightly slows down encoding and decoding, but should save " \ "Coding). Slightly slows down encoding and decoding, but should save " \
"10-15% bitrate." ) "10-15% bitrate." )
/// \bug [String] Missing final dot
#define REF_TEXT N_("Number of reference frames") #define REF_TEXT N_("Number of reference frames")
#define REF_LONGTEXT N_( "Number of previous frames used as predictors. " \ #define REF_LONGTEXT N_( "Number of previous frames used as predictors. " \
"This is effective in Anime, but seems to make little difference in " \ "This is effective in Anime, but seems to make little difference in " \
...@@ -168,6 +168,7 @@ static void Close( vlc_object_t * ); ...@@ -168,6 +168,7 @@ static void Close( vlc_object_t * );
" - all : i4x4,p8x8,(i8x8),b8x8,p4x4\n" \ " - all : i4x4,p8x8,(i8x8),b8x8,p4x4\n" \
"(p4x4 requires p8x8. i8x8 requires 8x8dct).") "(p4x4 requires p8x8. i8x8 requires 8x8dct).")
/// \bug [String] Extra space
#define DIRECT_PRED_TEXT N_("Direct MV prediction mode") #define DIRECT_PRED_TEXT N_("Direct MV prediction mode")
#define DIRECT_PRED_LONGTEXT N_( "Direct MV prediction mode. ") #define DIRECT_PRED_LONGTEXT N_( "Direct MV prediction mode. ")
......
...@@ -54,6 +54,7 @@ static void Close ( vlc_object_t * ); ...@@ -54,6 +54,7 @@ static void Close ( vlc_object_t * );
#define MEGABASS_LONGTEXT N_( "Enable megabass mode" ) #define MEGABASS_LONGTEXT N_( "Enable megabass mode" )
#define MEGABASS_LEVEL_LONGTEXT N_("Megabass mode level (from 0 to 100, " \ #define MEGABASS_LEVEL_LONGTEXT N_("Megabass mode level (from 0 to 100, " \
"default value is 0)." ) "default value is 0)." )
/// \bug [String] Missing space after dot
#define MEGABASS_RANGE_LONGTEXT N_("Megabass mode cutoff frequency, in Hz." \ #define MEGABASS_RANGE_LONGTEXT N_("Megabass mode cutoff frequency, in Hz." \
"This is the maximum frequency for which the megabass " \ "This is the maximum frequency for which the megabass " \
"effect applies. Valid values are from 10 to 100 Hz" ) "effect applies. Valid values are from 10 to 100 Hz" )
......
...@@ -140,6 +140,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf, ...@@ -140,6 +140,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf,
[o_btn_equalizer setToolTip: _NS("Equalizer")]; [o_btn_equalizer setToolTip: _NS("Equalizer")];
[o_ckb_2pass setTitle: _NS("2 Pass")]; [o_ckb_2pass setTitle: _NS("2 Pass")];
[o_ckb_2pass setToolTip: _NS("Apply the" [o_ckb_2pass setToolTip: _NS("Apply the"
/// \bug [String] missing space
"equalizer filter twice. The effect will be sharper.")]; "equalizer filter twice. The effect will be sharper.")];
[o_ckb_enable setTitle: _NS("Enable")]; [o_ckb_enable setTitle: _NS("Enable")];
[o_ckb_enable setToolTip: _NS("Enable the equalizer. Bands can be set " [o_ckb_enable setToolTip: _NS("Enable the equalizer. Bands can be set "
......
...@@ -108,6 +108,7 @@ static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"), ...@@ -108,6 +108,7 @@ static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
#define YUVP_LONGTEXT N_("This renders the font using \"paletized YUV\". " \ #define YUVP_LONGTEXT N_("This renders the font using \"paletized YUV\". " \
"This option is only needed if you want to encode into DVB subtitles" ) "This option is only needed if you want to encode into DVB subtitles" )
#define EFFECT_TEXT N_("Font Effect") #define EFFECT_TEXT N_("Font Effect")
/// \bug [String] Missing space
#define EFFECT_LONGTEXT N_("It is possible to apply effects to the rendered" \ #define EFFECT_LONGTEXT N_("It is possible to apply effects to the rendered" \
"text to improve its readability." ) "text to improve its readability." )
......
...@@ -60,6 +60,7 @@ static int SendToMSN( char * psz_msg ); ...@@ -60,6 +60,7 @@ static int SendToMSN( char * psz_msg );
* You need to enable the "What I'm Listening To" option in MSN. * You need to enable the "What I'm Listening To" option in MSN.
*****************************************************************************/ *****************************************************************************/
#define FORMAT_DEFAULT "{0} - {1}" #define FORMAT_DEFAULT "{0} - {1}"
/// \bug [String] MSN is useless
#define FORMAT_TEXT N_("MSN Title format string") #define FORMAT_TEXT N_("MSN Title format string")
#define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \ #define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \
"{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).") "{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).")
......
...@@ -37,12 +37,15 @@ ...@@ -37,12 +37,15 @@
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define ACCESS_TEXT N_("Output access method") #define ACCESS_TEXT N_("Output access method")
/// \bug [String] "Output method to use for the stream."
#define ACCESS_LONGTEXT N_( \ #define ACCESS_LONGTEXT N_( \
"This is the output access method that will be used." ) "This is the output access method that will be used." )
#define MUX_TEXT N_("Output muxer") #define MUX_TEXT N_("Output muxer")
/// \bug [String] "Muxer to use for the stream."
#define MUX_LONGTEXT N_( \ #define MUX_LONGTEXT N_( \
"This is the muxer that will be used." ) "This is the muxer that will be used." )
#define DST_TEXT N_("Output destination") #define DST_TEXT N_("Output destination")
/// \bug [String] "Destination (URL) to use for the stream."
#define DST_LONGTEXT N_( \ #define DST_LONGTEXT N_( \
"This is the destination (URL) that will be used for the stream." ) "This is the destination (URL) that will be used for the stream." )
#define NAME_TEXT N_("Session name") #define NAME_TEXT N_("Session name")
......
...@@ -118,6 +118,7 @@ struct filter_sys_t ...@@ -118,6 +118,7 @@ struct filter_sys_t
"automatically choose the best number of rows and columns. " \ "automatically choose the best number of rows and columns. " \
"fixed: use the user-defined number of rows and columns.") "fixed: use the user-defined number of rows and columns.")
/// \bug [String] missing closing parenthesis
#define ROWS_TEXT N_("Number of rows") #define ROWS_TEXT N_("Number of rows")
#define ROWS_LONGTEXT N_("Number of image rows in the mosaic (only used if "\ #define ROWS_LONGTEXT N_("Number of image rows in the mosaic (only used if "\
"positionning method is set to \"fixed\"." ) "positionning method is set to \"fixed\"." )
......
...@@ -55,6 +55,7 @@ static int SendEvents ( vlc_object_t *, char const *, ...@@ -55,6 +55,7 @@ static int SendEvents ( vlc_object_t *, char const *,
#define DESC_TEXT N_("Description file") #define DESC_TEXT N_("Description file")
#define DESC_LONGTEXT N_("A file containing a simple playlist") #define DESC_LONGTEXT N_("A file containing a simple playlist")
#define HISTORY_TEXT N_("History parameter") #define HISTORY_TEXT N_("History parameter")
/// \bug [String] typo
#define HISTORY_LONGTEXT N_("The umber of frames used for detection.") #define HISTORY_LONGTEXT N_("The umber of frames used for detection.")
vlc_module_begin(); vlc_module_begin();
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
/* FIXME: Future extension make the definition file in XML format. */ /* FIXME: Future extension make the definition file in XML format. */
#define OSD_FILE_TEXT N_("Configuration file") #define OSD_FILE_TEXT N_("Configuration file")
/// \bug [String] missing dot
#define OSD_FILE_LONGTEXT N_( \ #define OSD_FILE_LONGTEXT N_( \
"Configuration file for the OSD Menu" ) "Configuration file for the OSD Menu" )
#define OSD_PATH_TEXT N_("Path to OSD menu images") #define OSD_PATH_TEXT N_("Path to OSD menu images")
......
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