Change "Demo" to "Sample" products (https://github.com/woocommerce/woocommerce-admin/pull/4184)
* Change "Demo" to "Sample" products A few years ago we had a discussion on the name of the files for test products and we choose "sample" data over "dummy" data. I think we should likely stick to that naming (which is also the name of the folder and the files in WC core: https://github.com/woocommerce/woocommerce/tree/master/sample-data) This commit changes that wording * Small update in caps of "Build a better WooCommerce" All titles and questions in the new onboarding wizards only capitalise names and the first letter of the sentence. This seemed a tiny bit off.
This commit is contained in:
parent
4fd6a17154
commit
41f3859ad5
|
@ -97,7 +97,7 @@ class UsageModal extends Component {
|
|||
return (
|
||||
<Modal
|
||||
title={ __(
|
||||
'Build a Better WooCommerce',
|
||||
'Build a better WooCommerce',
|
||||
'woocommerce-admin'
|
||||
) }
|
||||
onRequestClose={ () => this.props.onClose() }
|
||||
|
|
|
@ -153,7 +153,7 @@ class Appearance extends Component {
|
|||
createNotice(
|
||||
'error',
|
||||
__(
|
||||
'There was an error importing some of the demo products.',
|
||||
'There was an error importing some of the sample products.',
|
||||
'woocommerce-admin'
|
||||
)
|
||||
);
|
||||
|
@ -161,7 +161,7 @@ class Appearance extends Component {
|
|||
createNotice(
|
||||
'success',
|
||||
__(
|
||||
'All demo products have been imported.',
|
||||
'All sample products have been imported.',
|
||||
'woocommerce-admin'
|
||||
)
|
||||
);
|
||||
|
@ -266,7 +266,7 @@ class Appearance extends Component {
|
|||
const steps = [
|
||||
{
|
||||
key: 'import',
|
||||
label: __( 'Import demo products', 'woocommerce-admin' ),
|
||||
label: __( 'Import sample products', 'woocommerce-admin' ),
|
||||
description: __(
|
||||
'We’ll add some products that will make it easier to see what your store looks like',
|
||||
'woocommerce-admin'
|
||||
|
|
Loading…
Reference in New Issue