Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Fix bad string key
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Etchells <[email protected]>
  • Loading branch information
Tim Etchells authored and tetchel committed Aug 28, 2019
1 parent 6efc9a4 commit 910b8b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/src/codewind/project/logs/MCLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default class MCLog implements vscode.QuickPickItem {
else {
notUpdatingReason = Translator.t(STRING_NS, "notUpdatingReasonDisabled");
}
const msg = "*".repeat(8) + Translator.t(STRING_NS, "logNoLongerUpdating", { reason: notUpdatingReason });
const msg = "*".repeat(8) + Translator.t(STRING_NS, "noLongerUpdating", { reason: notUpdatingReason });

this.output.appendLine(msg);
}
Expand Down

0 comments on commit 910b8b1

Please sign in to comment.