Changeset 11b8c44ae340a04ea5c9abbfcd68535e72821af2

Show
Ignore:
Timestamp:
01/04/06 23:46:33 (3 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1143927993 +0000
git-parent:

[e90c868f4cba1ec0b18c5be5d230e32f1aa99c8a]

git-author:
Clément Stenac <zorglub@videolan.org> 1143927993 +0000
Message:

String fixes to extrapanel. Thanks to Steven on IRC

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/wxwidgets/extrapanel.cpp

    r4d43a6d r11b8c44  
    3939 *****************************************************************************/ 
    4040 
    41 #define SMOOTH_TIP N_( "Move bands together. The higher this value is, the " \ 
    42                 "more correlated their movement will be." ) 
     41#define SMOOTH_TIP N_( "Controls the blending of equalizer bands. The higher" \ 
     42            " this value is, the more correlated their movement will be." ) 
    4343 
    4444static int IntfBandsCallback( vlc_object_t *, char const *, 
     
    147147{ 
    148148    { "clone", N_("Image clone"), N_("Creates several clones of the image") }, 
    149     { "distort", N_("Distortion"), N_("Adds distorsion effects") }, 
    150     { "invert", N_("Image inversion") , N_("Inverts the image colors") }, 
    151     { "motionblur", N_("Blurring"), N_("Creates a motion blurring on the image") }, 
     149    { "distort", N_("Distortion"), N_("Adds distortion effects") }, 
     150    { "invert", N_("Image inversion") , N_("Inverts the colors of the image") }, 
     151    { "motionblur", N_("Blurring"), N_("Adds motion blurring to the image") }, 
    152152    { "transform",  N_("Transformation"), N_("Rotates or flips the image") }, 
    153153    { "magnify",  N_("Magnify"), N_("Magnifies part of the image") }, 
     
    202202    /* Create static box to surround the adjust controls */ 
    203203    wxStaticBox *adjust_box = 
    204            new wxStaticBox( panel, -1, wxU(_("Adjust Image")) ); 
     204           new wxStaticBox( panel, -1, wxU(_("Image adjustment" )) ); 
    205205    wxStaticBoxSizer *adjust_sizer = 
    206206        new wxStaticBoxSizer( adjust_box, wxVERTICAL ); 
     
    315315    filter_sizer->Add( t_col_sizer ); 
    316316    filter_sizer->Add( new wxButton( panel, FiltersInfo_Event, 
    317                             wxU(_("More info" ) ) ), 0, wxALL, 4 ); 
     317                            wxU(_("More Info" ) ) ), 0, wxALL, 4 ); 
    318318#if 0 
    319319    other_sizer->Add( video_sizer, 0, wxALL | wxEXPAND , 0); 
     
    395395    wxCheckBox * headphone_check = new wxCheckBox( panel, HeadPhone_Event, 
    396396                                    wxU(_("Headphone virtualization"))); 
    397     headphone_check->SetToolTip( wxU(_("This filter gives the feeling of a
    398              "5.1 speakers set when using a headphone." ) ) ); 
     397    headphone_check->SetToolTip( wxU(_("Imitates the effect of
     398             "surround sound when using headphones." ) ) ); 
    399399 
    400400    wxCheckBox * normvol_check = new wxCheckBox( panel, NormVol_Event, 
    401401                                    wxU(_("Volume normalization"))); 
    402     normvol_check->SetToolTip( wxU(_("This filter prevents the audio output " 
    403                          "power from going over a defined value." ) ) ); 
     402    normvol_check->SetToolTip( wxU(_("Prevents the audio output " 
     403                         "level from going over a predefined value." ) ) ); 
    404404 
    405405    wxStaticText *normvol_label = new wxStaticText( panel, -1, 
     
    465465                            wxU(_("Enable") ) ); 
    466466    eq_chkbox->SetToolTip( wxU(_("Enable the equalizer. You can either " 
    467     "manually change the bands or use a preset (Audio Menu->Equalizer)." ) ) ); 
     467    "manually adjust the bands or use a preset (Audio Menu->Equalizer)." ) ) ); 
    468468    top_sizer->Add( eq_chkbox, 0, wxALL, 2 ); 
    469469 
     
    997997void ExtraPanel::OnFiltersInfo(wxCommandEvent& event) 
    998998{ 
    999     wxMessageBox( wxU( _("Video effects filters to apply. " 
     999    wxMessageBox( wxU( _("Filtering effects to apply to the video. " 
    10001000                  "You must restart the stream for these settings to " 
    1001                   "take effect.\n" 
    1002                   "To configure the filters, go to the Preferences, " 
    1003                   "and go to Video/Filters. " 
    1004                   "You can then configure each filter.\n" 
    1005                   "If you want fine control over the filters ( to choose " 
    1006                   "the order in which they are applied ), you need to enter " 
    1007                   "manually a filters string (Preferences / Video / Filters)." 
     1001                  "take effect.\n\n" 
     1002                  "To configure these filters, go to Preferences / Video / " 
     1003                  "Filters. In order to control the order in which they " 
     1004                  "are applied, enter a filters string in the Video Filter " 
     1005                  "Module inside the preferences." 
    10081006                  ) ), 
    1009                     wxU( _("More information" ) ), wxOK | wxICON_INFORMATION, 
     1007                    wxU( _("More Information" ) ), wxOK | wxICON_INFORMATION, 
    10101008                    this->p_parent ); 
    10111009}