From 6d631864e4b6de8cf76caf7a5831ff3b0e9616a6 Mon Sep 17 00:00:00 2001 From: Kiril Borisov Date: Sun, 19 Apr 2020 18:50:34 +0300 Subject: [PATCH] feat(locales): add Bulgarian locale (#240) --- src/locales/bg-BG.json | 30 ++++++++++++++++++++++++++++++ src/types/index.ts | 3 ++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 src/locales/bg-BG.json diff --git a/src/locales/bg-BG.json b/src/locales/bg-BG.json new file mode 100644 index 00000000..331eab6f --- /dev/null +++ b/src/locales/bg-BG.json @@ -0,0 +1,30 @@ +{ + "todayButton": "Днес", + "nextMonth": "Следващ месец", + "previousMonth": "Предишен месец", + "nextYear": "Следваща година", + "previousYear": "Предишна година", + "weekdays": [ + "Неделя", + "Понеделник", + "Вторник", + "Сряда", + "Четвъртък", + "Петък", + "Събота" + ], + "months": [ + "Януари", + "Февруари", + "Март", + "Април", + "Май", + "Юни", + "Юли", + "Август", + "Септември", + "Октомври", + "Ноември", + "Декември" + ] +} diff --git a/src/types/index.ts b/src/types/index.ts index 11f362c6..c1fa4303 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -28,7 +28,8 @@ export type LocaleOptions = | 'zn-CN' | 'he-IL' | 'tr-TR' - | 'nb-NO'; + | 'nb-NO' + | 'bg-BG'; export type PickedDayzedProps = Pick< DayzedProps,