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 postreview, i18n: fix message splitting

gettext stops parsing at the first '+', truncating the message.

Changeset 81f2cd973e0a

Parent 3dfa340583d5

by Wagner Bruna

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

 
36
37
38
39
40
41
42
 
 
 
 
43
44
45
 
36
37
38
 
 
 
 
39
40
41
42
43
44
45
@@ -36,10 +36,10 @@
  msg = _("Invalid Settings - Please provide your ReviewBoard username")   else:   rb = extensions.find("reviewboard") - plugin_msg = _("Invalid reviewboard plugin. Please download the " + - "mercurial reviewboard plugin version 3.5 or higher " + - "from the website below.\n\n" + - "http://bitbucket.org/mdelagra/mercurial-reviewboard/") + plugin_msg = _("Invalid reviewboard plugin. Please download the " + "mercurial reviewboard plugin version 3.5 or higher " + "from the website below.\n\n %s") % + u'http://bitbucket.org/mdelagra/mercurial-reviewboard/'   try:   if float(rb.__version__[:3]) < 3.5:   msg = plugin_msg