Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(locale) Add bulgarian localization #12649

Merged
merged 4 commits into from
Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions packages/vuetify/src/locale/bg.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
export default {
badge: 'Значка',
close: 'Затвори',
dataIterator: {
noResultsText: 'Не са намерени записи',
loadingText: 'Зареждане на елементи...',
},
dataTable: {
itemsPerPageText: 'Редове на страница:',
ariaLabel: {
sortDescending: 'Подреди в намаляващ ред.',
sortAscending: 'Подреди в нарастващ ред.',
sortNone: 'Без подредба.',
activateNone: 'Активирай за премахване на подредбата.',
activateDescending: 'Активирай за подредба в намаляващ ред.',
activateAscending: 'Активирай за подредба в нарастващ ред.',
},
sortBy: 'Сортирай по',
},
dataFooter: {
itemsPerPageText: 'Елементи на страница:',
itemsPerPageAll: 'Всички',
nextPage: 'Следваща страница',
prevPage: 'Предишна страница',
firstPage: 'Първа страница',
lastPage: 'Последна страница',
pageText: '{0}-{1} от {2}',
},
datePicker: {
itemsSelected: '{0} избрани',
nextMonthAriaLabel: 'Следващ месец',
nextYearAriaLabel: 'Следващата година',
prevMonthAriaLabel: 'Предишен месец',
prevYearAriaLabel: 'Предишна година',
},
noDataText: 'Няма налични данни',
carousel: {
prev: 'Предишна визуализация',
next: 'Следваща визуализация',
ariaLabel: {
delimiter: 'Кадър {0} от {1} на въртележката',
},
},
calendar: {
moreEvents: 'Още {0}',
},
fileInput: {
counter: '{0} файла',
counterSize: '{0} файла ({1} общо)',
},
timePicker: {
am: 'AM',
pm: 'PM',
},
pagination: {
ariaLabel: {
wrapper: 'Странициране',
next: 'Следваща страница',
previous: 'Предишна страница',
page: 'Отиди на страница {0}',
currentPage: 'Текуща страница, Страница {0}',
},
},
}
1 change: 1 addition & 0 deletions packages/vuetify/src/locale/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { default as af } from './af'
export { default as ar } from './ar'
export { default as bg } from './bg'
export { default as ca } from './ca'
export { default as ckb } from './ckb'
export { default as cs } from './cs'
Expand Down