Big thanks to the ability to disable phone number formatting - this solved one of my problems.
I use ITflow in Germany and I have a problem in 2 more categories. In Germany Invoice = Rechnung, Quotes = Angebot. This is obviously insanely important for local law. I had to apply a modification to the code, which unfortunately effectively limits updates - every time I have to undo the changes and reapply them. Perhaps it would be possible to run similar miany in Settings > Defaults? Below the lines.
Any other form that solves the problem also welcome.
If there were willing to implement multiple languages, I would be happy to help with German as well as Polish 😉
# diff invoice.php.org invoice.php.new
206c206
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <a class="dropdown-item" href="#" onclick="pdfMake.createPdf(docDefinition).download('<?php echo strtoAZaz09(html_entity_decode("$invoice_date-$company_name-$client_name-Invoice-$invoice_prefix$invoice_number")); ?>');">
---
                            <a class="dropdown-item" href="#" onclick="pdfMake.createPdf(docDefinition).download('<?php echo strtoAZaz09(html_entity_decode("$invoice_date-$company_name-$client_name-Rechnung-$invoice_prefix$invoice_number")); ?>');">
244c244
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <h3 class="text-right mt-5"><strong>Invoice</strong><br><small class="text-secondary"><?php echo "$invoice_prefix$invoice_number"; ?></small></h3>
---
                    <h3 class="text-right mt-5"><strong>Rechnung</strong><br><small class="text-secondary"><?php echo "$invoice_prefix$invoice_number"; ?></small></h3>
689c689
<Â Â Â Â Â Â Â Â Â Â Â Â title: <?php echo json_encode(html_entity_decode($company_name) . "- Invoice") ?>,
---
            title: <?php echo json_encode(html_entity_decode($company_name) . "- Rechnung") ?>,
708c708
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â text: 'Invoice',
---
                            text: 'Rechnung',
# diff quote.php.org quote.php.new
170c170
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <a class="dropdown-item" href="#" onclick="pdfMake.createPdf(docDefinition).download('<?php echo strtoAZaz09(html_entity_decode("$quote_date-$company_name-$client_name-Quote-$quote_prefix$quote_number")); ?>');">
---
                            <a class="dropdown-item" href="#" onclick="pdfMake.createPdf(docDefinition).download('<?php echo strtoAZaz09(html_entity_decode("$quote_date-$company_name-$client_name-Angebot-$quote_prefix$quote_number")); ?>');">
203c203
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <h3 class="text-right mt-5"><strong>Quote</strong><br><small class="text-secondary"><?php echo "$quote_prefix$quote_number"; ?></small></h3>
---
                    <h3 class="text-right mt-5"><strong>Angebot</strong><br><small class="text-secondary"><?php echo "$quote_prefix$quote_number"; ?></small></h3>
552c552
<Â Â Â Â Â Â Â Â Â Â Â Â title: <?php echo json_encode(html_entity_decode($company_name) . "- Quote") ?>,
---
            title: <?php echo json_encode(html_entity_decode($company_name) . "- Angebot") ?>,
569c569
<Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â text: 'Quote',
---
                        text: 'Angebot',