Add Proper Build script

This commit is contained in:
David Stone
2025-04-07 11:40:19 -06:00
parent d86e54544b
commit a8a0330685
575 changed files with 4117 additions and 5590 deletions

View File

@ -154,7 +154,7 @@ class Checkout_Form_List_Table extends Base_List_Table {
$new_checkout_form = $checkout_form->duplicate();
// translators: 1st placeholder is the original form name.
// translators: the %s is the thing copied.
$new_name = sprintf(__('Copy of %s', 'wp-multisite-waas'), $checkout_form->get_name());
$new_checkout_form->set_name($new_name);

View File

@ -225,7 +225,7 @@ class Email_List_Table extends Base_List_Table {
}
$new_email = $email->duplicate();
// translators: the %s is the thing copied.
$new_name = sprintf(__('Copy of %s', 'wp-multisite-waas'), $email->get_name());
$new_email->set_name($new_name);

View File

@ -208,6 +208,7 @@ class Product_List_Table extends Base_List_Table {
$new_product = $product->duplicate();
// translators: the %s is the thing copied.
$new_name = sprintf(__('Copy of %s', 'wp-multisite-waas'), $product->get_name());
$new_product->set_name($new_name);