@@ -7,26 +7,26 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | ?> |
| 13 | 13 | |
| 14 | - <?php do_action( 'getpaid_before_invoice_details_main', $invoice ); ?> |
|
| 14 | + <?php do_action('getpaid_before_invoice_details_main', $invoice); ?> |
|
| 15 | 15 | |
| 16 | 16 | <div class="getpaid-invoice-details mt-3 mb-3"> |
| 17 | 17 | <div class="row"> |
| 18 | 18 | |
| 19 | 19 | <div class="col-12 col-sm-6"> |
| 20 | - <?php do_action( 'getpaid_invoice_details_left', $invoice ); ?> |
|
| 20 | + <?php do_action('getpaid_invoice_details_left', $invoice); ?> |
|
| 21 | 21 | </div> |
| 22 | 22 | |
| 23 | 23 | <div class="col-12 col-sm-6"> |
| 24 | - <?php do_action( 'getpaid_invoice_details_right', $invoice ); ?> |
|
| 24 | + <?php do_action('getpaid_invoice_details_right', $invoice); ?> |
|
| 25 | 25 | </div> |
| 26 | 26 | |
| 27 | 27 | </div> |
| 28 | 28 | </div> |
| 29 | 29 | |
| 30 | - <?php do_action( 'getpaid_after_invoice_details_main', $invoice ); ?> |
|
| 30 | + <?php do_action('getpaid_after_invoice_details_main', $invoice); ?> |
|
| 31 | 31 | |
| 32 | 32 | <?php |
@@ -7,13 +7,13 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -if ( empty( $text ) ) { |
|
| 13 | - $text = __( 'Total to pay:', 'invoicing' ); |
|
| 12 | +if (empty($text)) { |
|
| 13 | + $text = __('Total to pay:', 'invoicing'); |
|
| 14 | 14 | } |
| 15 | 15 | ?> |
| 16 | 16 | <div class="form-group mt-4"> |
| 17 | - <strong><?php echo sanitize_text_field( $text ); ?></strong> |
|
| 17 | + <strong><?php echo sanitize_text_field($text); ?></strong> |
|
| 18 | 18 | <span class="getpaid-checkout-total-payable"></span> |
| 19 | 19 | </div> |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | 4 | exit; // Exit if accessed directly |
| 5 | 5 | } |
| 6 | 6 | |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | * |
| 19 | 19 | * @return string The rendered component. |
| 20 | 20 | */ |
| 21 | - public static function get($args = array()){ |
|
| 21 | + public static function get($args = array()) { |
|
| 22 | 22 | $defaults = array( |
| 23 | 23 | 'type' => 'a', // a, button, badge |
| 24 | 24 | 'href' => '#', |
@@ -42,38 +42,38 @@ discard block |
||
| 42 | 42 | /** |
| 43 | 43 | * Parse incoming $args into an array and merge it with $defaults |
| 44 | 44 | */ |
| 45 | - $args = wp_parse_args( $args, $defaults ); |
|
| 45 | + $args = wp_parse_args($args, $defaults); |
|
| 46 | 46 | $output = ''; |
| 47 | - if ( ! empty( $args['type'] ) ) { |
|
| 47 | + if (!empty($args['type'])) { |
|
| 48 | 48 | $type = $args['type'] != 'a' ? esc_attr($args['type']) : 'a'; |
| 49 | 49 | |
| 50 | 50 | // open/type |
| 51 | - if($type=='a'){ |
|
| 51 | + if ($type == 'a') { |
|
| 52 | 52 | $new_window = !empty($args['new_window']) ? ' target="_blank" ' : ''; |
| 53 | - $output .= '<a href="' . $args['href'] . '"'.$new_window; |
|
| 54 | - }elseif($type=='badge'){ |
|
| 53 | + $output .= '<a href="' . $args['href'] . '"' . $new_window; |
|
| 54 | + }elseif ($type == 'badge') { |
|
| 55 | 55 | $output .= '<span '; |
| 56 | - }else{ |
|
| 56 | + } else { |
|
| 57 | 57 | $output .= '<button type="' . $type . '" '; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | // name |
| 61 | - if(!empty($args['name'])){ |
|
| 61 | + if (!empty($args['name'])) { |
|
| 62 | 62 | $output .= AUI_Component_Helper::name($args['name']); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | // id |
| 66 | - if(!empty($args['id'])){ |
|
| 66 | + if (!empty($args['id'])) { |
|
| 67 | 67 | $output .= AUI_Component_Helper::id($args['id']); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // title |
| 71 | - if(!empty($args['title'])){ |
|
| 71 | + if (!empty($args['title'])) { |
|
| 72 | 72 | $output .= AUI_Component_Helper::title($args['title']); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // value |
| 76 | - if(!empty($args['value'])){ |
|
| 76 | + if (!empty($args['value'])) { |
|
| 77 | 77 | $output .= AUI_Component_Helper::value($args['value']); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -88,18 +88,18 @@ discard block |
||
| 88 | 88 | $output .= AUI_Component_Helper::aria_attributes($args); |
| 89 | 89 | |
| 90 | 90 | // extra attributes |
| 91 | - if(!empty($args['extra_attributes'])){ |
|
| 91 | + if (!empty($args['extra_attributes'])) { |
|
| 92 | 92 | $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // onclick, we don't escape this |
| 96 | - if(!empty($args['onclick'])){ |
|
| 97 | - $output .= ' onclick="'.$args['onclick'].'" '; |
|
| 96 | + if (!empty($args['onclick'])) { |
|
| 97 | + $output .= ' onclick="' . $args['onclick'] . '" '; |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | // style, we don't escape this |
| 101 | - if(!empty($args['style'])){ |
|
| 102 | - $output .= ' style="'.$args['style'].'" '; |
|
| 101 | + if (!empty($args['style'])) { |
|
| 102 | + $output .= ' style="' . $args['style'] . '" '; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | // close opening tag |
@@ -108,37 +108,37 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | // hover content |
| 110 | 110 | $hover_content = false; |
| 111 | - if(!empty($args['hover_content']) || !empty($args['hover_icon'])){ |
|
| 112 | - $output .= "<span class='hover-content'>".AUI_Component_Helper::icon($args['hover_icon'],$args['hover_content']).$args['hover_content']."</span>"; |
|
| 111 | + if (!empty($args['hover_content']) || !empty($args['hover_icon'])) { |
|
| 112 | + $output .= "<span class='hover-content'>" . AUI_Component_Helper::icon($args['hover_icon'], $args['hover_content']) . $args['hover_content'] . "</span>"; |
|
| 113 | 113 | $hover_content = true; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | // content |
| 117 | - if($hover_content){$output .= "<span class='hover-content-original'>";} |
|
| 118 | - if(!empty($args['content']) || !empty($args['icon'])){ |
|
| 119 | - $output .= AUI_Component_Helper::icon($args['icon'],$args['content'],$args['icon_extra_attributes']).$args['content']; |
|
| 117 | + if ($hover_content) {$output .= "<span class='hover-content-original'>"; } |
|
| 118 | + if (!empty($args['content']) || !empty($args['icon'])) { |
|
| 119 | + $output .= AUI_Component_Helper::icon($args['icon'], $args['content'], $args['icon_extra_attributes']) . $args['content']; |
|
| 120 | 120 | } |
| 121 | - if($hover_content){$output .= "</span>";} |
|
| 121 | + if ($hover_content) {$output .= "</span>"; } |
|
| 122 | 122 | |
| 123 | 123 | |
| 124 | 124 | |
| 125 | 125 | // close |
| 126 | - if($type=='a'){ |
|
| 126 | + if ($type == 'a') { |
|
| 127 | 127 | $output .= '</a>'; |
| 128 | - }elseif($type=='badge'){ |
|
| 128 | + }elseif ($type == 'badge') { |
|
| 129 | 129 | $output .= '</span>'; |
| 130 | - }else{ |
|
| 130 | + } else { |
|
| 131 | 131 | $output .= '</button>'; |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | // maybe new line after? This adds better spacing between buttons. |
| 135 | - if(!empty($args['new_line_after'])){ |
|
| 135 | + if (!empty($args['new_line_after'])) { |
|
| 136 | 136 | $output .= PHP_EOL; |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | |
| 140 | 140 | // wrap |
| 141 | - if(!$args['no_wrap']){ |
|
| 141 | + if (!$args['no_wrap']) { |
|
| 142 | 142 | $output = AUI_Component_Input::wrap(array( |
| 143 | 143 | 'content' => $output, |
| 144 | 144 | )); |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @package Invoicing/data |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | return array( |
| 12 | 12 | "AD" => "AD\d{3}", |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -22,15 +22,15 @@ discard block |
||
| 22 | 22 | 'block-keywords'=> "['invoicing','history']", |
| 23 | 23 | 'class_name' => __CLASS__, |
| 24 | 24 | 'base_id' => 'wpinv_history', |
| 25 | - 'name' => __('GetPaid > Invoice History','invoicing'), |
|
| 25 | + 'name' => __('GetPaid > Invoice History', 'invoicing'), |
|
| 26 | 26 | 'widget_ops' => array( |
| 27 | 27 | 'classname' => 'wpinv-history-class bsui', |
| 28 | - 'description' => esc_html__('Displays invoice history.','invoicing'), |
|
| 28 | + 'description' => esc_html__('Displays invoice history.', 'invoicing'), |
|
| 29 | 29 | ), |
| 30 | 30 | 'arguments' => array( |
| 31 | 31 | 'title' => array( |
| 32 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
| 33 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 32 | + 'title' => __('Widget title', 'invoicing'), |
|
| 33 | + 'desc' => __('Enter widget title.', 'invoicing'), |
|
| 34 | 34 | 'type' => 'text', |
| 35 | 35 | 'desc_tip' => true, |
| 36 | 36 | 'default' => '', |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | 43 | |
| 44 | - parent::__construct( $options ); |
|
| 44 | + parent::__construct($options); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | /** |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @return mixed|string|bool |
| 55 | 55 | */ |
| 56 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 56 | + public function output($args = array(), $widget_args = array(), $content = '') { |
|
| 57 | 57 | return getpaid_invoice_history(); |
| 58 | 58 | } |
| 59 | 59 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -22,15 +22,15 @@ discard block |
||
| 22 | 22 | 'block-keywords'=> "['invoicing','receipt']", |
| 23 | 23 | 'class_name' => __CLASS__, |
| 24 | 24 | 'base_id' => 'wpinv_receipt', |
| 25 | - 'name' => __('GetPaid > Invoice Receipt','invoicing'), |
|
| 25 | + 'name' => __('GetPaid > Invoice Receipt', 'invoicing'), |
|
| 26 | 26 | 'widget_ops' => array( |
| 27 | 27 | 'classname' => 'wpinv-receipt-class bsui', |
| 28 | - 'description' => esc_html__('Displays invoice receipt after checkout.','invoicing'), |
|
| 28 | + 'description' => esc_html__('Displays invoice receipt after checkout.', 'invoicing'), |
|
| 29 | 29 | ), |
| 30 | 30 | 'arguments' => array( |
| 31 | 31 | 'title' => array( |
| 32 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
| 33 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 32 | + 'title' => __('Widget title', 'invoicing'), |
|
| 33 | + 'desc' => __('Enter widget title.', 'invoicing'), |
|
| 34 | 34 | 'type' => 'text', |
| 35 | 35 | 'desc_tip' => true, |
| 36 | 36 | 'default' => '', |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | 43 | |
| 44 | - parent::__construct( $options ); |
|
| 44 | + parent::__construct($options); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | /** |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @return mixed|string|bool |
| 55 | 55 | */ |
| 56 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 56 | + public function output($args = array(), $widget_args = array(), $content = '') { |
|
| 57 | 57 | return wpinv_payment_receipt(); |
| 58 | 58 | } |
| 59 | 59 | |
@@ -9,632 +9,632 @@ |
||
| 9 | 9 | * @version 1.0.19 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | 15 | |
| 16 | 16 | 'id' => array( |
| 17 | - 'description' => __( 'Unique identifier for the invoice.', 'invoicing' ), |
|
| 17 | + 'description' => __('Unique identifier for the invoice.', 'invoicing'), |
|
| 18 | 18 | 'type' => 'integer', |
| 19 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 19 | + 'context' => array('view', 'edit', 'embed'), |
|
| 20 | 20 | 'readonly' => true, |
| 21 | 21 | ), |
| 22 | 22 | |
| 23 | 23 | 'parent_id' => array( |
| 24 | - 'description' => __( 'Parent invoice ID.', 'invoicing' ), |
|
| 24 | + 'description' => __('Parent invoice ID.', 'invoicing'), |
|
| 25 | 25 | 'type' => 'integer', |
| 26 | 26 | 'minimum' => 0, |
| 27 | 27 | 'default' => 0, |
| 28 | - 'context' => array( 'view', 'edit' ), |
|
| 28 | + 'context' => array('view', 'edit'), |
|
| 29 | 29 | ), |
| 30 | 30 | |
| 31 | 31 | 'key' => array( |
| 32 | - 'description' => __( 'A unique key for the invoice.', 'invoicing' ), |
|
| 32 | + 'description' => __('A unique key for the invoice.', 'invoicing'), |
|
| 33 | 33 | 'type' => 'string', |
| 34 | - 'context' => array( 'view', 'edit' ), |
|
| 34 | + 'context' => array('view', 'edit'), |
|
| 35 | 35 | 'readonly' => true, |
| 36 | 36 | ), |
| 37 | 37 | |
| 38 | 38 | 'number' => array( |
| 39 | - 'description' => __( 'A unique number for the invoice.', 'invoicing' ), |
|
| 39 | + 'description' => __('A unique number for the invoice.', 'invoicing'), |
|
| 40 | 40 | 'type' => 'string', |
| 41 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 41 | + 'context' => array('view', 'edit', 'embed'), |
|
| 42 | 42 | ), |
| 43 | 43 | |
| 44 | 44 | 'type' => array( |
| 45 | - 'description' => __( 'Get the invoice type (e.g invoice, quote etc).', 'invoicing' ), |
|
| 45 | + 'description' => __('Get the invoice type (e.g invoice, quote etc).', 'invoicing'), |
|
| 46 | 46 | 'type' => 'string', |
| 47 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 47 | + 'context' => array('view', 'edit', 'embed'), |
|
| 48 | 48 | 'readonly' => true, |
| 49 | 49 | ), |
| 50 | 50 | |
| 51 | 51 | 'post_type' => array( |
| 52 | - 'description' => __( 'Get the invoice post type (e.g wpi_invoice, wpi_quote etc).', 'invoicing' ), |
|
| 52 | + 'description' => __('Get the invoice post type (e.g wpi_invoice, wpi_quote etc).', 'invoicing'), |
|
| 53 | 53 | 'type' => 'string', |
| 54 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 54 | + 'context' => array('view', 'edit', 'embed'), |
|
| 55 | 55 | 'readonly' => true, |
| 56 | 56 | ), |
| 57 | 57 | |
| 58 | 58 | 'version' => array( |
| 59 | - 'description' => __( 'Version of GetPaid/Invoicing which last updated the invoice.', 'invoicing' ), |
|
| 59 | + 'description' => __('Version of GetPaid/Invoicing which last updated the invoice.', 'invoicing'), |
|
| 60 | 60 | 'type' => 'integer', |
| 61 | - 'context' => array( 'view', 'edit' ), |
|
| 61 | + 'context' => array('view', 'edit'), |
|
| 62 | 62 | 'readonly' => true, |
| 63 | 63 | ), |
| 64 | 64 | |
| 65 | 65 | 'template' => array( |
| 66 | - 'description' => __( 'The invoice template.', 'invoicing' ), |
|
| 66 | + 'description' => __('The invoice template.', 'invoicing'), |
|
| 67 | 67 | 'type' => 'string', |
| 68 | 68 | 'default' => 'quantity', |
| 69 | - 'enum' => array( 'quantity', 'hours', 'amount' ), |
|
| 70 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 69 | + 'enum' => array('quantity', 'hours', 'amount'), |
|
| 70 | + 'context' => array('view', 'edit', 'embed'), |
|
| 71 | 71 | ), |
| 72 | 72 | |
| 73 | 73 | 'status' => array( |
| 74 | - 'description' => __( 'Invoice status.', 'invoicing' ), |
|
| 74 | + 'description' => __('Invoice status.', 'invoicing'), |
|
| 75 | 75 | 'type' => 'string', |
| 76 | 76 | 'default' => 'wpi-pending', |
| 77 | - 'enum' => array_keys( wpinv_get_invoice_statuses( true ) ), |
|
| 78 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 77 | + 'enum' => array_keys(wpinv_get_invoice_statuses(true)), |
|
| 78 | + 'context' => array('view', 'edit', 'embed'), |
|
| 79 | 79 | ), |
| 80 | 80 | |
| 81 | 81 | 'status_nicename' => array( |
| 82 | - 'description' => __( 'A human readable name for the invoice status.', 'invoicing' ), |
|
| 82 | + 'description' => __('A human readable name for the invoice status.', 'invoicing'), |
|
| 83 | 83 | 'type' => 'string', |
| 84 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 84 | + 'context' => array('view', 'edit', 'embed'), |
|
| 85 | 85 | 'readonly' => true, |
| 86 | 86 | ), |
| 87 | 87 | |
| 88 | 88 | 'currency' => array( |
| 89 | - 'description' => __( 'The invoice currency in ISO format.', 'invoicing' ), |
|
| 89 | + 'description' => __('The invoice currency in ISO format.', 'invoicing'), |
|
| 90 | 90 | 'type' => 'string', |
| 91 | 91 | 'default' => wpinv_get_currency(), |
| 92 | - 'enum' => array_keys( wpinv_get_currencies() ), |
|
| 93 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 92 | + 'enum' => array_keys(wpinv_get_currencies()), |
|
| 93 | + 'context' => array('view', 'edit', 'embed'), |
|
| 94 | 94 | ), |
| 95 | 95 | |
| 96 | 96 | 'date_created' => array( |
| 97 | - 'description' => __( "The date the invoice was created, in the site's timezone.", 'invoicing' ), |
|
| 97 | + 'description' => __("The date the invoice was created, in the site's timezone.", 'invoicing'), |
|
| 98 | 98 | 'type' => 'string', |
| 99 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 99 | + 'context' => array('view', 'edit', 'embed'), |
|
| 100 | 100 | ), |
| 101 | 101 | |
| 102 | 102 | 'date_created_gmt' => array( |
| 103 | - 'description' => __( 'The GMT date the invoice was created.', 'invoicing' ), |
|
| 103 | + 'description' => __('The GMT date the invoice was created.', 'invoicing'), |
|
| 104 | 104 | 'type' => 'string', |
| 105 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 105 | + 'context' => array('view', 'edit', 'embed'), |
|
| 106 | 106 | 'readonly' => true, |
| 107 | 107 | ), |
| 108 | 108 | |
| 109 | 109 | 'date_modified' => array( |
| 110 | - 'description' => __( "The date the invoice was last modified, in the site's timezone.", 'invoicing' ), |
|
| 110 | + 'description' => __("The date the invoice was last modified, in the site's timezone.", 'invoicing'), |
|
| 111 | 111 | 'type' => 'string', |
| 112 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 112 | + 'context' => array('view', 'edit', 'embed'), |
|
| 113 | 113 | 'readonly' => true, |
| 114 | 114 | ), |
| 115 | 115 | |
| 116 | 116 | 'date_modified_gmt' => array( |
| 117 | - 'description' => __( 'The GMT date the invoice was last modified.', 'invoicing' ), |
|
| 117 | + 'description' => __('The GMT date the invoice was last modified.', 'invoicing'), |
|
| 118 | 118 | 'type' => 'string', |
| 119 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 119 | + 'context' => array('view', 'edit', 'embed'), |
|
| 120 | 120 | 'readonly' => true, |
| 121 | 121 | ), |
| 122 | 122 | |
| 123 | 123 | 'due_date' => array( |
| 124 | - 'description' => __( "The invoice's due date, in the site's timezone.", 'invoicing' ), |
|
| 124 | + 'description' => __("The invoice's due date, in the site's timezone.", 'invoicing'), |
|
| 125 | 125 | 'type' => 'string', |
| 126 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 126 | + 'context' => array('view', 'edit', 'embed'), |
|
| 127 | 127 | ), |
| 128 | 128 | |
| 129 | 129 | 'due_date_gmt' => array( |
| 130 | - 'description' => __( 'The GMT date the invoice is/was due.', 'invoicing' ), |
|
| 130 | + 'description' => __('The GMT date the invoice is/was due.', 'invoicing'), |
|
| 131 | 131 | 'type' => 'string', |
| 132 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 132 | + 'context' => array('view', 'edit', 'embed'), |
|
| 133 | 133 | 'readonly' => true, |
| 134 | 134 | ), |
| 135 | 135 | |
| 136 | 136 | 'completed_date' => array( |
| 137 | - 'description' => __( "The date the invoice was paid, in the site's timezone.", 'invoicing' ), |
|
| 137 | + 'description' => __("The date the invoice was paid, in the site's timezone.", 'invoicing'), |
|
| 138 | 138 | 'type' => 'string', |
| 139 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 139 | + 'context' => array('view', 'edit', 'embed'), |
|
| 140 | 140 | 'readonly' => true, |
| 141 | 141 | ), |
| 142 | 142 | |
| 143 | 143 | 'completed_date_gmt' => array( |
| 144 | - 'description' => __( 'The GMT date the invoice was paid.', 'invoicing' ), |
|
| 144 | + 'description' => __('The GMT date the invoice was paid.', 'invoicing'), |
|
| 145 | 145 | 'type' => 'string', |
| 146 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 146 | + 'context' => array('view', 'edit', 'embed'), |
|
| 147 | 147 | 'readonly' => true, |
| 148 | 148 | ), |
| 149 | 149 | |
| 150 | 150 | 'total_discount' => array( |
| 151 | - 'description' => __( 'Total discount amount for the invoice.', 'invoicing' ), |
|
| 151 | + 'description' => __('Total discount amount for the invoice.', 'invoicing'), |
|
| 152 | 152 | 'type' => 'number', |
| 153 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 153 | + 'context' => array('view', 'edit', 'embed'), |
|
| 154 | 154 | 'readonly' => true, |
| 155 | 155 | ), |
| 156 | 156 | |
| 157 | 157 | 'total_tax' => array( |
| 158 | - 'description' => __( 'Total tax amount for the invoice.', 'invoicing' ), |
|
| 158 | + 'description' => __('Total tax amount for the invoice.', 'invoicing'), |
|
| 159 | 159 | 'type' => 'number', |
| 160 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 160 | + 'context' => array('view', 'edit', 'embed'), |
|
| 161 | 161 | 'readonly' => true, |
| 162 | 162 | ), |
| 163 | 163 | |
| 164 | 164 | 'total_fees' => array( |
| 165 | - 'description' => __( 'Total fees amount for the invoice.', 'invoicing' ), |
|
| 165 | + 'description' => __('Total fees amount for the invoice.', 'invoicing'), |
|
| 166 | 166 | 'type' => 'number', |
| 167 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 167 | + 'context' => array('view', 'edit', 'embed'), |
|
| 168 | 168 | 'readonly' => true, |
| 169 | 169 | ), |
| 170 | 170 | |
| 171 | 171 | 'subtotal' => array( |
| 172 | - 'description' => __( 'Invoice subtotal.', 'invoicing' ), |
|
| 172 | + 'description' => __('Invoice subtotal.', 'invoicing'), |
|
| 173 | 173 | 'type' => 'number', |
| 174 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 174 | + 'context' => array('view', 'edit', 'embed'), |
|
| 175 | 175 | 'readonly' => true, |
| 176 | 176 | ), |
| 177 | 177 | |
| 178 | 178 | 'total' => array( |
| 179 | - 'description' => __( 'Grand total.', 'invoicing' ), |
|
| 179 | + 'description' => __('Grand total.', 'invoicing'), |
|
| 180 | 180 | 'type' => 'number', |
| 181 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 181 | + 'context' => array('view', 'edit', 'embed'), |
|
| 182 | 182 | 'readonly' => true, |
| 183 | 183 | ), |
| 184 | 184 | |
| 185 | 185 | 'initial_total' => array( |
| 186 | - 'description' => __( 'Initial total (for recurring invoices).', 'invoicing' ), |
|
| 186 | + 'description' => __('Initial total (for recurring invoices).', 'invoicing'), |
|
| 187 | 187 | 'type' => 'number', |
| 188 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 188 | + 'context' => array('view', 'edit', 'embed'), |
|
| 189 | 189 | 'readonly' => true, |
| 190 | 190 | ), |
| 191 | 191 | |
| 192 | 192 | 'recurring_total' => array( |
| 193 | - 'description' => __( 'Recurring total (for recurring invoices).', 'invoicing' ), |
|
| 193 | + 'description' => __('Recurring total (for recurring invoices).', 'invoicing'), |
|
| 194 | 194 | 'type' => 'number', |
| 195 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 195 | + 'context' => array('view', 'edit', 'embed'), |
|
| 196 | 196 | 'readonly' => true, |
| 197 | 197 | ), |
| 198 | 198 | |
| 199 | 199 | 'totals' => array( |
| 200 | - 'description' => __( 'Invoice totals.', 'invoicing' ), |
|
| 200 | + 'description' => __('Invoice totals.', 'invoicing'), |
|
| 201 | 201 | 'type' => 'object', |
| 202 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 202 | + 'context' => array('view', 'edit', 'embed'), |
|
| 203 | 203 | 'readonly' => true, |
| 204 | 204 | ), |
| 205 | 205 | |
| 206 | 206 | 'fees' => array( |
| 207 | - 'description' => __( 'Invoice fees (Name => properties).', 'invoicing' ), |
|
| 207 | + 'description' => __('Invoice fees (Name => properties).', 'invoicing'), |
|
| 208 | 208 | 'type' => 'object', |
| 209 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 209 | + 'context' => array('view', 'edit', 'embed'), |
|
| 210 | 210 | 'items' => array( |
| 211 | 211 | 'type' => 'object', |
| 212 | - 'required' => array( 'amount' ), |
|
| 212 | + 'required' => array('amount'), |
|
| 213 | 213 | 'properties' => array( |
| 214 | 214 | 'amount' => array( |
| 215 | - 'description' => __( 'Fee amount.', 'invoicing' ), |
|
| 215 | + 'description' => __('Fee amount.', 'invoicing'), |
|
| 216 | 216 | 'type' => 'string', |
| 217 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 217 | + 'context' => array('view', 'edit', 'embed'), |
|
| 218 | 218 | ), |
| 219 | 219 | 'recurring' => array( |
| 220 | - 'description' => __( 'Whether this is a recurring or one-time fee.', 'invoicing' ), |
|
| 221 | - 'type' => array( 'boolean', 'integer' ), |
|
| 222 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 220 | + 'description' => __('Whether this is a recurring or one-time fee.', 'invoicing'), |
|
| 221 | + 'type' => array('boolean', 'integer'), |
|
| 222 | + 'context' => array('view', 'edit', 'embed'), |
|
| 223 | 223 | ), |
| 224 | 224 | ), |
| 225 | 225 | ), |
| 226 | 226 | ), |
| 227 | 227 | |
| 228 | 228 | 'discounts' => array( |
| 229 | - 'description' => __( 'Invoice discounts (Name => properties).', 'invoicing' ), |
|
| 229 | + 'description' => __('Invoice discounts (Name => properties).', 'invoicing'), |
|
| 230 | 230 | 'type' => 'object', |
| 231 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 231 | + 'context' => array('view', 'edit', 'embed'), |
|
| 232 | 232 | 'items' => array( |
| 233 | 233 | 'type' => 'object', |
| 234 | - 'required' => array( 'amount' ), |
|
| 234 | + 'required' => array('amount'), |
|
| 235 | 235 | 'properties' => array( |
| 236 | 236 | 'amount' => array( |
| 237 | - 'description' => __( 'Fee amount.', 'invoicing' ), |
|
| 237 | + 'description' => __('Fee amount.', 'invoicing'), |
|
| 238 | 238 | 'type' => 'string', |
| 239 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 239 | + 'context' => array('view', 'edit', 'embed'), |
|
| 240 | 240 | ), |
| 241 | 241 | 'recurring' => array( |
| 242 | - 'description' => __( 'Whether this is a recurring or one-time discount.', 'invoicing' ), |
|
| 243 | - 'type' => array( 'boolean', 'integer' ), |
|
| 244 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 242 | + 'description' => __('Whether this is a recurring or one-time discount.', 'invoicing'), |
|
| 243 | + 'type' => array('boolean', 'integer'), |
|
| 244 | + 'context' => array('view', 'edit', 'embed'), |
|
| 245 | 245 | ), |
| 246 | 246 | ), |
| 247 | 247 | ), |
| 248 | 248 | ), |
| 249 | 249 | |
| 250 | 250 | 'taxes' => array( |
| 251 | - 'description' => __( 'Invoice taxes (Name => properties).', 'invoicing' ), |
|
| 251 | + 'description' => __('Invoice taxes (Name => properties).', 'invoicing'), |
|
| 252 | 252 | 'type' => 'object', |
| 253 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 253 | + 'context' => array('view', 'edit', 'embed'), |
|
| 254 | 254 | 'items' => array( |
| 255 | 255 | 'type' => 'object', |
| 256 | - 'required' => array( 'amount' ), |
|
| 256 | + 'required' => array('amount'), |
|
| 257 | 257 | 'properties' => array( |
| 258 | 258 | 'amount' => array( |
| 259 | - 'description' => __( 'Fee amount.', 'invoicing' ), |
|
| 259 | + 'description' => __('Fee amount.', 'invoicing'), |
|
| 260 | 260 | 'type' => 'string', |
| 261 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 261 | + 'context' => array('view', 'edit', 'embed'), |
|
| 262 | 262 | ), |
| 263 | 263 | 'recurring' => array( |
| 264 | - 'description' => __( 'Whether this is a recurring or one-time tax.', 'invoicing' ), |
|
| 265 | - 'type' => array( 'boolean', 'integer' ), |
|
| 266 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 264 | + 'description' => __('Whether this is a recurring or one-time tax.', 'invoicing'), |
|
| 265 | + 'type' => array('boolean', 'integer'), |
|
| 266 | + 'context' => array('view', 'edit', 'embed'), |
|
| 267 | 267 | ), |
| 268 | 268 | ), |
| 269 | 269 | ), |
| 270 | 270 | ), |
| 271 | 271 | |
| 272 | 272 | 'items' => array( |
| 273 | - 'description' => __( 'Invoice items.', 'invoicing' ), |
|
| 273 | + 'description' => __('Invoice items.', 'invoicing'), |
|
| 274 | 274 | 'type' => 'array', |
| 275 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 275 | + 'context' => array('view', 'edit', 'embed'), |
|
| 276 | 276 | 'items' => array( |
| 277 | 277 | 'type' => 'object', |
| 278 | - 'required' => array( 'item_id' ), |
|
| 278 | + 'required' => array('item_id'), |
|
| 279 | 279 | 'properties' => array( |
| 280 | 280 | 'item_id' => array( |
| 281 | - 'description' => __( 'Item ID.', 'invoicing' ), |
|
| 281 | + 'description' => __('Item ID.', 'invoicing'), |
|
| 282 | 282 | 'type' => 'integer', |
| 283 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 283 | + 'context' => array('view', 'edit', 'embed'), |
|
| 284 | 284 | ), |
| 285 | 285 | 'item_name' => array( |
| 286 | - 'description' => __( 'Item Name.', 'invoicing' ), |
|
| 286 | + 'description' => __('Item Name.', 'invoicing'), |
|
| 287 | 287 | 'type' => 'string', |
| 288 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 288 | + 'context' => array('view', 'edit', 'embed'), |
|
| 289 | 289 | ), |
| 290 | 290 | 'item_description' => array( |
| 291 | - 'description' => __( 'Item Description.', 'invoicing' ), |
|
| 291 | + 'description' => __('Item Description.', 'invoicing'), |
|
| 292 | 292 | 'type' => 'string', |
| 293 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 293 | + 'context' => array('view', 'edit', 'embed'), |
|
| 294 | 294 | ), |
| 295 | 295 | 'item_price' => array( |
| 296 | - 'description' => __( 'Item Price.', 'invoicing' ), |
|
| 296 | + 'description' => __('Item Price.', 'invoicing'), |
|
| 297 | 297 | 'type' => 'number', |
| 298 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 298 | + 'context' => array('view', 'edit', 'embed'), |
|
| 299 | 299 | ), |
| 300 | 300 | 'quantity' => array( |
| 301 | - 'description' => __( 'Item Quantity.', 'invoicing' ), |
|
| 301 | + 'description' => __('Item Quantity.', 'invoicing'), |
|
| 302 | 302 | 'type' => 'integer', |
| 303 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 303 | + 'context' => array('view', 'edit', 'embed'), |
|
| 304 | 304 | ), |
| 305 | 305 | 'subtotal' => array( |
| 306 | - 'description' => __( 'Item Subtotal.', 'invoicing' ), |
|
| 306 | + 'description' => __('Item Subtotal.', 'invoicing'), |
|
| 307 | 307 | 'type' => 'number', |
| 308 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 308 | + 'context' => array('view', 'edit', 'embed'), |
|
| 309 | 309 | 'readonly' => true, |
| 310 | 310 | ), |
| 311 | 311 | 'meta' => array( |
| 312 | - 'description' => __( 'Item Meta.', 'invoicing' ), |
|
| 312 | + 'description' => __('Item Meta.', 'invoicing'), |
|
| 313 | 313 | 'type' => 'object', |
| 314 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 314 | + 'context' => array('view', 'edit', 'embed'), |
|
| 315 | 315 | ), |
| 316 | 316 | ), |
| 317 | 317 | ), |
| 318 | 318 | ), |
| 319 | 319 | |
| 320 | 320 | 'mode' => array( |
| 321 | - 'description' => __( 'The invoice transaction mode.', 'invoicing' ), |
|
| 321 | + 'description' => __('The invoice transaction mode.', 'invoicing'), |
|
| 322 | 322 | 'type' => 'string', |
| 323 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 324 | - 'enum' => array( 'live', 'test' ), |
|
| 323 | + 'context' => array('view', 'edit', 'embed'), |
|
| 324 | + 'enum' => array('live', 'test'), |
|
| 325 | 325 | 'readonly' => true, |
| 326 | 326 | ), |
| 327 | 327 | |
| 328 | 328 | 'discount_code' => array( |
| 329 | - 'description' => __( 'The discount code used on this invoice.', 'invoicing' ), |
|
| 329 | + 'description' => __('The discount code used on this invoice.', 'invoicing'), |
|
| 330 | 330 | 'type' => 'string', |
| 331 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 331 | + 'context' => array('view', 'edit', 'embed'), |
|
| 332 | 332 | ), |
| 333 | 333 | |
| 334 | 334 | 'gateway' => array( |
| 335 | - 'description' => __( 'The gateway used to pay this invoice.', 'invoicing' ), |
|
| 335 | + 'description' => __('The gateway used to pay this invoice.', 'invoicing'), |
|
| 336 | 336 | 'type' => 'string', |
| 337 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 337 | + 'context' => array('view', 'edit', 'embed'), |
|
| 338 | 338 | ), |
| 339 | 339 | |
| 340 | 340 | 'gateway_title' => array( |
| 341 | - 'description' => __( 'The title of the gateway used to pay this invoice.', 'invoicing' ), |
|
| 341 | + 'description' => __('The title of the gateway used to pay this invoice.', 'invoicing'), |
|
| 342 | 342 | 'type' => 'string', |
| 343 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 343 | + 'context' => array('view', 'edit', 'embed'), |
|
| 344 | 344 | 'readonly' => true, |
| 345 | 345 | ), |
| 346 | 346 | |
| 347 | 347 | 'transaction_id' => array( |
| 348 | - 'description' => __( 'The transaction id for this invoice.', 'invoicing' ), |
|
| 348 | + 'description' => __('The transaction id for this invoice.', 'invoicing'), |
|
| 349 | 349 | 'type' => 'string', |
| 350 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 350 | + 'context' => array('view', 'edit', 'embed'), |
|
| 351 | 351 | ), |
| 352 | 352 | |
| 353 | 353 | 'disable_taxes' => array( |
| 354 | - 'description' => __( 'Whether or not taxes should be disabled for this invoice.', 'invoicing' ), |
|
| 354 | + 'description' => __('Whether or not taxes should be disabled for this invoice.', 'invoicing'), |
|
| 355 | 355 | 'type' => 'boolean ', |
| 356 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 356 | + 'context' => array('view', 'edit', 'embed'), |
|
| 357 | 357 | ), |
| 358 | 358 | |
| 359 | 359 | 'is_viewed' => array( |
| 360 | - 'description' => __( 'Whether or not this invoice has been viewed by the user.', 'invoicing' ), |
|
| 360 | + 'description' => __('Whether or not this invoice has been viewed by the user.', 'invoicing'), |
|
| 361 | 361 | 'type' => 'boolean ', |
| 362 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 362 | + 'context' => array('view', 'edit', 'embed'), |
|
| 363 | 363 | 'readonly' => true, |
| 364 | 364 | ), |
| 365 | 365 | |
| 366 | 366 | 'email_cc' => array( |
| 367 | - 'description' => __( 'A comma separated list of other emails that should receive communications for this invoice.', 'invoicing' ), |
|
| 367 | + 'description' => __('A comma separated list of other emails that should receive communications for this invoice.', 'invoicing'), |
|
| 368 | 368 | 'type' => 'string ', |
| 369 | - 'context' => array( 'view', 'edit' ), |
|
| 369 | + 'context' => array('view', 'edit'), |
|
| 370 | 370 | ), |
| 371 | 371 | |
| 372 | 372 | 'subscription_id' => array( |
| 373 | - 'description' => __( 'The ID of the subscription associated with this invoice.', 'invoicing' ), |
|
| 373 | + 'description' => __('The ID of the subscription associated with this invoice.', 'invoicing'), |
|
| 374 | 374 | 'type' => 'string ', |
| 375 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 375 | + 'context' => array('view', 'edit', 'embed'), |
|
| 376 | 376 | 'readonly' => true, |
| 377 | 377 | ), |
| 378 | 378 | |
| 379 | 379 | 'subscription_name' => array( |
| 380 | - 'description' => __( 'The name of the subscription associated with this invoice.', 'invoicing' ), |
|
| 380 | + 'description' => __('The name of the subscription associated with this invoice.', 'invoicing'), |
|
| 381 | 381 | 'type' => 'string ', |
| 382 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 382 | + 'context' => array('view', 'edit', 'embed'), |
|
| 383 | 383 | 'readonly' => true, |
| 384 | 384 | ), |
| 385 | 385 | |
| 386 | 386 | 'subscription_name' => array( |
| 387 | - 'description' => __( 'The name of the subscription associated with this invoice.', 'invoicing' ), |
|
| 387 | + 'description' => __('The name of the subscription associated with this invoice.', 'invoicing'), |
|
| 388 | 388 | 'type' => 'string ', |
| 389 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 389 | + 'context' => array('view', 'edit', 'embed'), |
|
| 390 | 390 | 'readonly' => true, |
| 391 | 391 | ), |
| 392 | 392 | |
| 393 | 393 | 'is_parent' => array( |
| 394 | - 'description' => __( 'Whether or not this is a parent invoice.', 'invoicing' ), |
|
| 394 | + 'description' => __('Whether or not this is a parent invoice.', 'invoicing'), |
|
| 395 | 395 | 'type' => 'boolean', |
| 396 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 396 | + 'context' => array('view', 'edit', 'embed'), |
|
| 397 | 397 | 'readonly' => true, |
| 398 | 398 | ), |
| 399 | 399 | |
| 400 | 400 | 'is_renewal' => array( |
| 401 | - 'description' => __( 'Whether or not this is a renewal invoice.', 'invoicing' ), |
|
| 401 | + 'description' => __('Whether or not this is a renewal invoice.', 'invoicing'), |
|
| 402 | 402 | 'type' => 'boolean', |
| 403 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 403 | + 'context' => array('view', 'edit', 'embed'), |
|
| 404 | 404 | 'readonly' => true, |
| 405 | 405 | ), |
| 406 | 406 | |
| 407 | 407 | 'is_recurring' => array( |
| 408 | - 'description' => __( 'Whether or not this is a recurring invoice.', 'invoicing' ), |
|
| 408 | + 'description' => __('Whether or not this is a recurring invoice.', 'invoicing'), |
|
| 409 | 409 | 'type' => 'boolean', |
| 410 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 410 | + 'context' => array('view', 'edit', 'embed'), |
|
| 411 | 411 | 'readonly' => true, |
| 412 | 412 | ), |
| 413 | 413 | |
| 414 | 414 | 'is_free' => array( |
| 415 | - 'description' => __( 'Whether or not this invoice is free.', 'invoicing' ), |
|
| 415 | + 'description' => __('Whether or not this invoice is free.', 'invoicing'), |
|
| 416 | 416 | 'type' => 'boolean', |
| 417 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 417 | + 'context' => array('view', 'edit', 'embed'), |
|
| 418 | 418 | 'readonly' => true, |
| 419 | 419 | ), |
| 420 | 420 | |
| 421 | 421 | 'is_paid' => array( |
| 422 | - 'description' => __( 'Whether or not this invoice has been paid.', 'invoicing' ), |
|
| 422 | + 'description' => __('Whether or not this invoice has been paid.', 'invoicing'), |
|
| 423 | 423 | 'type' => 'boolean', |
| 424 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 424 | + 'context' => array('view', 'edit', 'embed'), |
|
| 425 | 425 | 'readonly' => true, |
| 426 | 426 | ), |
| 427 | 427 | |
| 428 | 428 | 'needs_payment' => array( |
| 429 | - 'description' => __( 'Whether or not this invoice needs payment.', 'invoicing' ), |
|
| 429 | + 'description' => __('Whether or not this invoice needs payment.', 'invoicing'), |
|
| 430 | 430 | 'type' => 'boolean', |
| 431 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 431 | + 'context' => array('view', 'edit', 'embed'), |
|
| 432 | 432 | 'readonly' => true, |
| 433 | 433 | ), |
| 434 | 434 | |
| 435 | 435 | 'is_refunded' => array( |
| 436 | - 'description' => __( 'Whether or not this invoice was refunded.', 'invoicing' ), |
|
| 436 | + 'description' => __('Whether or not this invoice was refunded.', 'invoicing'), |
|
| 437 | 437 | 'type' => 'boolean', |
| 438 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 438 | + 'context' => array('view', 'edit', 'embed'), |
|
| 439 | 439 | 'readonly' => true, |
| 440 | 440 | ), |
| 441 | 441 | |
| 442 | 442 | 'is_due' => array( |
| 443 | - 'description' => __( 'Whether or not this invoice is due.', 'invoicing' ), |
|
| 443 | + 'description' => __('Whether or not this invoice is due.', 'invoicing'), |
|
| 444 | 444 | 'type' => 'boolean', |
| 445 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 445 | + 'context' => array('view', 'edit', 'embed'), |
|
| 446 | 446 | 'readonly' => true, |
| 447 | 447 | ), |
| 448 | 448 | |
| 449 | 449 | 'is_held' => array( |
| 450 | - 'description' => __( 'Whether or not this invoice has been held for payment confirmation.', 'invoicing' ), |
|
| 450 | + 'description' => __('Whether or not this invoice has been held for payment confirmation.', 'invoicing'), |
|
| 451 | 451 | 'type' => 'boolean', |
| 452 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 452 | + 'context' => array('view', 'edit', 'embed'), |
|
| 453 | 453 | 'readonly' => true, |
| 454 | 454 | ), |
| 455 | 455 | |
| 456 | 456 | 'is_draft' => array( |
| 457 | - 'description' => __( 'Whether or not this invoice is marked as draft (cannot be viewed on the frontend).', 'invoicing' ), |
|
| 457 | + 'description' => __('Whether or not this invoice is marked as draft (cannot be viewed on the frontend).', 'invoicing'), |
|
| 458 | 458 | 'type' => 'boolean', |
| 459 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 459 | + 'context' => array('view', 'edit', 'embed'), |
|
| 460 | 460 | 'readonly' => true, |
| 461 | 461 | ), |
| 462 | 462 | |
| 463 | 463 | 'path' => array( |
| 464 | - 'description' => __( 'The invoice path/slug/name.', 'invoicing' ), |
|
| 464 | + 'description' => __('The invoice path/slug/name.', 'invoicing'), |
|
| 465 | 465 | 'type' => 'string', |
| 466 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 466 | + 'context' => array('view', 'edit', 'embed'), |
|
| 467 | 467 | 'readonly' => true, |
| 468 | 468 | ), |
| 469 | 469 | |
| 470 | 470 | 'description' => array( |
| 471 | - 'description' => __( 'The invoice description.', 'invoicing' ), |
|
| 471 | + 'description' => __('The invoice description.', 'invoicing'), |
|
| 472 | 472 | 'type' => 'string', |
| 473 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 473 | + 'context' => array('view', 'edit', 'embed'), |
|
| 474 | 474 | ), |
| 475 | 475 | |
| 476 | 476 | 'payment_form' => array( |
| 477 | - 'description' => __( 'The id of the payment form used to pay for this invoice.', 'invoicing' ), |
|
| 477 | + 'description' => __('The id of the payment form used to pay for this invoice.', 'invoicing'), |
|
| 478 | 478 | 'type' => 'integer', |
| 479 | - 'context' => array( 'view', 'edit' ), |
|
| 479 | + 'context' => array('view', 'edit'), |
|
| 480 | 480 | 'readonly' => true, |
| 481 | 481 | ), |
| 482 | 482 | |
| 483 | 483 | 'submission_id' => array( |
| 484 | - 'description' => __( 'A uniques ID of the submission details used to pay for this invoice.', 'invoicing' ), |
|
| 484 | + 'description' => __('A uniques ID of the submission details used to pay for this invoice.', 'invoicing'), |
|
| 485 | 485 | 'type' => 'string', |
| 486 | - 'context' => array( 'view', 'edit' ), |
|
| 486 | + 'context' => array('view', 'edit'), |
|
| 487 | 487 | 'readonly' => true, |
| 488 | 488 | ), |
| 489 | 489 | |
| 490 | 490 | 'customer_id' => array( |
| 491 | - 'description' => __( 'The customer id.', 'invoicing' ), |
|
| 491 | + 'description' => __('The customer id.', 'invoicing'), |
|
| 492 | 492 | 'type' => 'integer', |
| 493 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 493 | + 'context' => array('view', 'edit', 'embed'), |
|
| 494 | 494 | ), |
| 495 | 495 | |
| 496 | 496 | 'customer_ip' => array( |
| 497 | - 'description' => __( "The customer's ip address.", 'invoicing' ), |
|
| 497 | + 'description' => __("The customer's ip address.", 'invoicing'), |
|
| 498 | 498 | 'type' => 'string', |
| 499 | 499 | 'format' => 'ip', |
| 500 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 500 | + 'context' => array('view', 'edit', 'embed'), |
|
| 501 | 501 | ), |
| 502 | 502 | |
| 503 | 503 | 'first_name' => array( |
| 504 | - 'description' => __( "The customer's first name.", 'invoicing' ), |
|
| 504 | + 'description' => __("The customer's first name.", 'invoicing'), |
|
| 505 | 505 | 'type' => 'string', |
| 506 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 506 | + 'context' => array('view', 'edit', 'embed'), |
|
| 507 | 507 | ), |
| 508 | 508 | |
| 509 | 509 | 'last_name' => array( |
| 510 | - 'description' => __( "The customer's last name.", 'invoicing' ), |
|
| 510 | + 'description' => __("The customer's last name.", 'invoicing'), |
|
| 511 | 511 | 'type' => 'string', |
| 512 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 512 | + 'context' => array('view', 'edit', 'embed'), |
|
| 513 | 513 | ), |
| 514 | 514 | |
| 515 | 515 | 'full_name' => array( |
| 516 | - 'description' => __( "The customer's full name.", 'invoicing' ), |
|
| 516 | + 'description' => __("The customer's full name.", 'invoicing'), |
|
| 517 | 517 | 'type' => 'string', |
| 518 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 518 | + 'context' => array('view', 'edit', 'embed'), |
|
| 519 | 519 | 'readonly' => true, |
| 520 | 520 | ), |
| 521 | 521 | |
| 522 | 522 | 'phone_number' => array( |
| 523 | - 'description' => __( "The customer's phone number.", 'invoicing' ), |
|
| 523 | + 'description' => __("The customer's phone number.", 'invoicing'), |
|
| 524 | 524 | 'type' => 'string', |
| 525 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 525 | + 'context' => array('view', 'edit', 'embed'), |
|
| 526 | 526 | ), |
| 527 | 527 | |
| 528 | 528 | 'email_address' => array( |
| 529 | - 'description' => __( "The customer's email address.", 'invoicing' ), |
|
| 529 | + 'description' => __("The customer's email address.", 'invoicing'), |
|
| 530 | 530 | 'type' => 'string', |
| 531 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 531 | + 'context' => array('view', 'edit', 'embed'), |
|
| 532 | 532 | 'readonly' => true, |
| 533 | 533 | ), |
| 534 | 534 | |
| 535 | 535 | 'customer_country' => array( |
| 536 | - 'description' => __( "The customer's country.", 'invoicing' ), |
|
| 536 | + 'description' => __("The customer's country.", 'invoicing'), |
|
| 537 | 537 | 'type' => 'string', |
| 538 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 538 | + 'context' => array('view', 'edit', 'embed'), |
|
| 539 | 539 | 'default' => wpinv_get_default_country(), |
| 540 | 540 | ), |
| 541 | 541 | |
| 542 | 542 | 'customer_state' => array( |
| 543 | - 'description' => __( "The customer's state.", 'invoicing' ), |
|
| 543 | + 'description' => __("The customer's state.", 'invoicing'), |
|
| 544 | 544 | 'type' => 'string', |
| 545 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 545 | + 'context' => array('view', 'edit', 'embed'), |
|
| 546 | 546 | ), |
| 547 | 547 | |
| 548 | 548 | 'customer_city' => array( |
| 549 | - 'description' => __( "The customer's city.", 'invoicing' ), |
|
| 549 | + 'description' => __("The customer's city.", 'invoicing'), |
|
| 550 | 550 | 'type' => 'string', |
| 551 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 551 | + 'context' => array('view', 'edit', 'embed'), |
|
| 552 | 552 | ), |
| 553 | 553 | |
| 554 | 554 | 'customer_zip' => array( |
| 555 | - 'description' => __( "The customer's zip/postal code.", 'invoicing' ), |
|
| 555 | + 'description' => __("The customer's zip/postal code.", 'invoicing'), |
|
| 556 | 556 | 'type' => 'string', |
| 557 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 557 | + 'context' => array('view', 'edit', 'embed'), |
|
| 558 | 558 | ), |
| 559 | 559 | |
| 560 | 560 | 'customer_company' => array( |
| 561 | - 'description' => __( "The customer's company name.", 'invoicing' ), |
|
| 561 | + 'description' => __("The customer's company name.", 'invoicing'), |
|
| 562 | 562 | 'type' => 'string', |
| 563 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 563 | + 'context' => array('view', 'edit', 'embed'), |
|
| 564 | 564 | ), |
| 565 | 565 | |
| 566 | 566 | 'vat_number' => array( |
| 567 | - 'description' => __( "The customer's VAT number.", 'invoicing' ), |
|
| 567 | + 'description' => __("The customer's VAT number.", 'invoicing'), |
|
| 568 | 568 | 'type' => 'string', |
| 569 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 569 | + 'context' => array('view', 'edit', 'embed'), |
|
| 570 | 570 | ), |
| 571 | 571 | |
| 572 | 572 | 'vat_rate' => array( |
| 573 | - 'description' => __( "The customer's VAT rate.", 'invoicing' ), |
|
| 573 | + 'description' => __("The customer's VAT rate.", 'invoicing'), |
|
| 574 | 574 | 'type' => 'number', |
| 575 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 575 | + 'context' => array('view', 'edit', 'embed'), |
|
| 576 | 576 | 'readonly' => true, |
| 577 | 577 | ), |
| 578 | 578 | |
| 579 | 579 | 'customer_address' => array( |
| 580 | - 'description' => __( "The customer's address.", 'invoicing' ), |
|
| 580 | + 'description' => __("The customer's address.", 'invoicing'), |
|
| 581 | 581 | 'type' => 'string', |
| 582 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 582 | + 'context' => array('view', 'edit', 'embed'), |
|
| 583 | 583 | ), |
| 584 | 584 | |
| 585 | 585 | 'address_confirmed' => array( |
| 586 | - 'description' => __( "Whether or not the customer's address is confirmed.", 'invoicing' ), |
|
| 586 | + 'description' => __("Whether or not the customer's address is confirmed.", 'invoicing'), |
|
| 587 | 587 | 'type' => 'boolean', |
| 588 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 588 | + 'context' => array('view', 'edit', 'embed'), |
|
| 589 | 589 | ), |
| 590 | 590 | |
| 591 | 591 | 'meta_data' => array( |
| 592 | - 'description' => __( 'Invoice meta data.', 'invoicing' ), |
|
| 592 | + 'description' => __('Invoice meta data.', 'invoicing'), |
|
| 593 | 593 | 'type' => 'array', |
| 594 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 594 | + 'context' => array('view', 'edit', 'embed'), |
|
| 595 | 595 | 'items' => array( |
| 596 | 596 | 'type' => 'object', |
| 597 | 597 | 'properties' => array( |
| 598 | 598 | 'id' => array( |
| 599 | - 'description' => __( 'Meta ID.', 'invoicing' ), |
|
| 599 | + 'description' => __('Meta ID.', 'invoicing'), |
|
| 600 | 600 | 'type' => 'string', |
| 601 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 601 | + 'context' => array('view', 'edit', 'embed'), |
|
| 602 | 602 | ), |
| 603 | 603 | 'key' => array( |
| 604 | - 'description' => __( 'Meta key.', 'invoicing' ), |
|
| 604 | + 'description' => __('Meta key.', 'invoicing'), |
|
| 605 | 605 | 'type' => 'string', |
| 606 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 606 | + 'context' => array('view', 'edit', 'embed'), |
|
| 607 | 607 | ), |
| 608 | 608 | 'value' => array( |
| 609 | - 'description' => __( 'Meta Value.', 'invoicing' ), |
|
| 610 | - 'type' => array( 'string', 'array', 'object', 'integer', 'null' ), |
|
| 611 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 609 | + 'description' => __('Meta Value.', 'invoicing'), |
|
| 610 | + 'type' => array('string', 'array', 'object', 'integer', 'null'), |
|
| 611 | + 'context' => array('view', 'edit', 'embed'), |
|
| 612 | 612 | ), |
| 613 | 613 | ), |
| 614 | 614 | ), |
| 615 | 615 | ), |
| 616 | 616 | |
| 617 | 617 | 'view_url' => array( |
| 618 | - 'description' => __( 'URL to the invoice.', 'invoicing' ), |
|
| 618 | + 'description' => __('URL to the invoice.', 'invoicing'), |
|
| 619 | 619 | 'type' => 'string', |
| 620 | 620 | 'format' => 'uri', |
| 621 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 621 | + 'context' => array('view', 'edit', 'embed'), |
|
| 622 | 622 | 'readonly' => true, |
| 623 | 623 | ), |
| 624 | 624 | |
| 625 | 625 | 'checkout_payment_url' => array( |
| 626 | - 'description' => __( 'URL to the invoice checkout page.', 'invoicing' ), |
|
| 626 | + 'description' => __('URL to the invoice checkout page.', 'invoicing'), |
|
| 627 | 627 | 'type' => 'string', |
| 628 | 628 | 'format' => 'uri', |
| 629 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 629 | + 'context' => array('view', 'edit', 'embed'), |
|
| 630 | 630 | 'readonly' => true, |
| 631 | 631 | ), |
| 632 | 632 | |
| 633 | 633 | 'receipt_url' => array( |
| 634 | - 'description' => __( 'URL to the invoice receipt page.', 'invoicing' ), |
|
| 634 | + 'description' => __('URL to the invoice receipt page.', 'invoicing'), |
|
| 635 | 635 | 'type' => 'string', |
| 636 | 636 | 'format' => 'uri', |
| 637 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 637 | + 'context' => array('view', 'edit', 'embed'), |
|
| 638 | 638 | 'readonly' => true, |
| 639 | 639 | ), |
| 640 | 640 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | 'AED' => 'د.إ', |
@@ -8,168 +8,168 @@ |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | - 'USD' => __( 'US Dollar', 'invoicing' ), |
|
| 15 | - 'EUR' => __( 'Euro', 'invoicing' ), |
|
| 16 | - 'GBP' => __( 'Pound Sterling', 'invoicing' ), |
|
| 17 | - 'AED' => __( 'United Arab Emirates', 'invoicing' ), |
|
| 18 | - 'AFN' => __( 'Afghan Afghani', 'invoicing' ), |
|
| 19 | - 'ALL' => __( 'Albanian Lek', 'invoicing' ), |
|
| 20 | - 'AMD' => __( 'Armenian Dram', 'invoicing' ), |
|
| 21 | - 'ANG' => __( 'Netherlands Antillean Guilder', 'invoicing' ), |
|
| 22 | - 'AOA' => __( 'Angolan Kwanza', 'invoicing' ), |
|
| 23 | - 'ARS' => __( 'Argentine Peso', 'invoicing' ), |
|
| 24 | - 'AUD' => __( 'Australian Dollar', 'invoicing' ), |
|
| 25 | - 'AWG' => __( 'Aruban Florin', 'invoicing' ), |
|
| 26 | - 'AZN' => __( 'Azerbaijani Manat', 'invoicing' ), |
|
| 27 | - 'BAM' => __( 'Bosnia and Herzegovina Convertible Marka', 'invoicing' ), |
|
| 28 | - 'BBD' => __( 'Barbadian Dollar', 'invoicing' ), |
|
| 29 | - 'BDT' => __( 'Bangladeshi Taka', 'invoicing' ), |
|
| 30 | - 'BGN' => __( 'Bulgarian Lev', 'invoicing' ), |
|
| 31 | - 'BHD' => __( 'Bahraini Dinar', 'invoicing' ), |
|
| 32 | - 'BIF' => __( 'Burundian Franc', 'invoicing' ), |
|
| 33 | - 'BMD' => __( 'Bermudian Dollar', 'invoicing' ), |
|
| 34 | - 'BND' => __( 'Brunei Dollar', 'invoicing' ), |
|
| 35 | - 'BOB' => __( 'Bolivian Boliviano', 'invoicing' ), |
|
| 36 | - 'BRL' => __( 'Brazilian Real', 'invoicing' ), |
|
| 37 | - 'BSD' => __( 'Bahamian Dollar', 'invoicing' ), |
|
| 38 | - 'BTC' => __( 'Bitcoin', 'invoicing' ), |
|
| 39 | - 'BTN' => __( 'Bhutanese Ngultrum', 'invoicing' ), |
|
| 40 | - 'BWP' => __( 'Botswana Pula', 'invoicing' ), |
|
| 41 | - 'BYN' => __( 'Belarusian Ruble', 'invoicing' ), |
|
| 42 | - 'BZD' => __( 'Belize Dollar', 'invoicing' ), |
|
| 43 | - 'CAD' => __( 'Canadian Dollar', 'invoicing' ), |
|
| 44 | - 'CDF' => __( 'Congolese Franc', 'invoicing' ), |
|
| 45 | - 'CHF' => __( 'Swiss Franc', 'invoicing' ), |
|
| 46 | - 'CLP' => __( 'Chilean Peso', 'invoicing' ), |
|
| 47 | - 'CNY' => __( 'Chinese Yuan', 'invoicing' ), |
|
| 48 | - 'COP' => __( 'Colombian Peso', 'invoicing' ), |
|
| 49 | - 'CRC' => __( 'Costa Rican Colon', 'invoicing' ), |
|
| 50 | - 'CUC' => __( 'Cuban Convertible Peso', 'invoicing' ), |
|
| 51 | - 'CUP' => __( 'Cuban Peso', 'invoicing' ), |
|
| 52 | - 'CVE' => __( 'Cape Verdean escudo', 'invoicing' ), |
|
| 53 | - 'CZK' => __( 'Czech Koruna', 'invoicing' ), |
|
| 54 | - 'DJF' => __( 'Djiboutian Franc', 'invoicing' ), |
|
| 55 | - 'DKK' => __( 'Danish Krone', 'invoicing' ), |
|
| 56 | - 'DOP' => __( 'Dominican Peso', 'invoicing' ), |
|
| 57 | - 'DZD' => __( 'Algerian Dinar', 'invoicing' ), |
|
| 58 | - 'EGP' => __( 'Egyptian Pound', 'invoicing' ), |
|
| 59 | - 'ERN' => __( 'Eritrean Nakfa', 'invoicing' ), |
|
| 60 | - 'ETB' => __( 'Ethiopian Irr', 'invoicing' ), |
|
| 61 | - 'FJD' => __( 'Fijian Dollar', 'invoicing' ), |
|
| 62 | - 'FKP' => __( 'Falkland Islands Pound', 'invoicing' ), |
|
| 63 | - 'GEL' => __( 'Georgian Lari', 'invoicing' ), |
|
| 64 | - 'GGP' => __( 'Guernsey Pound', 'invoicing' ), |
|
| 65 | - 'GHS' => __( 'Ghana Cedi', 'invoicing' ), |
|
| 66 | - 'GIP' => __( 'Gibraltar Pound', 'invoicing' ), |
|
| 67 | - 'GMD' => __( 'Gambian Dalasi', 'invoicing' ), |
|
| 68 | - 'GNF' => __( 'Guinean Franc', 'invoicing' ), |
|
| 69 | - 'GTQ' => __( 'Guatemalan Quetzal', 'invoicing' ), |
|
| 70 | - 'GYD' => __( 'Guyanese Dollar', 'invoicing' ), |
|
| 71 | - 'HKD' => __( 'Hong Kong Dollar', 'invoicing' ), |
|
| 72 | - 'HNL' => __( 'Honduran Lempira', 'invoicing' ), |
|
| 73 | - 'HRK' => __( 'Croatian Kuna', 'invoicing' ), |
|
| 74 | - 'HTG' => __( 'Haitian Gourde', 'invoicing' ), |
|
| 75 | - 'HUF' => __( 'Hungarian Forint', 'invoicing' ), |
|
| 76 | - 'IDR' => __( 'Indonesian Rupiah', 'invoicing' ), |
|
| 77 | - 'ILS' => __( 'Israeli New Shekel', 'invoicing' ), |
|
| 78 | - 'IMP' => __( 'Manx Pound', 'invoicing' ), |
|
| 79 | - 'INR' => __( 'Indian Rupee', 'invoicing' ), |
|
| 80 | - 'IQD' => __( 'Iraqi Dinar', 'invoicing' ), |
|
| 81 | - 'IRR' => __( 'Iranian Rial', 'invoicing' ), |
|
| 82 | - 'IRT' => __( 'Iranian Toman', 'invoicing' ), |
|
| 83 | - 'ISK' => __( 'Icelandic Krona', 'invoicing' ), |
|
| 84 | - 'JEP' => __( 'Jersey Pound', 'invoicing' ), |
|
| 85 | - 'JMD' => __( 'Jamaican Dollar', 'invoicing' ), |
|
| 86 | - 'JOD' => __( 'Jordanian Dinar', 'invoicing' ), |
|
| 87 | - 'JPY' => __( 'Japanese Yen', 'invoicing' ), |
|
| 88 | - 'KES' => __( 'Kenyan Shilling', 'invoicing' ), |
|
| 89 | - 'KGS' => __( 'Kyrgyzstani Som', 'invoicing' ), |
|
| 90 | - 'KHR' => __( 'Cambodian Riel', 'invoicing' ), |
|
| 91 | - 'KMF' => __( 'Comorian Franc', 'invoicing' ), |
|
| 92 | - 'KPW' => __( 'North Korean Won', 'invoicing' ), |
|
| 93 | - 'KRW' => __( 'South Korean Won', 'invoicing' ), |
|
| 94 | - 'KWD' => __( 'Kuwaiti Dinar', 'invoicing' ), |
|
| 95 | - 'KYD' => __( 'Cayman Islands Dollar', 'invoicing' ), |
|
| 96 | - 'KZT' => __( 'Kazakhstani Tenge', 'invoicing' ), |
|
| 97 | - 'LAK' => __( 'Lao Kip', 'invoicing' ), |
|
| 98 | - 'LBP' => __( 'Lebanese Pound', 'invoicing' ), |
|
| 99 | - 'LKR' => __( 'Sri Lankan Rupee', 'invoicing' ), |
|
| 100 | - 'LRD' => __( 'Liberian Dollar', 'invoicing' ), |
|
| 101 | - 'LSL' => __( 'Lesotho Loti', 'invoicing' ), |
|
| 102 | - 'LYD' => __( 'Libyan Dinar', 'invoicing' ), |
|
| 103 | - 'MAD' => __( 'Moroccan Dirham', 'invoicing' ), |
|
| 104 | - 'MDL' => __( 'Moldovan Leu', 'invoicing' ), |
|
| 105 | - 'MGA' => __( 'Malagasy Ariary', 'invoicing' ), |
|
| 106 | - 'MKD' => __( 'Macedonian Denar', 'invoicing' ), |
|
| 107 | - 'MMK' => __( 'Burmese Kyat', 'invoicing' ), |
|
| 108 | - 'MNT' => __( 'Mongolian Tughrik', 'invoicing' ), |
|
| 109 | - 'MOP' => __( 'Macanese Pataca', 'invoicing' ), |
|
| 110 | - 'MRO' => __( 'Mauritanian Ouguiya', 'invoicing' ), |
|
| 111 | - 'MUR' => __( 'Mauritian Rupee', 'invoicing' ), |
|
| 112 | - 'MVR' => __( 'Maldivian Rufiyaa', 'invoicing' ), |
|
| 113 | - 'MWK' => __( 'Malawian Kwacha', 'invoicing' ), |
|
| 114 | - 'MXN' => __( 'Mexican Peso', 'invoicing' ), |
|
| 115 | - 'MYR' => __( 'Malaysian Ringgit', 'invoicing' ), |
|
| 116 | - 'MZN' => __( 'Mozambican Metical', 'invoicing' ), |
|
| 117 | - 'NAD' => __( 'Namibian Dollar', 'invoicing' ), |
|
| 118 | - 'NGN' => __( 'Nigerian Naira', 'invoicing' ), |
|
| 119 | - 'NIO' => __( 'Nicaraguan Cordoba', 'invoicing' ), |
|
| 120 | - 'NOK' => __( 'Norwegian Krone', 'invoicing' ), |
|
| 121 | - 'NPR' => __( 'Nepalese Rupee', 'invoicing' ), |
|
| 122 | - 'NZD' => __( 'New Zealand Dollar', 'invoicing' ), |
|
| 123 | - 'OMR' => __( 'Omani Rial', 'invoicing' ), |
|
| 124 | - 'PAB' => __( 'Panamanian Balboa', 'invoicing' ), |
|
| 125 | - 'PEN' => __( 'Peruvian Nuevo Sol', 'invoicing' ), |
|
| 126 | - 'PGK' => __( 'Papua New Guinean Kina', 'invoicing' ), |
|
| 127 | - 'PHP' => __( 'Philippine Peso', 'invoicing' ), |
|
| 128 | - 'PKR' => __( 'Pakistani Rupee', 'invoicing' ), |
|
| 129 | - 'PLN' => __( 'Polish Zloty', 'invoicing' ), |
|
| 130 | - 'PRB' => __( 'Transnistrian Ruble', 'invoicing' ), |
|
| 131 | - 'PYG' => __( 'Paraguayan Guarani', 'invoicing' ), |
|
| 132 | - 'QAR' => __( 'Qatari Riyal', 'invoicing' ), |
|
| 133 | - 'RON' => __( 'Romanian Leu', 'invoicing' ), |
|
| 134 | - 'RSD' => __( 'Serbian Dinar', 'invoicing' ), |
|
| 135 | - 'RUB' => __( 'Russian Ruble', 'invoicing' ), |
|
| 136 | - 'RWF' => __( 'Rwandan Franc', 'invoicing' ), |
|
| 137 | - 'SAR' => __( 'Saudi Riyal', 'invoicing' ), |
|
| 138 | - 'SBD' => __( 'Solomon Islands Dollar', 'invoicing' ), |
|
| 139 | - 'SCR' => __( 'Seychellois Rupee', 'invoicing' ), |
|
| 140 | - 'SDG' => __( 'Sudanese Pound', 'invoicing' ), |
|
| 141 | - 'SEK' => __( 'Swedish Krona', 'invoicing' ), |
|
| 142 | - 'SGD' => __( 'Singapore Dollar', 'invoicing' ), |
|
| 143 | - 'SHP' => __( 'Saint Helena Pound', 'invoicing' ), |
|
| 144 | - 'SLL' => __( 'Sierra Leonean Leone', 'invoicing' ), |
|
| 145 | - 'SOS' => __( 'Somali Shilling', 'invoicing' ), |
|
| 146 | - 'SRD' => __( 'Surinamese Dollar', 'invoicing' ), |
|
| 147 | - 'SSP' => __( 'South Sudanese Pound', 'invoicing' ), |
|
| 148 | - 'STD' => __( 'Sao Tomean Dobra', 'invoicing' ), |
|
| 149 | - 'SYP' => __( 'Syrian Pound', 'invoicing' ), |
|
| 150 | - 'SZL' => __( 'Swazi Lilangeni', 'invoicing' ), |
|
| 151 | - 'THB' => __( 'Thai Baht', 'invoicing' ), |
|
| 152 | - 'TJS' => __( 'Tajikistani Somoni', 'invoicing' ), |
|
| 153 | - 'TMT' => __( 'Turkmenistan Manat', 'invoicing' ), |
|
| 154 | - 'TND' => __( 'Tunisian Dinar', 'invoicing' ), |
|
| 155 | - 'TOP' => __( 'Tongan Paʻanga', 'invoicing' ), |
|
| 156 | - 'TRY' => __( 'Turkish Lira', 'invoicing' ), |
|
| 157 | - 'TTD' => __( 'Trinidad and Tobago Dollar', 'invoicing' ), |
|
| 158 | - 'TWD' => __( 'New Taiwan Dollar', 'invoicing' ), |
|
| 159 | - 'TZS' => __( 'Tanzanian Shilling', 'invoicing' ), |
|
| 160 | - 'UAH' => __( 'Ukrainian Hryvnia', 'invoicing' ), |
|
| 161 | - 'UGX' => __( 'Ugandan Shilling', 'invoicing' ), |
|
| 162 | - 'UYU' => __( 'Uruguayan Peso', 'invoicing' ), |
|
| 163 | - 'UZS' => __( 'Uzbekistani Som', 'invoicing' ), |
|
| 164 | - 'VEF' => __( 'Venezuelan Bolívar', 'invoicing' ), |
|
| 165 | - 'VND' => __( 'Vietnamese Dong', 'invoicing' ), |
|
| 166 | - 'VUV' => __( 'Vanuatu Vatu', 'invoicing' ), |
|
| 167 | - 'WST' => __( 'Samoan Tala', 'invoicing' ), |
|
| 168 | - 'XAF' => __( 'Central African CFA Franc', 'invoicing' ), |
|
| 169 | - 'XCD' => __( 'East Caribbean Dollar', 'invoicing' ), |
|
| 170 | - 'XOF' => __( 'West African CFA Franc', 'invoicing' ), |
|
| 171 | - 'XPF' => __( 'CFP Franc', 'invoicing' ), |
|
| 172 | - 'YER' => __( 'Yemeni Rial', 'invoicing' ), |
|
| 173 | - 'ZAR' => __( 'South African Rand', 'invoicing' ), |
|
| 174 | - 'ZMW' => __( 'Zambian Kwacha', 'invoicing' ), |
|
| 14 | + 'USD' => __('US Dollar', 'invoicing'), |
|
| 15 | + 'EUR' => __('Euro', 'invoicing'), |
|
| 16 | + 'GBP' => __('Pound Sterling', 'invoicing'), |
|
| 17 | + 'AED' => __('United Arab Emirates', 'invoicing'), |
|
| 18 | + 'AFN' => __('Afghan Afghani', 'invoicing'), |
|
| 19 | + 'ALL' => __('Albanian Lek', 'invoicing'), |
|
| 20 | + 'AMD' => __('Armenian Dram', 'invoicing'), |
|
| 21 | + 'ANG' => __('Netherlands Antillean Guilder', 'invoicing'), |
|
| 22 | + 'AOA' => __('Angolan Kwanza', 'invoicing'), |
|
| 23 | + 'ARS' => __('Argentine Peso', 'invoicing'), |
|
| 24 | + 'AUD' => __('Australian Dollar', 'invoicing'), |
|
| 25 | + 'AWG' => __('Aruban Florin', 'invoicing'), |
|
| 26 | + 'AZN' => __('Azerbaijani Manat', 'invoicing'), |
|
| 27 | + 'BAM' => __('Bosnia and Herzegovina Convertible Marka', 'invoicing'), |
|
| 28 | + 'BBD' => __('Barbadian Dollar', 'invoicing'), |
|
| 29 | + 'BDT' => __('Bangladeshi Taka', 'invoicing'), |
|
| 30 | + 'BGN' => __('Bulgarian Lev', 'invoicing'), |
|
| 31 | + 'BHD' => __('Bahraini Dinar', 'invoicing'), |
|
| 32 | + 'BIF' => __('Burundian Franc', 'invoicing'), |
|
| 33 | + 'BMD' => __('Bermudian Dollar', 'invoicing'), |
|
| 34 | + 'BND' => __('Brunei Dollar', 'invoicing'), |
|
| 35 | + 'BOB' => __('Bolivian Boliviano', 'invoicing'), |
|
| 36 | + 'BRL' => __('Brazilian Real', 'invoicing'), |
|
| 37 | + 'BSD' => __('Bahamian Dollar', 'invoicing'), |
|
| 38 | + 'BTC' => __('Bitcoin', 'invoicing'), |
|
| 39 | + 'BTN' => __('Bhutanese Ngultrum', 'invoicing'), |
|
| 40 | + 'BWP' => __('Botswana Pula', 'invoicing'), |
|
| 41 | + 'BYN' => __('Belarusian Ruble', 'invoicing'), |
|
| 42 | + 'BZD' => __('Belize Dollar', 'invoicing'), |
|
| 43 | + 'CAD' => __('Canadian Dollar', 'invoicing'), |
|
| 44 | + 'CDF' => __('Congolese Franc', 'invoicing'), |
|
| 45 | + 'CHF' => __('Swiss Franc', 'invoicing'), |
|
| 46 | + 'CLP' => __('Chilean Peso', 'invoicing'), |
|
| 47 | + 'CNY' => __('Chinese Yuan', 'invoicing'), |
|
| 48 | + 'COP' => __('Colombian Peso', 'invoicing'), |
|
| 49 | + 'CRC' => __('Costa Rican Colon', 'invoicing'), |
|
| 50 | + 'CUC' => __('Cuban Convertible Peso', 'invoicing'), |
|
| 51 | + 'CUP' => __('Cuban Peso', 'invoicing'), |
|
| 52 | + 'CVE' => __('Cape Verdean escudo', 'invoicing'), |
|
| 53 | + 'CZK' => __('Czech Koruna', 'invoicing'), |
|
| 54 | + 'DJF' => __('Djiboutian Franc', 'invoicing'), |
|
| 55 | + 'DKK' => __('Danish Krone', 'invoicing'), |
|
| 56 | + 'DOP' => __('Dominican Peso', 'invoicing'), |
|
| 57 | + 'DZD' => __('Algerian Dinar', 'invoicing'), |
|
| 58 | + 'EGP' => __('Egyptian Pound', 'invoicing'), |
|
| 59 | + 'ERN' => __('Eritrean Nakfa', 'invoicing'), |
|
| 60 | + 'ETB' => __('Ethiopian Irr', 'invoicing'), |
|
| 61 | + 'FJD' => __('Fijian Dollar', 'invoicing'), |
|
| 62 | + 'FKP' => __('Falkland Islands Pound', 'invoicing'), |
|
| 63 | + 'GEL' => __('Georgian Lari', 'invoicing'), |
|
| 64 | + 'GGP' => __('Guernsey Pound', 'invoicing'), |
|
| 65 | + 'GHS' => __('Ghana Cedi', 'invoicing'), |
|
| 66 | + 'GIP' => __('Gibraltar Pound', 'invoicing'), |
|
| 67 | + 'GMD' => __('Gambian Dalasi', 'invoicing'), |
|
| 68 | + 'GNF' => __('Guinean Franc', 'invoicing'), |
|
| 69 | + 'GTQ' => __('Guatemalan Quetzal', 'invoicing'), |
|
| 70 | + 'GYD' => __('Guyanese Dollar', 'invoicing'), |
|
| 71 | + 'HKD' => __('Hong Kong Dollar', 'invoicing'), |
|
| 72 | + 'HNL' => __('Honduran Lempira', 'invoicing'), |
|
| 73 | + 'HRK' => __('Croatian Kuna', 'invoicing'), |
|
| 74 | + 'HTG' => __('Haitian Gourde', 'invoicing'), |
|
| 75 | + 'HUF' => __('Hungarian Forint', 'invoicing'), |
|
| 76 | + 'IDR' => __('Indonesian Rupiah', 'invoicing'), |
|
| 77 | + 'ILS' => __('Israeli New Shekel', 'invoicing'), |
|
| 78 | + 'IMP' => __('Manx Pound', 'invoicing'), |
|
| 79 | + 'INR' => __('Indian Rupee', 'invoicing'), |
|
| 80 | + 'IQD' => __('Iraqi Dinar', 'invoicing'), |
|
| 81 | + 'IRR' => __('Iranian Rial', 'invoicing'), |
|
| 82 | + 'IRT' => __('Iranian Toman', 'invoicing'), |
|
| 83 | + 'ISK' => __('Icelandic Krona', 'invoicing'), |
|
| 84 | + 'JEP' => __('Jersey Pound', 'invoicing'), |
|
| 85 | + 'JMD' => __('Jamaican Dollar', 'invoicing'), |
|
| 86 | + 'JOD' => __('Jordanian Dinar', 'invoicing'), |
|
| 87 | + 'JPY' => __('Japanese Yen', 'invoicing'), |
|
| 88 | + 'KES' => __('Kenyan Shilling', 'invoicing'), |
|
| 89 | + 'KGS' => __('Kyrgyzstani Som', 'invoicing'), |
|
| 90 | + 'KHR' => __('Cambodian Riel', 'invoicing'), |
|
| 91 | + 'KMF' => __('Comorian Franc', 'invoicing'), |
|
| 92 | + 'KPW' => __('North Korean Won', 'invoicing'), |
|
| 93 | + 'KRW' => __('South Korean Won', 'invoicing'), |
|
| 94 | + 'KWD' => __('Kuwaiti Dinar', 'invoicing'), |
|
| 95 | + 'KYD' => __('Cayman Islands Dollar', 'invoicing'), |
|
| 96 | + 'KZT' => __('Kazakhstani Tenge', 'invoicing'), |
|
| 97 | + 'LAK' => __('Lao Kip', 'invoicing'), |
|
| 98 | + 'LBP' => __('Lebanese Pound', 'invoicing'), |
|
| 99 | + 'LKR' => __('Sri Lankan Rupee', 'invoicing'), |
|
| 100 | + 'LRD' => __('Liberian Dollar', 'invoicing'), |
|
| 101 | + 'LSL' => __('Lesotho Loti', 'invoicing'), |
|
| 102 | + 'LYD' => __('Libyan Dinar', 'invoicing'), |
|
| 103 | + 'MAD' => __('Moroccan Dirham', 'invoicing'), |
|
| 104 | + 'MDL' => __('Moldovan Leu', 'invoicing'), |
|
| 105 | + 'MGA' => __('Malagasy Ariary', 'invoicing'), |
|
| 106 | + 'MKD' => __('Macedonian Denar', 'invoicing'), |
|
| 107 | + 'MMK' => __('Burmese Kyat', 'invoicing'), |
|
| 108 | + 'MNT' => __('Mongolian Tughrik', 'invoicing'), |
|
| 109 | + 'MOP' => __('Macanese Pataca', 'invoicing'), |
|
| 110 | + 'MRO' => __('Mauritanian Ouguiya', 'invoicing'), |
|
| 111 | + 'MUR' => __('Mauritian Rupee', 'invoicing'), |
|
| 112 | + 'MVR' => __('Maldivian Rufiyaa', 'invoicing'), |
|
| 113 | + 'MWK' => __('Malawian Kwacha', 'invoicing'), |
|
| 114 | + 'MXN' => __('Mexican Peso', 'invoicing'), |
|
| 115 | + 'MYR' => __('Malaysian Ringgit', 'invoicing'), |
|
| 116 | + 'MZN' => __('Mozambican Metical', 'invoicing'), |
|
| 117 | + 'NAD' => __('Namibian Dollar', 'invoicing'), |
|
| 118 | + 'NGN' => __('Nigerian Naira', 'invoicing'), |
|
| 119 | + 'NIO' => __('Nicaraguan Cordoba', 'invoicing'), |
|
| 120 | + 'NOK' => __('Norwegian Krone', 'invoicing'), |
|
| 121 | + 'NPR' => __('Nepalese Rupee', 'invoicing'), |
|
| 122 | + 'NZD' => __('New Zealand Dollar', 'invoicing'), |
|
| 123 | + 'OMR' => __('Omani Rial', 'invoicing'), |
|
| 124 | + 'PAB' => __('Panamanian Balboa', 'invoicing'), |
|
| 125 | + 'PEN' => __('Peruvian Nuevo Sol', 'invoicing'), |
|
| 126 | + 'PGK' => __('Papua New Guinean Kina', 'invoicing'), |
|
| 127 | + 'PHP' => __('Philippine Peso', 'invoicing'), |
|
| 128 | + 'PKR' => __('Pakistani Rupee', 'invoicing'), |
|
| 129 | + 'PLN' => __('Polish Zloty', 'invoicing'), |
|
| 130 | + 'PRB' => __('Transnistrian Ruble', 'invoicing'), |
|
| 131 | + 'PYG' => __('Paraguayan Guarani', 'invoicing'), |
|
| 132 | + 'QAR' => __('Qatari Riyal', 'invoicing'), |
|
| 133 | + 'RON' => __('Romanian Leu', 'invoicing'), |
|
| 134 | + 'RSD' => __('Serbian Dinar', 'invoicing'), |
|
| 135 | + 'RUB' => __('Russian Ruble', 'invoicing'), |
|
| 136 | + 'RWF' => __('Rwandan Franc', 'invoicing'), |
|
| 137 | + 'SAR' => __('Saudi Riyal', 'invoicing'), |
|
| 138 | + 'SBD' => __('Solomon Islands Dollar', 'invoicing'), |
|
| 139 | + 'SCR' => __('Seychellois Rupee', 'invoicing'), |
|
| 140 | + 'SDG' => __('Sudanese Pound', 'invoicing'), |
|
| 141 | + 'SEK' => __('Swedish Krona', 'invoicing'), |
|
| 142 | + 'SGD' => __('Singapore Dollar', 'invoicing'), |
|
| 143 | + 'SHP' => __('Saint Helena Pound', 'invoicing'), |
|
| 144 | + 'SLL' => __('Sierra Leonean Leone', 'invoicing'), |
|
| 145 | + 'SOS' => __('Somali Shilling', 'invoicing'), |
|
| 146 | + 'SRD' => __('Surinamese Dollar', 'invoicing'), |
|
| 147 | + 'SSP' => __('South Sudanese Pound', 'invoicing'), |
|
| 148 | + 'STD' => __('Sao Tomean Dobra', 'invoicing'), |
|
| 149 | + 'SYP' => __('Syrian Pound', 'invoicing'), |
|
| 150 | + 'SZL' => __('Swazi Lilangeni', 'invoicing'), |
|
| 151 | + 'THB' => __('Thai Baht', 'invoicing'), |
|
| 152 | + 'TJS' => __('Tajikistani Somoni', 'invoicing'), |
|
| 153 | + 'TMT' => __('Turkmenistan Manat', 'invoicing'), |
|
| 154 | + 'TND' => __('Tunisian Dinar', 'invoicing'), |
|
| 155 | + 'TOP' => __('Tongan Paʻanga', 'invoicing'), |
|
| 156 | + 'TRY' => __('Turkish Lira', 'invoicing'), |
|
| 157 | + 'TTD' => __('Trinidad and Tobago Dollar', 'invoicing'), |
|
| 158 | + 'TWD' => __('New Taiwan Dollar', 'invoicing'), |
|
| 159 | + 'TZS' => __('Tanzanian Shilling', 'invoicing'), |
|
| 160 | + 'UAH' => __('Ukrainian Hryvnia', 'invoicing'), |
|
| 161 | + 'UGX' => __('Ugandan Shilling', 'invoicing'), |
|
| 162 | + 'UYU' => __('Uruguayan Peso', 'invoicing'), |
|
| 163 | + 'UZS' => __('Uzbekistani Som', 'invoicing'), |
|
| 164 | + 'VEF' => __('Venezuelan Bolívar', 'invoicing'), |
|
| 165 | + 'VND' => __('Vietnamese Dong', 'invoicing'), |
|
| 166 | + 'VUV' => __('Vanuatu Vatu', 'invoicing'), |
|
| 167 | + 'WST' => __('Samoan Tala', 'invoicing'), |
|
| 168 | + 'XAF' => __('Central African CFA Franc', 'invoicing'), |
|
| 169 | + 'XCD' => __('East Caribbean Dollar', 'invoicing'), |
|
| 170 | + 'XOF' => __('West African CFA Franc', 'invoicing'), |
|
| 171 | + 'XPF' => __('CFP Franc', 'invoicing'), |
|
| 172 | + 'YER' => __('Yemeni Rial', 'invoicing'), |
|
| 173 | + 'ZAR' => __('South African Rand', 'invoicing'), |
|
| 174 | + 'ZMW' => __('Zambian Kwacha', 'invoicing'), |
|
| 175 | 175 | ); |