Skip to content

Commit

Permalink
feat(lang): Add Bulgarian language (#94)
Browse files Browse the repository at this point in the history
* feat(lang): Add Bulgarian language

* chore(locale): fix formatting for Bulgarian

---------

Co-authored-by: Jonas Thelemann <[email protected]>
  • Loading branch information
VentsislavBorislavov and dargmuesli authored May 5, 2023
1 parent 6abd9f1 commit 8ed4f86
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Nuxt Cookie Control](https://drive.google.com/a/broj42.com/uc?id=1FGQVyj2s0OT-gpTYxH_FuQhe6oU9iejW)


✅ Translated for: ar, az, cs, da, de, en, es, fi, fr, hr, hu, it, ja, ko, lt, nl, no, oc, pt, pl, ru, sk, sv, tr and uk
✅ Translated for: ar, az, bg, cs, da, de, en, es, fi, fr, hr, hu, it, ja, ko, lt, nl, no, oc, pt, pl, ru, sk, sv, tr and uk

✅ Vue 3 support

Expand Down
21 changes: 21 additions & 0 deletions src/runtime/locale/bg.ts
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
2 changes: 2 additions & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import ar from './ar'
import az from './az'
import bg from './bg'
import cs from './cs'
import da from './da'
import de from './de'
Expand Down Expand Up @@ -27,6 +28,7 @@ import uk from './uk'
export const locales = [
ar,
az,
bg,
cs,
da,
de,
Expand Down
1 change: 1 addition & 0 deletions src/runtime/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import en from './locale/en'
export type Locale =
| 'ar'
| 'az'
| 'bg'
| 'cs'
| 'da'
| 'de'
Expand Down

0 comments on commit 8ed4f86

Please sign in to comment.