Changes between Version 5 and Version 6 of Submitting/wxGUI


Ignore:
Timestamp:
Jan 23, 2016, 8:22:33 AM (8 years ago)
Author:
wenzeslaus
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Submitting/wxGUI

    v5 v6  
    4747
    4848== Documentation and comments ==
    49 
    50 == Documentation and comments ==
    5149Some information about docstrings:
    5250
     
    9290(needed for wxPython >= 2.9).
    9391
     92For translatable strings use underscore:
     93
     94{{{
     95#!python
     96_("User visible text")
     97}}}
     98
     99The underscore function must be explicitly imported:
     100
     101{{{
     102#!python
     103from core.utils import _
     104}}}
     105
    94106== Testing ==
    95107