Commit 27268d4d authored by Clément Stenac's avatar Clément Stenac

Finish strings review in misc/ (Refs:#438)

parent f0a1e2f0
...@@ -42,8 +42,8 @@ ...@@ -42,8 +42,8 @@
#define SAVE_TEXT N_("Save raw codec data") #define SAVE_TEXT N_("Save raw codec data")
#define SAVE_LONGTEXT N_( \ #define SAVE_LONGTEXT N_( \
"This option allows you to save the raw codec data if you have " \ "Save the raw codec data if you have selected/forced the dummy " \
"selected/forced the dummy decoder in the main options." ) "decoder in the main options." )
#ifdef WIN32 #ifdef WIN32
#define QUIET_TEXT N_("Do not open a DOS command box interface") #define QUIET_TEXT N_("Do not open a DOS command box interface")
......
...@@ -52,28 +52,31 @@ static int SetFont( filter_t *, int ); ...@@ -52,28 +52,31 @@ static int SetFont( filter_t *, int );
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define FONT_TEXT N_("Font") #define FONT_TEXT N_("Font")
#define FONT_LONGTEXT N_("Font filename") #define FONT_LONGTEXT N_("Filename for the font you want to use")
#define FONTSIZE_TEXT N_("Font size in pixels") #define FONTSIZE_TEXT N_("Font size in pixels")
#define FONTSIZE_LONGTEXT N_("The size of the fonts used by the osd module. " \ #define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \
"If set to something different than 0 this option will override the " \ "that will be rendered on the video. " \
"relative font size " ) "If set to something different than 0 this option will override the " \
#define OPACITY_TEXT N_("Opacity, 0..255") "relative font size. " )
#define OPACITY_LONGTEXT N_("The opacity (inverse of transparency) of " \ #define OPACITY_TEXT N_("Opacity")
"overlay text. 0 = transparent, 255 = totally opaque. " ) #define OPACITY_LONGTEXT N_("The opacity (inverse of transparency) of the " \
#define COLOR_TEXT N_("Text Default Color") "text that will be rendered on the video. 0 = transparent, " \
#define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, "\ "255 = totally opaque. " )
"hexadecimal. #000000 = all colors off, 0xFF0000 = just Red, " \ #define COLOR_TEXT N_("Text default color")
"0xFFFFFF = all color on [White]" ) #define COLOR_LONGTEXT N_("The color of the text that will be rendered on "\
#define FONTSIZER_TEXT N_("Font size") "the video. This must be an hexadecimal (like HTML colors). The first two "\ "chars are for red, then green, then blue. #000000 = black, #FF0000 = red,"\ " #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white" )
#define FONTSIZER_LONGTEXT N_("The size of the fonts used by the osd module" ) #define FONTSIZER_TEXT N_("Relative font size")
#define FONTSIZER_LONGTEXT N_("This is the relative default size of the " \
"fonts that will be rendered on the video. If absolute font size is set, "\
"relative size will be overriden." )
static int pi_sizes[] = { 20, 18, 16, 12, 6 }; static int pi_sizes[] = { 20, 18, 16, 12, 6 };
static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"), static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
N_("Large"), N_("Larger") }; N_("Large"), N_("Larger") };
static int pi_color_values[] = { static int pi_color_values[] = {
0x00000000, 0x00808080, 0x00C0C0C0, 0x00FFFFFF, 0x00800000, 0x00000000, 0x00808080, 0x00C0C0C0, 0x00FFFFFF, 0x00800000,
0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00808000, 0x00008000, 0x00008080, 0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00808000, 0x00008000, 0x00008080,
0x0000FF00, 0x00800080, 0x00000080, 0x000000FF, 0x0000FFFF }; 0x0000FF00, 0x00800080, 0x00000080, 0x000000FF, 0x0000FFFF };
static char *ppsz_color_descriptions[] = { static char *ppsz_color_descriptions[] = {
N_("Black"), N_("Gray"), N_("Silver"), N_("White"), N_("Maroon"), N_("Black"), N_("Gray"), N_("Silver"), N_("White"), N_("Maroon"),
......
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