Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py

changeset 3190
a9a94491c4fd
parent 3160
209a07d7e401
child 3302
e92f0dd51979
equal deleted inserted replaced
3189:9a21c547de5f 3190:a9a94491c4fd
104 self.process.start('hg', args) 104 self.process.start('hg', args)
105 procStarted = self.process.waitForStarted(5000) 105 procStarted = self.process.waitForStarted(5000)
106 if not procStarted: 106 if not procStarted:
107 E5MessageBox.critical( 107 E5MessageBox.critical(
108 self, 108 self,
109 self.trUtf8('Process Generation Error'), 109 self.tr('Process Generation Error'),
110 self.trUtf8( 110 self.tr(
111 'The process {0} could not be started. ' 111 'The process {0} could not be started. '
112 'Ensure, that it is in the search path.' 112 'Ensure, that it is in the search path.'
113 ).format('hg')) 113 ).format('hg'))
114 114
115 def __finish(self): 115 def __finish(self):
192 """ 192 """
193 Private slot to show some error. 193 Private slot to show some error.
194 194
195 @param out error to be shown (string) 195 @param out error to be shown (string)
196 """ 196 """
197 self.messageEdit.appendPlainText(self.trUtf8("Error: ")) 197 self.messageEdit.appendPlainText(self.tr("Error: "))
198 self.messageEdit.appendPlainText(out) 198 self.messageEdit.appendPlainText(out)

eric ide

mercurial