Changeset 5f18b9dd6aa22cd5d3cb77aa168e13eb10ac7c26
- Timestamp:
- 30/03/06 10:40:51 (3 years ago)
- git-parent:
- Files:
-
- modules/video_filter/adjust.c (modified) (1 diff)
- modules/video_filter/clone.c (modified) (1 diff)
- modules/video_filter/crop.c (modified) (1 diff)
- modules/video_filter/deinterlace.c (modified) (1 diff)
- modules/video_filter/distort.c (modified) (1 diff)
- modules/video_filter/logo.c (modified) (1 diff)
- modules/video_filter/marq.c (modified) (2 diffs)
- modules/video_filter/mosaic.c (modified) (3 diffs)
- modules/video_filter/osdmenu.c (modified) (2 diffs)
- modules/video_filter/rss.c (modified) (1 diff)
- modules/video_filter/swscale/filter.c (modified) (1 diff)
- modules/video_filter/time.c (modified) (1 diff)
- modules/video_filter/wall.c (modified) (1 diff)
- modules/video_output/fb.c (modified) (1 diff)
- modules/video_output/ggi.c (modified) (1 diff)
- modules/video_output/image.c (modified) (1 diff)
- modules/video_output/opengl.c (modified) (1 diff)
- modules/video_output/qte/qte.cpp (modified) (1 diff)
- modules/video_output/snapshot.c (modified) (1 diff)
- modules/video_output/x11/glx.c (modified) (2 diffs)
- modules/video_output/x11/x11.c (modified) (2 diffs)
- modules/video_output/x11/xvideo.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/video_filter/adjust.c
r2cb472d r5f18b9d 58 58 *****************************************************************************/ 59 59 60 #define THRES_TEXT N_("Enable brightness threshold") 61 #define THRES_LONGTEXT N_("Show black and white pixels with brightness as threshold value") 60 #define THRES_TEXT N_("Brightness threshold") 61 #define THRES_LONGTEXT N_("When this mode is enabled, pixels will be " \ 62 "shown as black or white. The treshold value will be the brighness " \ 63 "defined below." ) 62 64 #define CONT_TEXT N_("Image contrast (0-2)") 63 #define CONT_LONGTEXT N_("Set the image contrast, between 0 and 2. Defaults to 1 ")65 #define CONT_LONGTEXT N_("Set the image contrast, between 0 and 2. Defaults to 1.") 64 66 #define HUE_TEXT N_("Image hue (0-360)") 65 #define HUE_LONGTEXT N_("Set the image hue, between 0 and 360. Defaults to 0 ")67 #define HUE_LONGTEXT N_("Set the image hue, between 0 and 360. Defaults to 0.") 66 68 #define SAT_TEXT N_("Image saturation (0-3)") 67 #define SAT_LONGTEXT N_("Set the image saturation, between 0 and 3. Defaults to 1 ")69 #define SAT_LONGTEXT N_("Set the image saturation, between 0 and 3. Defaults to 1.") 68 70 #define LUM_TEXT N_("Image brightness (0-2)") 69 #define LUM_LONGTEXT N_("Set the image brightness, between 0 and 2. Defaults to 1 ")71 #define LUM_LONGTEXT N_("Set the image brightness, between 0 and 2. Defaults to 1.") 70 72 #define GAMMA_TEXT N_("Image gamma (0-10)") 71 #define GAMMA_LONGTEXT N_("Set the image gamma, between 0.01 and 10. Defaults to 1 ")73 #define GAMMA_LONGTEXT N_("Set the image gamma, between 0.01 and 10. Defaults to 1.") 72 74 73 75 modules/video_filter/clone.c
r2cb472d r5f18b9d 54 54 *****************************************************************************/ 55 55 #define COUNT_TEXT N_("Number of clones") 56 #define COUNT_LONGTEXT N_(" Select the number of video windows in which to "\56 #define COUNT_LONGTEXT N_("Number of video windows in which to "\ 57 57 "clone the video.") 58 58 59 #define VOUTLIST_TEXT N_("List of video output modules") 60 #define VOUTLIST_LONGTEXT N_("Select the specific video output modules that you want to activate.") 59 #define VOUTLIST_TEXT N_("Video output modules") 60 #define VOUTLIST_LONGTEXT N_("You can use specific video output modules " \ 61 "for the clones. Use a comma-separated list of modules." ) 61 62 62 63 vlc_module_begin(); modules/video_filter/crop.c
r2cb472d r5f18b9d 56 56 57 57 #define AUTOCROP_TEXT N_("Automatic cropping") 58 #define AUTOCROP_LONGTEXT N_("A ctivate automatic black border cropping.")58 #define AUTOCROP_LONGTEXT N_("Automatic black border cropping.") 59 59 60 60 vlc_module_begin(); modules/video_filter/deinterlace.c
r1e2b476 r5f18b9d 101 101 *****************************************************************************/ 102 102 #define MODE_TEXT N_("Deinterlace mode") 103 #define MODE_LONGTEXT N_("De fault deinterlace method to use for local playback")104 105 #define SOUT_MODE_TEXT N_(" Deinterlace mode")106 #define SOUT_MODE_LONGTEXT N_("De fault deinterlace methode to use for streaming")103 #define MODE_LONGTEXT N_("Deinterlace method to use for local playback.") 104 105 #define SOUT_MODE_TEXT N_("Streaming deinterlace mode") 106 #define SOUT_MODE_LONGTEXT N_("Deinterlace method to use for streaming.") 107 107 108 108 #define FILTER_CFG_PREFIX "sout-deinterlace-" modules/video_filter/distort.c
r4a9499f r5f18b9d 66 66 67 67 #define GRADIENT_TEXT N_("Gradient image type") 68 #define GRADIENT_LONGTEXT N_("Gradient image type (0 or 1)") 68 #define GRADIENT_LONGTEXT N_("Gradient image type (0 or 1). 0 will " \ 69 "turn the image to white while 1 will keep colors." ) 69 70 70 71 #define CARTOON_TEXT N_("Apply cartoon effect") 71 #define CARTOON_LONGTEXT N_("Apply cartoon effect. Used by \"gradient\" and \"edge\".") 72 #define CARTOON_LONGTEXT N_("Apply cartoon effect. Used by \"gradient\" " \ 73 "and \"edge\".") 72 74 73 75 static char *mode_list[] = { "wave", "ripple", "gradient", "edge", "hough", modules/video_filter/logo.c
ra93b528 r5f18b9d 67 67 *****************************************************************************/ 68 68 #define FILE_TEXT N_("Logo filenames") 69 #define FILE_LONGTEXT N_("Full path of the image files to use. Format is <image>[,<delay in ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...] .") 69 #define FILE_LONGTEXT N_("Full path of the image files to use. Format is " \ 70 "<image>[,<delay in ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. " \ 71 "If you only have one file, simply enter its filename.") 70 72 #define REPEAT_TEXT N_("Logo animation # of loops") 71 #define REPEAT_LONGTEXT N_("How many times to animate the logo images, -1 = continuous, 0 = disabled") 73 #define REPEAT_LONGTEXT N_("Number of loops for the logo animation." \ 74 "1 = continuous, 0 = disabled") 72 75 #define DELAY_TEXT N_("Logo individual image time in ms") 73 #define DELAY_LONGTEXT N_("Individual image display time of 0 - 60000 ms") 74 75 #define POSX_TEXT N_("X coordinate of the logo") 76 #define POSX_LONGTEXT N_("You can move the logo by left-clicking on it." ) 77 #define POSY_TEXT N_("Y coordinate of the logo") 78 #define POSY_LONGTEXT N_("You can move the logo by left-clicking on it." ) 76 #define DELAY_LONGTEXT N_("Individual image display time of 0 - 60000 ms.") 77 78 #define POSX_TEXT N_("X coordinate") 79 #define POSX_LONGTEXT N_("X coordinate of the logo. You can move the logo " \ 80 "by left-clicking it." ) 81 #define POSY_TEXT N_("Y coordinate") 82 #define POSY_LONGTEXT N_("Y coordinate of the logo. You can move the logo " \ 83 "by left-clicking it." ) 79 84 #define TRANS_TEXT N_("Transparency of the logo") 80 #define TRANS_LONGTEXT N_(" You can set the logo transparency value here " \85 #define TRANS_LONGTEXT N_("Logo transparency value " \ 81 86 "(from 0 for full transparency to 255 for full opacity)." ) 82 87 #define POS_TEXT N_("Logo position") 83 88 #define POS_LONGTEXT N_( \ 84 " You can enforce the logo position on the video " \89 "Enforce the logo position on the video " \ 85 90 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 86 "also use combinations of these values ).")91 "also use combinations of these values, eg 6 = top-right).") 87 92 88 93 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/marq.c
rc5cc4e5 r5f18b9d 74 74 }; 75 75 76 #define MSG_TEXT N_(" Marquee text")76 #define MSG_TEXT N_("Text") 77 77 #define MSG_LONGTEXT N_("Marquee text to display") 78 #define POSX_TEXT N_("X offset , from left")78 #define POSX_TEXT N_("X offset") 79 79 #define POSX_LONGTEXT N_("X offset, from the left screen edge" ) 80 #define POSY_TEXT N_("Y offset , from the top")80 #define POSY_TEXT N_("Y offset") 81 81 #define POSY_LONGTEXT N_("Y offset, down from the top" ) 82 #define TIMEOUT_TEXT N_(" Marquee timeout")83 #define TIMEOUT_LONGTEXT N_(" Defines the timethe marquee must remain " \84 "display ed, in milliseconds. Default value is " \85 "0 (remain forever).")82 #define TIMEOUT_TEXT N_("Timeout") 83 #define TIMEOUT_LONGTEXT N_("Number of milliseconds the marquee must remain " \ 84 "display. Default value is " \ 85 "0 (remains forever).") 86 86 #define OPACITY_TEXT N_("Opacity") 87 #define OPACITY_LONGTEXT N_(" The opacity (inverse of transparency) of " \87 #define OPACITY_LONGTEXT N_("Opacity (inverse of transparency) of " \ 88 88 "overlay text. 0 = transparent, 255 = totally opaque. " ) 89 89 #define SIZE_TEXT N_("Font size, pixels") 90 #define SIZE_LONGTEXT N_("Specify the font size, in pixels, " \ 91 "with -1 = use freetype-fontsize" ) 92 93 #define COLOR_TEXT N_("Text Default Color") 94 #define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, hexadecimal. " \ 95 "#000000 = all colors off, " \ 96 "0xFF0000 = just Red, 0xFFFFFF = all color on [White]" ) 90 #define SIZE_LONGTEXT N_("Font size, in pixels. Default is -1 (use default " \ 91 "font size)." ) 92 93 #define COLOR_TEXT N_("Color") 94 #define COLOR_LONGTEXT N_("Color of the text that will be rendered on "\ 95 "the video. This must be an hexadecimal (like HTML colors). The first two "\ 96 "chars are for red, then green, then blue. #000000 = black, #FF0000 = red,"\ 97 " #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white" ) 97 98 98 99 #define POS_TEXT N_("Marquee position") … … 100 101 "You can enforce the marquee position on the video " \ 101 102 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 102 "also use combinations of these values by adding them).")103 "also use combinations of these values, eg 6 = top-right).") 103 104 104 105 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/mosaic.c
r3c0e006 r5f18b9d 88 88 * Module descriptor 89 89 *****************************************************************************/ 90 #define ALPHA_TEXT N_("Alpha blending") 91 #define ALPHA_LONGTEXT N_("Alpha blending (0 -> 255). Default is 255") 92 93 #define HEIGHT_TEXT N_("Height in pixels") 94 #define WIDTH_TEXT N_("Width in pixels") 95 #define XOFFSET_TEXT N_("Top left corner x coordinate") 96 #define YOFFSET_TEXT N_("Top left corner y coordinate") 97 #define VBORDER_TEXT N_("Vertical border width in pixels") 98 #define HBORDER_TEXT N_("Horizontal border width in pixels") 99 #define ALIGN_TEXT N_("Mosaic alignment") 90 #define ALPHA_TEXT N_("Transparency") 91 #define ALPHA_LONGTEXT N_("Transparency of the mosaic foreground pictures. " \ 92 "0 means transparent, 255 opaque (default)." ) 93 94 #define HEIGHT_TEXT N_("Height") 95 #define HEIGHT_LONGTEXT N_( "Total height of the mosaic, in pixels." ) 96 #define WIDTH_TEXT N_("Width") 97 #define WIDTH_LONGTEXT N_( "Total width of the mosaic, in pixels." ) 98 99 #define XOFFSET_TEXT N_("Top left corner X coordinate") 100 #define XOFFSET_LONGTEXT N_("X Coordinate of the top-left corner of the mosaic.") 101 #define YOFFSET_TEXT N_("Top left corner Y coordinate") 102 #define YOFFSET_LONGTEXT N_("Y Coordinate of the top-left corner of the mosaic.") 103 #define VBORDER_TEXT N_("Vertical border width") 104 #define VBORDER_LONGTEXT N_( "With in pixels of the border than can be drawn " \ 105 "vertically around the mosaic" ) 106 #define HBORDER_TEXT N_("Horizontal border width") 107 #define HBORDER_LONGTEXT N_( "With in pixels of the border than can be drawn " \ 108 "horizontally around the mosaic" ) 109 110 #define ALIGN_TEXT N_("Mosaic alignment" ) 111 #define ALIGN_LONGTEXT N_( \ 112 "You can enforce the mosaic alignment on the video " \ 113 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 114 "also use combinations of these values, eg 6 = top-right).") 100 115 101 116 #define POS_TEXT N_("Positioning method") 102 #define POS_LONGTEXT N_("Positioning method. auto: automatically choose " \ 103 "the best number of rows and columns. fixed: use the user-defined " \ 104 "number of rows and columns.") 117 #define POS_LONGTEXT N_("Positioning method for the mosaic. auto: " \ 118 "automatically choose the best number of rows and columns. " \ 119 "fixed: use the user-defined number of rows and columns.") 120 105 121 #define ROWS_TEXT N_("Number of rows") 122 #define ROWS_LONGTEXT N_("Number of image rows in the mosaic (only used if "\ 123 "positionning method is set to \"fixed\"." ) 106 124 #define COLS_TEXT N_("Number of columns") 107 #define AR_TEXT N_("Keep aspect ratio when resizing") 125 #define COLS_LONGTEXT N_("Number of image columns in the mosaic (only used if "\ 126 "positionning method is set to \"fixed\"." ) 127 128 #define AR_TEXT N_("Keep aspect ratio") 129 #define AR_LONGTEXT N_("Keep the original aspect ratio when resizing " \ 130 "mosaic elements." ) 108 131 #define KEEP_TEXT N_("Keep original size") 109 110 #define ORDER_TEXT N_("Order as a comma separated list of picture-id(s)") 132 #define KEEP_LONGTEXT N_("Keep the original size of mosaic elements." ) 133 134 #define ORDER_TEXT N_("Elements order" ) 135 #define ORDER_LONGTEXT N_( "You can enforce the order of the elements on " \ 136 "the mosaic. You must give a comma-separated list of picture ID(s)." \ 137 "These IDs are assigned in the \"mosaic-bridge\" module." ) 111 138 112 139 #define DELAY_TEXT N_("Delay") 113 #define DELAY_LONGTEXT N_("Pictures coming from the picture video outputs " \ 114 "will be delayed accordingly (in milliseconds). For high " \ 115 "values you will need to raise file-caching and others.") 116 117 #define BLUESCREEN_TEXT N_("Enable bluescreen (aka greenscreen or chroma key) video background replacing") 118 #define BLUESCREENU_TEXT N_("Bluescreen chroma key U (0-255)") 119 #define BLUESCREENV_TEXT N_("Bluescreen chroma key V (0-255)") 120 #define BLUESCREENUTOL_TEXT N_("Bluescreen chroma key U tolerance") 121 #define BLUESCREENVTOL_TEXT N_("Bluescreen chroma key V tolerance") 140 #define DELAY_LONGTEXT N_("Pictures coming from the mosaic elements " \ 141 "will be delayed according to this value (in milliseconds). For high " \ 142 "values you will need to raise caching at input.") 143 144 #define BLUESCREEN_TEXT N_("Bluescreen" ) 145 #define BLUESCREEN_LONGTEXT N_( "This effect, also known as \"greenscreen\" "\ 146 "or \"chroma key\" blends the \"blue parts\" of the foreground images of " \ 147 "the mosaic on the background (like wheather forecast presenters). You " \ 148 "can choose the \"key\" color for blending (blue by default)." ) 149 150 #define BLUESCREENU_TEXT N_("Bluescreen U value") 151 #define BLUESCREENU_LONGTEXT N_("\"U\" value for the bluescreen key color " \ 152 "(in YUV values). From 0 to 255. Defaults to 120 for blue." ) 153 #define BLUESCREENV_TEXT N_("Bluescreen V value") 154 #define BLUESCREENV_LONGTEXT N_("\"V\" value for the bluescreen key color " \ 155 "(in YUV values). From 0 to 255. Defaults to 90 for blue." ) 156 #define BLUESCREENUTOL_TEXT N_("Bluescreen U tolerance") 157 #define BLUESCREENUTOL_LONGTEXT N_("Tolerance of the bluescreen blender " \ 158 "on color variations for the U plane. A value between 10 and 20 " \ 159 "seems sensible." ) 160 #define BLUESCREENVTOL_TEXT N_("Bluescreen V tolerance") 161 #define BLUESCREENVTOL_LONGTEXT N_("Tolerance of the bluescreen blender " \ 162 "on color variations for the V plane. A value between 10 and 20 " \ 163 "seems sensible." ) 122 164 123 165 static int pi_pos_values[] = { 0, 1 }; … … 140 182 141 183 add_integer( "mosaic-alpha", 255, NULL, ALPHA_TEXT, ALPHA_LONGTEXT, VLC_FALSE ); 142 add_integer( "mosaic-height", 100, NULL, HEIGHT_TEXT, HEIGHT_ TEXT, VLC_FALSE );143 add_integer( "mosaic-width", 100, NULL, WIDTH_TEXT, WIDTH_ TEXT, VLC_FALSE );144 add_integer( "mosaic-align", 5, NULL, ALIGN_TEXT, ALIGN_ TEXT, VLC_TRUE);184 add_integer( "mosaic-height", 100, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_FALSE ); 185 add_integer( "mosaic-width", 100, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_FALSE ); 186 add_integer( "mosaic-align", 5, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE); 145 187 change_integer_list( pi_align_values, ppsz_align_descriptions, 0 ); 146 add_integer( "mosaic-xoffset", 0, NULL, XOFFSET_TEXT, XOFFSET_ TEXT, VLC_TRUE );147 add_integer( "mosaic-yoffset", 0, NULL, YOFFSET_TEXT, YOFFSET_ TEXT, VLC_TRUE );148 add_integer( "mosaic-vborder", 0, NULL, VBORDER_TEXT, VBORDER_ TEXT, VLC_TRUE );149 add_integer( "mosaic-hborder", 0, NULL, HBORDER_TEXT, HBORDER_ TEXT, VLC_TRUE );188 add_integer( "mosaic-xoffset", 0, NULL, XOFFSET_TEXT, XOFFSET_LONGTEXT, VLC_TRUE ); 189 add_integer( "mosaic-yoffset", 0, NULL, YOFFSET_TEXT, YOFFSET_LONGTEXT, VLC_TRUE ); 190 add_integer( "mosaic-vborder", 0, NULL, VBORDER_TEXT, VBORDER_LONGTEXT, VLC_TRUE ); 191 add_integer( "mosaic-hborder", 0, NULL, HBORDER_TEXT, HBORDER_LONGTEXT, VLC_TRUE ); 150 192 151 193 add_integer( "mosaic-position", 0, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE ); 152 194 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 ); 153 add_integer( "mosaic-rows", 2, NULL, ROWS_TEXT, ROWS_ TEXT, VLC_FALSE );154 add_integer( "mosaic-cols", 2, NULL, COLS_TEXT, COLS_ TEXT, VLC_FALSE );155 add_bool( "mosaic-keep-aspect-ratio", 0, NULL, AR_TEXT, AR_ TEXT, VLC_FALSE );156 add_bool( "mosaic-keep-picture", 0, NULL, KEEP_TEXT, KEEP_ TEXT, VLC_FALSE );157 add_string( "mosaic-order", "", NULL, ORDER_TEXT, ORDER_ TEXT, VLC_FALSE );195 add_integer( "mosaic-rows", 2, NULL, ROWS_TEXT, ROWS_LONGTEXT, VLC_FALSE ); 196 add_integer( "mosaic-cols", 2, NULL, COLS_TEXT, COLS_LONGTEXT, VLC_FALSE ); 197 add_bool( "mosaic-keep-aspect-ratio", 0, NULL, AR_TEXT, AR_LONGTEXT, VLC_FALSE ); 198 add_bool( "mosaic-keep-picture", 0, NULL, KEEP_TEXT, KEEP_LONGTEXT, VLC_FALSE ); 199 add_string( "mosaic-order", "", NULL, ORDER_TEXT, ORDER_LONGTEXT, VLC_FALSE ); 158 200 159 201 add_integer( "mosaic-delay", 0, NULL, DELAY_TEXT, DELAY_LONGTEXT, … … 161 203 162 204 add_bool( "mosaic-bs", 0, NULL, BLUESCREEN_TEXT, 163 BLUESCREEN_ TEXT, VLC_FALSE );205 BLUESCREEN_LONGTEXT, VLC_FALSE ); 164 206 add_integer( "mosaic-bsu", 120, NULL, BLUESCREENU_TEXT, 165 BLUESCREENU_ TEXT, VLC_FALSE );207 BLUESCREENU_LONGTEXT, VLC_FALSE ); 166 208 add_integer( "mosaic-bsv", 90, NULL, BLUESCREENV_TEXT, 167 BLUESCREENV_ TEXT, VLC_FALSE );209 BLUESCREENV_LONGTEXT, VLC_FALSE ); 168 210 add_integer( "mosaic-bsut", 17, NULL, BLUESCREENUTOL_TEXT, 169 BLUESCREENUTOL_ TEXT, VLC_FALSE );211 BLUESCREENUTOL_LONGTEXT, VLC_FALSE ); 170 212 add_integer( "mosaic-bsvt", 17, NULL, BLUESCREENVTOL_TEXT, 171 BLUESCREENVTOL_ TEXT, VLC_FALSE );213 BLUESCREENVTOL_LONGTEXT, VLC_FALSE ); 172 214 173 215 var_Create( p_module->p_libvlc, "mosaic-lock", VLC_VAR_MUTEX ); modules/video_filter/osdmenu.c
r2cb472d r5f18b9d 40 40 41 41 /* FIXME: Future extension make the definition file in XML format. */ 42 #define OSD_FILE_TEXT N_(" OSD menu configuration file")42 #define OSD_FILE_TEXT N_("Configuration file") 43 43 #define OSD_FILE_LONGTEXT N_( \ 44 "An OSD menu configuration file that menu actions with button images" ) 45 44 "Configuration file for the OSD Menu" ) 46 45 #define OSD_PATH_TEXT N_("Path to OSD menu images") 47 46 #define OSD_PATH_LONGTEXT N_( \ 48 " Specify another path to the OSD menu images. This will override the path asdefined in the " \47 "Path to the OSD menu images. This will override the path defined in the " \ 49 48 "OSD configuration file." ) 50 49 51 #define POSX_TEXT N_("X coordinate of the OSD menu")50 #define POSX_TEXT N_("X coordinate") 52 51 #define POSX_LONGTEXT N_("You can move the OSD menu by left-clicking on it." ) 53 52 54 #define POSY_TEXT N_("Y coordinate of the OSD menu")53 #define POSY_TEXT N_("Y coordinate") 55 54 #define POSY_LONGTEXT N_("You can move the OSD menu by left-clicking on it." ) 56 55 57 #define POS_TEXT N_(" OSD menu position")56 #define POS_TEXT N_("Menu position") 58 57 #define POS_LONGTEXT N_( \ 59 58 "You can enforce the OSD menu position on the video " \ 60 59 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 61 "also use combinations of these values ).")62 63 #define TIMEOUT_TEXT N_(" Timeout of OSD menu")60 "also use combinations of these values, eg. 6 = top-right).") 61 62 #define TIMEOUT_TEXT N_("Menu timeout") 64 63 #define TIMEOUT_LONGTEXT N_( \ 65 64 "OSD menu pictures get a default timeout of 15 seconds added to their " \ … … 67 66 "time visible.") 68 67 69 #define OSD_UPDATE_TEXT N_(" Update speed of OSD menu")68 #define OSD_UPDATE_TEXT N_("Menu update interval" ) 70 69 #define OSD_UPDATE_LONGTEXT N_( \ 71 "Update the OSD menu picture every 200 ms (default). Shorten the update time for " \ 72 "environments that experience transmissions errors. Be careful with this option " \ 73 "because encoding OSD menu pictures is very computing intensive. The range is 0 - 1000 ms." ) 70 "The default is to update the OSD menu picture every 200 ms. Shorten the" \ 71 " update time for environments that experience transmissions errors. " \ 72 "Be careful with this option as encoding OSD menu pictures is very " \ 73 "computing intensive. The range is 0 - 1000 ms." ) 74 74 75 75 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/rss.c
re448f23 r5f18b9d 119 119 }; 120 120 121 #define MSG_TEXT N_("RSS/Atom feed URLs") 122 #define MSG_LONGTEXT N_("RSS/Atom feed '|' (pipe) seperated URLs") 123 #define SPEED_TEXT N_("RSS/Atom feed speed") 124 #define SPEED_LONGTEXT N_("RSS/Atom feed speed (bigger is slower)") 125 #define LENGTH_TEXT N_("RSS/Atom feed max number of chars displayed") 126 #define LENGTH_LONGTEXT N_("RSS/Atom feed max number of chars displayed") 127 #define TTL_TEXT N_("Number of seconds between each forced refresh of the feeds") 128 #define TTL_LONGTEXT N_("Number of seconds between each forced refresh of the feeds. If 0, the feeds will never be updated.") 129 #define IMAGE_TEXT N_("Display feed images if available") 130 #define IMAGE_LONGTEXT N_("Display feed images if available") 131 132 #define POSX_TEXT N_("X offset, from left") 133 #define POSX_LONGTEXT N_("X offset, from the left screen edge" ) 134 #define POSY_TEXT N_("Y offset, from the top") 135 #define POSY_LONGTEXT N_("Y offset, down from the top" ) 121 #define MSG_TEXT N_("Feed URLs") 122 #define MSG_LONGTEXT N_("RSS/Atom feed '|' (pipe) seperated URLs.") 123 #define SPEED_TEXT N_("Feeds speed") 124 #define SPEED_LONGTEXT N_("RSS/Atom feeds speed (bigger is slower).") 125 #define LENGTH_TEXT N_("Max length") 126 #define LENGTH_LONGTEXT N_("Maximum number of characters displayed on the " \ 127 "screen." ) 128 #define TTL_TEXT N_("Refresh time") 129 #define TTL_LONGTEXT N_("Number of seconds between each forced refresh " \ 130 "of the feeds. 0 means that the feeds are never updated." ) 131 #define IMAGE_TEXT N_("Feed images") 132 #define IMAGE_LONGTEXT N_("Display feed images if available.") 133 134 #define POSX_TEXT N_("X offset") 135 #define POSX_LONGTEXT N_("X offset, from the left screen edge." ) 136 #define POSY_TEXT N_("Y offset") 137 #define POSY_LONGTEXT N_("Y offset, down from the top." ) 136 138 #define OPACITY_TEXT N_("Opacity") 137 #define OPACITY_LONGTEXT N_(" The opacity (inverse of transparency) of " \139 #define OPACITY_LONGTEXT N_("Opacity (inverse of transparency) of " \ 138 140 "overlay text. 0 = transparent, 255 = totally opaque. " ) 141 139 142 #define SIZE_TEXT N_("Font size, pixels") 140 #define SIZE_LONGTEXT N_("Specify the font size, in pixels, " \ 141 "with -1 = use freetype-fontsize" ) 142 143 #define COLOR_TEXT N_("Text Default Color") 144 #define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, hexadecimal. " \ 145 "#000000 = all colors off, " \ 146 "0xFF0000 = just Red, 0xFFFFFF = all color on [White]" ) 147 148 #define POS_TEXT N_("Marquee position") 143 #define SIZE_LONGTEXT N_("Font size, in pixels. Default is -1 (use default " \ 144 "font size)." ) 145 146 #define COLOR_TEXT N_("Color") 147 #define COLOR_LONGTEXT N_("Color of the text that will be rendered on "\ 148 "the video. This must be an hexadecimal (like HTML colors). The first two "\ 149 "chars are for red, then green, then blue. #000000 = black, #FF0000 = red,"\ 150 " #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white" ) 151 152 #define POS_TEXT N_("Text position") 149 153 #define POS_LONGTEXT N_( \ 150 "You can enforce the marqueeposition on the video " \154 "You can enforce the text position on the video " \ 151 155 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 152 "also use combinations of these values by adding them).")156 "also use combinations of these values, eg 6 = top-right).") 153 157 154 158 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/swscale/filter.c
r2cb472d r5f18b9d 62 62 *****************************************************************************/ 63 63 #define MODE_TEXT N_("Scaling mode") 64 #define MODE_LONGTEXT N_(" You can choose the default scaling mode.")64 #define MODE_LONGTEXT N_("Scaling mode to use.") 65 65 66 66 static int pi_mode_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/time.c
rc5cc4e5 r5f18b9d 71 71 #define MSG_TEXT N_("Time format string (%Y%m%d %H%M%S)") 72 72 #define MSG_LONGTEXT N_("Time format string (%Y = year, %m = month, %d = day, %H = hour, %M = minute, %S = second") 73 #define POSX_TEXT N_("X offset , from left")73 #define POSX_TEXT N_("X offset") 74 74 #define POSX_LONGTEXT N_("X offset, from the left screen edge" ) 75 #define POSY_TEXT N_("Y offset , from the top")75 #define POSY_TEXT N_("Y offset") 76 76 #define POSY_LONGTEXT N_("Y offset, down from the top" ) 77 77 #define OPACITY_TEXT N_("Opacity") 78 #define OPACITY_LONGTEXT N_(" The opacity (inverse of transparency) of " \78 #define OPACITY_LONGTEXT N_("Opacity (inverse of transparency) of " \ 79 79 "overlay text. 0 = transparent, 255 = totally opaque. " ) 80 80 81 #define SIZE_TEXT N_("Font size, pixels") 81 #define SIZE_LONGTEXT N_("Specify the font size, in pixels, " \ 82 "with -1 = use freetype-fontsize" ) 83 84 #define COLOR_TEXT N_("Text Default Color") 85 #define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, hexadecimal. " \ 86 "#000000 = all colors off, " \ 87 "0xFF0000 = just Red, 0xFFFFFF = all color on [White]" ) 88 #define POS_TEXT N_("Time position") 82 #define SIZE_LONGTEXT N_("Font size, in pixels. Default is -1 (use default " \ 83 "font size)." ) 84 85 #define COLOR_TEXT N_("Color") 86 #define COLOR_LONGTEXT N_("Color of the text that will be rendered on "\ 87 "the video. This must be an hexadecimal (like HTML colors). The first two "\ 88 "chars are for red, then green, then blue. #000000 = black, #FF0000 = red,"\ 89 " #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white" ) 90 91 #define POS_TEXT N_("Text position") 89 92 #define POS_LONGTEXT N_( \ 90 "You can enforce the t imeposition on the video " \93 "You can enforce the text position on the video " \ 91 94 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \ 92 "also use combinations of these values by adding them).")95 "also use combinations of these values, eg 6 = top-right).") 93 96 94 97 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 }; modules/video_filter/wall.c
r2cb472d r5f18b9d 52 52 *****************************************************************************/ 53 53 #define COLS_TEXT N_("Number of columns") 54 #define COLS_LONGTEXT N_(" Select the number of horizontal videowindows in " \54 #define COLS_LONGTEXT N_("Number of horizontal windows in " \ 55 55 "which to split the video.") 56 56 57 57 #define ROWS_TEXT N_("Number of rows") 58 #define ROWS_LONGTEXT N_(" Select the number of vertical videowindows in " \58 #define ROWS_LONGTEXT N_("Number of vertical windows in " \ 59 59 "which to split the video.") 60 60 61 61 #define ACTIVE_TEXT N_("Active windows") 62 #define ACTIVE_LONGTEXT N_("Comma separated list of active windows, " \62 #define ACTIVE_LONGTEXT N_("Comma-separated list of active windows, " \ 63 63 "defaults to all") 64 64 65 65 #define ASPECT_TEXT N_("Element aspect ratio") 66 #define ASPECT_LONGTEXT N_("The aspect ratio of the individual displays building the display wall") 66 #define ASPECT_LONGTEXT N_("Aspect ratio of the individual displays " \ 67 "building the wall.") 67 68 68 69 vlc_module_begin(); modules/video_output/fb.c
r2cb472d r5f18b9d 67 67 #define DEVICE_TEXT N_("Framebuffer device") 68 68 #define DEVICE_LONGTEXT N_( \ 69 "You can select here the framebuffer device that will be used " \ 70 "for rendering (usually /dev/fb0).") 69 "Framebuffer device to use for rendering (usually /dev/fb0).") 71 70 72 71 vlc_module_begin(); modules/video_output/ggi.c
r2cb472d r5f18b9d 54 54 * Module descriptor 55 55 *****************************************************************************/ 56 #define DISPLAY_TEXT N_("X11 display name")56 #define DISPLAY_TEXT N_("X11 display") 57 57 #define DISPLAY_LONGTEXT N_( \ 58 " Specify the X11 hardware display you wantto use.\n" \58 "X11 hardware display to use.\n" \ 59 59 "By default, VLC will use the value of the DISPLAY " \ 60 60 "environment variable.") modules/video_output/image.c
r8a3dd2f r5f18b9d 47 47 *****************************************************************************/ 48 48 #define FORMAT_TEXT N_( "Image format" ) 49 #define FORMAT_LONGTEXT N_( " Set the format of the output image." )49 #define FORMAT_LONGTEXT N_( "Format of the output images (png or jpg)." ) 50 50 51 51 #define RATIO_TEXT N_( "Recording ratio" ) 52 #define RATIO_LONGTEXT N_( " Set the ratio of images that are recorded. "\52 #define RATIO_LONGTEXT N_( "Ratio of images to record. "\ 53 53 "3 means that one image out of three is recorded." ) 54 54 55 55 #define PREFIX_TEXT N_( "Filename prefix" ) 56 #define PREFIX_LONGTEXT N_( "Set the prefix of the filename. Output filename "\ 57 "will have the form prefixNUMBER.format" ) 56 #define PREFIX_LONGTEXT N_( "Prefix of the output images filenames. Output " \ 57 "filenames will have the \"prefixNUMBER.format\" "\ 58 "form." ) 58 59 59 60 #define REPLACE_TEXT N_( "Always write to the same file" ) 60 #define REPLACE_LONGTEXT N_( "Always write to the same file" ) 61 #define REPLACE_LONGTEXT N_( "Always write to the same file instead of " \ 62 "creating one file per image. In this case, " \ 63 "the number is not appended to the filename." ) 61 64 62 65 static char *psz_format_list[] = { "png", "jpeg" }; modules/video_output/opengl.c
re536ea5 r5f18b9d 117 117 *****************************************************************************/ 118 118 #define SPEED_TEXT N_( "OpenGL cube rotation speed" ) 119 #define SPEED_LONGTEXT N_( "If the OpenGL cube effect is enabled, this " \ 120 "controls its rotation speed." ) 121 122 #define EFFECT_TEXT N_("Select effect") 119 #define SPEED_LONGTEXT N_( "Rotation speed of the OpenGL cube effect, if "\ "enabled." ) 120 121 #define EFFECT_TEXT N_("Effect") 123 122 #define EFFECT_LONGTEXT N_( \ 124 " Allows you to select different visual effects.")123 "Several OpenGL visual effects are available." ) 125 124 126 125 static char *ppsz_effects[] = { modules/video_output/qte/qte.cpp
r3854055 r5f18b9d 77 77 * Module descriptor 78 78 *****************************************************************************/ 79 #define DISPLAY_TEXT N_("QT Embedded display name")79 #define DISPLAY_TEXT N_("QT Embedded display") 80 80 #define DISPLAY_LONGTEXT N_( \ 81 " Specify the Qt Embedded hardware display you wantto use. " \81 "Qt Embedded hardware display to use. " \ 82 82 "By default VLC will use the value of the DISPLAY environment variable.") 83 83 modules/video_output/snapshot.c
r2cb472d r5f18b9d 58 58 * Module descriptor 59 59 *****************************************************************************/ 60 #define WIDTH_TEXT N_( "snapshot width" ) 61 #define WIDTH_LONGTEXT N_( "Set the width of the snapshot image." ) 62 63 #define HEIGHT_TEXT N_( "snapshot height" ) 64 #define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image." ) 65 66 #define CHROMA_TEXT N_( "chroma" ) 67 #define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)." ) 68 69 #define CACHE_TEXT N_( "cache size (number of images)" ) 70 #define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)." ) 60 #define WIDTH_TEXT N_( "Snapshot width" ) 61 #define WIDTH_LONGTEXT N_( "Width of the snapshot image." ) 62 63 #define HEIGHT_TEXT N_( "Snapshot height" ) 64 #define HEIGHT_LONGTEXT N_( "Height of the snapshot image." ) 65 66 #define CHROMA_TEXT N_( "Chroma" ) 67 #define CHROMA_LONGTEXT N_( "Output chroma for the snapshot image " \ 68 "(a 4 character string, like \"RV32\")." ) 69 70 #define CACHE_TEXT N_( "Cache size (number of images)" ) 71 #define CACHE_LONGTEXT N_( "Snapshot cache size (number of images to keep)." ) 71 72 72 73 modules/video_output/x11/glx.c
r2cb472d r5f18b9d 87 87 #define ADAPTOR_TEXT N_("XVideo adaptor number") 88 88 #define ADAPTOR_LONGTEXT N_( \ 89 "If you graphics card provides several adaptors, this option allows you" \89 "If you graphics card provides several adaptors, you have " \ 90 90 "to choose which one will be used (you shouldn't have to change this).") 91 91 … … 99 99 "to show on top of the video.") 100 100 101 #define DISPLAY_TEXT N_("X11 display name")101 #define DISPLAY_TEXT N_("X11 display") 102 102 #define DISPLAY_LONGTEXT N_( \ 103 " Specify the X11 hardware display you wantto use. By default VLC will " \103 "X11 hardware display to use. By default VLC will " \ 104 104 "use the value of the DISPLAY environment variable.") 105 105 106 #define SCREEN_TEXT N_("Screen to be usedfor fullscreen mode.")106 #define SCREEN_TEXT N_("Screen for fullscreen mode.") 107 107 #define SCREEN_LONGTEXT N_( \ 108 " Choose the screen you wantto use in fullscreen mode. For instance " \108 "Screen to use in fullscreen mode. For instance " \ 109 109 "set it to 0 for first screen, 1 for the second.") 110 110 modules/video_output/x11/x11.c
r2cb472d r5f18b9d 50 50 "to show on top of the video.") 51 51 52 #define DISPLAY_TEXT N_("X11 display name")52 #define DISPLAY_TEXT N_("X11 display") 53 53 #define DISPLAY_LONGTEXT N_( \ 54 " Specify the X11 hardware display you wantto use. By default VLC will " \54 "X11 hardware display to use. By default VLC will " \ 55 55 "use the value of the DISPLAY environment variable.") 56 56 … … 59 59 "Use shared memory to communicate between VLC and the X server.") 60 60 61 #define SCREEN_TEXT N_(" choose the screen to be usedfor fullscreen mode.")61 #define SCREEN_TEXT N_("Screen for fullscreen mode.") 62 62 #define SCREEN_LONGTEXT N_( \ 63 " Choose the screen you wantto use in fullscreen mode. For instance " \63 "Screen to use in fullscreen mode. For instance " \ 64 64 "set it to 0 for first screen, 1 for the second.") 65 65 modules/video_output/x11/xvideo.c
r2cb472d r5f18b9d 44 44 #define ADAPTOR_TEXT N_("XVideo adaptor number") 45 45 #define ADAPTOR_LONGTEXT N_( \ 46 "If you graphics card provides several adaptors, this option allows you" \47 " to choosewhich one will be used (you shouldn't have to change this).")46 "If you graphics card provides several adaptors, you need to choose " \ 47 "which one will be used (you shouldn't have to change this).") 48 48 49 49 #define ALT_FS_TEXT N_("Alternate fullscreen method") … … 56 56 "to show on top of the video.") 57 57 58 #define DISPLAY_TEXT N_("X11 display name")58 #define DISPLAY_TEXT N_("X11 display") 59 59 #define DISPLAY_LONGTEXT N_( \ 60 " Specify the X11 hardware display you wantto use. By default VLC will " \60 "X11 hardware display to use. By default VLC will " \ 61 61 "use the value of the DISPLAY environment variable.") 62 62 … … 70 70 "Use shared memory to communicate between VLC and the X server.") 71 71 72 #define SCREEN_TEXT N_("Screen to be usedfor fullscreen mode.")72 #define SCREEN_TEXT N_("Screen for fullscreen mode.") 73 73 #define SCREEN_LONGTEXT N_( \ 74 " Choose the screen you wantto use in fullscreen mode. For instance " \74 "Screen to use in fullscreen mode. For instance " \ 75 75 "set it to 0 for first screen, 1 for the second.") 76 76
