Releases: lingualdev/i18n-check
Releases · lingualdev/i18n-check
v0.9.0
v0.9.0-beta.1
Full Changelog: v0.8.18...v0.9.0-beta.1
v0.8.19
Full Changelog: v0.8.18...v0.8.19
v0.8.18
What's Changed
- Enable to also parse JS and JSX files by @busypeoples in #113
Full Changelog: v0.8.17...v0.8.18
v0.8.17
What's Changed
The next-intl parser can now detect if a t function is defined via an argument:
const indirectFnCall = (
t: ReturnType<typeof useTranslations<'indirectNamespace'>>
) => {
const indirectTranslation = t('some_key');
// Do something with the indirectTranslation
};
// Some where in the code - the function is called
const indirectT1 = useTranslations('Indirect1');
indirectFnCall(indirectT1);This would detect that the key some_key is part of the indirectNamespace now.
- Extend next-intl parser to find functions with t by @busypeoples in #110
Full Changelog: v0.8.16...v0.8.17
v0.8.16
v0.8.15
v0.8.14
v0.8.13
What's Changed
- Replace Jest with Vitest by @busypeoples in #94
- Update dependencies by @busypeoples in #95
- Fix: Handle Single Locale File Gracefully by @vanenshi in #97
- Update dependencies by @busypeoples in #104
New Contributors
Full Changelog: v0.8.12...v0.8.13
v0.8.12
What's Changed
- Fix plurals handling related issues by @busypeoples in #93
Full Changelog: v0.8.11...v0.8.12