Changeset 37b0b026bbe92b1bda266e6f30ec37c7ceee767d

Show
Ignore:
Timestamp:
03/23/07 22:22:47 (1 year ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1174684967 +0000
git-parent:

[b19474b864ecfe8073bd735c7ff28cbb88265ba5]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1174684967 +0000
Message:

Fix the strings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/dshow/dshow.cpp

    rf0fbcbd r37b0b02  
    100100    "DirectShow plugin. If you don't specify anything, the default device " \ 
    101101    "will be used.") 
    102 /// \bug [String] size stuff should be on video ! 
    103102#define ADEV_TEXT N_("Audio device name") 
    104103#define ADEV_LONGTEXT N_( \ 
    105104    "Name of the audio device that will be used by the " \ 
    106105    "DirectShow plugin. If you don't specify anything, the default device " \ 
    107     "will be used. You can specify a standard size (cif, d1, ...) or <width>x<height>") 
     106    "will be used. ") 
    108107#define SIZE_TEXT N_("Video size") 
    109108#define SIZE_LONGTEXT N_( \ 
    110109    "Size of the video that will be displayed by the " \ 
    111110    "DirectShow plugin. If you don't specify anything the default size for " \ 
    112     "your device will be used.") 
     111    "your device will be used. You can specify a standard size (cif, d1, ...) or <width>x<height>.") 
    113112#define CHROMA_TEXT N_("Video input chroma format") 
    114113#define CHROMA_LONGTEXT N_( \ 
  • modules/access/http.c

    rd4b31be r37b0b02  
    6969    "disconnect." ) 
    7070 
    71 /// \bug missing space before you should 
    7271#define CONTINUOUS_TEXT N_("Continuous stream") 
    7372#define CONTINUOUS_LONGTEXT N_("Read a file that is " \ 
    74     "being constantly updated (for example, a JPG file on a server)." \ 
     73    "being constantly updated (for example, a JPG file on a server). " \ 
    7574    "You should not globally enable this option as it will break all other " \ 
    7675    "types of HTTP streams." ) 
  • modules/access/pvr.c

    rd3fe7f2 r37b0b02  
    8888#define BITRATE_PEAK_LONGTEXT N_( "Peak bitrate in VBR mode." ) 
    8989 
    90 /// \bug extra parenthesis 
    91 #define BITRATE_MODE_TEXT N_( "Bitrate mode)" ) 
     90#define BITRATE_MODE_TEXT N_( "Bitrate mode" ) 
    9291#define BITRATE_MODE_LONGTEXT N_( "Bitrate mode to use (VBR or CBR)." ) 
    9392 
  • modules/access_output/http.c

    r839ae28 r37b0b02  
    6666#define PASS_LONGTEXT N_("Password that will be " \ 
    6767                         "requested to access the stream." ) 
    68  
    69 /// \bug [String] missing closing parenthesis 
    7068#define MIME_TEXT N_("Mime") 
    7169#define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \ 
    72                         "if not specified." ) 
    73  
     70                        "if not specified)." ) 
    7471#define CERT_TEXT N_( "Certificate file" ) 
    7572#define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "\ 
  • modules/audio_filter/equalizer.c

    rd3fe7f2 r37b0b02  
    5353 
    5454#define BANDS_TEXT N_( "Bands gain") 
    55 /// \bug [String] missing dot 
    5655#define BANDS_LONGTEXT N_( \ 
    5756         "Don't use presets, but manually specified bands. You need to " \ 
    5857         "provide 10 values between -20dB and 20dB, separated by spaces, " \ 
    59          "e.g. \"0 2 4 2 0 -2 -4 -2 0\"" ) 
     58         "e.g. \"0 2 4 2 0 -2 -4 -2 0\"." ) 
    6059 
    6160#define TWOPASS_TEXT N_( "Two pass" ) 
  • modules/demux/mod.c

    rd3fe7f2 r37b0b02  
    4545static void Close  ( vlc_object_t * ); 
    4646 
    47 /// \bug [String] missing . 
    48 #define NOISE_LONGTEXT N_("Enable noise reduction algorithm") 
     47#define NOISE_LONGTEXT N_("Enable noise reduction algorithm.") 
    4948#define REVERB_LONGTEXT N_("Enable reverberation" ) 
    5049#define REVERB_LEVEL_LONGTEXT N_( "Reverberation level (from 0 " \ 
     
    5554#define MEGABASS_LEVEL_LONGTEXT N_("Megabass mode level (from 0 to 100, " \ 
    5655                "default value is 0)." ) 
    57 /// \bug [String] Missing space after dot 
    58 #define MEGABASS_RANGE_LONGTEXT N_("Megabass mode cutoff frequency, in Hz." \ 
     56#define MEGABASS_RANGE_LONGTEXT N_("Megabass mode cutoff frequency, in Hz. " \ 
    5957                "This is the maximum frequency for which the megabass " \ 
    60                 "effect applies. Valid values are from 10 to 100 Hz" ) 
     58                "effect applies. Valid values are from 10 to 100 Hz." ) 
    6159#define SURROUND_LEVEL_LONGTEXT N_( "Surround effect level (from 0 to 100, " \ 
    6260                "default value is 0)." ) 
    6361#define SURROUND_DELAY_LONGTEXT N_("Surround delay, in ms. Usual values are " \ 
    64                 "from 5 to 40 ms" ) 
     62                "from 5 to 40 ms." ) 
    6563 
    6664vlc_module_begin(); 
  • modules/demux/playlist/playlist.c

    r6e7d7c4 r37b0b02  
    3535 *****************************************************************************/ 
    3636#define AUTOSTART_TEXT N_( "Auto start" ) 
    37 /// \bug [String] Why \n ? 
    3837#define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \ 
    39                 "content once it's loaded.\n" ) 
     38                "content once it's loaded." ) 
    4039 
    4140#define SHOW_ADULT_TEXT N_( "Show shoutcast adult content" ) 
  • modules/gui/macosx/equalizer.m

    rcd19d6a r37b0b02  
    139139    [o_btn_equalizer setToolTip: _NS("Equalizer")]; 
    140140    [o_ckb_2pass setTitle: _NS("2 Pass")]; 
    141     [o_ckb_2pass setToolTip: _NS("Apply the" 
    142 /// \bug [String] missing space 
     141    [o_ckb_2pass setToolTip: _NS("Apply the " 
    143142        "equalizer filter twice. The effect will be sharper.")]; 
    144143    [o_ckb_enable setTitle: _NS("Enable")]; 
  • modules/gui/wxwidgets/dialogs/open.cpp

    ra26145a r37b0b02  
    16671667        disc_chapter->SetRange( 0, 255 ); 
    16681668        disc_title->SetToolTip( wxU(_("Title number.")) ); 
    1669         // \bug [string] needs to be DVDs instead of DVD's 
    16701669        disc_sub->SetToolTip( wxU(_( 
    1671           "DVD's can have up to 32 subtitles numbered 0..31. " 
     1670          "DVDs can have up to 32 subtitles numbered 0..31. " 
    16721671          "Note this is not the same thing as a subtitle name (e.g. 'en'). " 
    16731672          "If a value -1 is used, no subtitle will be shown." )) ); 
    1674         // \bug [string] needs to be DVDs instead of DVD's 
    16751673        disc_audio->SetToolTip( wxU(_("Audio track number. " 
    1676           "DVD's can have up to 8 audio tracks numbered 0..7." 
     1674          "DVDs can have up to 8 audio tracks numbered 0..7." 
    16771675        )) ); 
    16781676        break; 
     
    17101708        disc_sub->SetRange( -1, 3 );    // up to 4 subtitles -1 = no subtitle 
    17111709        disc_audio->SetRange( 0, 1 );   // up to 2 audio tracks 
    1712         // \bug [string] needs to be SVCDs instead of SVCD's 
    17131710        disc_sub->SetToolTip( wxU(_( 
    1714           "SVCD's can have up to 4 subtitles numbered 0..3. " 
     1711          "SVCDs can have up to 4 subtitles numbered 0..3. " 
    17151712          "If a value -1 is used, no subtitle will be shown." )) ); 
    1716         // \bug [string] needs to be SVCDs instead of SVCD's 
    17171713        disc_audio->SetToolTip( wxU(_("Audio track number. " 
    1718           "VCD's can have up to 2 audio tracks numbered 0 or 1. " 
     1714          "VCDs can have up to 2 audio tracks numbered 0 or 1. " 
    17191715        )) ); 
    17201716        break; 
  • modules/misc/notify/growl.c

    r93c16a0 r37b0b02  
    5454 ****************************************************************************/ 
    5555 
    56 /// \bug [String] REmove all "Growl" in short desc 
    57  
    5856#define SERVER_DEFAULT "127.0.0.1" 
    59 #define SERVER_TEXT N_("Growl server") 
     57#define SERVER_TEXT N_("Server") 
    6058#define SERVER_LONGTEXT N_("This is the host to which Growl notifications " \ 
    6159   "will be sent. By default, notifications are sent locally." ) 
    6260#define PASS_DEFAULT "" 
    63 #define PASS_TEXT N_("Growl password") 
    64 /// \bug [String] Password on the Growl server. 
    65 #define PASS_LONGTEXT N_("Growl password on the server.") 
    66 #define PORT_TEXT N_("Growl UDP port") 
    67 /// \bug [String] UDP port on the Growl server 
    68 #define PORT_LONGTEXT N_("Growl UDP port on the server.") 
     61#define PASS_TEXT N_("Password") 
     62#define PASS_LONGTEXT N_("Growl password on the Growl server.") 
     63#define PORT_TEXT N_("UDP port") 
     64#define PORT_LONGTEXT N_("Growl UDP port on the Growl server.") 
    6965 
    7066vlc_module_begin(); 
  • modules/misc/notify/msn.c

    r3f92a62 r37b0b02  
    6060 *****************************************************************************/ 
    6161#define FORMAT_DEFAULT "{0} - {1}" 
    62 /// \bug [String] MSN is useless 
    63 #define FORMAT_TEXT N_("MSN Title format string") 
     62#define FORMAT_TEXT N_("Title format string") 
    6463#define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \ 
    6564"{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).") 
  • modules/misc/rtsp.c

    r5f0520d r37b0b02  
    4949 
    5050#define HOST_TEXT N_( "RTSP host address" ) 
    51 /// \bug [String] extra space 
    5251#define HOST_LONGTEXT N_( \ 
    5352    "This defines the address, port and path the RTSP VOD server will listen " \ 
    5453    "on.\nSyntax is address:port/path. The default is to listen on all "\ 
    55     "interfaces (address 0.0.0.0), on port 554, with no path.\n To listen " \ 
     54    "interfaces (address 0.0.0.0), on port 554, with no path.\nTo listen " \ 
    5655    "only on the local interface, use \"localhost\" as address." ) 
    5756 
  • modules/misc/win32text.c

    rcf9e0c8 r37b0b02  
    5555#define FONT_LONGTEXT N_("Filename for the font you want to use") 
    5656#define FONTSIZE_TEXT N_("Font size in pixels") 
    57 /// \bug [String] extra space 
    5857#define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \ 
    5958     "that will be rendered on the video. " \ 
    6059     "If set to something different than 0 this option will override the " \ 
    61      "relative font size. " ) 
     60     "relative font size." ) 
    6261#define OPACITY_TEXT N_("Opacity") 
    6362#define OPACITY_LONGTEXT N_("The opacity (inverse of transparency) of the " \ 
  • modules/mux/mpeg/ts.c

    raba6c4c r37b0b02  
    158158 
    159159#define CPKT_TEXT N_("Packet size in bytes to encrypt") 
    160 /// \bug [String] Extra space 
    161160#define CPKT_LONGTEXT N_("Size of the TS packet to encrypt. " \ 
    162161    "The encryption routines subtract the TS-header from the value before " \ 
    163     "encrypting. " ) 
     162    "encrypting." ) 
    164163 
    165164#define SOUT_CFG_PREFIX "sout-ts-" 
  • modules/stream_out/standard.c

    r8b626b7 r37b0b02  
    3939 *****************************************************************************/ 
    4040#define ACCESS_TEXT N_("Output access method") 
    41 /// \bug [String] "Output method to use for the stream."  
    4241#define ACCESS_LONGTEXT N_( \ 
    43     "This is the output access method that will be used." ) 
     42    "Output method to use for the stream." ) 
    4443#define MUX_TEXT N_("Output muxer") 
    45 /// \bug [String] "Muxer to use for the stream."  
    4644#define MUX_LONGTEXT N_( \ 
    47     "This is the muxer that will be used." ) 
     45    "Muxer to use for the stream." ) 
    4846#define DST_TEXT N_("Output destination") 
    49 /// \bug [String] "Destination (URL) to use for the stream."  
    5047#define DST_LONGTEXT N_( \ 
    51     "This is the destination (URL) that will be used for the stream." ) 
     48    "Destination (URL) to use for the stream." ) 
    5249#define NAME_TEXT N_("Session name") 
    5350#define NAME_LONGTEXT N_( \ 
  • modules/video_filter/mosaic.c

    rae6af36 r37b0b02  
    123123        "offsets: use the user-defined offsets for each image." ) 
    124124 
    125 /// \bug [String] missing closing parenthesis 
    126125#define ROWS_TEXT N_("Number of rows") 
    127126#define ROWS_LONGTEXT N_("Number of image rows in the mosaic (only used if "\ 
    128         "positionning method is set to \"fixed\"." ) 
     127        "positionning method is set to \"fixed\")." ) 
    129128#define COLS_TEXT N_("Number of columns") 
    130129#define COLS_LONGTEXT N_("Number of image columns in the mosaic (only used if "\ 
  • modules/video_filter/osdmenu.c

    rd3fe7f2 r37b0b02  
    3939/* FIXME: Future extension make the definition file in XML format. */ 
    4040#define OSD_FILE_TEXT N_("Configuration file") 
    41 /// \bug [String] missing dot 
    4241#define OSD_FILE_LONGTEXT N_( \ 
    43     "Configuration file for the OSD Menu" ) 
     42    "Configuration file for the OSD Menu." ) 
    4443#define OSD_PATH_TEXT N_("Path to OSD menu images") 
    4544#define OSD_PATH_LONGTEXT N_( \ 
  • src/libvlc-module.c

    r0435ea9 r37b0b02  
    382382    "to 4:3 in order to keep proportions.") 
    383383 
    384 /// \bug [String] Remove "this option" 
    385384#define SKIP_FRAMES_TEXT N_("Skip frames") 
    386385#define SKIP_FRAMES_LONGTEXT N_( \ 
    387     "This option enables framedropping on MPEG2 stream. Framedropping " \ 
     386    "Enables framedropping on MPEG2 stream. Framedropping " \ 
    388387    "occurs when your computer is not powerful enough" ) 
    389388 
     
    559558    "VLC normally uses Freetype for rendering, but this allows you to use svg for instance.") 
    560559 
    561 /// \bug typo arbitraty 
    562560#define SUB_FILTER_TEXT N_("Subpictures filter module") 
    563561#define SUB_FILTER_LONGTEXT N_( \ 
    564562    "This adds so-called \"subpicture filters\". These filters overlay " \ 
    565     "some images or text over the video (like a logo, arbitraty text...)." ) 
     563    "some images or text over the video (like a logo, arbitrary text...)." ) 
    566564 
    567565#define SUB_AUTO_TEXT N_("Autodetect subtitle files")