diff --git a/website/docs/intl-messageformat.md b/website/docs/intl-messageformat.md index 1b09f3f723..a89a7e2a0d 100644 --- a/website/docs/intl-messageformat.md +++ b/website/docs/intl-messageformat.md @@ -88,7 +88,7 @@ The message syntax that this package uses is not proprietary, in fact it's a com This package assumes that the [`Intl`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl) global object exists in the runtime. `Intl` is present in all modern browsers (IE11+) and Node (with full ICU). The `Intl` methods we rely on are: 1. `Intl.NumberFormat` for number formatting (can be polyfilled using [@formatjs/intl-numberformat](./polyfills/intl-numberformat.md)) -2. `Intl.DateTimeFormat` for date time formatting (can be polyfilled using [Intl.js](https://github.com/andyearnshaw/Intl.js/)) +2. `Intl.DateTimeFormat` for date time formatting (can be polyfilled using [@formatjs/intl-datetimeformat](./polyfills/intl-datetimeformat.md)) 3. `Intl.PluralRules` for plural/ordinal formatting (can be polyfilled using [@formatjs/intl-pluralrules](./polyfills/intl-pluralrules.md)) ### Loading Intl MessageFormat in a browser diff --git a/website/docs/react-intl.md b/website/docs/react-intl.md index 686a569b57..0c97b8de41 100644 --- a/website/docs/react-intl.md +++ b/website/docs/react-intl.md @@ -26,7 +26,7 @@ React Intl relies on these `Intl` APIs: If you need to support older browsers, we recommend you do the following: 1. Polyfill `Intl.NumberFormat` with [`@formatjs/intl-numberformat`](polyfills/intl-numberformat.md). -2. Polyfill `Intl.DateTimeFormat` with https://github.com/formatjs/date-time-format-timezone +2. Polyfill `Intl.DateTimeFormat` with [`@formatjs/intl-datetimeformat`](polyfills/intl-datetimeformat.md) 3. If you're supporting browsers that do not have [`Intl.PluralRules`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/PluralRules) (e.g IE11 & Safari 12-), include this [polyfill](polyfills/intl-pluralrules.md) in your build. ```tsx diff --git a/website/docs/runtime-requirements.md b/website/docs/runtime-requirements.md index db4c7ec825..2a5da79224 100644 --- a/website/docs/runtime-requirements.md +++ b/website/docs/runtime-requirements.md @@ -19,8 +19,8 @@ React Intl relies on these `Intl` APIs: If you need to support older browsers, we recommend you do the following: -1. Polyfill `Intl.NumberFormat` with https://github.com/andyearnshaw/Intl.js -2. Polyfill `Intl.DateTimeFormat` with https://github.com/formatjs/date-time-format-timezone +1. Polyfill `Intl.NumberFormat` with [@formatjs/intl-numberformat](polyfills/intl-numberformat.md) +2. Polyfill `Intl.DateTimeFormat` with [@formatjs/intl-datetimeformat](polyfills/intl-datetimeformat.md) 3. If you're supporting browsers that do not have [Intl.PluralRules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/PluralRules) (e.g IE11 & Safari 12-), include this [polyfill](polyfills/intl-pluralrules.md) in your build. ```tsx