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(locale): add lorem for uz_UZ_latin #2824

Merged
merged 6 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/locales/uz_UZ_latin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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';

Expand All @@ -15,6 +16,7 @@ const uz_UZ_latin: LocaleDefinition = {
commerce,
date,
location,
lorem,
metadata,
person,
};
Expand Down
12 changes: 12 additions & 0 deletions src/locales/uz_UZ_latin/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