From d617a723975e04fd9b7bf7001a3676e5a0940f28 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Thu, 19 Dec 2019 20:03:27 +0100 Subject: [PATCH] Again small localization string changes (references #421) --- localization/strings.pot | 5 ++++- views/stockdetail.blade.php | 4 ++-- views/stockedit.blade.php | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/localization/strings.pot b/localization/strings.pot index f78fdef0..ca92d964 100644 --- a/localization/strings.pot +++ b/localization/strings.pot @@ -1586,7 +1586,7 @@ msgstr "" msgid "Show stock entries" msgstr "" -msgid "Stock entry" +msgid "Stock entries" msgstr "" msgid "Best before date" @@ -1606,3 +1606,6 @@ msgstr "" msgid "Stock entry successfully updated" msgstr "" + +msgid "Edit stock entry" +msgstr "" diff --git a/views/stockdetail.blade.php b/views/stockdetail.blade.php index 81680a73..344bbec4 100644 --- a/views/stockdetail.blade.php +++ b/views/stockdetail.blade.php @@ -1,6 +1,6 @@ @extends('layout.default') -@section('title', $__t('Stock entry')) +@section('title', $__t('Stock entries')) @section('activeNav', 'stockdetail') @section('viewJsName', 'stockdetail') @@ -114,7 +114,7 @@ data-product-id="{{ $currentStockEntry->product_id }}" data-location-id="{{ $currentStockEntry->location_id }}" data-id="{{ $currentStockEntry->id }}"> - {{ $__t('Stock edit') }} + {{ $__t('Edit stock entry') }} diff --git a/views/stockedit.blade.php b/views/stockedit.blade.php index 6a0a9c76..65fa9e3d 100644 --- a/views/stockedit.blade.php +++ b/views/stockedit.blade.php @@ -1,6 +1,6 @@ @extends('layout.default') -@section('title', $__t('Stock edit')) +@section('title', $__t('Edit stock entry')) @section('activeNav', 'stockedit') @section('viewJsName', 'stockedit')