Skip to content

Commit

Permalink
style: improved helptext
Browse files Browse the repository at this point in the history
dedicated button labels remove any ambiguity
  • Loading branch information
lidel committed Feb 1, 2022
1 parent c51823e commit 9561bc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion assets/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@
},
"unresponsiveWindowDialog": {
"title": "IPFS Desktop became unresponsive",
"message": "Do you wish to forcefully reload the app?"
"message": "Ongoing operation is taking more resources than expected. Do you wish to abort, and forcefully reload the interface?",
"forceReload": "Yes, reload",
"doNothing": "Do nothing"
}
}
4 changes: 2 additions & 2 deletions src/webui/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ const createWindow = () => {
title: i18n.t('unresponsiveWindowDialog.title'),
message: i18n.t('unresponsiveWindowDialog.message'),
buttons: [
i18n.t('ok'),
i18n.t('cancel')
i18n.t('unresponsiveWindowDialog.forceReload'),
i18n.t('unresponsiveWindowDialog.doNothing')
]
})

Expand Down

0 comments on commit 9561bc4

Please sign in to comment.