-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lang): Add Bulgarian language (#94)
* feat(lang): Add Bulgarian language * chore(locale): fix formatting for Bulgarian --------- Co-authored-by: Jonas Thelemann <[email protected]>
- Loading branch information
1 parent
6abd9f1
commit 8ed4f86
Showing
4 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { LocaleStrings } from '../types' | ||
|
||
export default { | ||
accept: 'Приеми', | ||
acceptAll: 'Приеми всички', | ||
bannerDescription: | ||
'Ние използваме наши "бисквитки" и "бисквитки" от трети страни, за да можем да показваме правилно този уеб сайт и да разберем по-добре как се използва, с цел подобряване на предлаганите от нас услуги. Разрешението за използване на "бисквитки" може да бъде променено по всяко време, като се използва бутонът за бисквитки, който ще се появи след като бъде направен избор на този банер.', | ||
bannerTitle: '"Бисквитки"', | ||
close: 'Затвори', | ||
cookiesFunctional: 'Функционални "бисквитки"', | ||
cookiesNecessary: 'Нужни "бисквитки"', | ||
cookiesOptional: 'Незадължителни "бисквитки"', | ||
decline: 'Откажи', | ||
declineAll: 'Откажи всички', | ||
here: 'тук', | ||
iframeBlocked: | ||
'За да видите това, моля, позволете функционалните "бисквитки"', | ||
manageCookies: 'Вижте повече и настройте', | ||
save: 'Запази', | ||
settingsUnsaved: 'Имате незапазени настройки', | ||
} as LocaleStrings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ import en from './locale/en' | |
export type Locale = | ||
| 'ar' | ||
| 'az' | ||
| 'bg' | ||
| 'cs' | ||
| 'da' | ||
| 'de' | ||
|