Changeset 2866984
- Timestamp:
- 02/17/2023 01:10:55 PM (3 years ago)
- File:
-
- 1 edited
-
fuvar-hu-api/trunk/inc/shipping_method.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fuvar-hu-api/trunk/inc/shipping_method.php
r2596076 r2866984 77 77 $this->instance_id = absint( $instance_id ); 78 78 $this->method_title = __( 'Fuvar.hu - Házhoz szállítás' ); 79 $this->method_description = __( 'Házhoz szállítás fuvar.hu segítségével' );79 $this->method_description = __( 'Házhozszállítás a Fuvar vagy szerződött partnerei által' ); 80 80 $this->supports = array( 81 81 'shipping-zones', … … 98 98 ); 99 99 $this->enabled = $this->get_option( 'enabled' ); 100 $this->title = 'Házhoz szállítás ';100 $this->title = 'Házhoz szállítás a Fuvarral'; 101 101 102 102 add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) ); … … 119 119 $this->id = 'fuvarhu_pop'; 120 120 $this->instance_id = absint( $instance_id ); 121 $this->method_title = __( 'Fuvar.hu - Postapont(MOL, Coop)' );122 $this->method_description = __( ' Postapont (MOL, Coop) fuvar.hu segítségével' );121 $this->method_title = __( 'Fuvar.hu - MPL PostaPontra (MOL, Coop)' ); 122 $this->method_description = __( 'Kiszállítás MPL PostaPontra' ); 123 123 $this->supports = array( 124 124 'shipping-zones', … … 141 141 ); 142 142 $this->enabled = $this->get_option( 'enabled' ); 143 $this->title = ' Postapont (MOL, Coop)';143 $this->title = 'MPL PostaPontra (MOL, Coop) a Fuvarral'; 144 144 145 145 add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) ); … … 162 162 $this->instance_id = absint( $instance_id ); 163 163 $this->method_title = __( 'Fuvar.hu - Postára kézbesítés' ); 164 $this->method_description = __( ' Postára kézbesítés fuvar.hu segítségével' );164 $this->method_description = __( 'Kiszállítás postán maradó csomagként' ); 165 165 $this->supports = array( 166 166 'shipping-zones', … … 183 183 ); 184 184 $this->enabled = $this->get_option( 'enabled' ); 185 $this->title = 'Postára kézbesítés ';185 $this->title = 'Postára kézbesítés a Fuvarral'; 186 186 187 187 add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) ); … … 203 203 $this->id = 'fuvarhu_csp'; 204 204 $this->instance_id = absint( $instance_id ); 205 $this->method_title = __( 'Fuvar.hu - Csomagpontra kézbesítés' );206 $this->method_description = __( ' Csomagpontra kézbesítés fuvar.hu segítségével' );205 $this->method_title = __( 'Fuvar.hu - MPL Csomagautoma' ); 206 $this->method_description = __( 'Kiszállítás MPL Csomagautomatába' ); 207 207 $this->supports = array( 208 208 'shipping-zones', … … 225 225 ); 226 226 $this->enabled = $this->get_option( 'enabled' ); 227 $this->title = ' Csomagpontra kézbesítés';227 $this->title = 'MPL Csomagautomatába a Fuvarral'; 228 228 229 229 add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
Note: See TracChangeset
for help on using the changeset viewer.