Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 86f6a4c

Browse files
Added a space between the number to the string for 'OccFound' (occurrences found) translation.
1 parent b7cfb89 commit 86f6a4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UI/MainWindowFindReplaceHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ private void Count()
280280
MatchCollection mc = regex.Matches(editor.editor.Text);
281281
count += mc.Count;
282282
}
283-
FindResultBlock.Text = count.ToString() + Program.Translations.GetLanguage("OccFound");
283+
FindResultBlock.Text = count.ToString() + " " + Program.Translations.GetLanguage("OccFound");
284284
}
285285

286286
private Regex GetSearchRegex()

0 commit comments

Comments
 (0)