Skip to content

Commit 6add7ca

Browse files
chzclaude
andcommitted
feat(i18n): add 🇦🇿 Azerbaijani language support
Add full Azerbaijani (az) locale with az-AZ country variant. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3ff7798 commit 6add7ca

3 files changed

Lines changed: 761 additions & 0 deletions

File tree

‎config/i18n.ts‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ export const countryLocaleVariants: Record<string, (LocaleObjectData & { country
3333
// { code: 'ar-AE', name: 'Arabic (U.A.E.)' },
3434
// { code: 'ar-YE', name: 'Arabic (Yemen)' },
3535
],
36+
az: [
37+
// az.json contains az-AZ translations
38+
{ country: true, code: 'az-AZ', name: 'Azərbaycanca' },
39+
],
3640
en: [
3741
// en.json contains en-US translations
3842
{ country: true, code: 'en-US', name: 'English (US)' },
@@ -94,6 +98,11 @@ const locales: (Omit<LocaleObjectData, 'code'> & { code: string })[] = [
9498
return { zero: 0, one: 1, two: 2, few: 3, many: 4, other: 5 }[name]
9599
},
96100
} satisfies LocaleObjectData,
101+
{
102+
code: 'az',
103+
file: 'az.json',
104+
name: 'Azərbaycanca',
105+
},
97106
/*{
98107
code: 'ckb',
99108
file: 'ckb.json',

‎i18n/locales/az-AZ.json‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)