Skip to content

Commit

Permalink
feat(locale): add database for German (de) (#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
inkedtree authored Jun 27, 2023
1 parent 2f0ea79 commit ee12c32
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/locales/de/database/column.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export default [
'id',
'titel',
'name',
'email',
'telefonnummer',
'token',
'gruppe',
'kategorie',
'passwort',
'kommentar',
'avatar',
'status',
'erstelltAm',
'aktualisiertAm',
'bearbeitetAm',
'vorname',
'nachname',
'geburtsdatum',
'artikelnummer',
];
12 changes: 12 additions & 0 deletions src/locales/de/database/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 { DatabaseDefinition } from '../../..';
import column from './column';

const database: DatabaseDefinition = {
column,
};

export default database;
2 changes: 2 additions & 0 deletions src/locales/de/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
import cell_phone from './cell_phone';
import color from './color';
import company from './company';
import database from './database';
import date from './date';
import internet from './internet';
import location from './location';
Expand All @@ -19,6 +20,7 @@ const de: LocaleDefinition = {
cell_phone,
color,
company,
database,
date,
internet,
location,
Expand Down

0 comments on commit ee12c32

Please sign in to comment.