Files
ui/src/runtime/locale/az.ts
2025-07-10 14:18:36 +02:00

59 lines
1.3 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',
back: 'Geri'
},
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',
dots: 'Göstərmək üçün slayd seçin',
goto: 'Slayd {slide} keç'
},
modal: {
close: 'Bağla'
},
slideover: {
close: 'Bağla'
},
alert: {
close: 'Bağla'
},
table: {
noData: 'Məlumat yoxdur'
}
}
})