Skip to content

Commit

Permalink
feat: add more arabic names dataset (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
wael-fadlallah committed Apr 5, 2022
1 parent 955ea43 commit b3a9abc
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/locales/ar/name/female_first_name.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export default [
'فاطمه',
'خلود',
'عوضية',
'عنود',
'عنود',
'نوف',
'ريم',
'اروي',
'براءة',
'بتول',
'بلسم',
];
6 changes: 6 additions & 0 deletions src/locales/ar/name/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { NameDefinitions } from '../../..';
import female_first_name from './female_first_name';
import first_name from './first_name';
import last_name from './last_name';
import male_first_name from './male_first_name';
import name_ from './name';
import prefix from './prefix';
import suffix from './suffix';
import title from './title';

const name: Partial<NameDefinitions> = {
female_first_name,
first_name,
last_name,
male_first_name,
name: name_,
prefix,
suffix,
title,
};

Expand Down
12 changes: 12 additions & 0 deletions src/locales/ar/name/male_first_name.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default [
'محمد',
'أحمد',
'حسن',
'خالد',
'محسن',
'على',
'ابراهيم',
'كمال',
'عبد الله',
'مصعب',
];
1 change: 1 addition & 0 deletions src/locales/ar/name/suffix.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['المحترم', 'المبجل', 'حفظه الله', 'الموقر'];

0 comments on commit b3a9abc

Please sign in to comment.