Fix wrong translations.

This commit is contained in:
2024-12-11 08:33:15 +01:00
parent 25a0af12cc
commit 64e11864d2
2 changed files with 4 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ return [
'Customers' => 'Kunden', 'Customers' => 'Kunden',
'Add new customer' => 'Neuer Kunde', 'Add new customer' => 'Neuer Kunde',
'Edit existing customer' => 'Bestehenden Kunden bearbeiten', 'Edit existing customer' => 'Bestehenden Kunden bearbeiten',
'Edit customer' => 'Kunde bearbeiten',
'Add new customer by clicking add' => 'Durch Klick auf "Anlegen" neuen Kunden erstellen', 'Add new customer by clicking add' => 'Durch Klick auf "Anlegen" neuen Kunden erstellen',
'Existing customers' => 'Bestehende Kunden', 'Existing customers' => 'Bestehende Kunden',
'Create new customer' => 'Neuen Kunden anlegen', 'Create new customer' => 'Neuen Kunden anlegen',
@@ -28,6 +29,6 @@ return [
'Delete Address' => 'Adresse löschen', 'Delete Address' => 'Adresse löschen',
'Are you sure you want to delete the address?' => 'Sicher, dass die Adresse gelöscht werden soll?', 'Are you sure you want to delete the address?' => 'Sicher, dass die Adresse gelöscht werden soll?',
'Once the address is deleted, all the ressources and data will be permanently deleted.' => 'Sobald die Adresse gelöscht wird, werden alle Ressourcen und Daten dauerhaft gelöscht.', 'Once the address is deleted, all the ressources and data will be permanently deleted.' => 'Sobald die Adresse gelöscht wird, werden alle Ressourcen und Daten dauerhaft gelöscht.',
'Enter your customer\'s address.' => 'Gib die Addresse des Kunden ein.', 'Enter your customer\'s address.' => 'Gib die Adresse des Kunden ein.',
]; ];

View File

@@ -1,7 +1,7 @@
<x-app-layout> <x-app-layout>
<x-slot name="header"> <x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"> <h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
{{ __('customer.Create new customer') }} {{ __('customer.Edit existing customer') }}
</h2> </h2>
</x-slot> </x-slot>
@@ -13,7 +13,7 @@
<section> <section>
<header> <header>
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100"> <h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
{{ __('customer.New customer') }} {{ __('customer.Edit customer') }}
</h2> </h2>
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400"> <p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
{{ __("customer.Enter your customer's information and email address.") }} {{ __("customer.Enter your customer's information and email address.") }}