Commit 8f15128e9874c87b694cb9b28af1a1d7327b9864

Authored by Paulo Henrique Junqueira Amorim
1 parent d8aec8f5

ADD: French options

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
invesalius/gui/language_dialog.py
@@ -52,7 +52,7 @@ class LanguageDialog(wx.Dialog): @@ -52,7 +52,7 @@ class LanguageDialog(wx.Dialog):
52 bmp_brazilian_flag = wx.Bitmap(os.path.join(ICON_DIR, "pt_BR.bmp"), wx.BITMAP_TYPE_BMP) 52 bmp_brazilian_flag = wx.Bitmap(os.path.join(ICON_DIR, "pt_BR.bmp"), wx.BITMAP_TYPE_BMP)
53 bmp_spanish_flag = wx.Bitmap(os.path.join(ICON_DIR, "es.bmp"), wx.BITMAP_TYPE_BMP) 53 bmp_spanish_flag = wx.Bitmap(os.path.join(ICON_DIR, "es.bmp"), wx.BITMAP_TYPE_BMP)
54 54
55 - bitmapCmb.Append(self.locales[0], bmp_french_flag,"fr_FR") 55 + bitmapCmb.Append(self.locales[0], bmp_french_flag,"fr")
56 bitmapCmb.Append(self.locales[1], bmp_english_flag,"en_GB") 56 bitmapCmb.Append(self.locales[1], bmp_english_flag,"en_GB")
57 bitmapCmb.Append(self.locales[2], bmp_brazilian_flag,"pt_BR") 57 bitmapCmb.Append(self.locales[2], bmp_brazilian_flag,"pt_BR")
58 bitmapCmb.Append(self.locales[3], bmp_spanish_flag,"es") 58 bitmapCmb.Append(self.locales[3], bmp_spanish_flag,"es")