Skip to content

@wxt-dev/i18n v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Oct 23:12
· 59 commits to main since this release

compare changes

🩹 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("<", "&lt;");

❤️ Contributors