forked from faker-js/faker
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: migrate locales to typescript (faker-js#238)
- Loading branch information
1 parent
b33d847
commit 944a978
Showing
3,568 changed files
with
163,433 additions
and
160,750 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 was deleted.
Oops, something went wrong.
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 @@ | ||
export default ['South Africa']; |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
import default_country from './default_country'; | ||
import postcode from './postcode'; | ||
|
||
const address: any = { | ||
default_country, | ||
postcode, | ||
}; | ||
|
||
export default address; |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
export default ['#####', '####']; |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
export default [ | ||
'082 ### ####', | ||
'084 ### ####', | ||
'083 ### ####', | ||
'065 ### ####', | ||
'082#######', | ||
'082 #######', | ||
]; |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
import formats from './formats'; | ||
|
||
const cell_phone: any = { | ||
formats, | ||
}; | ||
|
||
export default cell_phone; |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
import suffix from './suffix'; | ||
|
||
const company: any = { | ||
suffix, | ||
}; | ||
|
||
export default company; |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
export default ['Pty Ltd', 'Ltd', 'CC']; |
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 |
---|---|---|
@@ -1,12 +1,19 @@ | ||
import type { LocaleDefinition } from '../..'; | ||
import address from './address'; | ||
import cell_phone from './cell_phone'; | ||
import company from './company'; | ||
import internet from './internet'; | ||
import name from './name'; | ||
import phone_number from './phone_number'; | ||
|
||
const af_ZA: LocaleDefinition = { | ||
title: 'Afrikaans', | ||
address: require('./address'), | ||
internet: require('./internet'), | ||
phone_number: require('./phone_number'), | ||
cell_phone: require('./cell_phone'), | ||
company: require('./company'), | ||
address, | ||
cell_phone, | ||
company, | ||
internet, | ||
name, | ||
phone_number, | ||
}; | ||
|
||
export default af_ZA; |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
export default ['co.za', 'com', 'org.za', 'info', 'net.za']; |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
import domain_suffix from './domain_suffix'; | ||
|
||
const internet: any = { | ||
domain_suffix, | ||
}; | ||
|
||
export default internet; |
This file was deleted.
Oops, something went wrong.
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,113 @@ | ||
export default [ | ||
'Susan', | ||
'Monica', | ||
'Linda', | ||
'Elsa', | ||
'Susan', | ||
'Margaret', | ||
'Lisa', | ||
'Karen', | ||
'Helen', | ||
'Sandra', | ||
'Sara', | ||
'Kimberly', | ||
'Angelique', | ||
'Melissa', | ||
'Brenda', | ||
'Anna', | ||
'Annelie', | ||
'Katryn', | ||
'Amanda', | ||
'Stefanie', | ||
'Marie', | ||
'Janet', | ||
'Rosemarie', | ||
'Nicoleen', | ||
'Paula', | ||
'Robin', | ||
'Rita', | ||
'Edna', | ||
'Carmen', | ||
'Cindy', | ||
'Edith', | ||
'Ethel', | ||
'Ellen', | ||
'Elaine', | ||
'Charlotte', | ||
'Pauline', | ||
'Juanita', | ||
'Anita', | ||
'Rhonda', | ||
'Hazel', | ||
'Debbie', | ||
'Clara', | ||
'Lucille', | ||
'Eleanor', | ||
'Alicia', | ||
'Michele', | ||
'Geraldine', | ||
'Erika', | ||
'Bernice', | ||
'Audrey', | ||
'Yvonne', | ||
'Annette', | ||
'Renette', | ||
'Ida', | ||
'Melanie', | ||
'Jolanda', | ||
'Vanessa', | ||
'Alma', | ||
'Sue-Marie', | ||
'Elsa', | ||
'Carla', | ||
'Rosemary', | ||
'Wilma', | ||
'Kristin', | ||
'Natalie', | ||
'Charlene', | ||
'Melinda', | ||
'Maureen', | ||
'Tanya', | ||
'Marlene', | ||
'Heidi', | ||
'Lydia', | ||
'Vickie', | ||
'Nina', | ||
'Leona', | ||
'Jenny', | ||
'Sonia', | ||
'Kristina', | ||
'Erika', | ||
'Katrina', | ||
'Belinda', | ||
'Natasha', | ||
'Cecile', | ||
'Angie', | ||
'Lynda', | ||
'Amelia', | ||
'Monique', | ||
'Kayla', | ||
'Yvette', | ||
'Olivia', | ||
'Antoinette', | ||
'Bridgette', | ||
'Karla', | ||
'Leticia', | ||
'Krista', | ||
'Robyn', | ||
'Rosalie', | ||
'Bernadette', | ||
'Krystal', | ||
'Nadine', | ||
'Estelle', | ||
'Lynette', | ||
'Eloise', | ||
'Jana', | ||
'Kerry', | ||
'Jenna', | ||
'Tasha', | ||
'Sonja', | ||
'Elsa', | ||
'Elisa', | ||
'Kristie', | ||
]; |
Oops, something went wrong.