Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.1, 2.1.2, and tip

stable archive: move template string outside of _()

Changeset 9cf3cfd917d9

Parent c3976be4c7b5

by Yuya Nishihara

Changes to one file · Browse files at 9cf3cfd917d9 Showing diff from parent c3976be4c7b5 Diff from another changeset...

 
313
314
315
316
 
317
318
319
 
331
332
333
334
 
335
336
337
 
313
314
315
 
316
317
318
319
 
331
332
333
 
334
335
336
337
@@ -313,7 +313,7 @@
  if os.path.isfile(dest):   qtlib.WarningMsgBox(_('Duplicate Name'),   _('The destination "%s" already exists as ' - 'a file!' % dest)) + 'a file!') % dest)   return False   elif os.listdir(dest):   if not qtlib.QuestionMsgBox(_('Confirm Overwrite'), @@ -331,7 +331,7 @@
  else:   qtlib.WarningMsgBox(_('Duplicate Name'),   _('The destination "%s" already exists as ' - 'a folder!' % dest)) + 'a folder!') % dest)   return False     # prepare command line