@wxt-dev/i18n v0.2.0
github-actions
released this
04 Oct 23:12
·
59 commits
to main
since this release
🩹 Fixes
⚠️ Remove invalid options argument (#1048)
To upgrade, if you were passing a final options
argument, remove it. If you used the third argument to escape <
symbol... You'll need to do it yourself:
- i18n.t("someKey", ["sub1"], { escapeLt: true });
+ i18n.t("someKey", ["sub1"]).replaceAll("<", "<");
❤️ Contributors
- Aaron (@aklinker1)