Skip to content

Commit

Permalink
Change wording of delete profile confirmation
Browse files Browse the repository at this point in the history
fixes #6851
  • Loading branch information
feerrenrut committed Feb 13, 2017
1 parent aabbbd7 commit 7e10e05
Showing 1 changed file with 3 additions and 3 deletions.
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."),
# 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

0 comments on commit 7e10e05

Please sign in to comment.