aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/settings.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-09-23 08:55:53 -0700
committerAlex Yatskov <alex@foosoft.net>2017-09-23 08:55:53 -0700
commitd13cb09fae53834baaac254d7b55d02a26f4a5c0 (patch)
treed42608cbf553c3e8ea4b3c32f028cbdb2e2e312f /ext/bg/js/settings.js
parent8d85321cf9a27ee87dfb76c4135aba4b9ae1ddf6 (diff)
improve error text for firefox
Diffstat (limited to 'ext/bg/js/settings.js')
-rw-r--r--ext/bg/js/settings.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/bg/js/settings.js b/ext/bg/js/settings.js
index 6a864dfb..a2f22371 100644
--- a/ext/bg/js/settings.js
+++ b/ext/bg/js/settings.js
@@ -182,15 +182,15 @@ function dictionaryErrorShow(error) {
const overrides = [
[
'A mutation operation was attempted on a database that did not allow mutations.',
- 'Access to IndexedDB is restricted; please change history settings to "Remember history" to use this extension'
+ 'Access to IndexedDB appears to be restricted. Firefox seems to require that the history preference is set to "Remember history" before IndexedDB use of any kind is allowed.'
],
[
'The operation failed for reasons unrelated to the database itself and not covered by any other error code.',
- 'Unable to access IndexedDB; please use the "Refresh Firefox" feature to reset your user profile'
+ 'Unable to access IndexedDB due to a possibly corrupt user profile. Try using the "Refresh Firefox" feature to reset your user profile.'
],
[
'BulkError',
- 'Unable to import dictionary data into IndexedDB; make sure you have sufficient disk space available'
+ 'Unable to finish importing dictionary data into IndexedDB. This may indicate that you do not have sufficient disk space available to complete this operation.'
]
];