Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(lorem): seed AR lorem #2147

Merged
merged 14 commits into from
Aug 4, 2023
Merged
2 changes: 2 additions & 0 deletions src/locales/ar/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import color from './color';
import commerce from './commerce';
import date from './date';
import location from './location';
import lorem from './lorem';
import metadata from './metadata';
import person from './person';
import phone_number from './phone_number';
Expand All @@ -20,6 +21,7 @@ const ar: LocaleDefinition = {
commerce,
date,
location,
lorem,
metadata,
person,
phone_number,
Expand Down
12 changes: 12 additions & 0 deletions src/locales/ar/lorem/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LoremDefinition } from '../../..';
import words from './words';

const lorem: LoremDefinition = {
words,
};

export default lorem;
Loading