| 254 | Sometimes the string might have different translation depending on the context (is it a verb or a noun? matching ending of a word for particular gender; etc). |
| 255 | To help translators, it is suggested to add a comment explaining the context of string. |
| 256 | The comment must start with GTC keyword and must be on a line before string: |
| 257 | {{{ |
| 258 | #!python |
| 259 | self.bwizard = wx.Button(..., |
| 260 | # GTC New location |
| 261 | label = _("N&ew")) |
| 262 | |
| 263 | # GTC %s will be replaced with name of current shell |
| 264 | grass.message(_("Running through %s") % shellname) |
| 265 | }}} |
| 266 | |
| 267 | See also locale/README for more information on translation process and related issues. |
| 268 | |