Changeset 04e6970605c4c6f63d8ab507bca5126612c98625
- Timestamp:
- 24/05/08 18:51:10
(5 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1211647870 +0200
- git-parent:
[86af35f2401ca1eb2da89a182d54bbe6c1540a2e]
- git-author:
- Rafaël Carré <funman@videolan.org> 1211647870 +0200
- Message:
Fix rtmp access_output building
Mark description & shortnames as translatable with N_
(Thanks for testing the build before committing, I think the source code
had the same review)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra9e55ea |
r04e6970 |
|
| 29 | 29 | |
|---|
| 30 | 30 | #include <vlc/vlc.h> |
|---|
| | 31 | #include <vlc_plugin.h> |
|---|
| 31 | 32 | #include <vlc_sout.h> |
|---|
| 32 | 33 | |
|---|
| … | … | |
| 51 | 52 | |
|---|
| 52 | 53 | vlc_module_begin(); |
|---|
| 53 | | set_description( _("RTMP stream output") ); |
|---|
| 54 | | set_shortname( _("RTMP" ) ); |
|---|
| | 54 | set_description( N_("RTMP stream output") ); |
|---|
| | 55 | set_shortname( N_("RTMP" ) ); |
|---|
| 55 | 56 | set_capability( "sout access", 50 ); |
|---|
| 56 | 57 | set_category( CAT_SOUT ); |
|---|
| redb7e41 |
r04e6970 |
|
| 266 | 266 | vlc_module_begin(); |
|---|
| 267 | 267 | set_shortname( "UPnP" ); |
|---|
| 268 | | set_description( _( "Universal Plug'n'Play discovery ( Intel SDK )" ) ); |
|---|
| | 268 | set_description( N_( "Universal Plug'n'Play discovery ( Intel SDK )" ) ); |
|---|
| 269 | 269 | set_category( CAT_PLAYLIST ); |
|---|
| 270 | 270 | set_subcategory( SUBCAT_PLAYLIST_SD ); |
|---|
| r27d483e |
r04e6970 |
|
| 280 | 280 | *****************************************************************************/ |
|---|
| 281 | 281 | vlc_module_begin(); |
|---|
| 282 | | set_description( _("AtmoLight Filter") ); |
|---|
| | 282 | set_description( N_("AtmoLight Filter") ); |
|---|
| 283 | 283 | set_help( MODULE_DESCRIPTION ); |
|---|
| 284 | | set_shortname( _( "AtmoLight" )); |
|---|
| | 284 | set_shortname( N_( "AtmoLight" )); |
|---|
| 285 | 285 | set_capability( "video filter2", 0 ); |
|---|
| 286 | 286 | |
|---|