Skip to content

Commit

Permalink
Fix default lang (#2698)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 authored Jan 24, 2024
1 parent 48c9e69 commit c9ec560
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/robotide/application/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def change_locale(self, message):
short_code = names[idx][1].replace('-', '_')
else:
code = wx.LANGUAGE_ENGLISH_WORLD
short_code = 'en_GB'
short_code = 'en_US.UTF-8' # 'en_GB'
del self._locale
self._locale = wx.Locale(code)
# print(f"DEBUG: application.py RIDE change_locale {idx=} {language=} {short_code=}")
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#
# Automatically generated by `tasks.py`.
VERSION = 'v2.1dev11'
VERSION = 'v2.1dev12'

0 comments on commit c9ec560

Please sign in to comment.