Use proper pluralization of pending sync message.
Co-authored-by: Barry Hughes <3594411+barryhughes@users.noreply.github.com>
This commit is contained in:
parent
bdffe69340
commit
ffb20eb7ec
|
@ -511,7 +511,12 @@ class CustomOrdersTableController {
|
|||
} elseif ( $sync_status['current_pending_count'] > 0 ) {
|
||||
$sync_message = sprintf(
|
||||
// translators: %d: number of pending orders.
|
||||
__( 'Sync %d pending orders. You can switch data storage for orders only when posts and orders table are in sync.', 'woocommerce' ),
|
||||
_n(
|
||||
'Sync %d pending order. You can switch data storage for orders only when posts and orders table are in sync.', 'woocommerce' ),
|
||||
'Sync %d pending orders. You can switch data storage for orders only when posts and orders table are in sync.', 'woocommerce' ),
|
||||
$sync_status['current_pending_count'],
|
||||
'woocommerce'
|
||||
),
|
||||
$sync_status['current_pending_count']
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue