Hi, I modified the wxLua’s example with
none-English words:

frame = wx.wxFrame(wx.NULL, wx.wxID_ANY, "wxLua
Демо",
                   wx.wxDefaultPosition,
wx.wxSize(450, 450),
                   wx.wxDEFAULT_FRAME_STYLE)

-- create a simple file menu
local fileMenu = wx.wxMenu()
fileMenu:Append(wx.wxID_EXIT,
"И&зход",
"Изход от
програмата")
-- create a simple help menu
local helpMenu = wx.wxMenu()
helpMenu:Append(wx.wxID_ABOUT, "&За
нас",
                "Това е
тестово
приложение")

-- create a menu bar and append the file and help
menus
local menuBar = wx.wxMenuBar()
menuBar:Append(fileMenu,
"&Файл")
menuBar:Append(helpMenu,
"&Помощ")
-- attach the menu bar into the frame
frame:SetMenuBar(menuBar)

-- create a simple status bar
frame:CreateStatusBar(1)
frame:SetStatusText("Добре
дошли в wxLua.")

-- connect the selection event of the exit menu item
to an
-- event handler that closes the window
frame:Connect(wx.wxID_EXIT,
wx.wxEVT_COMMAND_MENU_SELECTED,
              function (event) frame:Close(true) end )
-- connect the selection event of the about menu item
frame:Connect(wx.wxID_ABOUT,
wx.wxEVT_COMMAND_MENU_SELECTED,
        function (event)
           
wx.wxMessageBox('Това е
за нас
бутона !!!!',
                            "About wxLua",
                            wx.wxOK +
wx.wxICON_INFORMATION,
                            frame)
        end )

-- finally, show the frame window
frame:Show(true)

Under Windows works fine, however when I started under
Linux, the none-English words disappeared.
Any ideas how this can be fixed?



      
____________________________________________________________________________________
Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to