From 8cf68ade30ee9655a29c38d2f4372287331e7ebd Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Sat, 6 Oct 2018 18:02:13 +0200 Subject: [PATCH] Fix missing translation (references #85) --- localization/de.php | 1 + localization/no.php | 1 + views/components/productcard.blade.php | 2 +- views/productform.blade.php | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/localization/de.php b/localization/de.php index eb54a34d..8bf7e975 100644 --- a/localization/de.php +++ b/localization/de.php @@ -277,6 +277,7 @@ return array( 'Current instruction manual' => 'Aktuelle Bedienungsanleitung', 'No instruction manual available' => 'Keine Bedienungsanleitung vorhanden', 'The current instruction manual will be deleted when you save the equipment' => 'Die aktuelle Bedienungsanleitung wird beim Speichern des Geräts gelöscht', + 'No picture available' => 'Kein Bild vorhanden', //Constants 'manually' => 'Manuell', diff --git a/localization/no.php b/localization/no.php index ea02cb9f..ab8e71ba 100644 --- a/localization/no.php +++ b/localization/no.php @@ -277,6 +277,7 @@ return array( 'Current instruction manual' => 'Nåværende instruksjonsmanual', 'No instruction manual available' => 'Ingen instruksjonsmanual tilgjengelig', 'The current instruction manual will be deleted when you save the equipment' => 'Nåværende instruksjonsmanual vil bli slettet når du lagrer utstyret', + 'No picture available' => 'Ingen bilde tilgjengelig', //Constants 'manually' => 'Manuel', diff --git a/views/components/productcard.blade.php b/views/components/productcard.blade.php index f85ca6f1..32ea4d4a 100644 --- a/views/components/productcard.blade.php +++ b/views/components/productcard.blade.php @@ -17,7 +17,7 @@
{{ $L('Product picture') }}
- {{ $L('No picture') }} + {{ $L('No picture available') }}
{{ $L('Price history') }}
diff --git a/views/productform.blade.php b/views/productform.blade.php index f6c36fe6..c34c9721 100644 --- a/views/productform.blade.php +++ b/views/productform.blade.php @@ -133,7 +133,7 @@

{{ $L('The current picture will be deleted when you save the product') }}

@else -

{{ $L('No picture') }}

+

{{ $L('No picture available') }}

@endif