Skip to content

Commit

Permalink
Add some missing translation strings. Closes #415.
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Nov 29, 2018
1 parent 9fcb139 commit 0eba8aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 7 additions & 1 deletion out/locale/en/LC_MESSAGES/default.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: HeidiSQL\n"
"POT-Creation-Date: 2012-11-05 21:40\n"
"PO-Revision-Date: 2018-11-26 16:37+0100\n"
"PO-Revision-Date: 2018-11-29 13:09+0100\n"
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/language/en/)\n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -6272,3 +6272,9 @@ msgstr "current value:"

msgid "No help available for this tab."
msgstr "No help available for this tab."

msgid "%0:d out of %1:d matching. %2:d hidden."
msgstr "%0:d out of %1:d matching. %2:d hidden."

msgid "Style Theme:"
msgstr "Style Theme:"
3 changes: 1 addition & 2 deletions source/main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7549,8 +7549,7 @@ procedure TMainForm.ApplyVTFilter(FromTimer: Boolean);
Node := VT.GetNext(Node);
end;
if rx.Expression <> '' then begin
lblFilterVTInfo.Caption := IntToStr(VisibleCount)+' out of '+IntToStr(VT.RootNodeCount)+' matching. '
+ IntToStr(VT.RootNodeCount - VisibleCount) + ' hidden.';
lblFilterVTInfo.Caption := f_('%0:d out of %1:d matching. %2:d hidden.', [VisibleCount, VT.RootNodeCount, VT.RootNodeCount - VisibleCount]);
end else
lblFilterVTInfo.Caption := '';

Expand Down

0 comments on commit 0eba8aa

Please sign in to comment.