diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-10 23:04:25 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-10 23:04:25 +0900 |
commit | a1008121bf43fe5d17af5402d26e5ec1d2628d21 (patch) | |
tree | ddfd905680d147e3649b6671f84a030bc3e4e7a2 | |
parent | 45d721e46c9fb6a20ff7b7f845b910778e2e5197 (diff) |
Fix error grammar
-rw-r--r-- | src/background/presenters/Notifier.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/background/presenters/Notifier.ts b/src/background/presenters/Notifier.ts index 2cd3225..957572d 100644 --- a/src/background/presenters/Notifier.ts +++ b/src/background/presenters/Notifier.ts @@ -30,10 +30,10 @@ export class NotifierImpl implements NotifierImpl { } async notifyInvalidSettings(onclick: () => void): Promise<void> { - const title = `Loaded settings is invalid`; + const title = `Loading settings failed`; // eslint-disable-next-line max-len const message = - "The default settings is used due to the last saved settings is invalid. Check your current settings from the add-on preference"; + "The default settings are used due to the last saved settings is invalid. Check your current settings from the add-on preference"; const listener = (id: string) => { if (id !== NOTIFICATION_ID_INVALID_SETTINGS) { |