Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Cantor
Commits
a06a5d68
Commit
a06a5d68
authored
Sep 15, 2019
by
Yuri Chornoivan
Browse files
Add missing spaces
parent
ac6077e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/backends/julia/juliabackend.cpp
View file @
a06a5d68
...
...
@@ -98,7 +98,7 @@ bool JuliaBackend::requirementsFullfilled(QString* const reason) const
if
(
info
.
isSymLink
())
{
if
(
reason
)
*
reason
=
i18n
(
"The path to Julia specified in the application settings must point directly to the executable. Symlinks are not allowed."
*
reason
=
i18n
(
"The path to Julia specified in the application settings must point directly to the executable. Symlinks are not allowed.
"
"Please provide the correct path in the application settings and try again."
);
return
false
;
}
...
...
src/lib/backend.cpp
View file @
a06a5d68
...
...
@@ -196,7 +196,7 @@ bool Backend::checkExecutable(const QString& name, const QString& path, QString*
if
(
!
info
.
isExecutable
())
{
if
(
reason
)
*
reason
=
i18n
(
"The specified file '%1' doesn't point to an executable."
*
reason
=
i18n
(
"The specified file '%1' doesn't point to an executable.
"
"Please provide the correct path in the application settings and try again."
,
path
,
name
);
return
false
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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