From bdbfe3d70e3978e3d54aeba4e0614224d10d7ba5 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 12 Mar 2017 12:39:37 +0200 Subject: [PATCH] Workaround pl translation issue #613 --- resources/views/dashboard.blade.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index 3ff821d9f563..92c1101cd9c0 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -349,7 +349,11 @@ {{ trans('texts.activity') }} @if ($invoicesSent)
- {{ trans_choice('texts.invoices_sent', $invoicesSent) }} + @if (App::getLocale() == 'pl') + + @else + {{ trans_choice('texts.invoices_sent', $invoicesSent) }} + @endif
@endif