Changeset 04e6970605c4c6f63d8ab507bca5126612c98625

Show
Ignore:
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
  • modules/access_output/rtmp.c

    ra9e55ea r04e6970  
    2929 
    3030#include <vlc/vlc.h> 
     31#include <vlc_plugin.h> 
    3132#include <vlc_sout.h> 
    3233 
     
    5152 
    5253vlc_module_begin(); 
    53     set_description( _("RTMP stream output") ); 
    54     set_shortname( _("RTMP" ) ); 
     54    set_description( N_("RTMP stream output") ); 
     55    set_shortname( N_("RTMP" ) ); 
    5556    set_capability( "sout access", 50 ); 
    5657    set_category( CAT_SOUT ); 
  • modules/services_discovery/upnp_intel.cpp

    redb7e41 r04e6970  
    266266vlc_module_begin(); 
    267267set_shortname( "UPnP" ); 
    268 set_description( _( "Universal Plug'n'Play discovery ( Intel SDK )" ) ); 
     268set_description( N_( "Universal Plug'n'Play discovery ( Intel SDK )" ) ); 
    269269set_category( CAT_PLAYLIST ); 
    270270set_subcategory( SUBCAT_PLAYLIST_SD ); 
  • modules/video_filter/atmo/atmo.cpp

    r27d483e r04e6970  
    280280*****************************************************************************/ 
    281281vlc_module_begin(); 
    282 set_description( _("AtmoLight Filter") ); 
     282set_description( N_("AtmoLight Filter") ); 
    283283set_help( MODULE_DESCRIPTION ); 
    284 set_shortname( _( "AtmoLight" )); 
     284set_shortname( N_( "AtmoLight" )); 
    285285set_capability( "video filter2", 0 ); 
    286286