mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
feat(locale): add Hungarian language (#3129)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
55
src/runtime/locale/hu.ts
Normal file
55
src/runtime/locale/hu.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
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'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user