Implemented following stuff

- Basic Material Design
- Default Component to see anything
- theme switching between light and dark
- language change between german and english
This commit is contained in:
2025-11-06 12:11:13 +01:00
parent 74823aeeeb
commit 46e5cd1e01
22 changed files with 5727 additions and 937 deletions

13
src/assets/i18n/de.json Normal file
View File

@@ -0,0 +1,13 @@
{
"APP": { "TITLE": "Playground" },
"WELCOME": {
"TITLE": "Willkommen 👋",
"SUB": "Angular 20 + Material",
"TEXT": "Das ist eine einfache Start-Komponente als Basis.",
"COUNTER": "Zähler",
"INC": "Inkrementieren",
"RESET": "Reset"
},
"THEME": { "LIGHT": "Hell", "DARK": "Dunkel" },
"LANG": { "LABEL": "Sprache", "EN": "Englisch", "DE": "Deutsch" }
}

13
src/assets/i18n/en.json Normal file
View File

@@ -0,0 +1,13 @@
{
"APP": { "TITLE": "Playground" },
"WELCOME": {
"TITLE": "Welcome 👋",
"SUB": "Angular 20 + Material",
"TEXT": "This is a simple start component.",
"COUNTER": "Counter",
"INC": "Increment",
"RESET": "Reset"
},
"THEME": { "LIGHT": "Light", "DARK": "Dark" },
"LANG": { "LABEL": "Language", "EN": "English", "DE": "Deutsch" }
}