Changeset 79f9f30aba459bede4709275b10336089161ead0
- Timestamp:
- 04/11/06 15:17:20
(2 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1144761440 +0000
- git-parent:
[31943c2c6d661ccedcbd49c1471865e873ef5e38]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1144761440 +0000
- Message:
More strings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r00788d2 |
r79f9f30 |
|
| 87 | 87 | "DirectShow plugin. If you don't specify anything, the default device " \ |
|---|
| 88 | 88 | "will be used.") |
|---|
| | 89 | /// \bug [String] size stuff should be on video ! |
|---|
| 89 | 90 | #define ADEV_TEXT N_("Audio device name") |
|---|
| 90 | 91 | #define ADEV_LONGTEXT N_( \ |
|---|
| r0af0de2 |
r79f9f30 |
|
| 64 | 64 | #define PASS_LONGTEXT N_("Password that will be " \ |
|---|
| 65 | 65 | "requested to access the stream." ) |
|---|
| | 66 | |
|---|
| | 67 | /// \bug [String] missing closing parenthesis |
|---|
| 66 | 68 | #define MIME_TEXT N_("Mime") |
|---|
| 67 | 69 | #define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \ |
|---|
| r8e394d7 |
r79f9f30 |
|
| 90 | 90 | set_category( CAT_INPUT ); |
|---|
| 91 | 91 | set_subcategory( SUBCAT_INPUT_ACODEC ); |
|---|
| 92 | | set_shortname( _("DCA" ) ); |
|---|
| | 92 | set_shortname( "DCA" ); |
|---|
| 93 | 93 | set_description( _("DTS Coherent Acoustics audio decoder") ); |
|---|
| 94 | 94 | add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE ); |
|---|
| rb0639d9 |
r79f9f30 |
|
| 97 | 97 | add_integer( "rtsp-http-port", 80, NULL, |
|---|
| 98 | 98 | N_("HTTP tunnel port"), |
|---|
| | 99 | /// \bug [String] Missing . |
|---|
| 99 | 100 | N_("Port to use for tunneling the RTSP/RTP over HTTP"), VLC_TRUE ); |
|---|
| 100 | 101 | #endif |
|---|
| r386b36f |
r79f9f30 |
|
| 45 | 45 | static void Close ( vlc_object_t * ); |
|---|
| 46 | 46 | |
|---|
| | 47 | /// \bug [String] missing . |
|---|
| 47 | 48 | #define NOISE_LONGTEXT N_("Enable noise reduction algorithm") |
|---|
| 48 | 49 | #define REVERB_LONGTEXT N_("Enable reverberation" ) |
|---|
| rb0639d9 |
r79f9f30 |
|
| 335 | 335 | "to 4:3 in order to keep proportions.") |
|---|
| 336 | 336 | |
|---|
| | 337 | /// \bug [String] Remove "this option" |
|---|
| 337 | 338 | #define SKIP_FRAMES_TEXT N_("Skip frames") |
|---|
| 338 | 339 | #define SKIP_FRAMES_LONGTEXT N_( \ |
|---|