diff options
author | Rémy Raes <contact@remyraes.com> | 2023-10-16 16:17:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 16:17:37 +0200 |
commit | 07ca1acee9a5f4227d18766b49b3fe6c8690e9a1 (patch) | |
tree | 824f2e659536dc9a5eb10f6e99bfb16da3d65647 /src-vue/src/i18n/lang | |
parent | 4ddf57e0024dcd70a39473b15bbe1a0e1f69db88 (diff) | |
download | FlightCore-07ca1acee9a5f4227d18766b49b3fe6c8690e9a1.tar.gz FlightCore-07ca1acee9a5f4227d18766b49b3fe6c8690e9a1.zip |
feat: Notification menu (#615)
Introduces a notification menu, which hosts notifications fired while the app was not focused.
Notifications can be closed by the user.
Diffstat (limited to 'src-vue/src/i18n/lang')
-rw-r--r-- | src-vue/src/i18n/lang/en.json | 5 | ||||
-rw-r--r-- | src-vue/src/i18n/lang/fr.json | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src-vue/src/i18n/lang/en.json b/src-vue/src/i18n/lang/en.json index 2bf18c2e..6fa6a965 100644 --- a/src-vue/src/i18n/lang/en.json +++ b/src-vue/src/i18n/lang/en.json @@ -146,6 +146,11 @@ }, "notification": { + "no_new": { + "title": "Up-to-date", + "text": "Nothing to see here!" + }, + "game_folder": { "new": { "title": "New game folder", diff --git a/src-vue/src/i18n/lang/fr.json b/src-vue/src/i18n/lang/fr.json index dbb34e80..c1ad181f 100644 --- a/src-vue/src/i18n/lang/fr.json +++ b/src-vue/src/i18n/lang/fr.json @@ -127,6 +127,11 @@ } }, "notification": { + "no_new": { + "title": "Vous êtes à jour", + "text": "Rien à voir par ici !" + }, + "game_folder": { "new": { "title": "Nouveau dossier", |