Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

gdialog: remove plural logic in Confirm dialog

As mentioned by Giampaolo Fadel, this is difficult to translate and
does not provide much benefit.

Changeset 1b8ec70bf7af

Parent 4769b614a189

by Steve Borho

Changes to one file · Browse files at 1b8ec70bf7af Showing diff from parent 4769b614a189 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​gdialog.py Stacked
 
79
80
81
82
 
83
84
85
 
79
80
81
 
82
83
84
85
@@ -79,7 +79,7 @@
  gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO)   self.set_title(hglib.toutf(title))   if primary is None: - primary = title + ' file' + ((len(files) > 1 and 's') or '') + '?' + primary = title + '?'   primary = '<b>' + primary + '</b>'   self.set_markup(hglib.toutf(primary))   message = ''