Commit
a88ca6a8b9e8d0472c31beac327374b9ebdacb93
Authored by
tfmoraes
Exists in
master
and in
68 other branches
3d_inter_style, MIPs, beta3, beta4, brush_pix, canvas_reeng, canvas_text, casmoothing_cython, clean, command-line, cython_threshold, debian_cython, editor_improvements, encoding, ff_mask, ff_mask_improv, ffill_gui, ffill_segmentation, fill_holes_auto, fixes_pre_beta5, floodfill, get_pixel, import_mesh, interactor_style, inv3.0.1, invesalius-libift, mactoolbar, mactoolbar_bkp, manual_v3.1, mask_boolean_op, mask_boolean_op_bkp, mask_copy, mask_greatest_component, measure, measure_canvas, measure_improvements, measure_placement_test, measure_spacing, orientation, phoenix, region_growing_confidence, remote, remove_local_wxpython, rmatsuda-fix_ref_MTC, rmatsuda-fix_remove_marker_bug, rmatsuda-trigger_bug_fix, rotvol, segmentation_menu, select_part, smoothing_bin, smoothing_bin_pll, surface_area, threshold_history, user_guide_en, usp-navegador, vti, vtk6, watershed, watershed_improvements, watershed_improvements_bkp, watershed_merge, workdir, wwwlgui, wx2.9_mac, wxgtk3, wxgtk3_b5, wxgtk3_bkp, xmartlabs-command-line
FIX: using unicode in i18n
| @@ -29,9 +29,9 @@ import constants as const |
| @@ -29,9 +29,9 @@ import constants as const |
29
|
|
29
|
|
30
| def GetLocales():
|
30
| def GetLocales():
|
31
| """Return a dictionary which defines supported languages"""
|
31
| """Return a dictionary which defines supported languages"""
|
32
| - locale_descriptions = {'es':'Español',\
|
| |
33
| - 'en_GB':'English',\
|
| |
34
| - 'pt_BR':'Português (Brasil)'}
|
32
| + locale_descriptions = {'es': u'Español',
|
| |
33
| + 'en_GB': u'English',
|
| |
34
| + 'pt_BR': u'Português (Brasil)'}
|
35
| return locale_descriptions
|
35
| return locale_descriptions
|
36
|
|
36
|
|
37
| def GetLocaleOS(): |
37
| def GetLocaleOS(): |