Change button label for less conflict

This commit is contained in:
Kovid Goyal 2020-09-05 14:17:53 +05:30
parent 471deb052e
commit 138745a85a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -406,7 +406,7 @@ class HighlightsPanel(QWidget):
b.clicked.connect(target)
return b
self.edit_button = button('edit_input.png', _('Edit'), _('Edit the selected highlight'), self.edit_highlight)
self.edit_button = button('edit_input.png', _('Modify'), _('Modify the selected highlight'), self.edit_highlight)
self.remove_button = button('trash.png', _('Delete'), _('Delete the selected highlights'), self.remove_highlight)
self.export_button = button('save.png', _('Export'), _('Export all highlights'), self.export)
h.addWidget(self.edit_button), h.addWidget(self.remove_button), h.addWidget(self.export_button)