Changeset 36a5efe8b526390e4171ba80184211bacad9b89d

Show
Ignore:
Timestamp:
29/03/06 15:49:40 (3 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1143640180 +0000
git-parent:

[4c28a826fd45ea6183b8af91eef346bca0a33701]

git-author:
Clément Stenac <zorglub@videolan.org> 1143640180 +0000
Message:

Access strings (Refs:#438)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/cdda.c

    r895d129 r36a5efe  
    5252#define CACHING_TEXT N_("Caching value in ms") 
    5353#define CACHING_LONGTEXT N_( \ 
    54     "Allows you to modify the default caching value for cdda streams. This " \ 
    55     "value should be set in milliseconds units." ) 
     54    "Default caching value for Audio CDs. This " \ 
     55    "value should be set in milliseconds." ) 
    5656 
    5757vlc_module_begin(); 
     
    6969    add_integer( "cdda-track", -1 , NULL, NULL, NULL, VLC_TRUE ); 
    7070    add_string( "cddb-server", "freedb.freedb.org", NULL, 
    71                 N_( "CDDB Server" ), N_( "Adress of the CDDB server to use" ), 
     71                N_( "CDDB Server" ), N_( "Adress of the CDDB server to use." ), 
    7272                VLC_TRUE ); 
    7373    add_integer( "cddb-port", 8880, NULL, 
    74                 N_( "CDDB port" ), N_( "CDDB Server port to use" ), 
     74                N_( "CDDB port" ), N_( "CDDB Server port to use." ), 
    7575                VLC_TRUE ); 
    7676    add_shortcut( "cdda" ); 
  • modules/access/directory.c

    r6fbe51e r36a5efe  
    7878                                           N_("expand") }; 
    7979 
    80 #define IGNORE_TEXT N_("Ignore files with these extensions") 
     80#define IGNORE_TEXT N_("Ignored extensions") 
    8181#define IGNORE_LONGTEXT N_( \ 
    82         "Specify a comma seperated list of file extensions. " \ 
    83         "Files with these extensions will not be added to playlist when opening a directory. " \ 
    84         "This is useful if you add directories that contain mp3 albums for instance." ) 
     82        "Files with these extensions will not be added to playlist when " \ 
     83        "opening a directory.\n" \ 
     84        "This is useful if you add directories that contain playlist files " \ 
     85        "for instance. Use a comma-separated list of extensions." ) 
    8586 
    8687vlc_module_begin(); 
  • modules/access/dshow/dshow.cpp

    ra6f1bb5 r36a5efe  
    7979#define CACHING_TEXT N_("Caching value in ms") 
    8080#define CACHING_LONGTEXT N_( \ 
    81     "Allows you to modify the default caching value for DirectShow streams. " \ 
    82     "This value should be set in milliseconds units." ) 
     81    "Default caching value for DirectShow streams. " \ 
     82    "This value should be set in millisecondss." ) 
    8383#define VDEV_TEXT N_("Video device name") 
    8484#define VDEV_LONGTEXT N_( \ 
    85     "You can specify the name of the video device that will be used by the " \ 
     85    "Name of the video device that will be used by the " \ 
    8686    "DirectShow plugin. If you don't specify anything, the default device " \ 
    8787    "will be used.") 
    8888#define ADEV_TEXT N_("Audio device name") 
    8989#define ADEV_LONGTEXT N_( \ 
    90     "You can specify the name of the audio device that will be used by the " \ 
     90    "Name of the audio device that will be used by the " \ 
    9191    "DirectShow plugin. If you don't specify anything, the default device " \ 
    9292    "will be used.") 
    9393#define SIZE_TEXT N_("Video size") 
    9494#define SIZE_LONGTEXT N_( \ 
    95     "You can specify the size of the video that will be displayed by the " \ 
     95    "Size of the video that will be displayed by the " \ 
    9696    "DirectShow plugin. If you don't specify anything the default size for " \ 
    9797    "your device will be used.") 
     
    113113#define CHANNEL_TEXT N_("Tuner TV Channel") 
    114114#define CHANNEL_LONGTEXT N_( \ 
    115     "Allows you to set the TV channel the tuner will set to " \ 
     115    "Set the TV channel the tuner will set to " \ 
    116116    "(0 means default)." ) 
    117117#define COUNTRY_TEXT N_("Tuner country code") 
    118118#define COUNTRY_LONGTEXT N_( \ 
    119     "Allows you to set the tuner country code that establishes the current " \ 
     119    "Set the tuner country code that establishes the current " \ 
    120120    "channel-to-frequency mapping (0 means default)." ) 
    121121#define TUNER_INPUT_TEXT N_("Tuner input type") 
    122122#define TUNER_INPUT_LONGTEXT N_( \ 
    123     "Allows you to select the tuner input type (Cable/Antenna)." ) 
     123    "Select the tuner input type (Cable/Antenna)." ) 
    124124#define VIDEO_IN_TEXT N_("Video input pin") 
    125125#define VIDEO_IN_LONGTEXT N_( \ 
    126     "Allows you to select the video input source, such as composite, s-video, " \ 
    127    "or tuner. Since these settings are hardware-specfic, you should find good " \ 
    128    "settings in the \"Device config\" area, and use those numbers here. -1 " \ 
    129    "means that settings will not be changed.") 
     126  "Select the video input source, such as composite, s-video, " \ 
     127  "or tuner. Since these settings are hardware-specfic, you should find good " \ 
     128  "settings in the \"Device config\" area, and use those numbers here. -1 " \ 
     129  "means that settings will not be changed.") 
    130130#define AUDIO_IN_TEXT N_("Audio input pin") 
    131131#define AUDIO_IN_LONGTEXT N_( \ 
    132     "Allows you to select the audio input source. See the \"video input\" option." ) 
     132  "Select the audio input source. See the \"video input\" option." ) 
    133133#define VIDEO_OUT_TEXT N_("Video output pin") 
    134134#define VIDEO_OUT_LONGTEXT N_( \ 
    135     "Allows you to select the video output type. See the \"video input\" option." ) 
     135  "Select the video output type. See the \"video input\" option." ) 
    136136#define AUDIO_OUT_TEXT N_("Audio output pin") 
    137137#define AUDIO_OUT_LONGTEXT N_( \ 
    138     "Allows you to select the audio output type. See the \"video input\" option." ) 
     138  "Select the audio output type. See the \"video input\" option." ) 
    139139 
    140140static int  CommonOpen ( vlc_object_t *, access_sys_t *, vlc_bool_t ); 
     
    346346                i_height = strtol( psz_parser + 1, &psz_parser, 0 ); 
    347347            } 
    348             msg_Dbg( p_this, "Width x Height %dx%d", i_width, i_height ); 
     348            msg_Dbg( p_this, "width x height %dx%d", i_width, i_height ); 
    349349        } 
    350350    } 
     
    475475        if( SUCCEEDED(pXbar->Route(VideoOutputIndex, VideoInputIndex)) ) 
    476476        { 
    477             msg_Dbg( p_this, "Crossbar at depth %d, Routed video " 
    478                      "ouput %ld to video input %ld", i, VideoOutputIndex, 
     477            msg_Dbg( p_this, "crossbar at depth %d, routed video " 
     478                     "output %ld to video input %ld", i, VideoOutputIndex, 
    479479                     VideoInputIndex ); 
    480480 
     
    484484                                            AudioInputIndex)) ) 
    485485                { 
    486                     msg_Dbg(p_this, "Crossbar at depth %d, Routed audio " 
    487                             "ouput %ld to audio input %ld", i, 
     486                    msg_Dbg(p_this, "crossbar at depth %d, routed audio " 
     487                            "output %ld to audio input %ld", i, 
    488488                            AudioOutputIndex, AudioInputIndex ); 
    489489                } 
     
    662662static void CommonClose( vlc_object_t *p_this, access_sys_t *p_sys ) 
    663663{ 
    664     msg_Dbg( p_this, "Releasing DirectShow"); 
     664    msg_Dbg( p_this, "releasing DirectShow"); 
    665665 
    666666    DeleteDirectShowGraph( p_sys ); 
  • modules/access/dv.c

    r2cb472d r36a5efe  
    6868#define CACHING_TEXT N_("Caching value in ms") 
    6969#define CACHING_LONGTEXT N_( \ 
    70     "Allows you to modify the default caching value for file streams. This " \ 
    71     "value should be set in millisecond units." ) 
     70    "Default caching value for DV streams. This" \ 
     71    "value should be set in milliseconds." ) 
    7272 
    7373vlc_module_begin(); 
  • modules/access/dvb/access.c

    r3854055 r36a5efe  
    7171#define CACHING_TEXT N_("Caching value in ms") 
    7272#define CACHING_LONGTEXT N_( \ 
    73     "Allows you to modify the default caching value for dvb streams. This " \ 
    74     "value should be set in millisecond units." ) 
     73    "Default caching value for DVB streams. This " \ 
     74    "value should be set in milliseconds." ) 
    7575 
    7676#define ADAPTER_TEXT N_("Adapter card to tune") 
     
    8787 
    8888#define PROBE_TEXT N_("Probe DVB card for capabilities") 
    89 #define PROBE_LONGTEXT N_("Some DVB cards do not like to be probed for their capabilities.") 
     89#define PROBE_LONGTEXT N_("Some DVB cards do not like to be probed for their capabilities, you can disable this feature if you experience some trouble.") 
    9090 
    9191#define BUDGET_TEXT N_("Budget mode") 
    92 #define BUDGET_LONGTEXT N_("This allows you to stream an entire transponder with a budget card.") 
     92#define BUDGET_LONGTEXT N_("This allows you to stream an entire transponder with a \"budget\" card.") 
    9393 
    9494/* Satellite */ 
    9595#define SATNO_TEXT N_("Satellite number in the Diseqc system") 
    96 #define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=satellite number]") 
     96#define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=satellite number].") 
    9797 
    9898#define VOLTAGE_TEXT N_("LNB voltage") 
    99 #define VOLTAGE_LONGTEXT N_("In Volts [0, 13=vertical, 18=horizontal]") 
     99#define VOLTAGE_LONGTEXT N_("In Volts [0, 13=vertical, 18=horizontal].") 
    100100 
    101101#define HIGH_VOLTAGE_TEXT N_("High LNB voltage") 
     
    104104 
    105105#define TONE_TEXT N_("22 kHz tone") 
    106 #define TONE_LONGTEXT N_("[0=off, 1=on, -1=auto]") 
     106#define TONE_LONGTEXT N_("[0=off, 1=on, -1=auto].") 
    107107 
    108108#define FEC_TEXT N_("Transponder FEC") 
    109 #define FEC_LONGTEXT N_("FEC=Forward Error Correction mode [9=auto]") 
     109#define FEC_LONGTEXT N_("FEC=Forward Error Correction mode [9=auto].") 
    110110 
    111111#define SRATE_TEXT N_("Transponder symbol rate in kHz") 
     
    150150#define USER_TEXT N_( "HTTP user name" ) 
    151151#define USER_LONGTEXT N_( \ 
    152     "You can set the user name the administrator will use to log into " \ 
     152    "User name the administrator will use to log into " \ 
    153153    "the internal HTTP server." ) 
    154154 
    155155#define PASSWORD_TEXT N_( "HTTP password" ) 
    156156#define PASSWORD_LONGTEXT N_( \ 
    157     "You can set the password the administrator will use to log into " \ 
     157    "Password the administrator will use to log into " \ 
    158158    "the internal HTTP server." ) 
    159159 
    160160#define ACL_TEXT N_( "HTTP ACL" ) 
    161161#define ACL_LONGTEXT N_( \ 
    162     "You can set the access control list (equivalent to .hosts) file path, " \ 
     162    "Access control list (equivalent to .hosts) file path, " \ 
    163163    "which will limit the range of IPs entitled to log into the internal " \ 
    164164    "HTTP server." ) 
  • modules/access/dvdnav.c

    r2cb472d r36a5efe  
    5959#define ANGLE_TEXT N_("DVD angle") 
    6060#define ANGLE_LONGTEXT N_( \ 
    61     "Allows you to select the default DVD angle." ) 
     61    "Default DVD angle." ) 
    6262 
    6363#define CACHING_TEXT N_("Caching value in ms") 
    6464#define CACHING_LONGTEXT N_( \ 
    65     "Allows you to modify the default caching value for DVDnav streams. This "\ 
    66     "value should be set in millisecond units." ) 
     65    "Default caching value for DVDs. This "\ 
     66    "value should be set in milliseconds." ) 
    6767#define MENU_TEXT N_("Start directly in menu") 
    6868#define MENU_LONGTEXT N_( \ 
    69     "Allows you to start the DVD directly in the main menu. This "\ 
    70     "will try to skip all the useless warnings introductions." ) 
     69    "Start the DVD directly in the main menu. This "\ 
     70    "will try to skip all the useless warning introductions." ) 
    7171 
    7272#define LANGUAGE_DEFAULT ("en") 
  • modules/access/dvdread.c

    rb7d2846 r36a5efe  
    6161#define CACHING_TEXT N_("Caching value in ms") 
    6262#define CACHING_LONGTEXT N_( \ 
    63     "Allows you to modify the default caching value for DVDread streams. " \ 
    64     "This value should be set in millisecond units." ) 
     63    "Default caching value for DVDs. " \ 
     64    "This value should be set in milliseconds." ) 
    6565 
    6666#define CSSMETHOD_TEXT N_("Method used by libdvdcss for decryption") 
  • modules/access/fake.c

    r2cb472d r36a5efe  
    4040#define CACHING_TEXT N_("Caching value in ms") 
    4141#define CACHING_LONGTEXT N_( \ 
    42     "Allows you to modify the default caching value for fake streams. This " \ 
    43     "value should be set in millisecond units." ) 
     42    "Default caching value for fake streams. This " \ 
     43    "value should be set in milliseconds." ) 
    4444#define FPS_TEXT N_("Framerate") 
    4545#define FPS_LONGTEXT N_( \ 
    46     "Specifies the number of frames per second (eg. 24, 25, 29.97, 30).") 
     46    "Number of frames per second (eg. 24, 25, 29.97, 30).") 
    4747#define ID_TEXT N_("ID") 
    4848#define ID_LONGTEXT N_( \ 
    49     "Allows you to set the ID of the fake elementary stream for use in " \ 
     49    "Set the ID of the fake elementary stream for use in " \ 
    5050    "#duplicate{} constructs (default 0).") 
    5151#define DURATION_TEXT N_("Duration in ms") 
    5252#define DURATION_LONGTEXT N_( \ 
    53     "Specifies the duration of the fake streaming before faking an " \ 
    54     "end-of-file (default 0 means the stream is unlimited).") 
     53    "Duration of the fake streaming before faking an " \ 
     54    "end-of-file (default is 0, meaning that the stream is unlimited).") 
    5555 
    5656vlc_module_begin(); 
  • modules/access/file.c

    r543574f r36a5efe  
    8080#define CACHING_TEXT N_("Caching value in ms") 
    8181#define CACHING_LONGTEXT N_( \ 
    82     "Allows you to modify the default caching value for file streams. This " \ 
    83     "value should be set in millisecond units." ) 
     82    "Default caching value for files. This " \ 
     83    "value should be set in milliseconds." ) 
    8484#define CAT_TEXT N_("Concatenate with additional files") 
    8585#define CAT_LONGTEXT N_( \ 
    86     "Allows you to play split files as if they were part of a unique file. " \ 
    87     "Specify a comma-separated list of files." ) 
     86    "Play split files as if they were part of a unique file. " \ 
     87    "You need to specify a comma-separated list of files." ) 
    8888 
    8989vlc_module_begin(); 
    90     set_description( _("Standard filesystem file input") ); 
     90    set_description( _("File input") ); 
    9191    set_shortname( _("File") ); 
    9292    set_category( CAT_INPUT ); 
  • modules/access/ftp.c

    r7092d93 r36a5efe  
    4242#define CACHING_TEXT N_("Caching value in ms") 
    4343#define CACHING_LONGTEXT N_( \ 
    44     "Allows you to modify the default caching value for FTP streams. This " \ 
    45     "value should be set in millisecond units." ) 
     44    "Default caching value for FTP streams. This " \ 
     45    "value should be set in milliseconds." ) 
    4646#define USER_TEXT N_("FTP user name") 
    47 #define USER_LONGTEXT N_("Allows you to modify the user name that will " \ 
     47#define USER_LONGTEXT N_("User name that will " \ 
    4848    "be used for the connection.") 
    4949#define PASS_TEXT N_("FTP password") 
    50 #define PASS_LONGTEXT N_("Allows you to modify the password that will be " \ 
     50#define PASS_LONGTEXT N_("Password that will be " \ 
    5151    "used for the connection.") 
    5252#define ACCOUNT_TEXT N_("FTP account") 
    53 #define ACCOUNT_LONGTEXT N_("Allows you to modify the account that will be " \ 
     53#define ACCOUNT_LONGTEXT N_("Account that will be " \ 
    5454    "used for the connection.") 
    5555 
  • modules/access/gnomevfs.c

    r72ab62f r36a5efe  
    4444#define CACHING_TEXT N_("Caching value in ms") 
    4545#define CACHING_LONGTEXT N_( \ 
    46     "Allows you to modify the default caching value for GnomeVFS streams."\ 
    47     "This value should be set in millisecond units." ) 
     46    "Default caching value for GnomeVFS streams."\ 
     47    "This value should be set in milliseconds." ) 
    4848 
    4949vlc_module_begin(); 
    50     set_description( _("GnomeVFS filesystem file input") ); 
     50    set_description( _("GnomeVFS input") ); 
    5151    set_shortname( "GnomeVFS" ); 
    5252    set_category( CAT_INPUT ); 
  • modules/access/http.c

    r8e8e644 r36a5efe  
    4747#define PROXY_TEXT N_("HTTP proxy") 
    4848#define PROXY_LONGTEXT N_( \ 
    49     "You can specify an HTTP proxy to use. It must be of the form " \ 
     49    "HTTP proxy to be usesd It must be of the form " \ 
    5050    "http://[user[:pass]@]myproxy.mydomain:myport/ ; " \ 
    5151    "if empty, the http_proxy environment variable will be tried." ) 
     
    5353#define CACHING_TEXT N_("Caching value in ms") 
    5454#define CACHING_LONGTEXT N_( \ 
    55     "Allows you to modify the default caching value for http streams. This " \ 
    56     "value should be set in millisecond units." ) 
     55    "Default caching value for HTTP streams. This " \ 
     56    "value should be set in milliseconds." ) 
    5757 
    5858#define AGENT_TEXT N_("HTTP user agent") 
    59 #define AGENT_LONGTEXT N_("Allows you to modify the user agent that will be " \ 
     59#define AGENT_LONGTEXT N_("User agent that will be " \ 
    6060    "used for the connection.") 
    6161 
    6262#define RECONNECT_TEXT N_("Auto re-connect") 
    63 #define RECONNECT_LONGTEXT N_("Will automatically attempt a re-connection " \ 
    64     "in case it was untimely closed.") 
     63#define RECONNECT_LONGTEXT N_( \ 
     64    "Automatically try to reconnect to the stream in case of a sudden " \ 
     65    "disconnect." ) 
    6566 
    6667#define CONTINUOUS_TEXT N_("Continuous stream") 
    67 #define CONTINUOUS_LONGTEXT N_("This allows you to read a file that is " \ 
     68#define CONTINUOUS_LONGTEXT N_("Read a file that is " \ 
    6869    "being constantly updated (for example, a JPG file on a server)." \ 
    6970    "You should not globally enable this option as it will break all other " \ 
  • modules/access/mms/mms.c

    r2cb472d r36a5efe  
    4646#define CACHING_TEXT N_("Caching value in ms") 
    4747#define CACHING_LONGTEXT N_( \ 
    48     "Allows you to modify the default caching value for MMS streams. This " \ 
    49     "value should be set in millisecond units." ) 
     48    "Default caching value for MMS streams. This " \ 
     49    "value should be set in milliseconds." ) 
    5050 
    5151#define ALL_TEXT N_("Force selection of all streams") 
     52#define ALL_LONGTEXT N_( \ 
     53    "MMS streams can contain several elementary streams, with different " \ 
     54    "bitrates. You can choose to select all of them." ) 
    5255 
    5356#define BITRATE_TEXT N_( "Maximum bitrate" ) 
    5457#define BITRATE_LONGTEXT N_( \ 
    55     "If this is set, the stream with the maximum bitrate under that limit \ 
    56      will be selected" ) 
     58    "Select the stream with the maximum bitrate under that limit."  ) 
    5759 
    5860vlc_module_begin(); 
     
    6668                 CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE ); 
    6769 
    68     add_bool( "mms-all", 0, NULL, ALL_TEXT, "", VLC_TRUE ); 
     70    add_bool( "mms-all", 0, NULL, ALL_TEXT, ALL_LONGTEXT, VLC_TRUE ); 
    6971    add_integer( "mms-maxbitrate", 0, NULL, BITRATE_TEXT, BITRATE_LONGTEXT , 
    7072                 VLC_FALSE ); 
  • modules/access/pvr/pvr.c

    r2cb472d r36a5efe  
    4646#define CACHING_TEXT N_("Caching value in ms") 
    4747#define CACHING_LONGTEXT N_( \ 
    48     "Allows you to modify the default caching value for pvr streams. This " \ 
    49     "value should be set in millisecond units." ) 
     48    "Default caching value for PVR streams. This " \ 
     49    "value should be set in milliseconds." ) 
    5050 
    5151#define DEVICE_TEXT N_( "Device" ) 
     
    5656 
    5757#define NORM_TEXT N_( "Norm" ) 
    58 #define NORM_LONGTEXT N_( "Defines the norm of the stream " \ 
    59     "(Automatic, SECAM, PAL, or NTSC)" ) 
     58#define NORM_LONGTEXT N_( "Norm of the stream " \ 
     59    "(Automatic, SECAM, PAL, or NTSC)." ) 
    6060 
    6161#define WIDTH_TEXT N_( "Width" ) 
    6262#define WIDTH_LONGTEXT N_( "Width of the stream to capture " \ 
    63     "(-1 for autodetect)" ) 
     63    "(-1 for autodetection)." ) 
    6464 
    6565#define HEIGHT_TEXT N_( "Height" ) 
    6666#define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \ 
    67     "(-1 for autodetect)" ) 
     67    "(-1 for autodetection)." ) 
    6868 
    6969#define FREQUENCY_TEXT N_( "Frequency" ) 
    70 #define FREQUENCY_LONGTEXT N_( "Frequency to capture (in kHz), if applicable" ) 
     70#define FREQUENCY_LONGTEXT N_( "Frequency to capture (in kHz), if applicable." ) 
    7171 
    7272#define FRAMERATE_TEXT N_( "Framerate" ) 
    7373#define FRAMERATE_LONGTEXT N_( "Framerate to capture, if applicable " \ 
    74     "(-1 for autodetect)" ) 
     74    "(-1 for autodetect)." ) 
    7575 
    7676#define KEYINT_TEXT N_( "Key interval" ) 
    77 #define KEYINT_LONGTEXT N_( "Interval between keyframes (-1 for autodetect)" ) 
     77#define KEYINT_LONGTEXT N_( "Interval between keyframes (-1 for autodetect)." ) 
    7878 
    7979#define BFRAMES_TEXT N_( "B Frames" ) 
     
    8282 
    8383#define BITRATE_TEXT N_( "Bitrate" ) 
    84 #define BITRATE_LONGTEXT N_( "Bitrate to use (-1 for default)" ) 
     84#define BITRATE_LONGTEXT N_( "Bitrate to use (-1 for default)." ) 
    8585 
    8686#define BITRATE_PEAK_TEXT N_( "Bitrate peak" ) 
    87 #define BITRATE_PEAK_LONGTEXT N_( "Peak bitrate in VBR mode" ) 
    88  
    89 #define BITRATE_MODE_TEXT N_( "Bitrate mode (vbr or cbr)" ) 
    90 #define BITRATE_MODE_LONGTEXT N_( "Bitrate mode to use" ) 
     87#define BITRATE_PEAK_LONGTEXT N_( "Peak bitrate in VBR mode." ) 
     88 
     89#define BITRATE_MODE_TEXT N_( "Bitrate mode)" ) 
     90#define BITRATE_MODE_LONGTEXT N_( "Bitrate mode to use (VBR or CBR)." ) 
    9191 
    9292#define BITMASK_TEXT N_( "Audio bitmask" ) 
    93 #define BITMASK_LONGTEXT N_("This option allows setting of bitmask that will "\ 
     93#define BITMASK_LONGTEXT N_("Bitmask that will "\ 
    9494    "get used by the audio part of the card." ) 
    9595 
    9696#define VOLUME_TEXT N_( "Volume" ) 
    97 #define VOLUME_LONGTEXT N_("This option allows setting of the audio volume " \ 
    98     "(0-65535)." ) 
     97#define VOLUME_LONGTEXT N_("Audio volume (0-65535)." ) 
    9998 
    10099#define CHAN_TEXT N_( "Channel" ) 
     
    114113vlc_module_begin(); 
    115114    set_shortname( _("PVR") ); 
    116     set_description( _("MPEG Encoding cards input (with ivtv drivers)") ); 
     115    set_description( _("IVTV MPEG Encoding cards input") ); 
    117116    set_category( CAT_INPUT ); 
    118117    set_subcategory( SUBCAT_INPUT_ACCESS ); 
  • modules/access/rtsp/access.c

    r704d0d9 r36a5efe  
    4040#define CACHING_TEXT N_("Caching value (ms)") 
    4141#define CACHING_LONGTEXT N_( \ 
    42     "Allows you to modify the default caching value for RTSP streams. This " \ 
    43     "value should be set in millisecond units." ) 
     42    "Default caching value for RTSP streams. This " \ 
     43    "value should be set in milliseconds." ) 
    4444 
    4545vlc_module_begin(); 
  • modules/access/screen/screen.c

    r2cb472d r36a5efe  
    3737#define CACHING_TEXT N_("Caching value in ms") 
    3838#define CACHING_LONGTEXT N_( \ 
    39     "Allows you to modify the default caching value for screen capture "
    40     "streams. This value should be set in millisecond units." ) 
     39    "Default caching value for screen capture. "
     40    "This value should be set in milliseconds." ) 
    4141#define FPS_TEXT N_("Frame rate") 
    4242#define FPS_LONGTEXT N_( \ 
    43     "Allows you to set the desired frame rate for the capture." ) 
     43    "Desired frame rate for the capture." ) 
    4444 
    4545#ifdef WIN32 
    4646#define FRAGS_TEXT N_("Capture fragment size") 
    4747#define FRAGS_LONGTEXT N_( \ 
    48     "Allows you optimize the capture by fragmenting the screen in chunks " \ 
     48    "Optimize the capture by fragmenting the screen in chunks " \ 
    4949    "of predefined height (16 might be a good value, and 0 means disabled)." ) 
    5050#endif 
  • modules/access/smb.c

    r2cb472d r36a5efe  
    5959#define CACHING_TEXT N_("Caching value in ms") 
    6060#define CACHING_LONGTEXT N_( \ 
    61     "Allows you to modify the default caching value for SMB streams. This " \ 
    62     "value should be set in millisecond units." ) 
     61    "Default caching value for SMB streams. This " \ 
     62    "value should be set in milliseconds." ) 
    6363#define USER_TEXT N_("SMB user name") 
    64 #define USER_LONGTEXT N_("Allows you to modify the user name that will " \ 
     64#define USER_LONGTEXT N_("User name that will " \ 
    6565    "be used for the connection.") 
    6666#define PASS_TEXT N_("SMB password") 
    67 #define PASS_LONGTEXT N_("Allows you to modify the password that will be " \ 
     67#define PASS_LONGTEXT N_("Password that will be " \ 
    6868    "used for the connection.") 
    6969#define DOMAIN_TEXT N_("SMB domain") 
    70 #define DOMAIN_LONGTEXT N_("Allows you to modify the domain/workgroup that " \ 
     70#define DOMAIN_LONGTEXT N_("Domain/Workgroup that " \ 
    7171    "will be used for the connection.") 
    7272 
  • modules/access/tcp.c

    r2cb472d r36a5efe  
    3737#define CACHING_TEXT N_("Caching value in ms") 
    3838#define CACHING_LONGTEXT N_( \ 
    39     "Allows you to modify the default caching value for TCP streams. This " \ 
    40     "value should be set in millisecond units." ) 
     39    "Default caching value for TCP streams. This " \ 
     40    "value should be set in milliseconds." ) 
    4141 
    4242static int  Open ( vlc_object_t * ); 
  • modules/access/udp.c

    r3854055 r36a5efe  
    4242#define CACHING_TEXT N_("Caching value in ms") 
    4343#define CACHING_LONGTEXT N_( \ 
    44     "Allows you to modify the default caching value for UDP streams. This " \ 
    45     "value should be set in millisecond units." ) 
     44    "Default caching value for UDP streams. This " \ 
     45    "value should be set in milliseconds." ) 
    4646 
    4747#define AUTO_MTU_TEXT N_("Autodetection of MTU") 
    4848#define AUTO_MTU_LONGTEXT N_( \ 
    49     "Allows growing the MTU if truncated packets are found" ) 
     49    "Automatically detect the line's MTU. This will increase the size if" \ 
     50    " truncated packets are found" ) 
    5051 
    5152#define RTP_LATE_TEXT N_("RTP reordering timeout in ms") 
    5253#define RTP_LATE_LONGTEXT N_( \ 
    53     "Allows you to modify the RTP reordering behaviour. " \ 
    54     "RTP input will wait for late packets upto " \ 
    55     "the specified timeout in milisecond units." ) 
     54    "VLC reorders RTP packets. The input will wait for late packets at most "\ 
     55    "the time specified here (in milliseconds)." ) 
    5656 
    5757static int  Open ( vlc_object_t * ); 
  • modules/access/v4l/v4l.c

    re907794 r36a5efe  
    7373#define CACHING_TEXT N_("Caching value in ms") 
    7474#define CACHING_LONGTEXT N_( \ 
    75     "Allows you to modify the default caching value for v4l streams. This " \ 
    76     "value should be set in millisecond units." ) 
     75    "Default caching value for V4L captures. This " \ 
     76    "value should be set in milliseconds." ) 
    7777#define VDEV_TEXT N_("Video device name") 
    7878#define VDEV_LONGTEXT N_( \ 
    79     "Specify the name of the video device that will be used. " \ 
     79    "Name of the video device to use. " \ 
    8080    "If you don't specify anything, no video device will be used.") 
    8181#define ADEV_TEXT N_("Audio device name") 
    8282#define ADEV_LONGTEXT N_( \ 
    83     "Specify the name of the audio device that will be used. " \ 
     83    "Name of the audio device to use. " \ 
    8484    "If you don't specify anything, no audio device will be used.") 
    8585#define CHROMA_TEXT N_("Video input chroma format") 
     
    8989#define FREQUENCY_TEXT N_( "Frequency" ) 
    9090#define FREQUENCY_LONGTEXT N_( \ 
    91     "Frequency to capture (in kHz), if applicable" ) 
     91    "Frequency to capture (in kHz), if applicable." ) 
    9292#define CHANNEL_TEXT N_( "Channel" ) 
    9393#define CHANNEL_LONGTEXT N_( \ 
    9494    "Channel of the card to use (Usually, 0 = tuner, " \ 
    95     "1 = composite, 2 = svideo)" ) 
     95    "1 = composite, 2 = svideo)." ) 
    9696#define NORM_TEXT N_( "Norm" ) 
    9797#define NORM_LONGTEXT N_( \ 
    98     "Defines the norm of the stream (Automatic, SECAM, PAL, or NTSC)" ) 
     98    "Norm of the stream (Automatic, SECAM, PAL, or NTSC)." ) 
    9999#define AUDIO_TEXT N_( "Audio Channel" ) 
    100100#define AUDIO_LONGTEXT N_( \ 
    101     "Audio Channel to use, if there are several audio input" ) 
     101    "Audio Channel to use, if there are several audio inputs." ) 
    102102#define WIDTH_TEXT N_( "Width" ) 
    103103#define WIDTH_LONGTEXT N_( "Width of the stream to capture " \ 
    104     "(-1 for autodetect)" ) 
     104    "(-1 for autodetect)." ) 
    105105#define HEIGHT_TEXT N_( "Height" ) 
    106106#define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \ 
    107     "(-1 for autodetect)" ) 
     107    "(-1 for autodetect)." ) 
    108108#define BRIGHTNESS_TEXT N_( "Brightness" ) 
    109109#define BRIGHTNESS_LONGTEXT N_( \ 
    110     "Set the Brightness of the video input" ) 
     110    "Brightness of the video input." ) 
    111111#define HUE_TEXT N_( "Hue" ) 
    112112#define HUE_LONGTEXT N_( \ 
    113     "Set the Hue of the video input" ) 
     113    "Hue of the video input." ) 
    114114#define COLOUR_TEXT N_( "Color" ) 
    115115#define COLOUR_LONGTEXT N_( \ 
    116     "Set the Color of the video input" ) 
     116    "Color of the video input." ) 
    117117#define CONTRAST_TEXT N_( "Contrast" ) 
    118118#define CONTRAST_LONGTEXT N_( \ 
    119     "Set the Contrast of the video input" ) 
     119    "Contrast of the video input." ) 
    120120#define TUNER_TEXT N_( "Tuner" ) 
    121 #define TUNER_LONGTEXT N_( "Tuner to use, if there are several ones" ) 
     121#define TUNER_LONGTEXT N_( "Tuner to use, if there are several ones." ) 
    122122#define SAMPLERATE_TEXT N_( "Samplerate" ) 
    123123#define SAMPLERATE_LONGTEXT N_( \ 
    124     "Samplerate of the captures audio stream, in Hz" ) 
     124    "Samplerate of the captured audio stream, in Hz (eg: 11025, 22050, 44100)" ) 
    125125#define STEREO_TEXT N_( "Stereo" ) 
    126126#define STEREO_LONGTEXT N_( \ 
    127     "If this option is set, the audio stream will be captured in stereo" ) 
     127    "Capture the audio stream in stereo." ) 
    128128#define MJPEG_TEXT N_( "MJPEG" ) 
    129129#define MJPEG_LONGTEXT N_(  \ 
     
    131131#define DECIMATION_TEXT N_( "Decimation" ) 
    132132#define DECIMATION_LONGTEXT N_( \ 
    133     "Set the Decimation level for MJPEG streams" ) 
     133    "Decimation level for MJPEG streams" ) 
    134134#define QUALITY_TEXT N_( "Quality" ) 
    135 #define QUALITY_LONGTEXT N_( "Set the quality of the stream" ) 
     135#define QUALITY_LONGTEXT N_( "Quality of the stream." ) 
    136136#define FPS_TEXT N_( "Framerate" ) 
    137137#define FPS_LONGTEXT N_( "Framerate to capture, if applicable " \ 
    138     "(-1 for autodetect)" ) 
     138    "(-1 for autodetect)." ) 
    139139 
    140140static int i_norm_list[] = 
  • modules/access/vcd/vcd.c

    r895d129 r36a5efe  
    4040#define CACHING_TEXT N_("Caching value in ms") 
    4141#define CACHING_LONGTEXT N_( \ 
    42     "Allows you to modify the default caching value for cdda streams. This " \ 
    43     "value should be set in milliseconds units." ) 
     42    "Default caching value for VCDs. This " \ 
     43    "value should be set in milliseconds." ) 
    4444 
    4545vlc_module_begin();