mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Remove trans_choice
This commit is contained in:
parent
0b67376577
commit
4c03b24283
@ -663,7 +663,8 @@ $LANG = array(
|
|||||||
'valid_until' => 'Valid Until',
|
'valid_until' => 'Valid Until',
|
||||||
'reset_terms' => 'Reset terms',
|
'reset_terms' => 'Reset terms',
|
||||||
'reset_footer' => 'Reset footer',
|
'reset_footer' => 'Reset footer',
|
||||||
'invoices_sent' => ':count invoice sent|:count invoices sent',
|
'invoice_sent' => ':count invoice sent',
|
||||||
|
'invoices_sent' => ':count invoices sent',
|
||||||
'status_draft' => 'Draft',
|
'status_draft' => 'Draft',
|
||||||
'status_sent' => 'Sent',
|
'status_sent' => 'Sent',
|
||||||
'status_viewed' => 'Viewed',
|
'status_viewed' => 'Viewed',
|
||||||
|
@ -384,10 +384,10 @@
|
|||||||
<i class="glyphicon glyphicon-exclamation-sign"></i> {{ trans('texts.activity') }}
|
<i class="glyphicon glyphicon-exclamation-sign"></i> {{ trans('texts.activity') }}
|
||||||
@if ($invoicesSent)
|
@if ($invoicesSent)
|
||||||
<div class="pull-right" style="font-size:14px;padding-top:4px">
|
<div class="pull-right" style="font-size:14px;padding-top:4px">
|
||||||
@if (in_array(App::getLocale(), ['pl', 'cs', 'hr', 'lt']))
|
@if ($invoicesSent == 1)
|
||||||
<!-- https://github.com/invoiceninja/invoiceninja/issues/613 -->
|
{{ trans('texts.invoice_sent', ['count' => $invoicesSent]) }}
|
||||||
@else
|
@else
|
||||||
{{ trans_choice('texts.invoices_sent', $invoicesSent) }}
|
{{ trans('texts.invoices_sent', ['count' => $invoicesSent]) }}
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user