diff options
| author | Robin van der Vliet <[email protected]> | 2023-08-26 14:35:01 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-26 12:35:01 +0000 |
| commit | d91057ddfd36b15af783ab6bcb1d679cf5202347 (patch) | |
| tree | a37de4501c5350680cc0110f8d6ead4cf9955459 /src/locales/eo/database | |
| parent | b103c63e72738c0437e60519d735a4ee1936954d (diff) | |
| download | faker-d91057ddfd36b15af783ab6bcb1d679cf5202347.tar.xz faker-d91057ddfd36b15af783ab6bcb1d679cf5202347.zip | |
feat(locale): add Esperanto (#2230)
Diffstat (limited to 'src/locales/eo/database')
| -rw-r--r-- | src/locales/eo/database/column.ts | 12 | ||||
| -rw-r--r-- | src/locales/eo/database/index.ts | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/locales/eo/database/column.ts b/src/locales/eo/database/column.ts new file mode 100644 index 00000000..084ff296 --- /dev/null +++ b/src/locales/eo/database/column.ts @@ -0,0 +1,12 @@ +export default [ + 'identigilo', + 'titolo', + 'nomo', + 'telefonnumero', + 'grupo', + 'kategorio', + 'pasvorto', + 'komento', + 'profilbildo', + 'stato', +]; diff --git a/src/locales/eo/database/index.ts b/src/locales/eo/database/index.ts new file mode 100644 index 00000000..181778e0 --- /dev/null +++ b/src/locales/eo/database/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { DatabaseDefinition } from '../../..'; +import column from './column'; + +const database: DatabaseDefinition = { + column, +}; + +export default database; |
