Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.3, 2.0.4, and 2.0.5

stable bugreport, i18n: parameterize only the URL

It's not clear for a translator that the "%s"s will become
markups around "bug tracker".

Changeset 3dfa340583d5

Parent 79d3e0530fdf

by Wagner Bruna

Changes to one file · Browse files at 3dfa340583d5 Showing diff from parent 79d3e0530fdf Diff from another changeset...

 
23
24
25
26
27
28
 
 
 
29
30
31
 
23
24
25
 
 
 
26
27
28
29
30
31
@@ -23,9 +23,9 @@
  layout = QVBoxLayout()   self.setLayout(layout)   - lbl = QLabel(_('Please report this bug to our %s bug tracker %s') % - (u'<a href="http://bitbucket.org/tortoisehg/thg/wiki/BugReport">', - u'</a>')) + lbl = QLabel(_('Please report this bug to our ' + '<a href="%s">bug tracker</a>') % + u'http://bitbucket.org/tortoisehg/thg/wiki/BugReport')   lbl.setOpenExternalLinks(True)   self.layout().addWidget(lbl)