Changeset 3489671
- Timestamp:
- 03/24/2026 07:10:28 AM (4 days ago)
- Location:
- collect-and-deliver-interface-for-woocommerce/trunk
- Files:
-
- 9 edited
-
cdi.php (modified) (4 diffs)
-
includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php (modified) (2 diffs)
-
includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php (modified) (2 diffs)
-
includes/CDI-Gateway-Bordereaux.php (modified) (2 diffs)
-
includes/CDI-Orderlist.php (modified) (1 diff)
-
includes/CDI-Shipping.php (modified) (2 diffs)
-
languages/collect-and-deliver-interface-for-woocommerce-fr_FR.mo (modified) (previous)
-
languages/collect-and-deliver-interface-for-woocommerce-fr_FR.po (modified) (102 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collect-and-deliver-interface-for-woocommerce/trunk/cdi.php
r3458981 r3489671 3 3 * Plugin Name: Collect and Deliver Interface for Woocommerce 4 4 * Description: CDI - To manage and control your shipments 5 * Version: 5.5.1 45 * Version: 5.5.15 6 6 * Author: Halyra 7 7 * … … 284 284 global $wpdb; 285 285 $settingupdate = get_option( 'cdi_o_settingupdate') ; 286 $currentversion = '5.5.1 4';286 $currentversion = '5.5.15'; 287 287 $oldversion = get_option( 'cdi_o_version' ); 288 288 $x = strnatcasecmp( $currentversion, $oldversion ); … … 412 412 include_once( 'includes/CDI-Bibext/CDI-Bibext.php' ); 413 413 cdi_c_Bibext::init(); 414 415 include_once( 'includes/CDI-Carrier-notcdi/exec.php' ); 416 cdi_c_Carrier_notcdi::init(); 414 417 415 418 include_once( 'includes/CDI-Metabox.php' ); … … 485 488 cdi_c_Carrier_deliver::init(); 486 489 487 include_once( 'includes/CDI-Carrier-notcdi/exec.php' ); 488 cdi_c_Carrier_notcdi::init(); 489 490 } 491 492 490 } 491 492 -
collect-and-deliver-interface-for-woocommerce/trunk/includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php
r3458752 r3489671 224 224 if ((get_option("cdi_o_settings_mondialrelay_contractnumber") . '@business-api.mondialrelay.com') == get_option("cdi_o_settings_mondialrelay_loginapiv2")) { 225 225 // ********************************* Beginning of Mondialrelay Web service in XML mode (V2) ********************************* 226 if ( $MR_WebSiteId == 'TTMRSDBX' ) { 227 $urlAffMrV2 = 'https://connect-api-sandbox.mondialrelay.com/api/shipment' ; // Test 228 }else{ 229 $urlAffMrV2 = 'https://connect-api.mondialrelay.com/api/Shipment' ; // Prod ; 230 } 226 231 $params = []; 227 232 $Context = []; … … 324 329 325 330 $args = ["headers" => $headers, "body" => $requestXml, ]; 326 $result = wp_remote_post( "https://connect-api-sandbox.mondialrelay.com/api/shipment", $args);331 $result = wp_remote_post($urlAffMrV2, $args); 327 332 // Body convert in ARRAY 328 333 $responseXml = simplexml_load_string($result["body"]); 329 334 $arrayresponse = json_decode(json_encode($responseXml) , true); 330 //cdi_c_Function::cdi_debug(__LINE__, __FILE__, $arrayresponse, "tec"); 335 //cdi_c_Function::cdi_debug(__LINE__, __FILE__, $arrayresponse, "tec"); 331 336 if ($result["response"]["code"] !== 200) { 332 337 cdi_c_Function::cdi_debug(__LINE__, __FILE__, $params, "tec"); -
collect-and-deliver-interface-for-woocommerce/trunk/includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php
r3458752 r3489671 104 104 if ((get_option("cdi_o_settings_mondialrelay_contractnumber") . '@business-api.mondialrelay.com') == get_option("cdi_o_settings_mondialrelay_loginapiv2")) { 105 105 // ********************************* Beginning of Mondialrelay Web service in XML mode (V2) ********************************* 106 if ( $MR_WebSiteId == 'TTMRSDBX' ) { 107 $urlAffMrV2 = 'https://connect-api-sandbox.mondialrelay.com/api/shipment' ; // Test 108 }else{ 109 $urlAffMrV2 = 'https://connect-api.mondialrelay.com/api/Shipment' ; // Prod ; 110 } 106 111 $params = []; 107 112 $Context = []; … … 197 202 //cdi_c_Function::cdi_debug(__LINE__, __FILE__, simplexml_load_string($requestXml) , "tec"); 198 203 $args = ["headers" => $headers, "body" => $requestXml, ]; 199 $result = wp_remote_post( "https://connect-api-sandbox.mondialrelay.com/api/shipment", $args);204 $result = wp_remote_post($urlAffMrV2, $args); 200 205 // Body convert in ARRAY 201 206 $responseXml = simplexml_load_string($result["body"]); -
collect-and-deliver-interface-for-woocommerce/trunk/includes/CDI-Gateway-Bordereaux.php
r3458752 r3489671 920 920 $selected = self::cdi_get_br_selected(); 921 921 $selected = self::cdi_filtre_carrier_selected( $selected ); 922 $carrier = cdi_c_Function::cdi_fallback_carrier( $carrier ); 922 923 $route = 'cdi_c_Carrier_' . $carrier . '::cdi_prod_remise_format'; 923 924 $format = ( $route )(); … … 956 957 $selected = self::cdi_get_br_selected(); 957 958 $selected = self::cdi_filtre_carrier_selected( $selected ); 959 $carrier = cdi_c_Function::cdi_fallback_carrier( $carrier ); 958 960 $route = 'cdi_c_Carrier_' . $carrier . '::cdi_prod_remise_format'; 959 961 $format = ( $route )(); -
collect-and-deliver-interface-for-woocommerce/trunk/includes/CDI-Orderlist.php
r3195668 r3489671 221 221 222 222 $order_id = $order->get_id(); 223 $carrier = cdi_c_Function::cdi_fallback_carrier( $carrier ); 223 224 $route = 'cdi_c_Carrier_' . $carrier . '::cdi_metabox_initforcarrier'; 224 225 $return = ( $route )( $order_id, $order ); -
collect-and-deliver-interface-for-woocommerce/trunk/includes/CDI-Shipping.php
r3458752 r3489671 665 665 $toadd = $toadd + $return; 666 666 } else { 667 $arrayaddfees = explode( ',', $rates['addfees'] ); 668 $arrayaddfees = array_map( 'trim', $arrayaddfees ); 667 668 // Normalization to array of pseudo-PHP 669 $arrayaddfees = trim ($rates['addfees']) ; 670 $arrayaddfees = str_replace (array(' ', ',p=', ',w=', ',' ), array('', ';p=', ';w=', '.' ), $arrayaddfees) ; 671 $arrayaddfees = explode( ';', $arrayaddfees ); 672 ; 669 673 foreach ( $arrayaddfees as $addfee ) { 670 674 if ( $addfee ) { 671 if ( strpos( $addfee, 'p=+' ) == 0 ) {675 if ( strpos( $addfee, 'p=+' ) === 0 ) { 672 676 $p = str_replace( 'p=+', '', $addfee ); 673 $p = (float) ( str_replace( '%', '', $p ) ); 674 $p = trim( str_replace( ‘,’, ‘.’, $p ) ); 675 $x = ( ( $price / 100 ) * $p ); 676 $toadd = $toadd + $x; 677 $p = str_replace( '%', '', $p ) ; 678 if (is_numeric($p)) { 679 $x = (float) ( ( $price / 100 ) * $p ); 680 $toadd = $toadd + $x; 681 } 677 682 } 678 if ( strpos( $addfee, 'w=+' ) == 0 ) {683 if ( strpos( $addfee, 'w=+' ) === 0 ) { 679 684 $w = str_replace( 'w=+', '', $addfee ); 680 $w = trim( str_replace( ‘,’, ‘.’, $w ) ); 681 $x = (float) ( ( $weight / 1000 ) * $w ); 682 $toadd = $toadd + $x; 685 if (is_numeric($w)) { 686 $x = (float) ( ( $weight / 1000 ) * $w ); 687 $toadd = $toadd + $x; 688 } 683 689 } 684 690 } 685 } 691 } 686 692 } 687 693 $fare = $rates['fare'] + $toadd; … … 740 746 <span class="woocommerce-help-tip" data-tip=" " title="<?php _e( 'A supplement, excluding VAT, to be added to the package. This may be : 741 747 1) a 4-digit numeric code nnnn to call a wordpress filter cdi_filterstring_shipping_add_varfare_nnnn which will calculate and return the value of the additional variable; 742 2) a comma-separated list of expressions: percentage of cart price and/or additional cost per kg of weight. Ex. syntax: p=+2.5%, w=+5.743 The php short code trigger under is now deprecated for security reasons.', CDI_SLUG ); ?>"></span>748 2) a semicolon-separated list of expressions: percentage of cart price and/or additional cost per kg of weight. Ex. syntax: p=+2,5%; w=+5,5 (p=+2.5%,w=+5.5 is also allowed). 749 3) The php short code trigger under is now deprecated for security reasons.', CDI_SLUG ); ?>"></span> 744 750 </div></div></th> 745 751 <th><div style="text-align:center;"><div style="display:inline-block;"><?php _e( 'Shipping class', CDI_SLUG ); ?> -
collect-and-deliver-interface-for-woocommerce/trunk/languages/collect-and-deliver-interface-for-woocommerce-fr_FR.po
r3450862 r3489671 2 2 msgstr "" 3 3 "Project-Id-Version: cdi\n" 4 "POT-Creation-Date: 202 5-12-02 15:39+0100\n"5 "PO-Revision-Date: 202 5-12-02 15:49+0100\n"4 "POT-Creation-Date: 2026-02-20 11:13+0100\n" 5 "PO-Revision-Date: 2026-02-20 11:13+0100\n" 6 6 "Last-Translator: Halyra\n" 7 7 "Language-Team: Halyra <cdi@gmail.com>\n" … … 142 142 #: includes/CDI-Carrier-colissimo/Colissimo-Affranchissement.php:383 143 143 #: includes/CDI-Carrier-collect/Collect-Affranchissement.php:54 144 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:62 145 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:81 146 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:326 147 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:340 148 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:374 149 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:381 150 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:388 144 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:71 145 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:90 146 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:334 147 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:347 148 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:428 149 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:435 150 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:442 151 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php:208 152 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php:221 151 153 #: includes/CDI-Carrier-ups/Ups-Affranchissement.php:54 152 154 #: includes/CDI-Carrier-ups/Ups-Affranchissement.php:321 … … 168 170 #: includes/CDI-Carrier-colissimo/Colissimo-Retourcolis.php:198 169 171 #: includes/CDI-Carrier-colissimo/Colissimo-Retourcolis.php:211 170 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php: 178171 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php: 185172 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php: 191172 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php:299 173 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php:306 174 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Retourcolis.php:312 173 175 msgid " ===> Return label not available - #" 174 176 msgstr " ===> Etiquette de retour non disponible - #" … … 672 674 msgstr "Sécurité : " 673 675 674 #: includes/CDI-Carrier-collect/exec.php:252 includes/CDI-Settings.php:21 07676 #: includes/CDI-Carrier-collect/exec.php:252 includes/CDI-Settings.php:2115 675 677 msgid "With security codes to apply" 676 678 msgstr "Avec application des codes de sécurité" … … 684 686 msgstr "Code livraison :" 685 687 686 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php: 81688 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:90 687 689 msgid "Shipping country not valid" 688 690 msgstr "Pays destinataire non valide" 689 691 690 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php: 469692 #: includes/CDI-Carrier-mondialrelay/Mondialrelay-Affranchissement.php:522 691 693 msgid " parcels processed with Mondialrelay Web Service." 692 694 msgstr " colis traités par le Web Service d’affranchissement Mondial Relay." … … 706 708 msgstr "Enlèvement :" 707 709 708 #: includes/CDI-Carrier-mondialrelay/exec.php:555 includes/CDI-Settings.php:15 86710 #: includes/CDI-Carrier-mondialrelay/exec.php:555 includes/CDI-Settings.php:1590 709 711 msgid "REL - Collecte point relais" 710 712 msgstr "REL - Collecte point relais" 711 713 712 #: includes/CDI-Carrier-mondialrelay/exec.php:556 includes/CDI-Settings.php:15 87714 #: includes/CDI-Carrier-mondialrelay/exec.php:556 includes/CDI-Settings.php:1591 713 715 msgid "CDR - Collecte domicile 1P" 714 716 msgstr "CDR - Collecte domicile 1P" … … 718 720 msgstr "CDS - Collecte domicile 2P (lourd)" 719 721 720 #: includes/CDI-Carrier-mondialrelay/exec.php:558 includes/CDI-Settings.php:15 89722 #: includes/CDI-Carrier-mondialrelay/exec.php:558 includes/CDI-Settings.php:1593 721 723 msgid "CCC - Collecte Client Chargeur" 722 724 msgstr "CCC - Collecte Client Chargeur" … … 771 773 msgstr "Coût max/réel" 772 774 773 #: includes/CDI-Carrier-ups/exec.php:398 includes/CDI-Settings.php:1 795775 #: includes/CDI-Carrier-ups/exec.php:398 includes/CDI-Settings.php:1801 774 776 msgid "11 - UPS Standard" 775 777 msgstr "11 - UPS Standard" 776 778 777 #: includes/CDI-Carrier-ups/exec.php:399 includes/CDI-Settings.php:1 796779 #: includes/CDI-Carrier-ups/exec.php:399 includes/CDI-Settings.php:1802 778 780 msgid "07 - UPS Express" 779 781 msgstr "07 - UPS Express" 780 782 781 #: includes/CDI-Carrier-ups/exec.php:400 includes/CDI-Settings.php:1 797783 #: includes/CDI-Carrier-ups/exec.php:400 includes/CDI-Settings.php:1803 782 784 msgid "AP - UPS Access Point" 783 785 msgstr "AP - UPS Access Point" … … 848 850 849 851 #: includes/CDI-Frontend.php:84 includes/CDI-Frontend.php:136 850 #: includes/CDI-Settings.php:12 18852 #: includes/CDI-Settings.php:1220 851 853 msgid "Order shipped. Your tracking code is : " 852 854 msgstr "Votre colis a été expédié. Votre code de suivi est :" … … 886 888 887 889 #: includes/CDI-Frontend.php:314 includes/CDI-Frontend.php:334 888 #: includes/CDI-Settings.php:1 897890 #: includes/CDI-Settings.php:1905 889 891 msgid "Address line 3" 890 892 msgstr "Adresse ligne 3" … … 898 900 msgstr "Les armées françaises" 899 901 900 #: includes/CDI-Function.php:9 26902 #: includes/CDI-Function.php:941 901 903 msgid "Mail to CDI not sent : not authorized file type ! " 902 904 msgstr "Message à CDI non envoyé : Type de fichier non autorisé ! " 903 905 904 #: includes/CDI-Function.php:9 32906 #: includes/CDI-Function.php:947 905 907 msgid "Mail to CDI not sent : Files too big !" 906 908 msgstr "Message à CDI non envoyé : Fichiers trop volumineux !" 907 909 908 #: includes/CDI-Function.php:9 49910 #: includes/CDI-Function.php:964 909 911 msgid "Your private message has been sent." 910 912 msgstr "Votre message privé a été envoyé." 911 913 912 #: includes/CDI-Function.php:1 089914 #: includes/CDI-Function.php:1104 913 915 msgid " ===> Search relays error - Customer address not found : " 914 916 msgstr "" … … 1262 1264 1263 1265 #: includes/CDI-Gateway.php:155 includes/CDI-Metabox-subscription.php:72 1264 #: includes/CDI-Metabox.php:91 includes/CDI-Shipping.php: 671266 #: includes/CDI-Metabox.php:91 includes/CDI-Shipping.php:70 1265 1267 msgid "Colissimo" 1266 1268 msgstr "Colissimo" … … 1283 1285 1284 1286 #: includes/CDI-Gateway.php:164 includes/CDI-Metabox-subscription.php:73 1285 #: includes/CDI-Metabox.php:92 includes/CDI-Shipping.php: 691287 #: includes/CDI-Metabox.php:92 includes/CDI-Shipping.php:72 1286 1288 msgid "Mondial Relay" 1287 1289 msgstr "Mondial Relay" … … 1304 1306 1305 1307 #: includes/CDI-Gateway.php:173 includes/CDI-Metabox-subscription.php:74 1306 #: includes/CDI-Metabox.php:93 includes/CDI-Shipping.php: 681308 #: includes/CDI-Metabox.php:93 includes/CDI-Shipping.php:71 1307 1309 msgid "UPS" 1308 1310 msgstr "UPS" … … 1324 1326 1325 1327 #: includes/CDI-Gateway.php:182 includes/CDI-Metabox-subscription.php:75 1326 #: includes/CDI-Metabox.php:94 includes/CDI-Shipping.php:7 01328 #: includes/CDI-Metabox.php:94 includes/CDI-Shipping.php:73 1327 1329 msgid "Collect" 1328 1330 msgstr "Collect" … … 1413 1415 msgstr "Url" 1414 1416 1415 #: includes/CDI-Gateway.php:322 includes/CDI-Shipping.php:6 31417 #: includes/CDI-Gateway.php:322 includes/CDI-Shipping.php:66 1416 1418 msgid "Carrier" 1417 1419 msgstr "Transporteur" … … 1663 1665 msgstr "Demander une étiquette d'affranchissement retour" 1664 1666 1665 #: includes/CDI-Settings.php:68 includes/CDI-Shipping.php: 591667 #: includes/CDI-Settings.php:68 includes/CDI-Shipping.php:62 1666 1668 msgid "CDI" 1667 1669 msgstr "CDI" … … 2937 2939 "est issue des règles européennes." 2938 2940 2939 #: includes/CDI-Settings.php:11 182941 #: includes/CDI-Settings.php:1120 2940 2942 msgid "" 2941 2943 "Warning :\n" … … 2961 2963 "support technique Colissimo." 2962 2964 2963 #: includes/CDI-Settings.php:114 12965 #: includes/CDI-Settings.php:1143 2964 2966 msgid "Global enable of Colissimo method." 2965 2967 msgstr "Activation/désactivation globale de la methode Colissimo pour CDI." 2966 2968 2967 #: includes/CDI-Settings.php:114 52969 #: includes/CDI-Settings.php:1147 2968 2970 msgid "Contract :" 2969 2971 msgstr "Contrat :" 2970 2972 2971 #: includes/CDI-Settings.php:11 482973 #: includes/CDI-Settings.php:1150 2972 2974 msgid "Web Service - Contract Number" 2973 2975 msgstr "Web Service - Numéro de votre contrat donné par votre commercial LaPoste" 2974 2976 2975 #: includes/CDI-Settings.php:11 492977 #: includes/CDI-Settings.php:1151 2976 2978 msgid "" 2977 2979 "Your Colissimo-LaPoste contrat number including the option 'Web Service " … … 2981 2983 "Affranchissement, Choix de livraison, et Suivi Colis. " 2982 2984 2983 #: includes/CDI-Settings.php:115 52985 #: includes/CDI-Settings.php:1157 2984 2986 msgid "Web Service - Password" 2985 2987 msgstr "Web Service - Mot de passe donné par votre commercial LaPoste" 2986 2988 2987 #: includes/CDI-Settings.php:115 62989 #: includes/CDI-Settings.php:1158 2988 2990 msgid "Your password at your Colissimo-LaPoste contrat" 2989 2991 msgstr "Votre mot de passe pour votre contrat Colissimo Entreprise." 2990 2992 2991 #: includes/CDI-Settings.php:11 682993 #: includes/CDI-Settings.php:1170 2992 2994 msgid "" 2993 2995 "Add in referrals settings the Colissimo default for shipping méthods: pickup , " … … 2998 3000 "obligatoire \". " 2999 3001 3000 #: includes/CDI-Settings.php:11 693002 #: includes/CDI-Settings.php:1171 3001 3003 msgid "" 3002 3004 "Will be added at the end of referrals settings - as pickup : " … … 3012 3014 "cdi_shipping_colissimo_pick2 ." 3013 3015 3014 #: includes/CDI-Settings.php:117 3 includes/CDI-Settings.php:14973015 #: includes/CDI-Settings.php:17 273016 #: includes/CDI-Settings.php:1175 includes/CDI-Settings.php:1501 3017 #: includes/CDI-Settings.php:1733 3016 3018 msgid "Label layout :" 3017 3019 msgstr "Disposition étiquettes :" 3018 3020 3019 #: includes/CDI-Settings.php:117 63021 #: includes/CDI-Settings.php:1178 3020 3022 msgid "Web Service - Output Format - Offset X in pixels" 3021 3023 msgstr "Web Service - Format de sortie - Offset X en pixels" 3022 3024 3023 #: includes/CDI-Settings.php:117 73025 #: includes/CDI-Settings.php:1179 3024 3026 msgid "The 3 following datas are Colissimo settings for the printing." 3025 3027 msgstr "Les 3 données suivantes sont des paramètres Colissimo pour l'impression." 3026 3028 3027 #: includes/CDI-Settings.php:118 33029 #: includes/CDI-Settings.php:1185 3028 3030 msgid "Web Service - Output Format - Offset Y in pixels" 3029 3031 msgstr "Web Service - Format de sortie - Offset Y en pixels" 3030 3032 3031 #: includes/CDI-Settings.php:119 3 includes/CDI-Settings.php:15053032 #: includes/CDI-Settings.php:17 353033 #: includes/CDI-Settings.php:1195 includes/CDI-Settings.php:1509 3034 #: includes/CDI-Settings.php:1741 3033 3035 msgid "Web Service - Output Format - Printing Type (DPL & ZPL not supported)" 3034 3036 msgstr "" 3035 3037 "Web Service - Format de sortie - Type d'impression (DPL & ZPL not supported)" 3036 3038 3037 #: includes/CDI-Settings.php:120 33039 #: includes/CDI-Settings.php:1205 3038 3040 msgid "" 3039 3041 "Web Service - Offset Deposit Date (estimate in days after running the web " … … 3043 3045 "d'exécution du Web Service - Doit être > 0)" 3044 3046 3045 #: includes/CDI-Settings.php:120 43047 #: includes/CDI-Settings.php:1206 3046 3048 msgid "Estimate period in days to deposit yours parcels. Useful for La Poste." 3047 3049 msgstr "" … … 3049 3051 "prévisions de La Poste." 3050 3052 3051 #: includes/CDI-Settings.php:121 03053 #: includes/CDI-Settings.php:1212 3052 3054 msgid "Include CN23 customs declarations with returned labels" 3053 3055 msgstr "Inclure les déclarations de douane CN23 avec les étiquettes de retour" 3054 3056 3055 #: includes/CDI-Settings.php:121 5 includes/CDI-Settings.php:15093056 #: includes/CDI-Settings.php:17 39 includes/CDI-Settings.php:20843057 #: includes/CDI-Settings.php:1217 includes/CDI-Settings.php:1513 3058 #: includes/CDI-Settings.php:1745 includes/CDI-Settings.php:2092 3057 3059 msgid "Tracking information for customer:" 3058 3060 msgstr "Suivi des colis :" 3059 3061 3060 #: includes/CDI-Settings.php:12 19 includes/CDI-Settings.php:15133061 #: includes/CDI-Settings.php:174 3 includes/CDI-Settings.php:20883062 #: includes/CDI-Settings.php:1221 includes/CDI-Settings.php:1517 3063 #: includes/CDI-Settings.php:1749 includes/CDI-Settings.php:2096 3062 3064 msgid "Text preceding tracking code" 3063 3065 msgstr "Texte précédant le code de suivi" 3064 3066 3065 #: includes/CDI-Settings.php:122 0 includes/CDI-Settings.php:15143066 #: includes/CDI-Settings.php:17 44 includes/CDI-Settings.php:20893067 #: includes/CDI-Settings.php:1222 includes/CDI-Settings.php:1518 3068 #: includes/CDI-Settings.php:1750 includes/CDI-Settings.php:2097 3067 3069 msgid "Here, the text you want the customer to see just before the tracking code" 3068 3070 msgstr "" 3069 3071 "Ici, le texte que vous voulez que le client voit juste avant son code de suivi." 3070 3072 3071 #: includes/CDI-Settings.php:122 7 includes/CDI-Settings.php:15213072 #: includes/CDI-Settings.php:175 13073 #: includes/CDI-Settings.php:1229 includes/CDI-Settings.php:1525 3074 #: includes/CDI-Settings.php:1757 3073 3075 msgid "Url for tracking code" 3074 3076 msgstr "Url de suivi des colis" 3075 3077 3076 #: includes/CDI-Settings.php:12 28 includes/CDI-Settings.php:15223077 #: includes/CDI-Settings.php:175 23078 #: includes/CDI-Settings.php:1230 includes/CDI-Settings.php:1526 3079 #: includes/CDI-Settings.php:1758 3078 3080 msgid "" 3079 3081 "Here, the standard url of your carrier. Don't change it if you don't known its " … … 3083 3085 "ne connaissez pas l'URL à mettre." 3084 3086 3085 #: includes/CDI-Settings.php:123 2 includes/CDI-Settings.php:15263086 #: includes/CDI-Settings.php:17 563087 #: includes/CDI-Settings.php:1234 includes/CDI-Settings.php:1530 3088 #: includes/CDI-Settings.php:1762 3087 3089 msgid "Return services :" 3088 3090 msgstr "Service des Retours colis :" 3089 3091 3090 #: includes/CDI-Settings.php:123 53092 #: includes/CDI-Settings.php:1237 3091 3093 msgid "Global enabling of Colissimo parcel return function." 3092 3094 msgstr "Activation/désactivation globale de la fonction retour de colis." 3093 3095 3094 #: includes/CDI-Settings.php:123 63096 #: includes/CDI-Settings.php:1238 3095 3097 msgid "" 3096 3098 "Logged customers will have the capacity, from their order view, to create and " … … 3104 3106 "douanières avec la destination du retour (notamment sans cn23)." 3105 3107 3106 #: includes/CDI-Settings.php:124 23108 #: includes/CDI-Settings.php:1244 3107 3109 msgid "" 3108 3110 "In case you need to return your parcel, request for a printable Colissimo " … … 3110 3112 msgstr "Si besoin, demandez une étiquette Colissimo \"retour de colis\" :" 3111 3113 3112 #: includes/CDI-Settings.php:124 3 includes/CDI-Settings.php:15583113 #: includes/CDI-Settings.php:17 673114 #: includes/CDI-Settings.php:1245 includes/CDI-Settings.php:1562 3115 #: includes/CDI-Settings.php:1773 3114 3116 msgid "Text preceding customer parcel return label request in their order view" 3115 3117 msgstr "" … … 3117 3119 "colis retour" 3118 3120 3119 #: includes/CDI-Settings.php:124 4 includes/CDI-Settings.php:15593120 #: includes/CDI-Settings.php:17 683121 #: includes/CDI-Settings.php:1246 includes/CDI-Settings.php:1563 3122 #: includes/CDI-Settings.php:1774 3121 3123 msgid "" 3122 3124 "Here, the text your customer will see in its order view to invite him to post a " … … 3129 3131 "de la période autorisée définie ci-dessous." 3130 3132 3131 #: includes/CDI-Settings.php:125 03133 #: includes/CDI-Settings.php:1252 3132 3134 msgid "" 3133 3135 " Your Colissimo return label is available. Print it and paste it on your parcel. " … … 3138 3140 "que vous souhaitez à : " 3139 3141 3140 #: includes/CDI-Settings.php:125 1 includes/CDI-Settings.php:15663141 #: includes/CDI-Settings.php:17 753142 #: includes/CDI-Settings.php:1253 includes/CDI-Settings.php:1570 3143 #: includes/CDI-Settings.php:1781 3142 3144 msgid "Text accompanying the parcel return label print button" 3143 3145 msgstr "Texte accompagnant le bouton d'impression de l'étiquette colis retour" 3144 3146 3145 #: includes/CDI-Settings.php:125 23147 #: includes/CDI-Settings.php:1254 3146 3148 msgid "" 3147 3149 "Here, the text your customer will see to invite him to print its parcel return " … … 3151 3153 "retour de colis qu'il a demandé." 3152 3154 3153 #: includes/CDI-Settings.php:126 03155 #: includes/CDI-Settings.php:1262 3154 3156 msgid "Url following the text parcel return print (when necessary)" 3155 3157 msgstr "Url qui suit le texte d'impression d'un retour colis (si nécessaire)" 3156 3158 3157 #: includes/CDI-Settings.php:126 13159 #: includes/CDI-Settings.php:1263 3158 3160 msgid "" 3159 3161 "Here, when necessary, the url your need to follow the parcel return print text. " … … 3163 3165 "colis. Si vide, aucune URL ne sera affichée" 3164 3166 3165 #: includes/CDI-Settings.php:12 683167 #: includes/CDI-Settings.php:1270 3166 3168 msgid "" 3167 3169 "Comma separated list of 2 digits headers of Colissimo tracking codes allowed for " … … 3171 3173 "Colissimo autorisés pour une demande d'étiquette de retour de colis" 3172 3174 3173 #: includes/CDI-Settings.php:12 693175 #: includes/CDI-Settings.php:1271 3174 3176 msgid "" 3175 3177 "Here, the list of Colissimo tracking codes headers (2 digits) which are allowed " … … 3182 3184 "Colissimo. " 3183 3185 3184 #: includes/CDI-Settings.php:127 63186 #: includes/CDI-Settings.php:1278 3185 3187 msgid "" 3186 3188 "Semicolon separated list of relations \"Return-product-code=ISO-countrycode " … … 3191 3193 "codes produit des retours Colissimo." 3192 3194 3193 #: includes/CDI-Settings.php:127 73195 #: includes/CDI-Settings.php:1279 3194 3196 msgid "Here, define the Colissimo return product codes and associated countries." 3195 3197 msgstr "" 3196 3198 "Ici, définissez la liste des codes produit retour Colissimo et les pays associés." 3197 3199 3198 #: includes/CDI-Settings.php:128 3 includes/CDI-Settings.php:15733199 #: includes/CDI-Settings.php:178 23200 #: includes/CDI-Settings.php:1285 includes/CDI-Settings.php:1577 3201 #: includes/CDI-Settings.php:1788 3200 3202 msgid "Name of the Company service to whitch the parcels must be returned" 3201 3203 msgstr "Nom du service dans la société auquel doivent être retournés les colis" 3202 3204 3203 #: includes/CDI-Settings.php:128 4 includes/CDI-Settings.php:15743204 #: includes/CDI-Settings.php:178 33205 #: includes/CDI-Settings.php:1286 includes/CDI-Settings.php:1578 3206 #: includes/CDI-Settings.php:1789 3205 3207 msgid "" 3206 3208 "Here, the name of the service in your company that must receice the returned " … … 3212 3214 "avez défini dans les paramètres Web Service Affranchissement." 3213 3215 3214 #: includes/CDI-Settings.php:12 88 includes/CDI-Settings.php:15783215 #: includes/CDI-Settings.php:17 873216 #: includes/CDI-Settings.php:1290 includes/CDI-Settings.php:1582 3217 #: includes/CDI-Settings.php:1793 3216 3218 msgid "Default services when the CDI Metabox is not filled :" 3217 3219 msgstr "Services lorsque la Metabox CDI n'est pas remplie :" 3218 3220 3219 #: includes/CDI-Settings.php:129 43221 #: includes/CDI-Settings.php:1296 3220 3222 msgid "France Zone" 3221 3223 msgstr "Zone France" 3222 3224 3223 #: includes/CDI-Settings.php:1 2983225 #: includes/CDI-Settings.php:1300 3224 3226 msgid "ISO country codes for Colissimo France zone" 3225 3227 msgstr "Codes ISO des pays de la Zone Colissimo France" 3226 3228 3227 #: includes/CDI-Settings.php:1 2993229 #: includes/CDI-Settings.php:1301 3228 3230 msgid "" 3229 3231 "This defines 1- the list of ISO country codes for Colissimo France zone, and 2- " … … 3238 3240 "produit n'est défini dans la Métabox Colissimo de l'ordre. " 3239 3241 3240 #: includes/CDI-Settings.php:130 63242 #: includes/CDI-Settings.php:1308 3241 3243 msgid "Product Codes for France zone" 3242 3244 msgstr "Codes produit Colissimo pour la Zone France" 3243 3245 3244 #: includes/CDI-Settings.php:131 03246 #: includes/CDI-Settings.php:1312 3245 3247 msgid "Outre-mer Zone" 3246 3248 msgstr "Zone Outre-mer" 3247 3249 3248 #: includes/CDI-Settings.php:131 43250 #: includes/CDI-Settings.php:1316 3249 3251 msgid "ISO country codes for Colissimo Outre-mer zone" 3250 3252 msgstr "Codes ISO des pays de la Zone Colissimo Outre-mer" 3251 3253 3252 #: includes/CDI-Settings.php:131 53254 #: includes/CDI-Settings.php:1317 3253 3255 msgid "" 3254 3256 "This defines 1- the list of ISO country codes for Colissimo Outre-mer zone, and " … … 3263 3265 "code produit n'est défini dans la Métabox Colissimo de l'ordre. " 3264 3266 3265 #: includes/CDI-Settings.php:132 23267 #: includes/CDI-Settings.php:1324 3266 3268 msgid "Product Codes for Outre-mer zone" 3267 3269 msgstr "Codes produit Colissimo pour la Zone Outre-mer" 3268 3270 3269 #: includes/CDI-Settings.php:132 63271 #: includes/CDI-Settings.php:1328 3270 3272 msgid "Europe Zone" 3271 3273 msgstr "Zone Europe" 3272 3274 3273 #: includes/CDI-Settings.php:133 03275 #: includes/CDI-Settings.php:1332 3274 3276 msgid "ISO country codes for Colissimo Europe zone" 3275 3277 msgstr "Codes ISO des pays de la Zone Colissimo Europe" 3276 3278 3277 #: includes/CDI-Settings.php:133 13279 #: includes/CDI-Settings.php:1333 3278 3280 msgid "" 3279 3281 "This defines 1- the list of ISO country codes for Colissimo Europe zone, and 2- " … … 3288 3290 "produit n'est défini dans la Métabox Colissimo de l'ordre. " 3289 3291 3290 #: includes/CDI-Settings.php:13 383292 #: includes/CDI-Settings.php:1340 3291 3293 msgid "Product Codes for Europe zone" 3292 3294 msgstr "Codes produit Colissimo pour la Zone Europe" 3293 3295 3294 #: includes/CDI-Settings.php:134 23296 #: includes/CDI-Settings.php:1344 3295 3297 msgid "International Zone" 3296 3298 msgstr "Zone Internationale" 3297 3299 3298 #: includes/CDI-Settings.php:134 63300 #: includes/CDI-Settings.php:1348 3299 3301 msgid "ISO country codes for Colissimo International zone" 3300 3302 msgstr "Codes ISO des pays de la Zone Colissimo Internationale" 3301 3303 3302 #: includes/CDI-Settings.php:134 73304 #: includes/CDI-Settings.php:1349 3303 3305 msgid "" 3304 3306 "This defines 1- the list of ISO country codes for Colissimo International zone, " … … 3314 3316 "l'ordre. " 3315 3317 3316 #: includes/CDI-Settings.php:135 43318 #: includes/CDI-Settings.php:1356 3317 3319 msgid "Product Codes for International zone" 3318 3320 msgstr "Codes produit Colissimo pour la Zone Internationale" 3319 3321 3320 #: includes/CDI-Settings.php:13 583322 #: includes/CDI-Settings.php:1360 3321 3323 msgid "Others parameters." 3322 3324 msgstr "Autres paramètres :" 3323 3325 3324 #: includes/CDI-Settings.php:136 23326 #: includes/CDI-Settings.php:1364 3325 3327 msgid "" 3326 3328 "Web Service - Comma separated list of \"code_to_replace=new_code_to_use\" just " … … 3331 3333 "Colissimo Web Service (ex DOM=COLD,DOS=COL)" 3332 3334 3333 #: includes/CDI-Settings.php:136 33335 #: includes/CDI-Settings.php:1365 3334 3336 msgid "" 3335 3337 "This defines Colissimo product codes in exception which have to be replace just " … … 3351 3353 "priorité." 3352 3354 3353 #: includes/CDI-Settings.php:137 03355 #: includes/CDI-Settings.php:1372 3354 3356 msgid "Country codes for which is authorized a without signature Colissimo." 3355 3357 msgstr "" 3356 3358 "Codes des pays pour lesquels est autorisé des colis Colissimo sans signature." 3357 3359 3358 #: includes/CDI-Settings.php:137 13360 #: includes/CDI-Settings.php:1373 3359 3361 msgid "" 3360 3362 "This defines the list of country codes for which is authorized a without " … … 3364 3366 "Colissimo sans signature." 3365 3367 3366 #: includes/CDI-Settings.php:13 783368 #: includes/CDI-Settings.php:1380 3367 3369 msgid "Pickup location country codes (excluding X00 network)" 3368 3370 msgstr "" … … 3370 3372 "sont gérés (réseaux X00 exclus)" 3371 3373 3372 #: includes/CDI-Settings.php:13 793374 #: includes/CDI-Settings.php:1381 3373 3375 msgid "" 3374 3376 "This defines the list of destination countries for which Colissimo runs its " … … 3378 3380 "service de point de retait." 3379 3381 3380 #: includes/CDI-Settings.php:138 63382 #: includes/CDI-Settings.php:1388 3381 3383 msgid "" 3382 3384 "Comma separated list of 2 digits country codes which cant let a choice for a " … … 3386 3388 "un choix de retour de colis en cas de non livraison." 3387 3389 3388 #: includes/CDI-Settings.php:138 73390 #: includes/CDI-Settings.php:1389 3389 3391 msgid "" 3390 3392 "Here, the list of country codes (2 digits) which cant let a choice for a parcel " … … 3396 3398 "être mise à jour selon les évolutions. " 3397 3399 3398 #: includes/CDI-Settings.php:1404 3400 #: includes/CDI-Settings.php:1408 3401 #, fuzzy 3402 #| msgid "" 3403 #| "Warning : \n" 3404 #| "- To use the Mondial Relay carrier, you must have signed a contract with it " 3405 #| "giving access to its API services.\n" 3406 #| "- Mondial Relay provides you with a test account ('BDTEST13' account and " 3407 #| "'TestAPI1key' password) for the integration of your postage services, choice " 3408 #| "of Relay Points, parcel tracking, return labels. On the other hand, you " 3409 #| "should be careful about potential billing when producing postage or return " 3410 #| "labels with your actual identifiers.\n" 3411 #| "- For all questions relating to the operation of Mondial Relay services, you " 3412 #| "should contact your Mondial Relay sales representative or Mondial Relay " 3413 #| "technical support." 3399 3414 msgid "" 3400 3415 "Warning : \n" 3401 3416 "- To use the Mondial Relay carrier, you must have signed a contract with it " 3402 3417 "giving access to its API services.\n" 3403 "- Mondial Relay provides you with a test account ( 'BDTEST13' account and"3404 " 'TestAPI1key' password) for the integration of your postage services, choice of"3405 " Relay Points, parcel tracking, return labels. On the other hand, you should be"3406 " careful about potential billing when producing postage or return labels with"3407 " your actualidentifiers.\n"3418 "- Mondial Relay provides you with a test account (see test fields in MR " 3419 "settings) for the integration of your postage services, choice of Relay Points, " 3420 "parcel tracking, return labels. On the other hand, you should be careful about " 3421 "potential billing when producing postage or return labels with your actual " 3422 "identifiers.\n" 3408 3423 "- For all questions relating to the operation of Mondial Relay services, you " 3409 3424 "should contact your Mondial Relay sales representative or Mondial Relay " … … 3422 3437 "support technique Mondial Relay." 3423 3438 3424 #: includes/CDI-Settings.php:142 53439 #: includes/CDI-Settings.php:1429 3425 3440 msgid "Activation" 3426 3441 msgstr "Activation" 3427 3442 3428 #: includes/CDI-Settings.php:14 283443 #: includes/CDI-Settings.php:1432 3429 3444 msgid "Global enable of Mondial Relay method." 3430 3445 msgstr "Activation/désactivation globale de la methode Mondial Relay pour CDI." 3431 3446 3432 #: includes/CDI-Settings.php:144 53447 #: includes/CDI-Settings.php:1449 3433 3448 msgid "Mondial Relay contract" 3434 3449 msgstr "Numéro contrat (Enseigne) chez Mondial Relay" 3435 3450 3436 #: includes/CDI-Settings.php:14 483451 #: includes/CDI-Settings.php:1452 3437 3452 msgid "" 3438 3453 "Web Service - Mondial Relay Contract Number / Code Enseigne (For test : TTMRSDBX)" … … 3441 3456 "TTMRSDBX)" 3442 3457 3443 #: includes/CDI-Settings.php:14 493458 #: includes/CDI-Settings.php:1453 3444 3459 msgid "Your Mondial Relay contrat number." 3445 3460 msgstr "Votre numéro de contrat Mondial Relay" 3446 3461 3447 #: includes/CDI-Settings.php:145 53462 #: includes/CDI-Settings.php:1459 3448 3463 msgid "Web Service - Mondial Relay private Key (For test : 9ytnxVCC)" 3449 3464 msgstr "Web Service - Mondial Relay Clé privée (Pour les tests : 9ytnxVCC)" 3450 3465 3451 #: includes/CDI-Settings.php:14 563466 #: includes/CDI-Settings.php:1460 3452 3467 msgid "Your private key in your Mondial Relay contrat" 3453 3468 msgstr "Votre Clé privée de votre contrat Mondial Relay " 3454 3469 3455 #: includes/CDI-Settings.php:14 693470 #: includes/CDI-Settings.php:1473 3456 3471 msgid "API V2" 3457 3472 msgstr "API V2" 3458 3473 3459 #: includes/CDI-Settings.php:147 23474 #: includes/CDI-Settings.php:1476 3460 3475 msgid "" 3461 3476 "Web Service - Mondial Relay login for APIV2 (For test : TTMRSDBX@business-" … … 3465 3480 "TTMRSDBX@business-api.mondialrelay.com)" 3466 3481 3467 #: includes/CDI-Settings.php:147 33482 #: includes/CDI-Settings.php:1477 3468 3483 msgid "Your login APIV2 in your Mondial Relay contrat" 3469 3484 msgstr "Votre login APIV2 de votre contrat Mondial Relay" 3470 3485 3471 #: includes/CDI-Settings.php:14 793486 #: includes/CDI-Settings.php:1483 3472 3487 msgid "" 3473 3488 "Web Service - Mondial Relay password for APIV2 (For test : _iVfPcMexuOcOmF:6sq0)" … … 3476 3491 "_iVfPcMexuOcOmF:6sq0)" 3477 3492 3478 #: includes/CDI-Settings.php:148 03493 #: includes/CDI-Settings.php:1484 3479 3494 msgid "Your Password APIV2 in your Mondial Relay contrat" 3480 3495 msgstr "Votre Password APIV2 de votre contrat Mondial Relay" 3481 3496 3482 #: includes/CDI-Settings.php:149 23497 #: includes/CDI-Settings.php:1496 3483 3498 msgid "" 3484 3499 "Add in referrals settings the Mondial Relay default for shipping méthods: " … … 3489 3504 "\"Téléphone obligatoire \". " 3490 3505 3491 #: includes/CDI-Settings.php:149 33506 #: includes/CDI-Settings.php:1497 3492 3507 msgid "" 3493 3508 "Will be added at the end of referrals settings - as pickup : " … … 3504 3519 "cdi_shipping_mondialrelay_pick1, cdi_shipping_mondialrelay_pick2 ." 3505 3520 3506 #: includes/CDI-Settings.php:151 23521 #: includes/CDI-Settings.php:1516 3507 3522 msgid "Order shipped. Your Mondial Relay tracking code is : " 3508 3523 msgstr "Votre colis a été expédié avec Mondial Relay. Votre code de suivi est :" 3509 3524 3510 #: includes/CDI-Settings.php:15 293525 #: includes/CDI-Settings.php:1533 3511 3526 msgid "Global enabling of Mondial parcel return function." 3512 3527 msgstr "Activation/désactivation globale de la fonction retour de colis." 3513 3528 3514 #: includes/CDI-Settings.php:153 03529 #: includes/CDI-Settings.php:1534 3515 3530 msgid "" 3516 3531 "Logged customers will have the capacity, from their order view, to create and " … … 3524 3539 "cn23)." 3525 3540 3526 #: includes/CDI-Settings.php:15 363541 #: includes/CDI-Settings.php:1540 3527 3542 msgid "24R - Livraison point relais" 3528 3543 msgstr "24R - Livraison point relais" 3529 3544 3530 #: includes/CDI-Settings.php:15 373545 #: includes/CDI-Settings.php:1541 3531 3546 msgid "LCC - Livraison Client Chargeur" 3532 3547 msgstr "LCC - Livraison Client Chargeur" 3533 3548 3534 #: includes/CDI-Settings.php:154 03549 #: includes/CDI-Settings.php:1544 3535 3550 msgid "How will be delivered the return parcels to the e-merchand." 3536 3551 msgstr "" … … 3538 3553 "Relay est l'option par défaut." 3539 3554 3540 #: includes/CDI-Settings.php:154 13555 #: includes/CDI-Settings.php:1545 3541 3556 msgid "How will be delivered the parcels to e-merchand. 24R is the defaut" 3542 3557 msgstr "" … … 3544 3559 "Point Relay est l'option par défaut." 3545 3560 3546 #: includes/CDI-Settings.php:155 13561 #: includes/CDI-Settings.php:1555 3547 3562 msgid "" 3548 3563 "Merchand Relay ID for its return parcels. Mandatory if 24R. (Structure pp-" … … 3552 3567 "si 24R. (Structure pp-rrrrrr ; pp=ISO country code, rrrrrr=relay Id)" 3553 3568 3554 #: includes/CDI-Settings.php:15 573569 #: includes/CDI-Settings.php:1561 3555 3570 msgid "" 3556 3571 "In case you need to return your parcel, request for a printable Mondial Relay " … … 3559 3574 "Si besoin, demandez une étiquette Mondial relay pour \"retour de colis\" :" 3560 3575 3561 #: includes/CDI-Settings.php:156 53576 #: includes/CDI-Settings.php:1569 3562 3577 msgid "" 3563 3578 "Your Mondial relay return label is available. Print it and paste it on your " … … 3567 3582 "sur votre colis." 3568 3583 3569 #: includes/CDI-Settings.php:15 67 includes/CDI-Settings.php:17763584 #: includes/CDI-Settings.php:1571 includes/CDI-Settings.php:1782 3570 3585 msgid "" 3571 3586 "Here, the text your customers will see to invite them to print its parcel return " … … 3575 3590 "retour de colis qu'il a demandé." 3576 3591 3577 #: includes/CDI-Settings.php:15 883592 #: includes/CDI-Settings.php:1592 3578 3593 msgid "CDS - Collecte domicile 2P" 3579 3594 msgstr "CDS - Collecte domicile 2P" 3580 3595 3581 #: includes/CDI-Settings.php:159 23596 #: includes/CDI-Settings.php:1596 3582 3597 msgid "" 3583 3598 "How will be collected the parcels by defaut. Limited choice for some countries." 3584 3599 msgstr "Comment seront collectés/enlevés vos colis à envoyer." 3585 3600 3586 #: includes/CDI-Settings.php:159 33601 #: includes/CDI-Settings.php:1597 3587 3602 msgid "How will be collect the parcels. REL is the defaut" 3588 3603 msgstr "" … … 3590 3605 "l'option par défault" 3591 3606 3592 #: includes/CDI-Settings.php:1 5973607 #: includes/CDI-Settings.php:1601 3593 3608 msgid "MR Zone 1" 3594 3609 msgstr "MR Zone 1" 3595 3610 3596 #: includes/CDI-Settings.php:160 13611 #: includes/CDI-Settings.php:1605 3597 3612 msgid "ISO country codes for Mondial relay zone 1" 3598 3613 msgstr "Codes ISO des pays de la Zone 1 de Mondial Relay" 3599 3614 3600 #: includes/CDI-Settings.php:160 2 includes/CDI-Settings.php:16183601 #: includes/CDI-Settings.php:163 43615 #: includes/CDI-Settings.php:1606 includes/CDI-Settings.php:1622 3616 #: includes/CDI-Settings.php:1638 3602 3617 msgid "" 3603 3618 "This defines 1- the list of ISO country codes for Mondial relay countries zones, " … … 3612 3627 "la commande." 3613 3628 3614 #: includes/CDI-Settings.php:16 093629 #: includes/CDI-Settings.php:1613 3615 3630 msgid "Product Codes for Mondial relay zone 1" 3616 3631 msgstr "Codes produit Mondial Relay pour sa zone 1" 3617 3632 3618 #: includes/CDI-Settings.php:161 33633 #: includes/CDI-Settings.php:1617 3619 3634 msgid "MR Zone 2" 3620 3635 msgstr "MR Zone 2" 3621 3636 3622 #: includes/CDI-Settings.php:16 173637 #: includes/CDI-Settings.php:1621 3623 3638 msgid "ISO country codes for Mondial relay zone 2" 3624 3639 msgstr "Codes ISO des pays de la Zone 2 de Mondial Relay" 3625 3640 3626 #: includes/CDI-Settings.php:162 53641 #: includes/CDI-Settings.php:1629 3627 3642 msgid "Product Codes for Mondial relay zone 2" 3628 3643 msgstr "Codes produit Mondial Relay pour sa zone 2" 3629 3644 3630 #: includes/CDI-Settings.php:16 293645 #: includes/CDI-Settings.php:1633 3631 3646 msgid "MR Zone 3" 3632 3647 msgstr "MR Zone 3" 3633 3648 3634 #: includes/CDI-Settings.php:163 33649 #: includes/CDI-Settings.php:1637 3635 3650 msgid "ISO country codes for Mondial relay zone 3" 3636 3651 msgstr "Codes ISO des pays de la Zone 3 de Mondial Relay" 3637 3652 3638 #: includes/CDI-Settings.php:164 13653 #: includes/CDI-Settings.php:1645 3639 3654 msgid "Product Codes for Mondial relay zone 3" 3640 3655 msgstr "Codes produit Mondial Relay pour sa zone 3" 3641 3656 3642 #: includes/CDI-Settings.php:16 583657 #: includes/CDI-Settings.php:1664 3643 3658 msgid "" 3644 3659 "Warning : \n" … … 3665 3680 "vous devez vous rapprocher de votre Commercial UPS ou du support technique UPS." 3666 3681 3667 #: includes/CDI-Settings.php:168 13682 #: includes/CDI-Settings.php:1687 3668 3683 msgid "Global enable of Ups method." 3669 3684 msgstr "Activation/désactivation globale de la methode UPS pour CDI." 3670 3685 3671 #: includes/CDI-Settings.php:16 853686 #: includes/CDI-Settings.php:1691 3672 3687 msgid "UPS access keys (OAuth Authentification) :" 3673 3688 msgstr "Identifiants UPS (Authentification OAuth) :" 3674 3689 3675 #: includes/CDI-Settings.php:16 883690 #: includes/CDI-Settings.php:1694 3676 3691 msgid "Web Service - UPS Payment Compte Number OAuth" 3677 3692 msgstr "Web Service - Numéro de votre Compte UPS" 3678 3693 3679 #: includes/CDI-Settings.php:16 893694 #: includes/CDI-Settings.php:1695 3680 3695 msgid "Your Payment Compte Number at your UPS contrat" 3681 3696 msgstr "Votre numéro de compte UPS" 3682 3697 3683 #: includes/CDI-Settings.php:1 6953698 #: includes/CDI-Settings.php:1701 3684 3699 msgid "OAuth ClientId of your UPS API Client" 3685 3700 msgstr "OAuth \"ClientId\" de votre API UPS" 3686 3701 3687 #: includes/CDI-Settings.php:1 6963702 #: includes/CDI-Settings.php:1702 3688 3703 msgid "Your OAuth ClientId of your UPS API Client" 3689 3704 msgstr "Le OAuth \"ClientId\" de votre API UPS" 3690 3705 3691 #: includes/CDI-Settings.php:170 23706 #: includes/CDI-Settings.php:1708 3692 3707 msgid "OAuth ClientSecret of your UPS API Client" 3693 3708 msgstr "OAuth \"ClientSecret\" de votre API UPS" 3694 3709 3695 #: includes/CDI-Settings.php:170 33710 #: includes/CDI-Settings.php:1709 3696 3711 msgid "Your OAuth ClientSecret of your UPS API Client" 3697 3712 msgstr "Le OAuth \"ClientSecret\" de votre API UPS" 3698 3713 3699 #: includes/CDI-Settings.php:17 153714 #: includes/CDI-Settings.php:1721 3700 3715 msgid "" 3701 3716 "Add in referrals settings the UPS defaut for shipping méthods: pickup , product " … … 3706 3721 "obligatoire \". " 3707 3722 3708 #: includes/CDI-Settings.php:17 163723 #: includes/CDI-Settings.php:1722 3709 3724 msgid "" 3710 3725 "Will be added at the end of referrals settings - as pickup : " … … 3719 3734 "comme \"Téléphone obligatoire\" : cdi_shipping_ups_pick1,cdi_shipping_ups_pick2." 3720 3735 3721 #: includes/CDI-Settings.php:172 03736 #: includes/CDI-Settings.php:1726 3722 3737 msgid "Production :" 3723 3738 msgstr "Production :" 3724 3739 3725 #: includes/CDI-Settings.php:172 33740 #: includes/CDI-Settings.php:1729 3726 3741 msgid "Choose your processing mode : checked is prod mode ; unchecked is test mode" 3727 3742 msgstr "" … … 3729 3744 "\"Production\"; non coché signifie que vous êtes en mode \"Test\"." 3730 3745 3731 #: includes/CDI-Settings.php:174 23746 #: includes/CDI-Settings.php:1748 3732 3747 msgid "Order shipped. Your UPS tracking code is : " 3733 3748 msgstr "Votre colis a été expédié avec UPS. Votre code de suivi est :" 3734 3749 3735 #: includes/CDI-Settings.php:17 593750 #: includes/CDI-Settings.php:1765 3736 3751 msgid "Global enabling of UPS return function." 3737 3752 msgstr "Activation/désactivation globale de la fonction retour de colis UPS." 3738 3753 3739 #: includes/CDI-Settings.php:176 03754 #: includes/CDI-Settings.php:1766 3740 3755 msgid "" 3741 3756 "Logged customers will have the capacity, from their order view, to create and " … … 3749 3764 "avec la destination du retour (notamment sans cn23)." 3750 3765 3751 #: includes/CDI-Settings.php:17 663766 #: includes/CDI-Settings.php:1772 3752 3767 msgid "" 3753 3768 "In case you need to return your parcel, request for a printable UPS return " … … 3755 3770 msgstr "Si besoin, demandez une étiquette UPS \"Retour de colis\" :" 3756 3771 3757 #: includes/CDI-Settings.php:17 743772 #: includes/CDI-Settings.php:1780 3758 3773 msgid "Your UPS return label is available. Print it and paste it on your parcel :" 3759 3774 msgstr "" … … 3761 3776 "colis." 3762 3777 3763 #: includes/CDI-Settings.php:180 03778 #: includes/CDI-Settings.php:1806 3764 3779 msgid "" 3765 3780 "UPS default \"Service Code\" for the deliver mode of parcels when nothing is " … … 3770 3785 "CDI." 3771 3786 3772 #: includes/CDI-Settings.php:180 13787 #: includes/CDI-Settings.php:1807 3773 3788 msgid "" 3774 3789 "default for the deliver mode of parcels when nothing is stipulated in CDI " … … 3779 3794 "Standard est la valeur par défaut." 3780 3795 3781 #: includes/CDI-Settings.php:181 03796 #: includes/CDI-Settings.php:1816 3782 3797 msgid "" 3783 3798 "Percentage of the cart price (default is 20%) which will be taken to indicate " … … 3790 3805 "la Metabox sera la valeur la plus élevée entre le taux et l'absolu. " 3791 3806 3792 #: includes/CDI-Settings.php:181 13807 #: includes/CDI-Settings.php:1817 3793 3808 msgid "" 3794 3809 "Here, the percentage of the basket price (by default 20%) which will be taken to " … … 3802 3817 "d'affranchissement UPS est abandonnée si la cotation UPS dépasse la valeur." 3803 3818 3804 #: includes/CDI-Settings.php:182 03819 #: includes/CDI-Settings.php:1826 3805 3820 msgid "" 3806 3821 "Max shipping cost in € (default is 20€) which will be taken to indicate the " … … 3813 3828 "la Metabox sera la valeur la plus élevée entre le taux et l'absolu. " 3814 3829 3815 #: includes/CDI-Settings.php:182 13830 #: includes/CDI-Settings.php:1827 3816 3831 msgid "" 3817 3832 "Here, the max shipping cost of the basket price (by default 20€) which will be " … … 3825 3840 "d'affranchissement UPS est abandonnée si la cotation UPS dépasse la valeur." 3826 3841 3827 #: includes/CDI-Settings.php:18 363842 #: includes/CDI-Settings.php:1844 3828 3843 msgid "Warning : " 3829 3844 msgstr "Warning : " 3830 3845 3831 #: includes/CDI-Settings.php:18 493846 #: includes/CDI-Settings.php:1857 3832 3847 msgid "COLLECT POINT : " 3833 3848 msgstr "POINT DE RETRAIT : " 3834 3849 3835 #: includes/CDI-Settings.php:18 563850 #: includes/CDI-Settings.php:1864 3836 3851 msgid "Your Collect point id (mandatory)" 3837 3852 msgstr "Id du Point de retrait (obligatoire)" 3838 3853 3839 #: includes/CDI-Settings.php:18 573854 #: includes/CDI-Settings.php:1865 3840 3855 msgid "Here, you can change your Collect point id according to your organization." 3841 3856 msgstr "" 3842 3857 "Ici, vous pouvez changer l'Id de votre Point de retrait selon votre organisation." 3843 3858 3844 #: includes/CDI-Settings.php:18 673859 #: includes/CDI-Settings.php:1875 3845 3860 msgid "Your Collect point name (mandatory). It is part of the address." 3846 3861 msgstr "Nom du Point de retrait (obligatoire)" 3847 3862 3848 #: includes/CDI-Settings.php:18 683863 #: includes/CDI-Settings.php:1876 3849 3864 msgid "" 3850 3865 "Here, you can change your Collect point name according to your ornanization." … … 3853 3868 "organisation." 3854 3869 3855 #: includes/CDI-Settings.php:18 783870 #: includes/CDI-Settings.php:1886 3856 3871 msgid "Address line 1 (mandatory)" 3857 3872 msgstr "Adresse ligne 1(obligatoire)" 3858 3873 3859 #: includes/CDI-Settings.php:18 793874 #: includes/CDI-Settings.php:1887 3860 3875 msgid "Here, you can change your Collect point address line 1." 3861 3876 msgstr "Ici, vous pouvez changer la ligne 1 de votre Point de retrait." 3862 3877 3863 #: includes/CDI-Settings.php:18 883878 #: includes/CDI-Settings.php:1896 3864 3879 msgid "Address line 2" 3865 3880 msgstr "Adresse ligne 2" 3866 3881 3867 #: includes/CDI-Settings.php:19 073882 #: includes/CDI-Settings.php:1915 3868 3883 msgid "Address Zipcode (mandatory)" 3869 3884 msgstr "Adresse Code postal" 3870 3885 3871 #: includes/CDI-Settings.php:19 173886 #: includes/CDI-Settings.php:1925 3872 3887 msgid "Address city (mandatory)" 3873 3888 msgstr "Adresse Ville (obligatoire)" 3874 3889 3875 #: includes/CDI-Settings.php:19 273890 #: includes/CDI-Settings.php:1935 3876 3891 msgid "Address ISO country code (mandatory)" 3877 3892 msgstr "Adresse Code ISO du pays (obligatoire)" 3878 3893 3879 #: includes/CDI-Settings.php:193 13894 #: includes/CDI-Settings.php:1939 3880 3895 msgid "Complements (optional) :" 3881 3896 msgstr "Compléments (optionnel) :" 3882 3897 3883 #: includes/CDI-Settings.php:19 373898 #: includes/CDI-Settings.php:1945 3884 3899 msgid "" 3885 3900 "If you want to be more specific for the location. Indicate a nearby monument." … … 3888 3903 "monument proche)." 3889 3904 3890 #: includes/CDI-Settings.php:19 463905 #: includes/CDI-Settings.php:1954 3891 3906 msgid "" 3892 3907 "Phone number (international format beginning with a + sign and country code)" … … 3895 3910 "l'indicatif pays)." 3896 3911 3897 #: includes/CDI-Settings.php:19 553912 #: includes/CDI-Settings.php:1963 3898 3913 msgid "Parking : Indicate if parking or where is the nearest parking." 3899 3914 msgstr "Indiquez s'il existe un parking à proximité, et lequel." 3900 3915 3901 #: includes/CDI-Settings.php:19 593916 #: includes/CDI-Settings.php:1967 3902 3917 msgid "GPS position (optional) :" 3903 3918 msgstr "Coordonnées GPS (optionnelles)" 3904 3919 3905 #: includes/CDI-Settings.php:19 653920 #: includes/CDI-Settings.php:1973 3906 3921 msgid "Latitude for this point (optional)" 3907 3922 msgstr "Latitude (optionnel)" 3908 3923 3909 #: includes/CDI-Settings.php:19 66 includes/CDI-Settings.php:19763924 #: includes/CDI-Settings.php:1974 includes/CDI-Settings.php:1984 3910 3925 msgid "Optional. If not marked, CDI will do a search for approximate coordinates." 3911 3926 msgstr "" … … 3913 3928 "(éventuellement plus approximative)." 3914 3929 3915 #: includes/CDI-Settings.php:19 753930 #: includes/CDI-Settings.php:1983 3916 3931 msgid "Longitude for this point (optional)" 3917 3932 msgstr "Longitude (optionnel)" 3918 3933 3919 #: includes/CDI-Settings.php:198 03934 #: includes/CDI-Settings.php:1988 3920 3935 msgid "Opening time (optional) :" 3921 3936 msgstr "Horaires d'ouverture (optionnel) :" 3922 3937 3923 #: includes/CDI-Settings.php:19 883938 #: includes/CDI-Settings.php:1996 3924 3939 msgid "Monday" 3925 3940 msgstr "Lundi" 3926 3941 3927 #: includes/CDI-Settings.php: 19993942 #: includes/CDI-Settings.php:2007 3928 3943 msgid "Tuesday" 3929 3944 msgstr "Mardi" 3930 3945 3931 #: includes/CDI-Settings.php:201 03946 #: includes/CDI-Settings.php:2018 3932 3947 msgid "Wednesday" 3933 3948 msgstr "Mercredi" 3934 3949 3935 #: includes/CDI-Settings.php:202 13950 #: includes/CDI-Settings.php:2029 3936 3951 msgid "Thursday" 3937 3952 msgstr "Jeudi" 3938 3953 3939 #: includes/CDI-Settings.php:20 323954 #: includes/CDI-Settings.php:2040 3940 3955 msgid "Friday" 3941 3956 msgstr "Vendredi" 3942 3957 3943 #: includes/CDI-Settings.php:20 433958 #: includes/CDI-Settings.php:2051 3944 3959 msgid "Saturday" 3945 3960 msgstr "Samedi" 3946 3961 3947 #: includes/CDI-Settings.php:20 543962 #: includes/CDI-Settings.php:2062 3948 3963 msgid "Sunday" 3949 3964 msgstr "Dimanche" 3950 3965 3951 #: includes/CDI-Settings.php:20 643966 #: includes/CDI-Settings.php:2072 3952 3967 msgid "Global enable of Collect method." 3953 3968 msgstr "Activation/désactivation globale de la methode Collect pour CDI." 3954 3969 3955 #: includes/CDI-Settings.php:20 683970 #: includes/CDI-Settings.php:2076 3956 3971 msgid "Collect settings : " 3957 3972 msgstr "RÉGLAGES :" 3958 3973 3959 #: includes/CDI-Settings.php:207 13974 #: includes/CDI-Settings.php:2079 3960 3975 msgid "Add in referrals settings the Collect defaut for shipping méthods: pickup" 3961 3976 msgstr "" … … 3963 3978 "défaut pour la zone : \"Points de retrait\". " 3964 3979 3965 #: includes/CDI-Settings.php:20 723980 #: includes/CDI-Settings.php:2080 3966 3981 msgid "" 3967 3982 "Will be added at the end of referrals settings - as pickup : " … … 3971 3986 "cdi_shipping_collect_pick1, cdi_shipping_collect_pick2" 3972 3987 3973 #: includes/CDI-Settings.php:20 793988 #: includes/CDI-Settings.php:2087 3974 3989 msgid "Default collection points file (at startup). " 3975 3990 msgstr "Fichier de démarrage des Points de retrait (si démarrage)." 3976 3991 3977 #: includes/CDI-Settings.php:208 03992 #: includes/CDI-Settings.php:2088 3978 3993 msgid "" 3979 3994 "Default collection point file to present if no point is present. (The points are " … … 3986 4001 "Par défaut, CDI l'illustre avec un exemple de démonstration. " 3987 4002 3988 #: includes/CDI-Settings.php:20 874003 #: includes/CDI-Settings.php:2095 3989 4004 msgid "" 3990 4005 "Your order is taken into account. Its situation is given by its tracking code: " … … 3993 4008 "suivi : " 3994 4009 3995 #: includes/CDI-Settings.php:2 0954010 #: includes/CDI-Settings.php:2103 3996 4011 msgid "in preparation for" 3997 4012 msgstr "En préparation." 3998 4013 3999 #: includes/CDI-Settings.php:2 0964014 #: includes/CDI-Settings.php:2104 4000 4015 msgid "at collect point" 4001 4016 msgstr "Disponible au point de retrait." 4002 4017 4003 #: includes/CDI-Settings.php:2 0974018 #: includes/CDI-Settings.php:2105 4004 4019 msgid "courier is running" 4005 4020 msgstr "Pris en charge par coursier " 4006 4021 4007 #: includes/CDI-Settings.php:210 04022 #: includes/CDI-Settings.php:2108 4008 4023 msgid "" 4009 4024 "Starting situation for your \"Click & Collect\" orders: \"in preparation for\", " … … 4014 4029 "ou \"Pris en charge par coursier\"." 4015 4030 4016 #: includes/CDI-Settings.php:210 14031 #: includes/CDI-Settings.php:2109 4017 4032 msgid "" 4018 4033 "\"Click & Collect\" orders have 5 successive statuses: \"In preparation for\", " … … 4027 4042 "l'étiquette." 4028 4043 4029 #: includes/CDI-Settings.php:21 084044 #: includes/CDI-Settings.php:2116 4030 4045 msgid "Without security codes" 4031 4046 msgstr "Sans codes de sécurité" 4032 4047 4033 #: includes/CDI-Settings.php:211 14048 #: includes/CDI-Settings.php:2119 4034 4049 msgid "" 4035 4050 "Security code to apply when scanning the QRcode for issue (by default no code)" … … 4038 4053 "pas de code)" 4039 4054 4040 #: includes/CDI-Settings.php:21 124055 #: includes/CDI-Settings.php:2120 4041 4056 msgid "" 4042 4057 "By default, there is no security codes. It depends on the organizations and " … … 4051 4066 "(pour le client) ou un code spécifique (pour le point retrait ou un coursier)." 4052 4067 4053 #: includes/CDI-Shipping.php:6 64068 #: includes/CDI-Shipping.php:69 4054 4069 msgid "Choose a carrier" 4055 4070 msgstr "Choisir Transporteur" 4056 4071 4057 #: includes/CDI-Shipping.php:7 44072 #: includes/CDI-Shipping.php:77 4058 4073 msgid "" 4059 4074 "Select the defaut carrier which will collect or deliver yours parcels for this " … … 4063 4078 "vos colis pour cette instance d'expédition CDI" 4064 4079 4065 #: includes/CDI-Shipping.php: 774080 #: includes/CDI-Shipping.php:80 4066 4081 msgid "Title" 4067 4082 msgstr "Titre" 4068 4083 4069 #: includes/CDI-Shipping.php: 794084 #: includes/CDI-Shipping.php:82 4070 4085 msgid "Mandatory - Title shown in admin shipping options" 4071 4086 msgstr "" 4072 4087 "Obligatoire - Titre qui est vu par l'administrateur dans la \"shipping zone\"" 4073 4088 4074 #: includes/CDI-Shipping.php:8 0 includes/CDI-Shipping.php:864089 #: includes/CDI-Shipping.php:83 includes/CDI-Shipping.php:89 4075 4090 msgid "CDI no carrier" 4076 4091 msgstr "CDI - Choix transporteur requis" 4077 4092 4078 #: includes/CDI-Shipping.php:8 34093 #: includes/CDI-Shipping.php:86 4079 4094 msgid "Prefix " 4080 4095 msgstr "Préfixe" 4081 4096 4082 #: includes/CDI-Shipping.php:8 54097 #: includes/CDI-Shipping.php:88 4083 4098 msgid "Optional - Prefix of shipping title which will be seen by customer." 4084 4099 msgstr "Optionnel - Prefix du titre de la méthode qui est vu par le client" 4085 4100 4086 #: includes/CDI-Shipping.php:9 44101 #: includes/CDI-Shipping.php:97 4087 4102 msgid "" 4088 4103 "Tax Status. To apply or not the tax for the shipping fees when in TVA rates you " … … 4092 4107 "les écrans des taux de TVA vous avez coché la case \"livraison\"." 4093 4108 4094 #: includes/CDI-Shipping.php: 984109 #: includes/CDI-Shipping.php:101 4095 4110 msgid "Taxable" 4096 4111 msgstr "Taxable" 4097 4112 4098 #: includes/CDI-Shipping.php:10 64113 #: includes/CDI-Shipping.php:109 4099 4114 msgid "Default tariffs file" 4100 4115 msgstr "Fichier tarifs démarrage" 4101 4116 4102 #: includes/CDI-Shipping.php:1 084117 #: includes/CDI-Shipping.php:111 4103 4118 msgid "" 4104 4119 "Optional - Default tariffs file to overcome the example tariffs at " … … 4115 4130 "perdre." 4116 4131 4117 #: includes/CDI-Shipping.php:11 24132 #: includes/CDI-Shipping.php:115 4118 4133 msgid "Modes:" 4119 4134 msgstr "Modes:" 4120 4135 4121 #: includes/CDI-Shipping.php:11 44136 #: includes/CDI-Shipping.php:117 4122 4137 msgid "Excluding shipping class mode" 4123 4138 msgstr "Mode \"Exclure les classes de livraison \"" 4124 4139 4125 #: includes/CDI-Shipping.php:11 54140 #: includes/CDI-Shipping.php:118 4126 4141 msgid "Check to have shipping class mode set to Excluding mode" 4127 4142 msgstr "Cochez pour positionner à \"Exclure\" le mode classe de livraison." 4128 4143 4129 #: includes/CDI-Shipping.php:12 04144 #: includes/CDI-Shipping.php:123 4130 4145 msgid "Price all tax included shipping price mode" 4131 4146 msgstr "Mode \"Inclure les taxes dans le prix du panier lors des calculs\"" 4132 4147 4133 #: includes/CDI-Shipping.php:12 14148 #: includes/CDI-Shipping.php:124 4134 4149 msgid "Check to control cart price with all its tax included." 4135 4150 msgstr "Cocher pour être en mode \"Prix du panier toutes taxes incluses\"" 4136 4151 4137 #: includes/CDI-Shipping.php:12 64152 #: includes/CDI-Shipping.php:129 4138 4153 msgid "Calculation mode based on the discount price deducted" 4139 4154 msgstr "Mode \"calcul basé sur le prix remise déduite\" " 4140 4155 4141 #: includes/CDI-Shipping.php:1 274156 #: includes/CDI-Shipping.php:130 4142 4157 msgid "Check to control cart price with discount price deducted." 4143 4158 msgstr "Cocher pour être en mode \"calcul basé sur le prix remise déduite\"." 4144 4159 4145 #: includes/CDI-Shipping.php:13 24160 #: includes/CDI-Shipping.php:135 4146 4161 msgid "including empty package weight mode" 4147 4162 msgstr "Mode \"Inclure le poids du colis vide lors des calculs\". " 4148 4163 4149 #: includes/CDI-Shipping.php:13 34164 #: includes/CDI-Shipping.php:136 4150 4165 msgid "Check to add empty package weight when considering cart weight." 4151 4166 msgstr "" … … 4153 4168 "articles du panier." 4154 4169 4155 #: includes/CDI-Shipping.php:1 384170 #: includes/CDI-Shipping.php:141 4156 4171 msgid "" 4157 4172 "If multi shipping packages (e.g. a Market places plugin activated), consider " … … 4165 4180 "shipping packages\"." 4166 4181 4167 #: includes/CDI-Shipping.php:1 394182 #: includes/CDI-Shipping.php:142 4168 4183 msgid "" 4169 4184 "If you process WC multi shipping packages (e.g. a Market places plugin " … … 4181 4196 "dans les WC shipping packages." 4182 4197 4183 #: includes/CDI-Shipping.php:14 34198 #: includes/CDI-Shipping.php:146 4184 4199 msgid "Promos :" 4185 4200 msgstr "Promos :" 4186 4201 4187 #: includes/CDI-Shipping.php:1 484202 #: includes/CDI-Shipping.php:151 4188 4203 msgid "N/A" 4189 4204 msgstr "N/A" 4190 4205 4191 #: includes/CDI-Shipping.php:1 494206 #: includes/CDI-Shipping.php:152 4192 4207 msgid "A valid free shipping coupon" 4193 4208 msgstr "Un coupon promo valide de livraison gratuite " 4194 4209 4195 #: includes/CDI-Shipping.php:15 04210 #: includes/CDI-Shipping.php:153 4196 4211 msgid "A minimum order amount" 4197 4212 msgstr "Un montant minimum de la commande" 4198 4213 4199 #: includes/CDI-Shipping.php:15 14214 #: includes/CDI-Shipping.php:154 4200 4215 msgid "A minimum order amount OR a coupon" 4201 4216 msgstr "Un montant minimum de la commande OU un coupon promo valide" 4202 4217 4203 #: includes/CDI-Shipping.php:15 24218 #: includes/CDI-Shipping.php:155 4204 4219 msgid "A minimum order amount AND a coupon" 4205 4220 msgstr "Un montant minimum de la commande ET un coupon promo valide" 4206 4221 4207 #: includes/CDI-Shipping.php:15 44222 #: includes/CDI-Shipping.php:157 4208 4223 msgid "" 4209 4224 "Permet une activation ou non de cette instance CDI Shipping selon le montant du " … … 4213 4228 "de cette instance CDI. C'est selon le montant du panier et le code promo actif. " 4214 4229 4215 #: includes/CDI-Shipping.php:1 594230 #: includes/CDI-Shipping.php:162 4216 4231 msgid "" 4217 4232 "Les clients devront avoir un montant de dépense supérieur à ce montant pour que " … … 4221 4236 "cette instance CDI soit active (si option choisie ci-dessus)." 4222 4237 4223 #: includes/CDI-Shipping.php:16 54238 #: includes/CDI-Shipping.php:168 4224 4239 msgid "\"Excluding promo\" mode" 4225 4240 msgstr "Mode \"Exclure les codes promo\"" 4226 4241 4227 #: includes/CDI-Shipping.php:16 64242 #: includes/CDI-Shipping.php:169 4228 4243 msgid "Check to have promo mode set to \"Excluding\" mode" 4229 4244 msgstr "Cochez pour être en mode \"Exclusion\" sur les coupons promo" 4230 4245 4231 #: includes/CDI-Shipping.php:17 04246 #: includes/CDI-Shipping.php:173 4232 4247 msgid "Macros shipping classes :" 4233 4248 msgstr "Macros classes :" 4234 4249 4235 #: includes/CDI-Shipping.php:1 794250 #: includes/CDI-Shipping.php:182 4236 4251 msgid "" 4237 4252 "Shipping class macros are Boolean logic expressions (as in php syntax but " … … 4259 4274 "{exclasse}. " 4260 4275 4261 #: includes/CDI-Shipping.php:18 44276 #: includes/CDI-Shipping.php:187 4262 4277 msgid "Macros shipping classes for this instance of shipping method." 4263 4278 msgstr "Macros classes d'expédition pour cette instance de méthode d'expédition." 4264 4279 4265 #: includes/CDI-Shipping.php:33 14280 #: includes/CDI-Shipping.php:334 4266 4281 msgid "This fares starting file in cdi/uploads is not valid : " 4267 4282 msgstr "Ce fichier des tarifs de démarrage dans CDI/uploads n'est pas valide : " 4268 4283 4269 #: includes/CDI-Shipping.php:45 34284 #: includes/CDI-Shipping.php:457 4270 4285 msgid " ===> Error weight for product #" 4271 4286 msgstr " ===> Erreur de poids pour le produit (ou une variation) #" 4272 4287 4273 #: includes/CDI-Shipping.php:65 24288 #: includes/CDI-Shipping.php:656 4274 4289 msgid "" 4275 4290 "CDI: direct PHP codes are now deprecated for security reasons.\n" … … 4285 4300 "la ligne tarifaire d'expédition." 4286 4301 4287 #: includes/CDI-Shipping.php:7 284302 #: includes/CDI-Shipping.php:739 4288 4303 msgid "Name" 4289 4304 msgstr "Titre" 4290 4305 4291 #: includes/CDI-Shipping.php:7 294306 #: includes/CDI-Shipping.php:740 4292 4307 msgid "Name seen by the customer" 4293 4308 msgstr "Titre de la livraison que verra le client" 4294 4309 4295 #: includes/CDI-Shipping.php:7 314310 #: includes/CDI-Shipping.php:742 4296 4311 msgid "Flat rate" 4297 4312 msgstr " Fixe" 4298 4313 4299 #: includes/CDI-Shipping.php:7 324314 #: includes/CDI-Shipping.php:743 4300 4315 msgid "Flat rate VAT excluded" 4301 4316 msgstr "Partie fixe du prix, TVA exclue" 4302 4317 4303 #: includes/CDI-Shipping.php:7 344318 #: includes/CDI-Shipping.php:745 4304 4319 msgid "Add fees" 4305 4320 msgstr "Variable" 4306 4321 4307 #: includes/CDI-Shipping.php:7 354322 #: includes/CDI-Shipping.php:746 4308 4323 msgid "" 4309 4324 "A supplement, excluding VAT, to be added to the package. This may be :\n" … … 4311 4326 "cdi_filterstring_shipping_add_varfare_nnnn which will calculate and return the " 4312 4327 "value of the additional variable;\n" 4313 "2) a comma-separated list of expressions: percentage of cart price and/or " 4314 "additional cost per kg of weight. Ex. syntax: p=+2.5%, w=+5 .\n" 4315 "The php short code trigger under is now deprecated for security reasons." 4328 "2) a semicolon-separated list of expressions: percentage of cart price and/or " 4329 "additional cost per kg of weight. Ex. syntax: p=+2,5%; w=+5,5 (p=+2.5%,w=+5.5 is " 4330 "also allowed).\n" 4331 "3) The php short code trigger under is now deprecated for security reasons." 4316 4332 msgstr "" 4317 4333 "Un supplément, hors TVA, à ajouter au forfait. Cela peut être :\n" … … 4319 4335 "cdi_filterstring_shipping_add_varfare_nnnn qui calculera et renverra la valeur " 4320 4336 "de la variable additionnelle ;\n" 4321 "2) une liste d'expressions séparées par des virgules : pourcentage du prix du " 4322 "panier et/ou coût supplémentaire par kg du poids. Ex. syntaxe : p=+2.5%, w=+5 .\n" 4323 "Le code php direct est désormais obsolète pour des raisons de sécurité." 4324 4325 #: includes/CDI-Shipping.php:740 4337 "2) une liste d'expressions séparées par des point-virgules : pourcentage du " 4338 "prix du panier et/ou cout supplémentaire par kg du poids. Ex. syntaxe : p=+2,5%; " 4339 "w=+5,5 (p=+2.5%,w=+5.5 est également autorisé).\n" 4340 "3) Le code php direct est désormais obsolète (supprimé) pour des raisons de " 4341 "sécurité." 4342 4343 #: includes/CDI-Shipping.php:751 4326 4344 msgid "Shipping class" 4327 4345 msgstr "Classes" 4328 4346 4329 #: includes/CDI-Shipping.php:7 414347 #: includes/CDI-Shipping.php:752 4330 4348 msgid "" 4331 4349 "In standard mode, to activate this rate, an item at least in your cart must " … … 4340 4358 "celles sélectionnées. Possibilité de multiples sélections de classes." 4341 4359 4342 #: includes/CDI-Shipping.php:7 434360 #: includes/CDI-Shipping.php:754 4343 4361 msgid "Method" 4344 4362 msgstr "Term id" 4345 4363 4346 #: includes/CDI-Shipping.php:7 444364 #: includes/CDI-Shipping.php:755 4347 4365 msgid "End of CDI method id" 4348 4366 msgstr "" … … 4353 4371 "shop5)." 4354 4372 4355 #: includes/CDI-Shipping.php:7 464373 #: includes/CDI-Shipping.php:757 4356 4374 msgid "Min price" 4357 4375 msgstr "Prix mini" 4358 4376 4359 #: includes/CDI-Shipping.php:7 474377 #: includes/CDI-Shipping.php:758 4360 4378 msgid "minimum price, VAT excluded. All taxes included if the mode is checked." 4361 4379 msgstr "Prix minimum, TVA exclue. Toutes les taxes incluses si le mode est coché." 4362 4380 4363 #: includes/CDI-Shipping.php:7 494381 #: includes/CDI-Shipping.php:760 4364 4382 msgid "Max price" 4365 4383 msgstr "Prix maxi" 4366 4384 4367 #: includes/CDI-Shipping.php:7 504385 #: includes/CDI-Shipping.php:761 4368 4386 msgid "maximum price, VAT excluded. All taxes included if the mode is checked." 4369 4387 msgstr "Prix maximum, TVA exclue. Toutes les taxes incluses si le mode est coché." 4370 4388 4371 #: includes/CDI-Shipping.php:7 524389 #: includes/CDI-Shipping.php:763 4372 4390 msgid "Min weight" 4373 4391 msgstr "Poids mini" 4374 4392 4375 #: includes/CDI-Shipping.php:7 534393 #: includes/CDI-Shipping.php:764 4376 4394 msgid "minimum weight in g" 4377 4395 msgstr "Poids mimimum du panier en g" 4378 4396 4379 #: includes/CDI-Shipping.php:7 554397 #: includes/CDI-Shipping.php:766 4380 4398 msgid "Max weight" 4381 4399 msgstr "Poids maxi" 4382 4400 4383 #: includes/CDI-Shipping.php:7 564401 #: includes/CDI-Shipping.php:767 4384 4402 msgid "maximum weight in g" 4385 4403 msgstr "Poids maximum du panier en g" 4386 4404 4387 #: includes/CDI-Shipping.php:7 704405 #: includes/CDI-Shipping.php:781 4388 4406 msgid "Rates" 4389 4407 msgstr "Tarifs" 4390 4408 4391 #: includes/CDI-Shipping.php:7 864409 #: includes/CDI-Shipping.php:797 4392 4410 msgid "Add rate" 4393 4411 msgstr "Ajouter une ligne de tarif" 4394 4412 4395 #: includes/CDI-Shipping.php:7 874413 #: includes/CDI-Shipping.php:798 4396 4414 msgid "Delete selected" 4397 4415 msgstr "Supprimer les lignes sélectionnées" 4398 4416 4399 #: includes/CDI-Shipping.php: 7914417 #: includes/CDI-Shipping.php:802 4400 4418 msgid "" 4401 4419 "When the table is empty, click \"Save changes\" and, for this carrier, examples " … … 4407 4425 "inspirer (ou vos tarifs de démarrage dans cdi/uploads ) . " 4408 4426 4409 #: includes/CDI-Shipping.php:8 114427 #: includes/CDI-Shipping.php:822 4410 4428 msgid "" 4411 4429 "CDI : The macroclass definition is invalid. \n" -
collect-and-deliver-interface-for-woocommerce/trunk/readme.txt
r3458981 r3489671 6 6 Requires PHP: 7.3 7 7 PHP tested up to: 8.1 8 Stable tag: 5.5.1 48 Stable tag: 5.5.15 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 111 111 112 112 == Changelog == 113 114 = 5.5.15 (2026-03-24) = 115 * Fix Orderlist calling cdi_metabox_initforcarrier Add a fallback carrier 116 * Fix Invalid typo and rebuild variable rate field processing in CDI-shipping.php 117 * Fix Conflict between versions V1 and V2 of Mondial Relay 118 * Some typo and fix 113 119 114 120 = 5.5.14 (2026-02-11) =
Note: See TracChangeset
for help on using the changeset viewer.