Skip to content

Commit 9babf10

Browse files
authored
feat(i18n): add german translations (JhaSourav07#1001)
1 parent a0e2593 commit 9babf10

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ yarn-error.log*
3333
# env files — ignore all local secrets but commit the example template
3434
.env*
3535
!.env.local.example
36-
36+
.env.local
3737
# vercel
3838
.vercel
3939

app/customize/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export const LANGUAGES = [
5959
{ value: 'ko', label: 'Korean' },
6060
{ value: 'fr', label: 'French' },
6161
{ value: 'ja', label: 'Japanese' },
62+
{ value: 'de', label: 'German' },
6263
] as const satisfies readonly { value: string; label: string }[];
6364

6465
export type Language = (typeof LANGUAGES)[number]['value'];

0 commit comments

Comments
 (0)