mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 23:11:43 +01:00
Co-authored-by: hywax <me@hywax.space> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import type { Messages } from '../types'
|
|
import { defineLocale } from '../composables/defineLocale'
|
|
|
|
export default defineLocale<Messages>({
|
|
name: 'Magyar',
|
|
code: 'hu',
|
|
messages: {
|
|
inputMenu: {
|
|
noMatch: 'Nincs találat',
|
|
noData: 'Nincs adat',
|
|
create: '"{label}" létrehozása'
|
|
},
|
|
calendar: {
|
|
prevYear: 'Előző év',
|
|
nextYear: 'Következő év',
|
|
prevMonth: 'Előző hónap',
|
|
nextMonth: 'Következő hónap'
|
|
},
|
|
inputNumber: {
|
|
increment: 'Növel',
|
|
decrement: 'Csökkent'
|
|
},
|
|
commandPalette: {
|
|
placeholder: 'Írjon be egy parancsot vagy keressen...',
|
|
noMatch: 'Nincs találat',
|
|
noData: 'Nincs adat',
|
|
close: 'Bezárás'
|
|
},
|
|
selectMenu: {
|
|
noMatch: 'Nincs találat',
|
|
noData: 'Nincs adat',
|
|
create: '"{label}" létrehozása',
|
|
search: 'Keresés...'
|
|
},
|
|
toast: {
|
|
close: 'Bezárás'
|
|
},
|
|
carousel: {
|
|
prev: 'Előző',
|
|
next: 'Következő',
|
|
goto: 'Ugrás ide {slide}'
|
|
},
|
|
modal: {
|
|
close: 'Bezárás'
|
|
},
|
|
slideover: {
|
|
close: 'Bezárás'
|
|
},
|
|
alert: {
|
|
close: 'Bezárás'
|
|
},
|
|
table: {
|
|
noData: 'Nincs adat'
|
|
}
|
|
}
|
|
})
|