Changes between Version 13 and Version 14 of DeveloperGuidelines/CodeConventions


Ignore:
Timestamp:
06/22/10 21:12:16 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/CodeConventions

    v13 v14  
    2525== Internationalisation ==
    2626
    27  * All user-visibbe strings should be Internationalised: {{{T("My string")}}}
     27 * All user-visible strings should be Internationalised: {{{T("My string")}}}
    2828  * Remember to {{{str()}}} them before concatenating with strings (such as HTML tags): {{{"<p>" + str(T("My String")) + "</p>"}}}
    2929 * All labels should be Internationalised in {{{controllers/module.py def resource()}}}: {{{table.field.label = T("My Label")}}}