Invoice Pdf Naming Pattern

How can I change the naming pattern of invoice PDF's? Currently they are being named

Invoice-"order-number".pdf

It would make more sense if they were named

Invoice-"invoice-number".pdf

Can I change this somewhere?

Check app/functions/fn.cart.php

$filename = __('invoices') . '-' . implode('-', $order_ids);