[lang] Fix minor inconsistency (#7714)

It should be "Not found." as in "Find next".
reviewable/pr7719/r1
Frans de Jonge 3 years ago committed by GitHub
parent a7f23efa65
commit 6e1950676a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -752,9 +752,9 @@ function InputDialog:_addScrollButtons(nav_bar)
local char_pos = self._input_widget:searchString(self.search_value, 1)
if char_pos > 0 then
self._input_widget:moveCursorToCharPos(char_pos)
msg = T(_("Found in line %1"), self._input_widget:getLineNums())
msg = T(_("Found in line %1."), self._input_widget:getLineNums())
else
msg = _("Not found")
msg = _("Not found.")
end
UIManager:show(Notification:new{
text = msg,

Loading…
Cancel
Save