Skip to content

Commit 1a7c4f7

Browse files
committed
Fix accidentally unlocalised string in FindAndReplace plugin
1 parent 26b096b commit 1a7c4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/find-and-replace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ codeInput.plugins.FindAndReplace = class extends codeInput.Plugin {
240240
findRegExpCheckbox.title = this.instructions.findRegExp;
241241
findRegExpCheckbox.classList.add("code-input_find-and-replace_reg-exp-checkbox");
242242

243-
matchDescription.textContent = "Search for matches in your code.";
243+
matchDescription.textContent = this.instructions.start;
244244
matchDescription.classList.add("code-input_find-and-replace_match-description");
245245

246246

0 commit comments

Comments
 (0)