]> git.sesse.net Git - vlc/commitdiff
gui/wx: i18n fixes pointed by Cristi Secara
authorChristophe Mutricy <xtophe@videolan.org>
Fri, 25 May 2007 18:01:31 +0000 (18:01 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Fri, 25 May 2007 18:01:31 +0000 (18:01 +0000)
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
modules/gui/wxwidgets/extrapanel.cpp

index e5b86c8e8a3a431a4dd5d1e2f1e6c8f4088713c9..e85b503415ecfb2c22cc12cca7959a776301561f 100644 (file)
@@ -413,7 +413,7 @@ VLMAddStreamPanel::VLMAddStreamPanel( intf_thread_t *_p_intf,
                          0 , wxEXPAND | wxALL , 5 );
     }
     lower_sizer->Add( new wxButton( this, Create_Event,
-                          wxU( _( b_edit ? "OK" : "Create" ) ) ),
+                          wxU( _( b_edit ? "OK" : N_("Create") ) ) ),
                       0 , wxEXPAND | wxALL , 5 );
 
 
index 2b819e697256e62da194042e85540632dd51a4b4..6486e46994c8e9757cdb797dd45895447ee29dcf 100644 (file)
@@ -483,12 +483,12 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
     top_sizer->Add( 0, 0, 1, wxALL, 2 );
 
     smooth_text = new wxStaticText( panel, -1, wxU( _("Smooth :") ));
-    smooth_text->SetToolTip( wxU( SMOOTH_TIP ) );
+    smooth_text->SetToolTip( wxU( _(SMOOTH_TIP) ) );
     top_sizer->Add( smooth_text, 0, wxALL, 2 );
 
     smooth_slider =new wxSlider( panel, Smooth_Event, 0, 0, 10 ,
                     wxDefaultPosition, wxSize( 100, -1 ) );
-    smooth_slider->SetToolTip( wxU( SMOOTH_TIP ) );
+    smooth_slider->SetToolTip( wxU( _(SMOOTH_TIP) ) );
     top_sizer->Add( smooth_slider, 0, wxALL, 2 );
     i_smooth = 0;