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
Utilities
Kate
Commits
9ce7a0ee
Commit
9ce7a0ee
authored
Jan 22, 2021
by
Yunhe Guo
Browse files
Add missing HTML tag
parent
c66e0010
Changes
1
Hide whitespace changes
Inline
Side-by-side
addons/search/MatchModel.cpp
View file @
9ce7a0ee
...
...
@@ -479,9 +479,9 @@ QString MatchModel::infoHtmlString() const
QString
searchUrl
=
m_lastMatchUrl
.
toDisplayString
(
QUrl
::
PreferLocalFile
);
if
(
searchUrl
.
size
()
>
73
)
{
return
i18np
(
"<b><i>One match found, searching: ...%2</b>"
,
"<b><i>%1 matches found, searching: ...%2</b>"
,
matchesTotal
,
searchUrl
.
right
(
70
));
return
i18np
(
"<b><i>One match found, searching: ...%2</
i></
b>"
,
"<b><i>%1 matches found, searching: ...%2</
i></
b>"
,
matchesTotal
,
searchUrl
.
right
(
70
));
}
else
{
return
i18np
(
"<b><i>One match found, searching: %2</b>"
,
"<b><i>%1 matches found, searching: %2</b>"
,
matchesTotal
,
searchUrl
);
return
i18np
(
"<b><i>One match found, searching: %2</
i></
b>"
,
"<b><i>%1 matches found, searching: %2</
i></
b>"
,
matchesTotal
,
searchUrl
);
}
}
...
...
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