Changeset fdb2f80a81632eb53c1722871a6222d3c8c32bc3

Show
Ignore:
Timestamp:
03/22/06 23:39:51 (2 years ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1143067191 +0000
git-parent:

[3fa37fdc847c2716a59af6a9d7be3a33ca06ba77]

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

String Review. refs #438

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/visualization/galaktos/plugin.c

    r2cb472d rfdb2f80  
    8383         || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') ) 
    8484    { 
    85         msg_Warn( p_filter, "Bad input or output format" ); 
     85        msg_Warn( p_filter, "bad input or output format" ); 
    8686        return VLC_EGENERIC; 
    8787    } 
     
    220220    if( p_thread->p_module == NULL ) 
    221221    { 
    222         msg_Err( p_thread, "No OpenGL provider found" ); 
     222        msg_Err( p_thread, "no OpenGL provider found" ); 
    223223        vlc_object_detach( p_thread->p_opengl ); 
    224224        vlc_object_destroy( p_thread->p_opengl ); 
  • modules/visualization/goom.c

    r2cb472d rfdb2f80  
    137137         || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') ) 
    138138    { 
    139         msg_Warn( p_filter, "Bad input or output format" ); 
     139        msg_Warn( p_filter, "bad input or output format" ); 
    140140        return VLC_EGENERIC; 
    141141    } 
  • modules/visualization/visual/effects.c

    radc858d rfdb2f80  
    9696    if( !p_s16_buff ) 
    9797    { 
    98         msg_Err(p_aout,"Out of memory"); 
     98        msg_Err(p_aout,"out of memory"); 
    9999        return -1; 
    100100    } 
     
    121121        if( !p_effect->p_data) 
    122122        { 
    123             msg_Err(p_aout,"Out of memory"); 
     123            msg_Err(p_aout,"out of memory"); 
    124124            return -1; 
    125125        } 
     
    140140    if( !height) 
    141141    { 
    142         msg_Err(p_aout,"Out of memory"); 
     142        msg_Err(p_aout,"out of memory"); 
    143143        return -1; 
    144144    } 
     
    158158    if( !p_state) 
    159159    { 
    160         msg_Err(p_aout,"Unable to initialize FFT transform"); 
     160        msg_Err(p_aout,"unable to initialize FFT transform"); 
    161161        return -1; 
    162162    } 
     
    392392    if( !p_s16_buff ) 
    393393    { 
    394         msg_Err(p_aout,"Out of memory"); 
     394        msg_Err(p_aout,"out of memory"); 
    395395        return -1; 
    396396    } 
     
    426426        if( !p_effect->p_data) 
    427427        { 
    428             msg_Err(p_aout,"Out of memory"); 
     428            msg_Err(p_aout,"out of memory"); 
    429429            return -1; 
    430430        } 
     
    443443    if( !height) 
    444444    { 
    445         msg_Err(p_aout,"Out of memory"); 
     445        msg_Err(p_aout,"out of memory"); 
    446446        return -1; 
    447447    } 
     
    462462    if( !p_state) 
    463463    { 
    464         msg_Err(p_aout,"Unable to initialize FFT transform"); 
     464        msg_Err(p_aout,"unable to initialize FFT transform"); 
    465465        return -1; 
    466466    } 
  • modules/visualization/visual/visual.c

    radc858d rfdb2f80  
    3939#define ELIST_LONGTEXT N_( \ 
    4040      "A list of visual effect, separated by commas.\n"  \ 
    41       "Current effects include: dummy, scope, spectrum" ) 
     41      "Current effects include: dummy, scope, spectrum." ) 
    4242 
    4343#define WIDTH_TEXT N_( "Video width" ) 
     
    262262                if( ( psz_eoa = strchr( psz_parser, '}') ) == NULL ) 
    263263                { 
    264                    msg_Err( p_filter, "Unable to parse effect list. Aborting"); 
     264                   msg_Err( p_filter, "unable to parse effect list. Aborting"); 
    265265                   break; 
    266266                } 
     
    423423    aout_filter_t     *p_filter = (aout_filter_t *)p_this; 
    424424    /* restart this baby */ 
    425     msg_Dbg( p_filter, "We should restart the visual filter" ); 
     425    msg_Dbg( p_filter, "we should restart the visual filter" ); 
    426426    return VLC_SUCCESS; 
    427427} 
  • modules/visualization/xosd.c

    r2cb472d rfdb2f80  
    6363#define POSITION_TEXT N_("Flip vertical position") 
    6464#define POSITION_LONGTEXT N_("Display xosd output on the bottom of the " \ 
    65                              "screen instead of the top") 
     65                             "screen instead of the top.") 
    6666 
    6767#define TXT_OFS_TEXT N_("Vertical offset") 
    68 #define TXT_OFS_LONGTEXT N_("Vertical offset in pixels of the displayed text") 
     68#define TXT_OFS_LONGTEXT N_("Vertical offset in pixels of the displayed " \ 
     69                            "text (default 30 px).") 
    6970 
    7071#define SHD_OFS_TEXT N_("Shadow offset") 
    71 #define SHD_OFS_LONGTEXT N_("Offset in pixels of the shadow") 
     72#define SHD_OFS_LONGTEXT N_("Offset in pixels of the shadow (default 2 px).") 
    7273 
    7374#define FONT_TEXT N_("Font") 
    74 #define FONT_LONGTEXT N_("Font used to display text in the xosd output") 
    75 /* FIXME FIXME FIXME: Gettextize */ 
    76 #define COLOUR_TEXT ("Colour") 
    77 #define COLOUR_LONGTEXT ("Colour used to display text in the xosd output") 
     75#define FONT_LONGTEXT N_("Font used to display text in the xosd output.") 
     76#define COLOUR_TEXT N_("Color") 
     77#define COLOUR_LONGTEXT N_("Color used to display text in the xosd output.") 
    7878 
    7979vlc_module_begin(); 
     
    8181    set_subcategory( SUBCAT_INTERFACE_CONTROL ); 
    8282    set_description( _("XOSD interface") ); 
     83    set_shortname( "XOSD" ); 
    8384    add_bool( "xosd-position", 1, NULL, POSITION_TEXT, POSITION_LONGTEXT, VLC_TRUE ); 
    8485    add_integer( "xosd-text-offset", 30, NULL, TXT_OFS_TEXT, TXT_OFS_LONGTEXT, VLC_TRUE );