# i18next v26.4.1 - Product: i18next (https://whatsnew.fyi/product/i18next) - Vendor: i18next - Date: 2026-09-01 - Version: v26.4.1 - Original notes: https://github.com/i18next/i18next/releases/tag/v26.4.1 - Permalink: https://whatsnew.fyi/product/i18next/releases/v26.4.1 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **fixed** — the selector-form keyPrefix overload of getFixedT() is now available under enableSelector: 'strict' - fix(types): the selector-form `keyPrefix` overload of `getFixedT()` is now available under `enableSelector: 'strict'`. Its constraint was gated on `true | 'optimize'` only, so under `'strict'` it collapsed to `never`, the overload dropped out, and the returned `t` silently lost its `keyPrefix` scope (`t(($) => $.deep)` failed with `Property 'deep' does not exist on type '{}'`). The same call already typechecked under `true` and `'optimize'`. Thanks @hovelopin ([#2446](https://github.com/i18next/i18next/pull/2446)).