Browse Source

i18n cleanup

subparsing
chriskiehl 9 years ago
parent
commit
a8295a717d
1 changed files with 2 additions and 2 deletions
  1. 4
      gooey/tests/i18n_unittest.py

4
gooey/tests/i18n_unittest.py

@ -16,10 +16,10 @@
# #
# i18n.load('english') # i18n.load('english')
# self.assertTrue(i18n._DICTIONARY is not None) # self.assertTrue(i18n._DICTIONARY is not None)
# self.assertEqual('Cancel', i18n.translate('cancel'))
# self.assertEqual('Cancel', i18n._('cancel'))
# #
# i18n.load('french') # i18n.load('french')
# self.assertEqual('Annuler', i18n.translate('cancel'))
# self.assertEqual('Annuler', i18n._('cancel'))
# #
# #
# def test_i18n_throws_exception_on_no_lang_file_found(self): # def test_i18n_throws_exception_on_no_lang_file_found(self):

Loading…
Cancel
Save