|
| 1 | +import type { LocaleDefinition } from '../types' |
| 2 | + |
| 3 | +export const en: LocaleDefinition = { |
| 4 | + title: 'English', |
| 5 | + person: { |
| 6 | + firstName: [ |
| 7 | + 'James', 'John', 'Robert', 'Michael', 'William', 'David', 'Richard', 'Joseph', 'Thomas', 'Charles', |
| 8 | + 'Mary', 'Patricia', 'Jennifer', 'Linda', 'Elizabeth', 'Barbara', 'Susan', 'Jessica', 'Sarah', 'Karen', |
| 9 | + 'Emma', 'Olivia', 'Ava', 'Isabella', 'Sophia', 'Mia', 'Charlotte', 'Amelia', 'Harper', 'Evelyn', |
| 10 | + 'Liam', 'Noah', 'Oliver', 'Elijah', 'Lucas', 'Mason', 'Logan', 'Alexander', 'Ethan', 'Jacob', |
| 11 | + ], |
| 12 | + lastName: [ |
| 13 | + 'Smith', 'Johnson', 'Williams', 'Brown', 'Jones', 'Garcia', 'Miller', 'Davis', 'Rodriguez', 'Martinez', |
| 14 | + 'Hernandez', 'Lopez', 'Gonzalez', 'Wilson', 'Anderson', 'Thomas', 'Taylor', 'Moore', 'Jackson', 'Martin', |
| 15 | + 'Lee', 'Perez', 'Thompson', 'White', 'Harris', 'Sanchez', 'Clark', 'Ramirez', 'Lewis', 'Robinson', |
| 16 | + ], |
| 17 | + prefix: ['Mr.', 'Mrs.', 'Ms.', 'Miss', 'Dr.', 'Prof.'], |
| 18 | + suffix: ['Jr.', 'Sr.', 'I', 'II', 'III', 'IV', 'V', 'MD', 'PhD', 'DDS'], |
| 19 | + gender: ['Male', 'Female', 'Non-binary', 'Agender', 'Bigender', 'Genderfluid', 'Genderqueer'], |
| 20 | + jobTitle: [ |
| 21 | + 'Software Engineer', 'Product Manager', 'Designer', 'Data Scientist', 'DevOps Engineer', |
| 22 | + 'Marketing Manager', 'Sales Representative', 'Accountant', 'Human Resources Manager', 'CEO', |
| 23 | + 'CTO', 'CFO', 'COO', 'Director', 'Manager', 'Analyst', 'Consultant', 'Administrator', |
| 24 | + 'Coordinator', 'Specialist', 'Developer', 'Architect', 'Engineer', 'Technician', 'Assistant', |
| 25 | + ], |
| 26 | + }, |
| 27 | + address: { |
| 28 | + street: [ |
| 29 | + 'Main', 'Oak', 'Maple', 'Cedar', 'Elm', 'Washington', 'Lake', 'Hill', 'Park', 'River', |
| 30 | + 'Sunset', 'Pine', 'Walnut', 'Highland', 'Madison', 'Lincoln', 'Jackson', 'Franklin', |
| 31 | + ], |
| 32 | + city: [ |
| 33 | + 'New York', 'Los Angeles', 'Chicago', 'Houston', 'Phoenix', 'Philadelphia', 'San Antonio', |
| 34 | + 'San Diego', 'Dallas', 'San Jose', 'Austin', 'Jacksonville', 'Fort Worth', 'Columbus', |
| 35 | + 'Charlotte', 'San Francisco', 'Indianapolis', 'Seattle', 'Denver', 'Boston', 'Nashville', |
| 36 | + ], |
| 37 | + state: [ |
| 38 | + 'Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', |
| 39 | + 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', |
| 40 | + 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', |
| 41 | + 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', |
| 42 | + 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', |
| 43 | + 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', |
| 44 | + 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', |
| 45 | + 'Wisconsin', 'Wyoming', |
| 46 | + ], |
| 47 | + stateAbbr: [ |
| 48 | + 'AL', 'AK', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE', 'FL', 'GA', 'HI', 'ID', 'IL', 'IN', 'IA', |
| 49 | + 'KS', 'KY', 'LA', 'ME', 'MD', 'MA', 'MI', 'MN', 'MS', 'MO', 'MT', 'NE', 'NV', 'NH', 'NJ', |
| 50 | + 'NM', 'NY', 'NC', 'ND', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VT', |
| 51 | + 'VA', 'WA', 'WV', 'WI', 'WY', |
| 52 | + ], |
| 53 | + country: [ |
| 54 | + 'United States', 'Canada', 'United Kingdom', 'Australia', 'Germany', 'France', 'Spain', |
| 55 | + 'Italy', 'Japan', 'China', 'India', 'Brazil', 'Mexico', 'Russia', 'South Korea', |
| 56 | + ], |
| 57 | + countryCode: ['US', 'CA', 'GB', 'AU', 'DE', 'FR', 'ES', 'IT', 'JP', 'CN', 'IN', 'BR', 'MX', 'RU', 'KR'], |
| 58 | + zipCode: ['#####', '#####-####'], |
| 59 | + buildingNumber: ['###', '####', '#', '##'], |
| 60 | + direction: ['North', 'East', 'South', 'West', 'Northeast', 'Northwest', 'Southeast', 'Southwest'], |
| 61 | + streetSuffix: [ |
| 62 | + 'Street', 'Avenue', 'Road', 'Boulevard', 'Drive', 'Court', 'Circle', 'Lane', 'Way', |
| 63 | + 'Place', 'Terrace', 'Parkway', 'Commons', 'Trail', 'Square', 'Run', 'Crossing', |
| 64 | + ], |
| 65 | + }, |
| 66 | + company: { |
| 67 | + name: [ |
| 68 | + 'TechCorp', 'GlobalSoft', 'DataSystems', 'CloudNet', 'Innovate Inc', 'Digital Solutions', |
| 69 | + 'NextGen Tech', 'FutureTech', 'SmartSystems', 'CoreTech', 'PrimeSoft', 'AlphaTech', |
| 70 | + ], |
| 71 | + suffix: ['Inc', 'LLC', 'Corp', 'Group', 'Ltd', 'Co', 'Technologies', 'Solutions', 'Systems'], |
| 72 | + industry: [ |
| 73 | + 'Technology', 'Finance', 'Healthcare', 'Education', 'Retail', 'Manufacturing', |
| 74 | + 'Telecommunications', 'Energy', 'Real Estate', 'Transportation', 'Media', 'Hospitality', |
| 75 | + ], |
| 76 | + buzzwords: [ |
| 77 | + 'synergize', 'leverage', 'innovate', 'disrupt', 'optimize', 'streamline', 'transform', |
| 78 | + 'revolutionize', 'empower', 'enable', 'facilitate', 'orchestrate', 'integrate', |
| 79 | + ], |
| 80 | + adjective: [ |
| 81 | + 'revolutionary', 'cutting-edge', 'innovative', 'next-generation', 'advanced', 'leading', |
| 82 | + 'premier', 'world-class', 'enterprise', 'scalable', 'robust', 'seamless', |
| 83 | + ], |
| 84 | + descriptor: [ |
| 85 | + 'global', 'digital', 'cloud-based', 'AI-powered', 'data-driven', 'user-centric', |
| 86 | + 'agile', 'secure', 'efficient', 'intelligent', 'automated', 'integrated', |
| 87 | + ], |
| 88 | + noun: [ |
| 89 | + 'solution', 'platform', 'system', 'service', 'technology', 'framework', 'infrastructure', |
| 90 | + 'application', 'network', 'portal', 'ecosystem', 'architecture', 'engine', |
| 91 | + ], |
| 92 | + }, |
| 93 | + internet: { |
| 94 | + domainSuffix: ['com', 'net', 'org', 'io', 'co', 'app', 'dev', 'tech', 'ai', 'cloud'], |
| 95 | + freeEmail: ['gmail.com', 'yahoo.com', 'hotmail.com', 'outlook.com', 'icloud.com', 'proton.me'], |
| 96 | + }, |
| 97 | + phone: { |
| 98 | + formats: [ |
| 99 | + '###-###-####', |
| 100 | + '(###) ###-####', |
| 101 | + '1-###-###-####', |
| 102 | + '+1-###-###-####', |
| 103 | + '###.###.####', |
| 104 | + ], |
| 105 | + }, |
| 106 | +} |
0 commit comments