mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Update capitalization
This commit is contained in:
parent
96ab1e84d5
commit
22d3bb6c07
@ -670,6 +670,8 @@ $LANG = array(
|
|||||||
'status_viewed' => 'Viewed',
|
'status_viewed' => 'Viewed',
|
||||||
'status_partial' => 'Partial',
|
'status_partial' => 'Partial',
|
||||||
'status_paid' => 'Paid',
|
'status_paid' => 'Paid',
|
||||||
|
'status_unpaid' => 'Unpaid',
|
||||||
|
'status_all' => 'All',
|
||||||
'show_line_item_tax' => 'Display <b>line item taxes inline</b>',
|
'show_line_item_tax' => 'Display <b>line item taxes inline</b>',
|
||||||
'iframe_url' => 'Website',
|
'iframe_url' => 'Website',
|
||||||
'iframe_url_help1' => 'Copy the following code to a page on your site.',
|
'iframe_url_help1' => 'Copy the following code to a page on your site.',
|
||||||
@ -1013,7 +1015,7 @@ $LANG = array(
|
|||||||
|
|
||||||
'pro_plan_remove_logo' => ':link to remove the Invoice Ninja logo by joining the Pro Plan',
|
'pro_plan_remove_logo' => ':link to remove the Invoice Ninja logo by joining the Pro Plan',
|
||||||
'pro_plan_remove_logo_link' => 'Click here',
|
'pro_plan_remove_logo_link' => 'Click here',
|
||||||
'invitation_status_sent' => 'Sent',
|
'invitation_status_sent' => 'sent',
|
||||||
'invitation_status_opened' => 'Openend',
|
'invitation_status_opened' => 'Openend',
|
||||||
'invitation_status_viewed' => 'Viewed',
|
'invitation_status_viewed' => 'Viewed',
|
||||||
'email_error_inactive_client' => 'Emails can not be sent to inactive clients',
|
'email_error_inactive_client' => 'Emails can not be sent to inactive clients',
|
||||||
|
@ -121,11 +121,11 @@
|
|||||||
|
|
||||||
<div id="statusField" style="display:{{ in_array($reportType, [ENTITY_INVOICE, ENTITY_PRODUCT]) ? 'block' : 'none' }}">
|
<div id="statusField" style="display:{{ in_array($reportType, [ENTITY_INVOICE, ENTITY_PRODUCT]) ? 'block' : 'none' }}">
|
||||||
{!! Former::select('invoice_status')->label('status')
|
{!! Former::select('invoice_status')->label('status')
|
||||||
->addOption(trans('texts.all'), 'all')
|
->addOption(trans('texts.status_all'), 'all')
|
||||||
->addOption(trans('texts.draft'), 'draft')
|
->addOption(trans('texts.status_draft'), 'draft')
|
||||||
->addOption(trans('texts.sent'), 'sent')
|
->addOption(trans('texts.status_sent'), 'sent')
|
||||||
->addOption(trans('texts.unpaid'), 'unpaid')
|
->addOption(trans('texts.status_unpaid'), 'unpaid')
|
||||||
->addOption(trans('texts.paid'), 'paid') !!}
|
->addOption(trans('texts.status_paid'), 'paid') !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="dateField" style="display:{{ $reportType == ENTITY_TAX_RATE ? 'block' : 'none' }}">
|
<div id="dateField" style="display:{{ $reportType == ENTITY_TAX_RATE ? 'block' : 'none' }}">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user