diff --git a/assets/locales/en.json b/assets/locales/en.json index a6dcd244f..eaa7733ab 100644 --- a/assets/locales/en.json +++ b/assets/locales/en.json @@ -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" } } diff --git a/src/webui/index.js b/src/webui/index.js index a56611db7..c85e4e80c 100644 --- a/src/webui/index.js +++ b/src/webui/index.js @@ -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') ] })