Files
ui/src/runtime/locale/az.ts
Alex a9c8eb3f60 feat(useLocale): handle generic messages (#3100)
Co-authored-by: hywax <me@hywax.space>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-03-10 18:37:28 +01:00

57 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'
export default defineLocale<Messages>({
name: 'Azərbaycanca',
code: 'az',
messages: {
inputMenu: {
noMatch: 'Uyğun məlumat tapılmadı',
noData: 'Məlumat yoxdur',
create: '"{label}" yarat'
},
calendar: {
prevYear: 'Əvvəlki il',
nextYear: 'Növbəti il',
prevMonth: 'Əvvəlki ay',
nextMonth: 'Növbəti ay'
},
inputNumber: {
increment: 'Artır',
decrement: 'Azalt'
},
commandPalette: {
placeholder: 'Əmr daxil edin və ya axtarın...',
noMatch: 'Uyğun məlumat tapılmadı',
noData: 'Məlumat yoxdur',
close: 'Bağla'
},
selectMenu: {
noMatch: 'Uyğun məlumat tapılmadı',
noData: 'Məlumat yoxdur',
create: '"{label}" yarat',
search: 'Axtar...'
},
toast: {
close: 'Bağla'
},
carousel: {
prev: 'Əvvəlki',
next: 'Növbəti',
goto: 'Slayd {slide} keç'
},
modal: {
close: 'Bağla'
},
slideover: {
close: 'Bağla'
},
alert: {
close: 'Bağla'
},
table: {
noData: 'Məlumat yoxdur'
}
}
})