English (South Africa) (en-ZA)
Complete reference for the en-ZA locale — live Intl API output, CLDR plural rules, and framework config snippets.
Reference locale
English (South Africa)
Metadata locale
Intl API Live Output
DateTimeFormat
NumberFormat
RelativeTimeFormat
Output for: -3 days ago
ListFormat
Conjunction list: apples, oranges, bananas
CLDR Plural Rules
Categories supported by en-ZA: one, other
1100Framework Config Snippets
// next-intl configuration
// next.config.ts
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
export default withNextIntl({});
// i18n/routing.ts
import { defineRouting } from 'next-intl/routing';
export const routing = defineRouting({
locales: ['en-ZA', 'en'],
defaultLocale: 'en',
});// react-intl configuration
import { IntlProvider } from 'react-intl';
import messages from './messages/en-ZA.json';
function App() {
return (
<IntlProvider locale="en-ZA" messages={messages}>
{/* your app */}
</IntlProvider>
);
}// i18next configuration
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
i18n
.use(initReactI18next)
.init({
lng: 'en-ZA',
fallbackLng: 'en',
resources: {
'en-ZA': {
translation: require('./locales/en-ZA/translation.json'),
},
},
});
export default i18n;Related Locales
English (South Africa) is supported by Better I18N
Add en-ZA to your project in seconds — no manual config required.
Další nástroje
Další bezplatné i18n nástroje
Bezplatné nástroje pro zbytek vašeho i18n workflow: data locale, zprávy ICU, formáty souborů a hreflang.
ICU Playground
Test ICU message syntax with live preview, multi-locale output, and error explanations
File Converter
Convert between JSON, PO, XLIFF, ARB, YAML, CSV, Android XML, iOS Strings, and Properties
Cost Calculator
Estimate localization costs with side-by-side comparison of human, AI, and Better I18N pricing
Hreflang Generator
Generate and validate hreflang tags for multilingual SEO in HTML, XML sitemap, or HTTP headers