Changeset 36a5efe8b526390e4171ba80184211bacad9b89d
- 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
| r895d129 |
r36a5efe |
|
| 52 | 52 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 53 | 53 | #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." ) |
|---|
| 56 | 56 | |
|---|
| 57 | 57 | vlc_module_begin(); |
|---|
| … | … | |
| 69 | 69 | add_integer( "cdda-track", -1 , NULL, NULL, NULL, VLC_TRUE ); |
|---|
| 70 | 70 | 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." ), |
|---|
| 72 | 72 | VLC_TRUE ); |
|---|
| 73 | 73 | 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." ), |
|---|
| 75 | 75 | VLC_TRUE ); |
|---|
| 76 | 76 | add_shortcut( "cdda" ); |
|---|
| r6fbe51e |
r36a5efe |
|
| 78 | 78 | N_("expand") }; |
|---|
| 79 | 79 | |
|---|
| 80 | | #define IGNORE_TEXT N_("Ignore files with these extensions") |
|---|
| | 80 | #define IGNORE_TEXT N_("Ignored extensions") |
|---|
| 81 | 81 | #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." ) |
|---|
| 85 | 86 | |
|---|
| 86 | 87 | vlc_module_begin(); |
|---|
| ra6f1bb5 |
r36a5efe |
|
| 79 | 79 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 80 | 80 | #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." ) |
|---|
| 83 | 83 | #define VDEV_TEXT N_("Video device name") |
|---|
| 84 | 84 | #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 " \ |
|---|
| 86 | 86 | "DirectShow plugin. If you don't specify anything, the default device " \ |
|---|
| 87 | 87 | "will be used.") |
|---|
| 88 | 88 | #define ADEV_TEXT N_("Audio device name") |
|---|
| 89 | 89 | #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 " \ |
|---|
| 91 | 91 | "DirectShow plugin. If you don't specify anything, the default device " \ |
|---|
| 92 | 92 | "will be used.") |
|---|
| 93 | 93 | #define SIZE_TEXT N_("Video size") |
|---|
| 94 | 94 | #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 " \ |
|---|
| 96 | 96 | "DirectShow plugin. If you don't specify anything the default size for " \ |
|---|
| 97 | 97 | "your device will be used.") |
|---|
| … | … | |
| 113 | 113 | #define CHANNEL_TEXT N_("Tuner TV Channel") |
|---|
| 114 | 114 | #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 " \ |
|---|
| 116 | 116 | "(0 means default)." ) |
|---|
| 117 | 117 | #define COUNTRY_TEXT N_("Tuner country code") |
|---|
| 118 | 118 | #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 " \ |
|---|
| 120 | 120 | "channel-to-frequency mapping (0 means default)." ) |
|---|
| 121 | 121 | #define TUNER_INPUT_TEXT N_("Tuner input type") |
|---|
| 122 | 122 | #define TUNER_INPUT_LONGTEXT N_( \ |
|---|
| 123 | | "Allows you to select the tuner input type (Cable/Antenna)." ) |
|---|
| | 123 | "Select the tuner input type (Cable/Antenna)." ) |
|---|
| 124 | 124 | #define VIDEO_IN_TEXT N_("Video input pin") |
|---|
| 125 | 125 | #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.") |
|---|
| 130 | 130 | #define AUDIO_IN_TEXT N_("Audio input pin") |
|---|
| 131 | 131 | #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." ) |
|---|
| 133 | 133 | #define VIDEO_OUT_TEXT N_("Video output pin") |
|---|
| 134 | 134 | #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." ) |
|---|
| 136 | 136 | #define AUDIO_OUT_TEXT N_("Audio output pin") |
|---|
| 137 | 137 | #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." ) |
|---|
| 139 | 139 | |
|---|
| 140 | 140 | static int CommonOpen ( vlc_object_t *, access_sys_t *, vlc_bool_t ); |
|---|
| … | … | |
| 346 | 346 | i_height = strtol( psz_parser + 1, &psz_parser, 0 ); |
|---|
| 347 | 347 | } |
|---|
| 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 ); |
|---|
| 349 | 349 | } |
|---|
| 350 | 350 | } |
|---|
| … | … | |
| 475 | 475 | if( SUCCEEDED(pXbar->Route(VideoOutputIndex, VideoInputIndex)) ) |
|---|
| 476 | 476 | { |
|---|
| 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, |
|---|
| 479 | 479 | VideoInputIndex ); |
|---|
| 480 | 480 | |
|---|
| … | … | |
| 484 | 484 | AudioInputIndex)) ) |
|---|
| 485 | 485 | { |
|---|
| 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, |
|---|
| 488 | 488 | AudioOutputIndex, AudioInputIndex ); |
|---|
| 489 | 489 | } |
|---|
| … | … | |
| 662 | 662 | static void CommonClose( vlc_object_t *p_this, access_sys_t *p_sys ) |
|---|
| 663 | 663 | { |
|---|
| 664 | | msg_Dbg( p_this, "Releasing DirectShow"); |
|---|
| | 664 | msg_Dbg( p_this, "releasing DirectShow"); |
|---|
| 665 | 665 | |
|---|
| 666 | 666 | DeleteDirectShowGraph( p_sys ); |
|---|
| r2cb472d |
r36a5efe |
|
| 68 | 68 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 69 | 69 | #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." ) |
|---|
| 72 | 72 | |
|---|
| 73 | 73 | vlc_module_begin(); |
|---|
| r3854055 |
r36a5efe |
|
| 71 | 71 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 72 | 72 | #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." ) |
|---|
| 75 | 75 | |
|---|
| 76 | 76 | #define ADAPTER_TEXT N_("Adapter card to tune") |
|---|
| … | … | |
| 87 | 87 | |
|---|
| 88 | 88 | #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.") |
|---|
| 90 | 90 | |
|---|
| 91 | 91 | #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.") |
|---|
| 93 | 93 | |
|---|
| 94 | 94 | /* Satellite */ |
|---|
| 95 | 95 | #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].") |
|---|
| 97 | 97 | |
|---|
| 98 | 98 | #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].") |
|---|
| 100 | 100 | |
|---|
| 101 | 101 | #define HIGH_VOLTAGE_TEXT N_("High LNB voltage") |
|---|
| … | … | |
| 104 | 104 | |
|---|
| 105 | 105 | #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].") |
|---|
| 107 | 107 | |
|---|
| 108 | 108 | #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].") |
|---|
| 110 | 110 | |
|---|
| 111 | 111 | #define SRATE_TEXT N_("Transponder symbol rate in kHz") |
|---|
| … | … | |
| 150 | 150 | #define USER_TEXT N_( "HTTP user name" ) |
|---|
| 151 | 151 | #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 " \ |
|---|
| 153 | 153 | "the internal HTTP server." ) |
|---|
| 154 | 154 | |
|---|
| 155 | 155 | #define PASSWORD_TEXT N_( "HTTP password" ) |
|---|
| 156 | 156 | #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 " \ |
|---|
| 158 | 158 | "the internal HTTP server." ) |
|---|
| 159 | 159 | |
|---|
| 160 | 160 | #define ACL_TEXT N_( "HTTP ACL" ) |
|---|
| 161 | 161 | #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, " \ |
|---|
| 163 | 163 | "which will limit the range of IPs entitled to log into the internal " \ |
|---|
| 164 | 164 | "HTTP server." ) |
|---|
| r2cb472d |
r36a5efe |
|
| 59 | 59 | #define ANGLE_TEXT N_("DVD angle") |
|---|
| 60 | 60 | #define ANGLE_LONGTEXT N_( \ |
|---|
| 61 | | "Allows you to select the default DVD angle." ) |
|---|
| | 61 | "Default DVD angle." ) |
|---|
| 62 | 62 | |
|---|
| 63 | 63 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 64 | 64 | #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." ) |
|---|
| 67 | 67 | #define MENU_TEXT N_("Start directly in menu") |
|---|
| 68 | 68 | #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." ) |
|---|
| 71 | 71 | |
|---|
| 72 | 72 | #define LANGUAGE_DEFAULT ("en") |
|---|
| rb7d2846 |
r36a5efe |
|
| 61 | 61 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 62 | 62 | #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." ) |
|---|
| 65 | 65 | |
|---|
| 66 | 66 | #define CSSMETHOD_TEXT N_("Method used by libdvdcss for decryption") |
|---|
| r2cb472d |
r36a5efe |
|
| 40 | 40 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 41 | 41 | #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." ) |
|---|
| 44 | 44 | #define FPS_TEXT N_("Framerate") |
|---|
| 45 | 45 | #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).") |
|---|
| 47 | 47 | #define ID_TEXT N_("ID") |
|---|
| 48 | 48 | #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 " \ |
|---|
| 50 | 50 | "#duplicate{} constructs (default 0).") |
|---|
| 51 | 51 | #define DURATION_TEXT N_("Duration in ms") |
|---|
| 52 | 52 | #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).") |
|---|
| 55 | 55 | |
|---|
| 56 | 56 | vlc_module_begin(); |
|---|
| r543574f |
r36a5efe |
|
| 80 | 80 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 81 | 81 | #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." ) |
|---|
| 84 | 84 | #define CAT_TEXT N_("Concatenate with additional files") |
|---|
| 85 | 85 | #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." ) |
|---|
| 88 | 88 | |
|---|
| 89 | 89 | vlc_module_begin(); |
|---|
| 90 | | set_description( _("Standard filesystem file input") ); |
|---|
| | 90 | set_description( _("File input") ); |
|---|
| 91 | 91 | set_shortname( _("File") ); |
|---|
| 92 | 92 | set_category( CAT_INPUT ); |
|---|
| r7092d93 |
r36a5efe |
|
| 42 | 42 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 43 | 43 | #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." ) |
|---|
| 46 | 46 | #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 " \ |
|---|
| 48 | 48 | "be used for the connection.") |
|---|
| 49 | 49 | #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 " \ |
|---|
| 51 | 51 | "used for the connection.") |
|---|
| 52 | 52 | #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 " \ |
|---|
| 54 | 54 | "used for the connection.") |
|---|
| 55 | 55 | |
|---|
| r72ab62f |
r36a5efe |
|
| 44 | 44 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 45 | 45 | #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." ) |
|---|
| 48 | 48 | |
|---|
| 49 | 49 | vlc_module_begin(); |
|---|
| 50 | | set_description( _("GnomeVFS filesystem file input") ); |
|---|
| | 50 | set_description( _("GnomeVFS input") ); |
|---|
| 51 | 51 | set_shortname( "GnomeVFS" ); |
|---|
| 52 | 52 | set_category( CAT_INPUT ); |
|---|
| r8e8e644 |
r36a5efe |
|
| 47 | 47 | #define PROXY_TEXT N_("HTTP proxy") |
|---|
| 48 | 48 | #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 " \ |
|---|
| 50 | 50 | "http://[user[:pass]@]myproxy.mydomain:myport/ ; " \ |
|---|
| 51 | 51 | "if empty, the http_proxy environment variable will be tried." ) |
|---|
| … | … | |
| 53 | 53 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 54 | 54 | #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." ) |
|---|
| 57 | 57 | |
|---|
| 58 | 58 | #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 " \ |
|---|
| 60 | 60 | "used for the connection.") |
|---|
| 61 | 61 | |
|---|
| 62 | 62 | #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." ) |
|---|
| 65 | 66 | |
|---|
| 66 | 67 | #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 " \ |
|---|
| 68 | 69 | "being constantly updated (for example, a JPG file on a server)." \ |
|---|
| 69 | 70 | "You should not globally enable this option as it will break all other " \ |
|---|
| r2cb472d |
r36a5efe |
|
| 46 | 46 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 47 | 47 | #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." ) |
|---|
| 50 | 50 | |
|---|
| 51 | 51 | #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." ) |
|---|
| 52 | 55 | |
|---|
| 53 | 56 | #define BITRATE_TEXT N_( "Maximum bitrate" ) |
|---|
| 54 | 57 | #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." ) |
|---|
| 57 | 59 | |
|---|
| 58 | 60 | vlc_module_begin(); |
|---|
| … | … | |
| 66 | 68 | CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE ); |
|---|
| 67 | 69 | |
|---|
| 68 | | add_bool( "mms-all", 0, NULL, ALL_TEXT, "", VLC_TRUE ); |
|---|
| | 70 | add_bool( "mms-all", 0, NULL, ALL_TEXT, ALL_LONGTEXT, VLC_TRUE ); |
|---|
| 69 | 71 | add_integer( "mms-maxbitrate", 0, NULL, BITRATE_TEXT, BITRATE_LONGTEXT , |
|---|
| 70 | 72 | VLC_FALSE ); |
|---|
| r2cb472d |
r36a5efe |
|
| 46 | 46 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 47 | 47 | #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." ) |
|---|
| 50 | 50 | |
|---|
| 51 | 51 | #define DEVICE_TEXT N_( "Device" ) |
|---|
| … | … | |
| 56 | 56 | |
|---|
| 57 | 57 | #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)." ) |
|---|
| 60 | 60 | |
|---|
| 61 | 61 | #define WIDTH_TEXT N_( "Width" ) |
|---|
| 62 | 62 | #define WIDTH_LONGTEXT N_( "Width of the stream to capture " \ |
|---|
| 63 | | "(-1 for autodetect)" ) |
|---|
| | 63 | "(-1 for autodetection)." ) |
|---|
| 64 | 64 | |
|---|
| 65 | 65 | #define HEIGHT_TEXT N_( "Height" ) |
|---|
| 66 | 66 | #define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \ |
|---|
| 67 | | "(-1 for autodetect)" ) |
|---|
| | 67 | "(-1 for autodetection)." ) |
|---|
| 68 | 68 | |
|---|
| 69 | 69 | #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." ) |
|---|
| 71 | 71 | |
|---|
| 72 | 72 | #define FRAMERATE_TEXT N_( "Framerate" ) |
|---|
| 73 | 73 | #define FRAMERATE_LONGTEXT N_( "Framerate to capture, if applicable " \ |
|---|
| 74 | | "(-1 for autodetect)" ) |
|---|
| | 74 | "(-1 for autodetect)." ) |
|---|
| 75 | 75 | |
|---|
| 76 | 76 | #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)." ) |
|---|
| 78 | 78 | |
|---|
| 79 | 79 | #define BFRAMES_TEXT N_( "B Frames" ) |
|---|
| … | … | |
| 82 | 82 | |
|---|
| 83 | 83 | #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)." ) |
|---|
| 85 | 85 | |
|---|
| 86 | 86 | #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)." ) |
|---|
| 91 | 91 | |
|---|
| 92 | 92 | #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 "\ |
|---|
| 94 | 94 | "get used by the audio part of the card." ) |
|---|
| 95 | 95 | |
|---|
| 96 | 96 | #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)." ) |
|---|
| 99 | 98 | |
|---|
| 100 | 99 | #define CHAN_TEXT N_( "Channel" ) |
|---|
| … | … | |
| 114 | 113 | vlc_module_begin(); |
|---|
| 115 | 114 | set_shortname( _("PVR") ); |
|---|
| 116 | | set_description( _("MPEG Encoding cards input (with ivtv drivers)") ); |
|---|
| | 115 | set_description( _("IVTV MPEG Encoding cards input") ); |
|---|
| 117 | 116 | set_category( CAT_INPUT ); |
|---|
| 118 | 117 | set_subcategory( SUBCAT_INPUT_ACCESS ); |
|---|
| r704d0d9 |
r36a5efe |
|
| 40 | 40 | #define CACHING_TEXT N_("Caching value (ms)") |
|---|
| 41 | 41 | #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." ) |
|---|
| 44 | 44 | |
|---|
| 45 | 45 | vlc_module_begin(); |
|---|
| r2cb472d |
r36a5efe |
|
| 37 | 37 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 38 | 38 | #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." ) |
|---|
| 41 | 41 | #define FPS_TEXT N_("Frame rate") |
|---|
| 42 | 42 | #define FPS_LONGTEXT N_( \ |
|---|
| 43 | | "Allows you to set the desired frame rate for the capture." ) |
|---|
| | 43 | "Desired frame rate for the capture." ) |
|---|
| 44 | 44 | |
|---|
| 45 | 45 | #ifdef WIN32 |
|---|
| 46 | 46 | #define FRAGS_TEXT N_("Capture fragment size") |
|---|
| 47 | 47 | #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 " \ |
|---|
| 49 | 49 | "of predefined height (16 might be a good value, and 0 means disabled)." ) |
|---|
| 50 | 50 | #endif |
|---|
| r2cb472d |
r36a5efe |
|
| 59 | 59 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 60 | 60 | #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." ) |
|---|
| 63 | 63 | #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 " \ |
|---|
| 65 | 65 | "be used for the connection.") |
|---|
| 66 | 66 | #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 " \ |
|---|
| 68 | 68 | "used for the connection.") |
|---|
| 69 | 69 | #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 " \ |
|---|
| 71 | 71 | "will be used for the connection.") |
|---|
| 72 | 72 | |
|---|
| r2cb472d |
r36a5efe |
|
| 37 | 37 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 38 | 38 | #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." ) |
|---|
| 41 | 41 | |
|---|
| 42 | 42 | static int Open ( vlc_object_t * ); |
|---|
| r3854055 |
r36a5efe |
|
| 42 | 42 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 43 | 43 | #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." ) |
|---|
| 46 | 46 | |
|---|
| 47 | 47 | #define AUTO_MTU_TEXT N_("Autodetection of MTU") |
|---|
| 48 | 48 | #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" ) |
|---|
| 50 | 51 | |
|---|
| 51 | 52 | #define RTP_LATE_TEXT N_("RTP reordering timeout in ms") |
|---|
| 52 | 53 | #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)." ) |
|---|
| 56 | 56 | |
|---|
| 57 | 57 | static int Open ( vlc_object_t * ); |
|---|
| re907794 |
r36a5efe |
|
| 73 | 73 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 74 | 74 | #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." ) |
|---|
| 77 | 77 | #define VDEV_TEXT N_("Video device name") |
|---|
| 78 | 78 | #define VDEV_LONGTEXT N_( \ |
|---|
| 79 | | "Specify the name of the video device that will be used. " \ |
|---|
| | 79 | "Name of the video device to use. " \ |
|---|
| 80 | 80 | "If you don't specify anything, no video device will be used.") |
|---|
| 81 | 81 | #define ADEV_TEXT N_("Audio device name") |
|---|
| 82 | 82 | #define ADEV_LONGTEXT N_( \ |
|---|
| 83 | | "Specify the name of the audio device that will be used. " \ |
|---|
| | 83 | "Name of the audio device to use. " \ |
|---|
| 84 | 84 | "If you don't specify anything, no audio device will be used.") |
|---|
| 85 | 85 | #define CHROMA_TEXT N_("Video input chroma format") |
|---|
| … | … | |
| 89 | 89 | #define FREQUENCY_TEXT N_( "Frequency" ) |
|---|
| 90 | 90 | #define FREQUENCY_LONGTEXT N_( \ |
|---|
| 91 | | "Frequency to capture (in kHz), if applicable" ) |
|---|
| | 91 | "Frequency to capture (in kHz), if applicable." ) |
|---|
| 92 | 92 | #define CHANNEL_TEXT N_( "Channel" ) |
|---|
| 93 | 93 | #define CHANNEL_LONGTEXT N_( \ |
|---|
| 94 | 94 | "Channel of the card to use (Usually, 0 = tuner, " \ |
|---|
| 95 | | "1 = composite, 2 = svideo)" ) |
|---|
| | 95 | "1 = composite, 2 = svideo)." ) |
|---|
| 96 | 96 | #define NORM_TEXT N_( "Norm" ) |
|---|
| 97 | 97 | #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)." ) |
|---|
| 99 | 99 | #define AUDIO_TEXT N_( "Audio Channel" ) |
|---|
| 100 | 100 | #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." ) |
|---|
| 102 | 102 | #define WIDTH_TEXT N_( "Width" ) |
|---|
| 103 | 103 | #define WIDTH_LONGTEXT N_( "Width of the stream to capture " \ |
|---|
| 104 | | "(-1 for autodetect)" ) |
|---|
| | 104 | "(-1 for autodetect)." ) |
|---|
| 105 | 105 | #define HEIGHT_TEXT N_( "Height" ) |
|---|
| 106 | 106 | #define HEIGHT_LONGTEXT N_( "Height of the stream to capture " \ |
|---|
| 107 | | "(-1 for autodetect)" ) |
|---|
| | 107 | "(-1 for autodetect)." ) |
|---|
| 108 | 108 | #define BRIGHTNESS_TEXT N_( "Brightness" ) |
|---|
| 109 | 109 | #define BRIGHTNESS_LONGTEXT N_( \ |
|---|
| 110 | | "Set the Brightness of the video input" ) |
|---|
| | 110 | "Brightness of the video input." ) |
|---|
| 111 | 111 | #define HUE_TEXT N_( "Hue" ) |
|---|
| 112 | 112 | #define HUE_LONGTEXT N_( \ |
|---|
| 113 | | "Set the Hue of the video input" ) |
|---|
| | 113 | "Hue of the video input." ) |
|---|
| 114 | 114 | #define COLOUR_TEXT N_( "Color" ) |
|---|
| 115 | 115 | #define COLOUR_LONGTEXT N_( \ |
|---|
| 116 | | "Set the Color of the video input" ) |
|---|
| | 116 | "Color of the video input." ) |
|---|
| 117 | 117 | #define CONTRAST_TEXT N_( "Contrast" ) |
|---|
| 118 | 118 | #define CONTRAST_LONGTEXT N_( \ |
|---|
| 119 | | "Set the Contrast of the video input" ) |
|---|
| | 119 | "Contrast of the video input." ) |
|---|
| 120 | 120 | #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." ) |
|---|
| 122 | 122 | #define SAMPLERATE_TEXT N_( "Samplerate" ) |
|---|
| 123 | 123 | #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)" ) |
|---|
| 125 | 125 | #define STEREO_TEXT N_( "Stereo" ) |
|---|
| 126 | 126 | #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." ) |
|---|
| 128 | 128 | #define MJPEG_TEXT N_( "MJPEG" ) |
|---|
| 129 | 129 | #define MJPEG_LONGTEXT N_( \ |
|---|
| … | … | |
| 131 | 131 | #define DECIMATION_TEXT N_( "Decimation" ) |
|---|
| 132 | 132 | #define DECIMATION_LONGTEXT N_( \ |
|---|
| 133 | | "Set the Decimation level for MJPEG streams" ) |
|---|
| | 133 | "Decimation level for MJPEG streams" ) |
|---|
| 134 | 134 | #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." ) |
|---|
| 136 | 136 | #define FPS_TEXT N_( "Framerate" ) |
|---|
| 137 | 137 | #define FPS_LONGTEXT N_( "Framerate to capture, if applicable " \ |
|---|
| 138 | | "(-1 for autodetect)" ) |
|---|
| | 138 | "(-1 for autodetect)." ) |
|---|
| 139 | 139 | |
|---|
| 140 | 140 | static int i_norm_list[] = |
|---|
| r895d129 |
r36a5efe |
|
| 40 | 40 | #define CACHING_TEXT N_("Caching value in ms") |
|---|
| 41 | 41 | #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." ) |
|---|
| 44 | 44 | |
|---|
| 45 | 45 | vlc_module_begin(); |
|---|