openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #28195
[Merge] lp:~thelinuxguy/openlp/fix-delete-songs into lp:openlp
Simon Hanna has proposed merging lp:~thelinuxguy/openlp/fix-delete-songs into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~thelinuxguy/openlp/fix-delete-songs/+merge/281704
CodecForTr was dropped in Qt5
The deletion of songs still depended on that.
Just a minor edit to drop the dependency
--
Your team OpenLP Core is requested to review the proposed merge of lp:~thelinuxguy/openlp/fix-delete-songs into lp:openlp.
=== modified file 'openlp/plugins/songs/lib/mediaitem.py'
--- openlp/plugins/songs/lib/mediaitem.py 2015-12-31 22:46:06 +0000
+++ openlp/plugins/songs/lib/mediaitem.py 2016-01-05 23:00:07 +0000
@@ -363,8 +363,8 @@
items = self.list_view.selectedIndexes()
if QtWidgets.QMessageBox.question(
self, UiStrings().ConfirmDelete,
- translate('SongsPlugin.MediaItem', 'Are you sure you want to delete the %n selected song(s)?', '',
- QtCore.QCoreApplication.CodecForTr, len(items)),
+ translate('SongsPlugin.MediaItem',
+ 'Are you sure you want to delete the "%d" selected song(s)?') % len(items),
QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No),
QtWidgets.QMessageBox.Yes) == QtWidgets.QMessageBox.No:
return
Follow ups