diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index a27824676976..452e6c662b27 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2478,6 +2478,7 @@ $LANG = array( 'surcharge_label' => 'Surcharge Label', 'contact_fields' => 'Contact Fields', 'custom_contact_fields_help' => 'Add a field when creating a contact and display the label and value on the PDF.', + 'datatable_info' => 'Showing :start to :end of :total entries', ); diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php index f51f9dad052b..87dee70e203d 100644 --- a/resources/views/master.blade.php +++ b/resources/views/master.blade.php @@ -114,6 +114,7 @@ "oLanguage": { 'sEmptyTable': "{{ trans('texts.empty_table') }}", 'sLengthMenu': '_MENU_ {{ trans('texts.rows') }}', + 'sInfo': "{{ trans('texts.datatable_info', ['start' => '_START_', 'end' => '_END_', 'total' => '_TOTAL_']) }}", 'sSearch': '' } });