Changeset 3608fc1574e39ca5e0c46c377e1a16fb5198264e

Show
Ignore:
Timestamp:
09/09/07 23:12:29 (1 year ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1189372349 +0000
git-parent:

[29d954bbbff786220e11642f0ac6a79d59648a0d]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1189372349 +0000
Message:

luameta.c: Fix a message
vlclua.c: get rid of an empty module and fix descriptions

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/misc/lua/luameta.c

    ra9a8900 r3608fc1  
    181181        else 
    182182        { 
    183             msg_Err( p_this, "Lua playlist script %s: " 
     183            msg_Err( p_this, "Lua art fetcher script %s: " 
    184184                 "didn't return a string", psz_filename ); 
    185185        } 
  • modules/misc/lua/vlclua.c

    r16f32e1 r3608fc1  
    4444 
    4545vlc_module_begin(); 
    46     add_shortcut( "lua" ); 
     46    add_shortcut( "luameta" ); 
     47    set_shortname( N_( "Lua Meta" ) ); 
     48    set_description( _("Fetch metadata using lua scripts") ); 
     49    set_capability( "meta fetcher", 10 ); 
     50    set_callbacks( E_(FindMeta), NULL ); 
    4751    add_submodule(); 
    48         add_shortcut( "luameta" ); 
    49         set_shortname( N_( "Lua Meta" ) ); 
    50         set_description( _("Fetch Artwork using lua scripts") ); 
    51         set_capability( "meta fetcher", 10 ); 
    52         set_callbacks( E_(FindMeta), NULL ); 
    53         add_submodule(); 
    54             set_capability( "art finder", 10 ); 
    55             set_callbacks( E_(FindArt), NULL ); 
     52        set_shortname( N_( "Lua Art" ) ); 
     53        set_description( _("Fetch artwork using lua scripts") ); 
     54        set_capability( "art finder", 10 ); 
     55        set_callbacks( E_(FindArt), NULL ); 
    5656    add_submodule(); 
    5757        add_shortcut( "luaplaylist" ); 
    5858        set_category( CAT_INPUT ); 
    5959        set_subcategory( SUBCAT_INPUT_DEMUX ); 
    60  
    6160        set_shortname( _("Lua Playlist") ); 
    6261        set_description( _("Lua Playlist Parser Interface") );