diff --git a/ftl/qt/addons.ftl b/ftl/qt/addons.ftl index 07ed57887..66a689938 100644 --- a/ftl/qt/addons.ftl +++ b/ftl/qt/addons.ftl @@ -65,3 +65,4 @@ addons-delete-the-numd-selected-addon = *[other] Delete the { $count } selected add-ons? } addons-choose-update-window-title = Update Add-ons +addons-choose-update-update-all = Update All diff --git a/qt/aqt/addons.py b/qt/aqt/addons.py index 4a25c41fa..07a83a4bd 100644 --- a/qt/aqt/addons.py +++ b/qt/aqt/addons.py @@ -1160,9 +1160,8 @@ class ChooseAddonsToUpdateList(QListWidget): qconnect(self.customContextMenuRequested, self.on_context_menu) def setup(self) -> None: - header_item = QListWidgetItem("", self) + header_item = QListWidgetItem(tr.addons_choose_update_update_all(), self) header_item.setFlags(Qt.ItemFlag(Qt.ItemIsUserCheckable | Qt.ItemIsEnabled)) - header_item.setBackground(Qt.lightGray) self.header_item = header_item for update_info in self.updated_addons: addon_id = update_info.id