Translate App into German

This commit is contained in:
2026-03-13 14:12:00 +01:00
parent 6360600eca
commit 780afb0c56
34 changed files with 477 additions and 304 deletions

View File

@@ -14,11 +14,11 @@ class _ProfileWidgetState extends State<ProfileWidget> {
Widget build(BuildContext context) {
return Consumer<AuthProvider>(
builder: (context, provider, child) {
final username = provider.username ?? "Unknown User";
final avatarText = username.length >= 3
? username.substring(0, 3).toUpperCase()
final username = provider.username ?? 'Unbekannter Benutzer';
final avatarText = username.length >= 3
? username.substring(0, 3).toUpperCase()
: username.toUpperCase();
return Column(
children: [
SizedBox(