-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFakeNameGeneratorNameSet.php
More file actions
50 lines (43 loc) · 1.2 KB
/
Copy pathFakeNameGeneratorNameSet.php
File metadata and controls
50 lines (43 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Created by PhpStorm.
* User: RAMS
* Date: 25.03.2019
* Time: 9:59
*/
namespace FakeNameGenerator;
class FakeNameGeneratorNameSet
{
const AMERICAN = 'us';
const ARABIC = 'ar';
const AUSTRALIAN = 'au';
const BRAZIL = 'br';
const CHECHEN = 'celat';
const CHINESE = "ch";
const CROATIAN = "hr";
const CZECH = "cs";
const DANISH = "dk";
const DUTCH = "nl";
const ENGLAND = "en";
const ERITREAN = "er";
const FINNISH = "fi";
const FRENCH = "fr";
const GERMAN = "gr";
const GREENLAND = "gl";
const HISPANIC = "sp";
const HOBBIT = "hobbit";
const HUNGARIAN = "hu";
const ICELANDIC = "is";
const IGBO = "ig";
const ITALIAN = "it";
const JAPANESE = "jpja";
const NORWEGIAN = "no";
const PERSIAN = "fa";
const POLISH = "pl";
const RUSSIAN = "ru";
const SCOTTISH = "gd";
const SLOVENIAN = "sl";
const SWEDISH = "sw";
const THAI = "th";
const VIETNAMESE = "vn";
}