What problem does it solve? Building applications for a global audience requires handling translations, locale-specific formatting, Unicode text, and right-to-left layouts, which is error-prone when done ad hoc. This Skill provides structured guidance for setting up internationalization correctly from the start. ## Core Features & Use Cases - i18n Framework Setup: Configure i18next with react-i18next, including translation resources, fallback languages, and interpolation. - Locale-Aware Formatting: Format numbers, currencies, and dates using the Intl API for any locale. - RTL and Direction Support: Detect text direction and render right-to-left layouts for languages like Arabic and Hebrew. - Use Case: You are adding Spanish and Arabic support to a React app. Use this Skill to wire up i18next, translate UI strings with interpolation, format prices per locale, and flip the layout direction for Arabic users. ## Quick Start Set up i18next with react-i18next in my React app with English and Spanish translations and locale-aware date formatting.