Skip to content

Commit

Permalink
feat: add Hungarian locale (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcstarnai committed Apr 22, 2022
1 parent cbc99d0 commit 9b0d100
Show file tree
Hide file tree
Showing 38 changed files with 27,717 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/api/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ faker.locale = 'de';
| ge | Georgian |
| he | Hebrew |
| hr | Hrvatski |
| hu | Hungarian |
| hy | Armenian |
| id_ID | Indonesia |
| it | Italian |
Expand Down
19 changes: 19 additions & 0 deletions src/locale/hu.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/

import { Faker } from '../faker';
import en from '../locales/en';
import hu from '../locales/hu';

const faker = new Faker({
locale: 'hu',
localeFallback: 'en',
locales: {
hu,
en,
},
});

export = faker;
83 changes: 83 additions & 0 deletions src/locales/hu/animal/cat.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
export default [
'Abesszin',
'Alpine lynx',
'American lynx',
'Amerikai csonkafarkú',
'Amerikai drótszőrű',
'Amerikai görbefülű',
'Amerikai keuda',
'Amerikai rövid szőrű',
'Anatoli',
'Ausztrál köd',
'Ausztrál Tiffanie',
'Balinéz',
'Bengáli',
'Birman',
'Bohemian rex',
'Bombay',
'Bristol',
'Brit hosszú szőrű',
'Brit rövidszőrű',
'Burma',
'Burmilla',
'Chausie',
'Cheetoh',
'Colorpoint rövid szőrű',
'Colourpoint',
'Cornish rex',
'Cymric',
'Desert lynx',
'Devon rex',
'Doni szfinx',
'Egyiptomi mau',
'Európai rövidszőrű',
'Exotic',
'Foldex',
'German rex',
'Havanna',
'Highland lynx',
'Hócipős',
'Japán csonkafarkú',
'Jávai',
'Kaliforniai pettyes macska',
'Kanaani',
'Karthauzi',
'Keleti rövid szőrű',
'Korat',
'Kuril-szigeti csonkafarkú',
'La Perm',
'Maine Coon',
'Manx',
'Munchkin',
'Nebelung',
'Neva Masquarade',
'Norvég erdei macska',
'Ocicat',
'Ojos Azules',
'Orosz kék',
'Perzsa',
'Peterbald',
'Pixiebob',
'RagaMuffin',
'Ragdoll',
'Selkirk rex',
'Skót lógófülű',
'Sokoke',
'Szafari',
'Szavanna',
'Szerengeti',
'Szfinx',
'Sziámi macska',
'Szibériai',
'Szingapura',
'Szomáli',
'Thai',
'Tiffany',
'Tonkinéz',
'Toyger',
'Török angóramacska',
'Török Van',
'Ural rex',
'Vienna Woods',
'York',
];

0 comments on commit 9b0d100

Please sign in to comment.