Update capitalization

This commit is contained in:
Hillel Coren 2017-08-13 17:51:29 +03:00
parent 96ab1e84d5
commit 22d3bb6c07
2 changed files with 8 additions and 6 deletions

View File

@ -670,6 +670,8 @@ $LANG = array(
'status_viewed' => 'Viewed',
'status_partial' => 'Partial',
'status_paid' => 'Paid',
'status_unpaid' => 'Unpaid',
'status_all' => 'All',
'show_line_item_tax' => 'Display <b>line item taxes inline</b>',
'iframe_url' => 'Website',
'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' => 'Click here',
'invitation_status_sent' => 'Sent',
'invitation_status_sent' => 'sent',
'invitation_status_opened' => 'Openend',
'invitation_status_viewed' => 'Viewed',
'email_error_inactive_client' => 'Emails can not be sent to inactive clients',

View File

@ -121,11 +121,11 @@
<div id="statusField" style="display:{{ in_array($reportType, [ENTITY_INVOICE, ENTITY_PRODUCT]) ? 'block' : 'none' }}">
{!! Former::select('invoice_status')->label('status')
->addOption(trans('texts.all'), 'all')
->addOption(trans('texts.draft'), 'draft')
->addOption(trans('texts.sent'), 'sent')
->addOption(trans('texts.unpaid'), 'unpaid')
->addOption(trans('texts.paid'), 'paid') !!}
->addOption(trans('texts.status_all'), 'all')
->addOption(trans('texts.status_draft'), 'draft')
->addOption(trans('texts.status_sent'), 'sent')
->addOption(trans('texts.status_unpaid'), 'unpaid')
->addOption(trans('texts.status_paid'), 'paid') !!}
</div>
<div id="dateField" style="display:{{ $reportType == ENTITY_TAX_RATE ? 'block' : 'none' }}">