diff --git a/assets/javascripts/templates/error_tmpl.coffee b/assets/javascripts/templates/error_tmpl.coffee index 884efd25..e0f15847 100644 --- a/assets/javascripts/templates/error_tmpl.coffee +++ b/assets/javascripts/templates/error_tmpl.coffee @@ -6,19 +6,19 @@ error = (title, text = '', links = '') -> back = 'Go back' app.templates.notFoundPage = -> - error """ Oops, that page doesn't exist. """, + error """ Page not found. """, """ It may be missing from the source documentation or this could be a bug. """, back app.templates.pageLoadError = -> - error """ Oops, the page failed to load. """, + error """ The page failed to load. """, """ It may be missing from the server (try reloading the app) or you could be offline.
If you keep seeing this, you're likely behind a proxy or firewall that blocks cross-domain requests. """, """ #{back} · Reload · Retry """ app.templates.bootError = -> - error """ Oops, the app failed to load. """, + error """ The app failed to load. """, """ Check your Internet connection and try reloading.
If you keep seeing this, you're likely behind a proxy or firewall that blocks cross-domain requests. """ @@ -33,7 +33,7 @@ app.templates.offlineError = (reason) -> """ Unfortunately Safari's implementation of IndexedDB is badly broken.
This message will automatically go away when Apple fix their code. """ - error """ Oops, offline mode is unavailable. """, + error """ Offline mode is unavailable. """, """ DevDocs requires IndexedDB to cache documentations for offline access.
#{reason} """ app.templates.unsupportedBrowser = """ diff --git a/assets/javascripts/templates/notif_tmpl.coffee b/assets/javascripts/templates/notif_tmpl.coffee index 779d5099..c307100b 100644 --- a/assets/javascripts/templates/notif_tmpl.coffee +++ b/assets/javascripts/templates/notif_tmpl.coffee @@ -16,7 +16,7 @@ app.templates.notifError = -> You can also report this issue on GitHub. """ app.templates.notifQuotaExceeded = -> - textNotif """ Oops, the offline database has exceeded its size limitation. """, + textNotif """ The offline database has exceeded its size limitation. """, """ Unfortunately this quota can't be detected programmatically, and the database can't be opened while over the quota, so it had to be reset. """ app.templates.notifInvalidLocation = ->