Skip to content

Commit

Permalink
feat(locale): add khmer translations (#18695)
Browse files Browse the repository at this point in the history
  • Loading branch information
chantouchsek committed Dec 6, 2023
1 parent 32ac0a1 commit e1d0e03
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ Currently Vuetify provides translations in the following languages:
- **id** - Indonesian (Indonesian)
- **it** - Italian (Italiano)
- **ja** - Japanese (日本語)
- **km** - Khmer (ខ្មែរ)
- **ko** - Korean (한국어)
- **lt** - Lithuanian (lietuvių kalba)
- **lv** - Latvian (latviešu valoda)
Expand Down
2 changes: 2 additions & 0 deletions packages/vuetify/src/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export { default as he } from './he'
export { default as id } from './id'
export { default as it } from './it'
export { default as ja } from './ja'
export { default as km } from './km'
export { default as ko } from './ko'
export { default as lv } from './lv'
export { default as lt } from './lt'
Expand Down Expand Up @@ -62,6 +63,7 @@ export const defaultRtl = {
id: false,
it: false,
ja: false,
km: false,
ko: false,
lv: false,
lt: false,
Expand Down
99 changes: 99 additions & 0 deletions packages/vuetify/src/locale/km.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
export default {
badge: 'ផ្លាក',
open: 'បើក',
close: 'បិទ',
confirmEdit: {
ok: 'យល់ព្រម',
cancel: 'បោះបង់',
},
dataIterator: {
noResultsText: 'មិនមានទិន្នន័យដែលត្រូវគ្នាទេ',
loadingText: 'កំពុងដំណើរការ...',
},
dataTable: {
itemsPerPageText: 'ជ្រើសរើសពត៌មានក្នុងមួយទំព័រ:',
ariaLabel: {
sortDescending: 'តំណទំហំចុះរួម។',
sortAscending: 'តំណទំហំឡើងរួម។',
sortNone: 'មិនចុះរួម។',
activateNone: 'ចុចដើម្បីដកតំណទំហំ។',
activateDescending: 'ចុចដើម្បីតំណទំហំចុះរួម។',
activateAscending: 'ចុចដើម្បីតំណទំហំឡើងរួម។',
},
sortBy: 'តម្រៀបតាម',
},
dataFooter: {
itemsPerPageText: 'ទំនិញក្នុងមួយទំព័រ:',
itemsPerPageAll: 'ទាំងអស់',
nextPage: 'ទំព័របន្ទាប់',
prevPage: 'ទំព័រមុន',
firstPage: 'ទំព័រដំបូង',
lastPage: 'ទំព័រចុងក្រោយ',
pageText: '{0}-{1} នៃ {2}',
},
dateRangeInput: {
divider: 'ដល់',
},
datePicker: {
itemsSelected: '{0} ត្រូវបានជ្រើសរើស',
range: {
title: 'ជ្រើសរើសកាលបរិច្ឆេទ',
header: 'បញ្ចូលកាលបរិច្ឆេទ',
},
title: 'ជ្រើសរើសកាលបរិច្ឆេទ',
header: 'បញ្ចូលកាលបរិច្ឆេទ',
input: {
placeholder: 'បញ្ចូលកាលបរិច្ឆេទ',
},
},
noDataText: 'គ្មានទិន្នន័យដែលមាន',
carousel: {
prev: 'រុករករូបភាពមុន',
next: 'រុករករូបភាពបន្ទាប់',
ariaLabel: {
delimiter: 'រូបភាពទី {0} នៃ {1} ក្នុងកម្រិតការរុករក',
},
},
calendar: {
moreEvents: '{0} ទៀត',
},
input: {
clear: 'សម្អាត {0}',
prependAction: '{0} សម្អាតសកម្ម',
appendAction: '{0} សម្អាតសកម្ម',
otp: 'សូមបញ្ចូលតួអក្សរ OTP {0}',
},
fileInput: {
counter: '{0} ឯកសារ',
counterSize: '{0} ឯកសារ ({1} សរុប)',
},
timePicker: {
am: 'ព្រឹក',
pm: 'ល្ងាច',
},
pagination: {
ariaLabel: {
root: 'ការរុករកទំព័រ',
next: 'ទំព័របន្ទាប់',
previous: 'ទំព័រមុន',
page: 'ទៅទំព័រ {0}',
currentPage: 'ទំព័រ {0}, ទំព័របច្ចុប្បន្ន',
first: 'ទំព័រដំបូង',
last: 'ទំព័រចុងក្រោយ',
},
},
stepper: {
next: 'បន្ទាប់',
prev: 'មុន',
},
rating: {
ariaLabel: {
item: 'ការវាយតម្លៃ {0} នៃ {1}',
},
},
loading: 'កំពុងដំណើរការ...',
infiniteScroll: {
loadMore: 'ទាញយកបន្ថែម',
empty: 'គ្មានទំព័រទៀត',
},
}

0 comments on commit e1d0e03

Please sign in to comment.