Changeset 8b21c8fc2c0da2deb6c01a38ac03463c3990883e

Show
Ignore:
Timestamp:
23/09/06 01:11:59 (2 years ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1158966719 +0000
git-parent:

[3a004ff731875126ff0c99df0d68f2eb360a85ed]

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

i18n fixes pointed by Marian Hikanik

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/audio_filter/converter/mono.c

    rd407ed2 r8b21c8f  
    8686}; 
    8787 
    88 #define MONO_DOWNMIX_TEXT ("Use downmix algorithme.") 
    89 #define MONO_DOWNMIX_LONGTEXT ("This option selects a stereo to mono " \ 
     88#define MONO_DOWNMIX_TEXT N_("Use downmix algorithme.") 
     89#define MONO_DOWNMIX_LONGTEXT N_("This option selects a stereo to mono " \ 
    9090    "downmix algorithm that is used in the headphone channel mixer. It" \ 
    9191    "gives the effect of standing in a room full of speakers." ) 
    9292 
    93 #define MONO_CHANNEL_TEXT ("Select channel to keep") 
    94 #define MONO_CHANNEL_LONGTEXT ("This option silences all other channels " \ 
     93#define MONO_CHANNEL_TEXT N_("Select channel to keep") 
     94#define MONO_CHANNEL_LONGTEXT N_("This option silences all other channels " \ 
    9595    "except the selected channel. Choose one from (0=left, 1=right " \ 
    9696    "2=rear left, 3=rear right, 4=center, 5=left front)") 
  • modules/codec/ffmpeg/ffmpeg.h

    r63fa138 r8b21c8f  
    150150/* FIXME (cut/past from ffmpeg */ 
    151151#define LIBAVCODEC_PP_LONGTEXT \ 
    152 "<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \ 
     152N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \ 
    153153"long form example:\n" \ 
    154154"vdeblock:autoq/hdeblock:autoq/linblenddeint    default,-vdeblock\n" \ 
     
    182182"tn     tmpnoise        (3 Thresholds)          Temporal Noise Reducer\n" \ 
    183183"                       1. <= 2. <= 3.          larger -> stronger filtering\n" \ 
    184 "fq     forceQuant      <quantizer>             Force quantizer\n" 
     184"fq     forceQuant      <quantizer>             Force quantizer\n") 
    185185 
    186186/* 
  • modules/codec/svcdsub.c

    r72d2a5b r8b21c8f  
    4343     "Enable debug" 
    4444 
    45 #define DEBUG_LONGTEXT
     45#define DEBUG_LONGTEXT N_(
    4646    "This integer when viewed in binary is a debugging mask\n" \ 
    4747    "calls                 1\n" \ 
    48     "packet assembly info  2\n" 
     48    "packet assembly info  2\n") 
    4949 
    5050vlc_module_begin(); 
  • modules/gui/wxwidgets/dialogs/bookmarks.cpp

    r272e38a r8b21c8f  
    167167        new wxButton( panel, ButtonExtract_Event, wxU(_("Extract")) ); 
    168168 
    169 #define ADD_TEXT "Adds a bookmark at the current position in the stream" 
    170 #define REMOVE_TEXT "Removes the selected bookmarks" 
    171 #define CLEAR_TEXT "Removes all the bookmarks for that stream" 
    172 #define EDIT_TEXT "Edit the properties of a bookmark" 
    173 #define EXTRACT_TEXT "If you select two or more bookmarks, this will " \ 
     169#define ADD_TEXT N_("Adds a bookmark at the current position in the stream") 
     170#define REMOVE_TEXT N_("Removes the selected bookmarks") 
     171#define CLEAR_TEXT N_("Removes all the bookmarks for that stream") 
     172#define EDIT_TEXT N_("Edit the properties of a bookmark") 
     173#define EXTRACT_TEXT N_("If you select two or more bookmarks, this will " \ 
    174174               "launch the streaming/transcoding wizard to allow you to " \ 
    175               "stream or save the part of the stream between these bookmarks" 
     175              "stream or save the part of the stream between these bookmarks") 
    176176    button_add->SetToolTip(  wxU(_( ADD_TEXT ) ) ); 
    177177    button_del->SetToolTip(  wxU(_( REMOVE_TEXT ) ) ); 
  • modules/gui/wxwidgets/dialogs/fileinfo.cpp

    r7fd3632 r8b21c8f  
    9191#endif 
    9292 
    93     panel_sizer->Add( new wxButton( panel, wxID_CLOSE ) , 
     93    panel_sizer->Add( new wxButton( panel, wxID_CLOSE, wxU(_("&Close")) ) , 
    9494                      0, wxALL|wxALIGN_RIGHT, 5 ); 
    9595 
  • modules/gui/wxwidgets/dialogs/preferences.cpp

    rf485214 r8b21c8f  
    411411                } 
    412412                current_item = AppendItem( root_item, 
    413                                            wxU( config_data->psz_name ), 
     413                                           wxU( _(config_data->psz_name) ), 
    414414                                           i_image, -1, config_data ); 
    415415 
     
    484484                i_image = -1; 
    485485                #endif 
    486                 AppendItem( current_item, wxU( config_data->psz_name ), 
     486                AppendItem( current_item, wxU( _(config_data->psz_name) ), 
    487487                            i_image, -1, config_data ); 
    488488                break; 
  • modules/gui/wxwidgets/dialogs/preferences_widgets.cpp

    r71bca20 r8b21c8f  
    710710                             wxOPEN 
    711711#else 
    712                              wxOPEN | wxSAVE 
     712                             wxOPEN 
    713713#endif 
    714714                           ); 
  • src/libvlc.h

    r3f99651 r8b21c8f  
    13611361    set_subcategory( SUBCAT_INPUT_GENERAL ); 
    13621362 
    1363     add_bool( "france", VLC_FALSE, NULL, "France", FRANCE_LONGTEXT, VLC_TRUE ); 
     1363    add_bool( "france", VLC_FALSE, NULL, N_("France"), FRANCE_LONGTEXT, VLC_TRUE ); 
    13641364 
    13651365    set_section( N_( "Track settings" ), NULL );