Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

archive: fix capitalization of message box titles

Changeset 30114e1aaeea

Parent a995ba14f694

by Yuki KODAMA

Changes to one file · Browse files at 30114e1aaeea Showing diff from parent a995ba14f694 Diff from another changeset...

 
295
296
297
298
 
299
300
301
302
 
303
304
305
306
307
308
309
 
310
311
312
313
314
315
 
316
317
318
 
295
296
297
 
298
299
300
301
 
302
303
304
305
306
307
308
 
309
310
311
312
313
314
 
315
316
317
318
@@ -295,24 +295,24 @@
  if os.path.exists(dest):   if type == 'files':   if os.path.isfile(dest): - qtlib.WarningMsgBox(_('Duplicate name'), + qtlib.WarningMsgBox(_('Duplicate Name'),   _('The destination "%s" already exists as a file!' % dest))   return False   elif os.listdir(dest): - if not qtlib.QuestionMsgBox(_('Confirm overwrite'), + if not qtlib.QuestionMsgBox(_('Confirm Overwrite'),   _('The directory "%s" is not empty!\n\n'   'Do you want to overwrite it?') % dest,   parent=self):   return False   else:   if os.path.isfile(dest): - if not qtlib.QuestionMsgBox(_('Confirm overwrite'), + if not qtlib.QuestionMsgBox(_('Confirm Overwrite'),   _('The file "%s" already exists!\n\n'   'Do you want to overwrite it?') % dest,   parent=self):   return False   else: - r = qtlib.WarningMsgBox(_('Duplicate name'), + r = qtlib.WarningMsgBox(_('Duplicate Name'),   _('The destination "%s" already exists as a folder!' % dest))   return False