From 25a0af12cc8879823054e10128891d384f314c87 Mon Sep 17 00:00:00 2001 From: chris Date: Wed, 11 Dec 2024 07:59:41 +0100 Subject: [PATCH] Use language variables in customer views. --- lang/de/common.php | 4 ++++ resources/views/customer/index.blade.php | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lang/de/common.php b/lang/de/common.php index 00d5a59..bf3b15d 100644 --- a/lang/de/common.php +++ b/lang/de/common.php @@ -13,6 +13,9 @@ return [ */ 'Dashboard' => 'Dashboard', + 'Is active' => 'Aktiv', + 'Yes' => 'Ja', + 'No' => 'Nein', 'Name' => 'Name', 'Email' => 'Email', 'Password' => 'Passwort', @@ -20,6 +23,7 @@ return [ 'Address' => 'Adresse', 'Zip Code' => 'Postleitzahl', 'City' => 'Stadt', + 'Created at' => 'Erstellt am', 'You\'re logged in!' => 'Du bist angemeldet!', 'Confirm' => 'Bestätigen', 'Email Password Reset Link' => 'Email Passwort-Reset Link', diff --git a/resources/views/customer/index.blade.php b/resources/views/customer/index.blade.php index 9549fa7..4ff657e 100644 --- a/resources/views/customer/index.blade.php +++ b/resources/views/customer/index.blade.php @@ -36,9 +36,9 @@ -
Name
-
Email
-
Erstellt am
+
{{ __('common.Name') }}
+
{{ __('common.Email') }}
+
{{ __('common.Created at') }}