Skip to content

Commit b64d4ad

Browse files
committed
Allow full translation & add a translator comment
1 parent 5436e3e commit b64d4ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

woocommerce/payment-gateway/class-sv-wc-payment-gateway.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3141,7 +3141,8 @@ protected function add_authorization_charge_form_fields( $form_fields ) {
31413141

31423142
$last_status = array_pop( $paid_statuses );
31433143

3144-
array_push( $paid_statuses, "or {$last_status}" );
3144+
/* translators: a conjuction used in the list of order status names, such as "Processing, Completed, or Shipped" */
3145+
array_push( $paid_statuses, __( 'or', 'woocommerce-plugin-framework' ) . ' ' . $last_status );
31453146
}
31463147

31473148
$separator = count( $paid_statuses ) < 3 ? ' ' : ', ';

0 commit comments

Comments
 (0)