Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Discover
Commits
b96515b7
Commit
b96515b7
authored
Mar 16, 2022
by
Nate Graham
Browse files
Correct grammar of "could not close Discover" message
This was a comma splice, which is grammatically incorrect in English.
parent
ef99bc5e
Pipeline
#151033
passed with stage
in 1 minute and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
discover/qml/DiscoverWindow.qml
View file @
b96515b7
...
...
@@ -145,7 +145,7 @@ Kirigami.ApplicationWindow
}
function
onPreventedClose
()
{
showPassiveNotification
(
i18n
(
"
Could not close Discover
, there are tasks that need to be done
.
"
),
20000
,
i18n
(
"
Quit Anyway
"
),
function
()
{
Qt
.
quit
()
})
showPassiveNotification
(
i18n
(
"
Could not close Discover
because some tasks are still in progress
.
"
),
20000
,
i18n
(
"
Quit Anyway
"
),
function
()
{
Qt
.
quit
()
})
}
function
onUnableToFind
(
resid
)
{
showPassiveNotification
(
i18n
(
"
Unable to find resource: %1
"
,
resid
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment