forked from openlp/openlp
Make 2 texts translatable.
Remove unneeded quotes from commit message in the merge-script. bzr-revno: 2558
This commit is contained in:
commit
924d0f8b29
@ -473,8 +473,9 @@ class ProjectorManager(OpenLPMixin, RegistryMixin, QWidget, Ui_ProjectorManager,
|
|||||||
return
|
return
|
||||||
projector = list_item.data(QtCore.Qt.UserRole)
|
projector = list_item.data(QtCore.Qt.UserRole)
|
||||||
msg = QtGui.QMessageBox()
|
msg = QtGui.QMessageBox()
|
||||||
msg.setText('Delete projector (%s) %s?' % (projector.link.ip, projector.link.name))
|
msg.setText(translate('OpenLP.ProjectorManager', 'Delete projector (%s) %s?') % (projector.link.ip,
|
||||||
msg.setInformativeText('Are you sure you want to delete this projector?')
|
projector.link.name))
|
||||||
|
msg.setInformativeText(translate('OpenLP.ProjectorManager', 'Are you sure you want to delete this projector?'))
|
||||||
msg.setStandardButtons(msg.Cancel | msg.Ok)
|
msg.setStandardButtons(msg.Cancel | msg.Ok)
|
||||||
msg.setDefaultButton(msg.Cancel)
|
msg.setDefaultButton(msg.Cancel)
|
||||||
ans = msg.exec_()
|
ans = msg.exec_()
|
||||||
|
@ -129,7 +129,7 @@ for bug in bugs:
|
|||||||
commit_command.append('lp:' + bug)
|
commit_command.append('lp:' + bug)
|
||||||
|
|
||||||
commit_command.append('-m')
|
commit_command.append('-m')
|
||||||
commit_command.append('"' + commit_message + '"')
|
commit_command.append(commit_message)
|
||||||
|
|
||||||
commit_command.append('--author')
|
commit_command.append('--author')
|
||||||
commit_command.append('"' + author_email + '"')
|
commit_command.append('"' + author_email + '"')
|
||||||
|
Loading…
Reference in New Issue
Block a user