Skip to content

Commit

Permalink
feat(lang): add bulgarian language
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones98 committed Mar 29, 2024
1 parent 97696b5 commit ccd3677
Show file tree
Hide file tree
Showing 4 changed files with 1,251 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/context/LanguageContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';

export type AvailableLocale =
| 'ar'
| 'bg'
| 'ca'
| 'cs'
| 'da'
Expand Down Expand Up @@ -34,6 +35,10 @@ type AvailableLanguageObject = Record<
>;

export const availableLanguages: AvailableLanguageObject = {
bg: {
code: 'bg',
display: 'Bulgarian',
},
ca: {
code: 'ca',
display: 'Català',
Expand Down
Loading

0 comments on commit ccd3677

Please sign in to comment.