diff options
author | Alystrasz <contact@remyraes.com> | 2022-01-11 16:40:35 +0100 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-01-11 16:40:35 +0100 |
commit | fe6dd267136f09bab721d3f02d43b991ac2bad3d (patch) | |
tree | 62ce19dcba35d988b933e2b9114277018d1df1ab /src/utils.js | |
parent | 2682e37420b00d3c3add4ce22209205dab0af57f (diff) | |
download | Viper-fe6dd267136f09bab721d3f02d43b991ac2bad3d.tar.gz Viper-fe6dd267136f09bab721d3f02d43b991ac2bad3d.zip |
[refactor] adding translations for notification texts
Diffstat (limited to 'src/utils.js')
-rw-r--r-- | src/utils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.js b/src/utils.js index acda691..95e54e0 100644 --- a/src/utils.js +++ b/src/utils.js @@ -73,8 +73,8 @@ northstar_auto_updates: { if (await _isGameRunning()) { console.log('Not installing update since game is running.'); new Notification({ - title: "Northstar update available", - body: 'An update for Northstar is available.\nYou can force its installation after closing the game.' + title: lang("gui.nsupdate.gaming.title"), + body: lang("gui.nsupdate.gaming.body") }).show(); } else { console.log('Launching update process.'); |