Fixed : notification text.
This commit is contained in:
parent
08d11e69a8
commit
f23dae3118
|
@ -107,10 +107,13 @@ class _DownloaderState extends State<Downloader> {
|
||||||
: context.t('Download complete'),
|
: context.t('Download complete'),
|
||||||
body: _cancelled
|
body: _cancelled
|
||||||
? context.t(
|
? context.t(
|
||||||
'Download of {0} has completed.',
|
'Download of {0} has been canceled.',
|
||||||
args: [widget.operatingSystem.name],
|
args: [widget.operatingSystem.name],
|
||||||
)
|
)
|
||||||
: context.t('Download cancelled.'),
|
: context.t(
|
||||||
|
'Download of {0} has completed.',
|
||||||
|
args: [widget.operatingSystem.name],
|
||||||
|
),
|
||||||
appName: 'Quickgui',
|
appName: 'Quickgui',
|
||||||
expireTimeoutMs: 10000, /* 10 seconds */
|
expireTimeoutMs: 10000, /* 10 seconds */
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue