-
-
Notifications
You must be signed in to change notification settings - Fork 949
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add database for German (de) (#2226)
- Loading branch information
inkedtree
authored
Jun 27, 2023
1 parent
2f0ea79
commit ee12c32
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters