attributes.php
3 months ago
codes.php
1 month ago
types-replaceable.php
3 months ago
types.php
2 years ago
attributes.php
34 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 | 'email' => __( 'Email', 'surecart' ), |
| 20 | 'currency' => __( 'Currency', 'surecart' ), |
| 21 | 'charge' => __( 'Charge', 'surecart' ), |
| 22 | 'reason' => __( 'Reason', 'surecart' ), |
| 23 | 'order' => __( 'Order', 'surecart' ), |
| 24 | 'customer' => __( 'Customer', 'surecart' ), |
| 25 | 'quantity' => __( 'Quantity', 'surecart' ), |
| 26 | 'price' => __( 'Price', 'surecart' ), |
| 27 | 'description' => __( 'Description', 'surecart' ), |
| 28 | 'phone' => __( 'Phone', 'surecart' ), |
| 29 | 'shipment_status' => __( 'Shipment status', 'surecart' ), |
| 30 | 'fulfillment_items' => __( 'Fulfillment items', 'surecart' ), |
| 31 | 'line_item' => __( 'Line item', 'surecart' ), |
| 32 | 'tracking_number' => __( 'Tracking number', 'surecart' ), |
| 33 | ]; |
| 34 |