X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fwxwidgets%2Fdialogs%2Fsubtitles.cpp;h=6e5b684adb518f0cff3d3c9a565f6ab83551cd68;hb=25e23b776ccc4835f11b867c2cc354363f466005;hp=98b7d4a69a0da60fce1083393db5b6131c08d3e2;hpb=d7b6f7ebb48a4ff8b43b5597ed950d3f4bde9b2b;p=vlc diff --git a/modules/gui/wxwidgets/dialogs/subtitles.cpp b/modules/gui/wxwidgets/dialogs/subtitles.cpp index 98b7d4a69a..6e5b684adb 100644 --- a/modules/gui/wxwidgets/dialogs/subtitles.cpp +++ b/modules/gui/wxwidgets/dialogs/subtitles.cpp @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #include "dialogs/subtitles.hpp" @@ -239,10 +239,9 @@ SubsFileDialog::SubsFileDialog( intf_thread_t *_p_intf, wxWindow* _p_parent ): wxStaticLine *static_line = new wxStaticLine( panel, wxID_OK ); /* Create the buttons */ - wxButton *ok_button = new wxButton( panel, wxID_OK, wxU(_("OK")) ); + wxButton *ok_button = new wxButton( panel, wxID_OK ); ok_button->SetDefault(); - wxButton *cancel_button = new wxButton( panel, wxID_CANCEL, - wxU(_("Cancel")) ); + wxButton *cancel_button = new wxButton( panel, wxID_CANCEL ); /* Place everything in sizers */ wxBoxSizer *button_sizer = new wxBoxSizer( wxHORIZONTAL );