Skip to content

Commit 85546d5

Browse files
authored
Merge pull request #173 from inc2734/patch-1
The number of downloaded files is not displayed correctly when printing receipts.
2 parents 03106b2 + 8dc4ac4 commit 85546d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

woocommerce-delivery-notes/templates/print-order/print-content.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<dd>
186186
<?php
187187
// translators: files count.
188-
printf( esc_attr_e( '%s Files', 'woocommerce-delivery-notes' ), count( $item->get_item_downloads() ) );
188+
printf( esc_attr__( '%s Files', 'woocommerce-delivery-notes' ), count( $item->get_item_downloads() ) );
189189
?>
190190
</dd>
191191

0 commit comments

Comments
 (0)