Skip to content

Commit a349dee

Browse files
author
Alexander
committed
feat(locale): add database for German (de)
1 parent 2f0ea79 commit a349dee

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

src/locales/de/database/column.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
export default [
2+
'id',
3+
'titel',
4+
'name',
5+
'email',
6+
'telefonnummer',
7+
'token',
8+
'gruppe',
9+
'kategorie',
10+
'passwort',
11+
'kommentar',
12+
'avatar',
13+
'status',
14+
'erstelltAm',
15+
'aktualisiertAm',
16+
'bearbeitetAm',
17+
'vorname',
18+
'nachname',
19+
'geburtsdatum',
20+
'artikelnummer',
21+
];

src/locales/de/database/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { DatabaseDefinition } from '../../..';
6+
import column from './column';
7+
8+
const database: DatabaseDefinition = {
9+
column,
10+
};
11+
12+
export default database;

src/locales/de/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
66
import cell_phone from './cell_phone';
77
import color from './color';
88
import company from './company';
9+
import database from './database';
910
import date from './date';
1011
import internet from './internet';
1112
import location from './location';
@@ -19,6 +20,7 @@ const de: LocaleDefinition = {
1920
cell_phone,
2021
color,
2122
company,
23+
database,
2224
date,
2325
internet,
2426
location,

0 commit comments

Comments
 (0)