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
Multimedia
Kdenlive
Commits
e7f9686b
Commit
e7f9686b
authored
Nov 25, 2022
by
Jean-Baptiste Mardelle
Browse files
Missing i18n()
parent
6fe13d98
Pipeline
#274353
passed with stage
in 7 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/project/projectmanager.cpp
View file @
e7f9686b
...
...
@@ -651,11 +651,11 @@ void ProjectManager::doOpenFile(const QUrl &url, KAutoSaveFile *stale, bool isBa
doc
=
openResult
.
getDocument
().
release
();
doc
->
requestBackup
();
}
else
{
KMessageBox
::
error
(
pCore
->
window
(),
"Could not recover corrupted file."
);
KMessageBox
::
error
(
pCore
->
window
(),
i18n
(
"Could not recover corrupted file."
)
)
;
}
}
}
else
{
KMessageBox
::
detailedError
(
pCore
->
window
(),
"Could not open the backup project file."
,
openResult
.
getError
());
KMessageBox
::
detailedError
(
pCore
->
window
(),
i18n
(
"Could not open the backup project file."
)
,
openResult
.
getError
());
}
}
else
{
doc
=
openResult
.
getDocument
().
release
();
...
...
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