Skip to content

Commit 3f63386

Browse files
committed
Set locale to US English
Should fix #103
1 parent 3ab44e0 commit 3f63386

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

keymapper/easykeymap/gui/easyapp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: UTF-8 -*-
33
#
44
# Easy AVR USB Keyboard Firmware Keymapper
5-
# Copyright (C) 2018 David Howland
5+
# Copyright (C) 2018-2021 David Howland
66
#
77
# This program is free software; you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
@@ -31,6 +31,7 @@ def OnInit(self):
3131
self.SetVendorName("dhowland")
3232
self.SetAppName("easykeymap")
3333
self.SetClassName("easykeymap")
34+
wx.Locale().Init(wx.LANGUAGE_ENGLISH_US)
3435
main_frame = MainFrame(None)
3536
self.SetTopWindow(main_frame)
3637
main_frame.Show(True)

0 commit comments

Comments
 (0)