attributes.php
3 years ago
codes.php
1 year ago
types-replaceable.php
3 years ago
types.php
2 years ago
attributes.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Type translations |
| 4 | * |
| 5 | * @package SureCart |
| 6 | */ |
| 7 | |
| 8 | return [ |
| 9 | // 'discount.promotion_code' => __( 'Promotion code', 'surecart' ), |
| 10 | 'promotion_code' => __( 'Promotion code', 'surecart' ), |
| 11 | 'name' => __( 'Name', 'surecart' ), |
| 12 | 'amount_off' => __( 'Amount Off', 'surecart' ), |
| 13 | 'percent_off' => __( 'Percent Off', 'surecart' ), |
| 14 | 'amount' => __( 'Amount', 'surecart' ), |
| 15 | 'ad_hoc' => __( 'Pay what you want', 'surecart' ), |
| 16 | 'recurring_interval_count' => __( 'Repeat payment', 'surecart' ), |
| 17 | 'product' => __( 'Product', 'surecart' ), |
| 18 | 'line_items.price' => __( 'Product', 'surecart' ), |
| 19 | ]; |
| 20 |