Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/gui/configProfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ def onDelete(self, evt):
index = self.profileList.Selection
if gui.messageBox(
# Translators: The confirmation prompt displayed when the user requests to delete a configuration profile.
_("Are you sure you want to delete this profile? This cannot be undone."),
_("This profile will be permanently deleted, this action cannot be undone."),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please split this into two sentences; i.e. "This profile will be permanently deleted. This action cannot be undone."

# Translators: The title of the confirmation dialog for deletion of a configuration profile.
_("Confirm Deletion"),
wx.YES | wx.NO | wx.ICON_QUESTION, self
) == wx.NO:
wx.OK | wx.CANCEL | wx.ICON_QUESTION, self
) != wx.OK:
return
name = self.profileNames[index]
try:
Expand Down