forked from openlp/openlp
Missed translate() string format
This commit is contained in:
parent
884f060dea
commit
d3d6e6c620
@ -224,7 +224,7 @@ class OpenLP(OpenLPMixin, QtWidgets.QApplication):
|
|||||||
return
|
return
|
||||||
message = translate('OpenLP',
|
message = translate('OpenLP',
|
||||||
'A backup of the data folder has been created'
|
'A backup of the data folder has been created'
|
||||||
'at {text}'.format(text=data_folder_backup_path))
|
'at {text}').format(text=data_folder_backup_path)
|
||||||
QtWidgets.QMessageBox.information(None, translate('OpenLP', 'Backup'), message)
|
QtWidgets.QMessageBox.information(None, translate('OpenLP', 'Backup'), message)
|
||||||
|
|
||||||
# Update the version in the settings
|
# Update the version in the settings
|
||||||
|
Loading…
Reference in New Issue
Block a user