-
Notifications
You must be signed in to change notification settings - Fork 616
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add Hungarian language
magyar 🇭🇺
- Loading branch information
1 parent
53d636a
commit 037e9ed
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' | ||
} | ||
} | ||
}) |