Skip to content

Commit

Permalink
added south african names and details
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Salmon authored and Marak committed Sep 27, 2018
1 parent cce1dd0 commit 6b0c041
Show file tree
Hide file tree
Showing 48 changed files with 2,434 additions and 16 deletions.
3 changes: 3 additions & 0 deletions lib/locales/af_ZA/address/default_country.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module["exports"] = [
"South Africa"
];
4 changes: 4 additions & 0 deletions lib/locales/af_ZA/address/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
var address = {};
module['exports'] = address;
address.default_country = require("./default_country");
address.postcode = require("./postcode");
4 changes: 4 additions & 0 deletions lib/locales/af_ZA/address/postcode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module["exports"] = [
"#####",
"####"
];
8 changes: 8 additions & 0 deletions lib/locales/af_ZA/cell_phone/formats.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module["exports"] = [
"082 ### ####",
"084 ### ####",
"083 ### ####",
"065 ### ####",
"082#######",
"082 #######"
];
3 changes: 3 additions & 0 deletions lib/locales/af_ZA/cell_phone/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var cell_phone = {};
module['exports'] = cell_phone;
cell_phone.formats = require("./formats");
3 changes: 3 additions & 0 deletions lib/locales/af_ZA/company/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var company = {};
module['exports'] = company;
company.suffix = require("./suffix");
5 changes: 5 additions & 0 deletions lib/locales/af_ZA/company/suffix.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module["exports"] = [
"Pty Ltd",
"Ltd",
"CC"
];
8 changes: 8 additions & 0 deletions lib/locales/af_ZA/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var en_ZA = {};
module['exports'] = en_ZA;
en_ZA.title = "South Africa (Afrikaans)";
en_ZA.address = require("./address");
en_ZA.internet = require("./internet");
en_ZA.phone_number = require("./phone_number");
en_ZA.cell_phone = require("./cell_phone");
en_ZA.company = require("./company");
7 changes: 7 additions & 0 deletions lib/locales/af_ZA/internet/domain_suffix.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module["exports"] = [
"co.za",
"com",
"org.za",
"info",
"net.za"
];
3 changes: 3 additions & 0 deletions lib/locales/af_ZA/internet/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var internet = {};
module['exports'] = internet;
internet.domain_suffix = require("./domain_suffix");
113 changes: 113 additions & 0 deletions lib/locales/af_ZA/name/female_first_name.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
module["exports"] = [
"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"
];
Loading

0 comments on commit 6b0c041

Please sign in to comment.