Fixed : notification text.

This commit is contained in:
Yannick Mauray 2022-02-24 23:40:55 +01:00
parent 08d11e69a8
commit f23dae3118
No known key found for this signature in database
GPG Key ID: 67C4AAC5E99CB909
1 changed files with 5 additions and 2 deletions

View File

@ -107,10 +107,13 @@ class _DownloaderState extends State<Downloader> {
: context.t('Download complete'),
body: _cancelled
? context.t(
'Download of {0} has completed.',
'Download of {0} has been canceled.',
args: [widget.operatingSystem.name],
)
: context.t('Download cancelled.'),
: context.t(
'Download of {0} has completed.',
args: [widget.operatingSystem.name],
),
appName: 'Quickgui',
expireTimeoutMs: 10000, /* 10 seconds */
);