X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/de93d71f6786242ead002630b683aa9540abb26c..a0845d45830eb22769107a61a6cb3485fa21922b:/samples/internat/internat.cpp diff --git a/samples/internat/internat.cpp b/samples/internat/internat.cpp index f84b7b3aa0..c87774265e 100644 --- a/samples/internat/internat.cpp +++ b/samples/internat/internat.cpp @@ -130,8 +130,11 @@ bool MyApp::OnInit() wxLANGUAGE_BULGARIAN, wxLANGUAGE_CZECH, wxLANGUAGE_POLISH, -#if wxUSE_UNICODE + wxLANGUAGE_SWEDISH, +#if wxUSE_UNICODE || defined(__WXMOTIF__) wxLANGUAGE_JAPANESE, +#endif +#if wxUSE_UNICODE wxLANGUAGE_GEORGIAN, #endif wxLANGUAGE_ENGLISH, @@ -151,8 +154,11 @@ bool MyApp::OnInit() _T("Bulgarian"), _T("Czech"), _T("Polish"), -#if wxUSE_UNICODE + _T("Swedish"), +#if wxUSE_UNICODE || defined(__WXMOTIF__) _T("Japanese"), +#endif +#if wxUSE_UNICODE _T("Georgian"), #endif _T("English"), @@ -354,7 +360,7 @@ void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event)) for (int n = first; n <= last; ++n) { s << n << _T(" ") << - wxGetTranslation(_T("file deleted"), _T("files deleted"), n) << + wxPLURAL("file deleted", "files deleted", n) << _T("\n"); } wxMessageBox(s);