diff --git a/CHANGELOG.md b/CHANGELOG.md index 591cc896..93ebb07b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 2.7.1 + +- Get payment method configuration from PHP SDK +- Add update notifications in admin dashboard + # Version 2.7.0 - Add MyBank Payment method diff --git a/bin/docker/images/prestashop/entrypoint.sh b/bin/docker/images/prestashop/entrypoint.sh index 8e2e9f00..65052132 100755 --- a/bin/docker/images/prestashop/entrypoint.sh +++ b/bin/docker/images/prestashop/entrypoint.sh @@ -76,6 +76,13 @@ if [ ! -f /var/www/html/prestashopConsole.phar ];then ./prestashopConsole.phar configuration:set PS_SSL_ENABLED 1 fi + if [ "$ENVIRONMENT" = "$ENV_STAGE" ];then + mysql -h $MYSQL_HOST -D prestashop17 -u root -p$MYSQL_ROOT_PASSWORD < .panel-heading') + .should('contain', 'HiPay Information'); + cy.get('#hipayupdate #hipayNotifLogo') + .should('exist') + .should('be.visible'); + cy.get('#hipayupdate p') + .should('exist') + .should('be.visible') + .should(($div) => { + const text = $div.text(); + expect(text).to.match(/^(\s*)Une nouvelle version du module HiPay Enterprise est disponible\.(\s*)Voir les détails de la version 2\.7\.0(\s*)ou(\s*)mettre à jour\.(\s*)$/); + }); + cy.adminLogOut(); + }); + + /** + * Checks when module needs update on the config page + */ + it('Needs update on config page', function () { + cy.logToAdmin(); + cy.goToHipayModuleAdmin(); + cy.get('#hipayupdate') + .should('exist') + .should('be.visible') + .should('have.class', 'alert') + .should('have.class', 'alert-danger') + .should(($div) => { + const text = $div.text(); + expect(text).to.match(/^(\s*)Une nouvelle version du module HiPay Enterprise est disponible\.(\s*)Voir les détails de la version 2\.7\.0(\s*)ou(\s*)mettre à jour\.(\s*)$/); + }); + cy.adminLogOut(); + }); +}); + diff --git a/bin/tests/tests-cypress/package.json b/bin/tests/tests-cypress/package.json index e3d0fa01..84fe0bb6 100644 --- a/bin/tests/tests-cypress/package.json +++ b/bin/tests/tests-cypress/package.json @@ -1,5 +1,5 @@ { - "name": "hipay-enterprise-sdk-woocommerce", + "name": "hipay-enterprise-sdk-prestashop", "version": "1.0.0", "dependencies": { "@hipay/hipay-cypress-utils": "^1.0.32", diff --git a/src/hipay_enterprise/classes/apiFormatter/PaymentMethod/GenericPaymentMethodFormatter.php b/src/hipay_enterprise/classes/apiFormatter/PaymentMethod/GenericPaymentMethodFormatter.php index 8146d8a8..5dbf624d 100755 --- a/src/hipay_enterprise/classes/apiFormatter/PaymentMethod/GenericPaymentMethodFormatter.php +++ b/src/hipay_enterprise/classes/apiFormatter/PaymentMethod/GenericPaymentMethodFormatter.php @@ -44,7 +44,8 @@ public function generate() $PMRequest = null; if (!empty($this->configHipay["payment"]["local_payment"][$this->params["method"]]["additionalFields"])) { - $PMRequest = new $this->configHipay["payment"]["local_payment"][$this->params["method"]]["additionalFields"]["sdkClass"](); + $sdkClass = $this->configHipay["payment"]["local_payment"][$this->params["method"]]["additionalFields"]["sdkClass"]; + $PMRequest = new $sdkClass(); $this->mapRequest($PMRequest); } diff --git a/src/hipay_enterprise/classes/apiHandler/ApiHandler.php b/src/hipay_enterprise/classes/apiHandler/ApiHandler.php index e761d3ee..40c8e7f9 100755 --- a/src/hipay_enterprise/classes/apiHandler/ApiHandler.php +++ b/src/hipay_enterprise/classes/apiHandler/ApiHandler.php @@ -246,8 +246,8 @@ private function baseParamsInit(&$params, $creditCard = true, $cart = false) $params["delivery_informations"] = $this->getDeliveryInformation($cart); } elseif ($this->configHipay["payment"]["global"]["activate_basket"] || (isset($params["method"]) && - isset($this->configHipay["payment"]["local_payment"][$params["method"]]["forceBasket"])) && - $this->configHipay["payment"]["local_payment"][$params["method"]]["forceBasket"] + isset($this->configHipay["payment"]["local_payment"][$params["method"]]["basketRequired"])) && + $this->configHipay["payment"]["local_payment"][$params["method"]]["basketRequired"] ) { $params["basket"] = $this->getCart($cart); $params["delivery_informations"] = $this->getDeliveryInformation($cart); diff --git a/src/hipay_enterprise/classes/helper/HipayConfig.php b/src/hipay_enterprise/classes/helper/HipayConfig.php index f43f872d..1da0abbb 100755 --- a/src/hipay_enterprise/classes/helper/HipayConfig.php +++ b/src/hipay_enterprise/classes/helper/HipayConfig.php @@ -535,19 +535,20 @@ private function setAllConfigHiPay($arrayHipay = null, $id_shop_group = null, $i /** * init local config * + * @param $folderName * @return array */ private function insertPaymentsConfig($folderName) { - $creditCard = array(); + $paymentMethod = array(); $files = scandir($this->jsonFilesPath . $folderName); foreach ($files as $file) { - $creditCard = array_merge($creditCard, $this->addPaymentConfig($file, $folderName)); + $paymentMethod = array_merge($paymentMethod, $this->addPaymentConfig($file, $folderName)); } - return $creditCard; + return $paymentMethod; } /** @@ -559,13 +560,57 @@ private function insertPaymentsConfig($folderName) */ private function addPaymentConfig($file, $folderName) { - $creditCard = array(); + $paymentMethod = array(); if (preg_match('/(.*)\.json/', $file) == 1) { $json = Tools::jsonDecode(Tools::file_get_contents($this->jsonFilesPath . $folderName . $file), true); - $creditCard[$json["name"]] = $json["config"]; + $paymentMethod[$json["name"]] = $json["config"]; + + $sdkConfig = HiPay\Fullservice\Data\PaymentProduct\Collection::getItem($json["name"]); + + if ($sdkConfig !== null) { + $paymentMethod[$json["name"]] = array_merge($sdkConfig->toArray(), $paymentMethod[$json["name"]]); + } + + if ( + isset($paymentMethod[$json["name"]]["currencies"]) && + empty($paymentMethod[$json["name"]]["currencies"]) + ) { + $paymentMethod[$json["name"]]["currencies"] = $this->getActiveCurrencies(); + } + + if ( + isset($paymentMethod[$json["name"]]["countries"]) && + empty($paymentMethod[$json["name"]]["countries"]) + ) { + $paymentMethod[$json["name"]]["countries"] = $this->getActiveCountries(); + } + + } + + return $paymentMethod; + } + + private function getActiveCurrencies(){ + $activeCurrenciesIso = array(); + $activeCurrencies = Currency::getCurrencies(false, true); + + foreach ($activeCurrencies as $currency) { + $activeCurrenciesIso[] = $currency["iso_code"]; + } + + return $activeCurrenciesIso; + } + + private function getActiveCountries() + { + $activeCountriesIso = array(); + $activeCountries = Country::getCountries($this->context->language->id, true); + + foreach ($activeCountries as $country) { + $activeCountriesIso[] = $country["iso_code"]; } - return $creditCard; + return $activeCountriesIso; } } diff --git a/src/hipay_enterprise/classes/helper/HipayConfigFormHandler.php b/src/hipay_enterprise/classes/helper/HipayConfigFormHandler.php index a21a0484..f4dc9817 100755 --- a/src/hipay_enterprise/classes/helper/HipayConfigFormHandler.php +++ b/src/hipay_enterprise/classes/helper/HipayConfigFormHandler.php @@ -63,7 +63,9 @@ public function saveAccountInformations() Tools::getValue("api_password_sandbox") && !Tools::getValue("api_username_sandbox")) ) { - $this->module->_errors[] = $this->module->l("If sandbox api username is filled sandbox api password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If sandbox api username is filled sandbox api password is mandatory" + ); return false; } elseif (($key == "api_tokenjs_username_sandbox" && Tools::getValue("api_tokenjs_username_sandbox") && @@ -72,7 +74,9 @@ public function saveAccountInformations() Tools::getValue("api_tokenjs_password_publickey_sandbox") && !Tools::getValue("api_tokenjs_username_sandbox")) ) { - $this->module->_errors[] = $this->module->l("If sandbox api TokenJS username is filled sandbox api TokenJS password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If sandbox api TokenJS username is filled sandbox api TokenJS password is mandatory" + ); return false; } elseif (($key == "api_moto_username_sandbox" && Tools::getValue("api_moto_username_sandbox") && @@ -84,7 +88,9 @@ public function saveAccountInformations() "api_moto_username_sandbox" )) ) { - $this->module->_errors[] = $this->module->l("If sandbox api MO/TO username is filled sandbox api MO/TO password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If sandbox api MO/TO username is filled sandbox api MO/TO password is mandatory" + ); return false; } else { if ($key == "api_secret_passphrase_sandbox" || $key == "api_moto_secret_passphrase_sandbox") { @@ -106,7 +112,9 @@ public function saveAccountInformations() Tools::getValue("api_password_production") && !Tools::getValue("api_username_production")) ) { - $this->module->_errors[] = $this->module->l("If production api username is filled production api password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If production api username is filled production api password is mandatory" + ); return false; } elseif (($key == "api_tokenjs_username_production" && Tools::getValue("api_tokenjs_username_production") && @@ -115,7 +123,9 @@ public function saveAccountInformations() Tools::getValue("api_tokenjs_password_publickey_production") && !Tools::getValue("api_tokenjs_username_production")) ) { - $this->module->_errors[] = $this->module->l("If production api TokenJS username is filled production api TokenJS password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If production api TokenJS username is filled production api TokenJS password is mandatory" + ); return false; } elseif (($key == "api_moto_username_production" && Tools::getValue("api_moto_username_production") && @@ -125,7 +135,9 @@ public function saveAccountInformations() Tools::getValue("api_moto_password_production") && !Tools::getValue("api_moto_username_production")) ) { - $this->module->_errors[] = $this->module->l("If production api MO/TO username is filled production api MO/TO password is mandatory"); + $this->module->_errors[] = $this->module->l( + "If production api MO/TO username is filled production api MO/TO password is mandatory" + ); return false; } else { if ($key == "api_secret_passphrase_production" || $key == "api_moto_secret_passphrase_production") { @@ -253,8 +265,8 @@ public function saveCreditCardInformations($context) foreach ($conf as $key => $value) { if (in_array($key, $keySaved)) { $fieldValue = Tools::getValue($card . "_" . $key); - if ($key == "currencies") { - foreach (Tools::getValue($card . "_" . $key) as $currency) { + if ($key == "currencies" && $fieldValue) { + foreach ($fieldValue as $currency) { if (!in_array($currency, $this->module->moduleCurrencies)) { $this->module->db->setCurrencies($this->module->id, $context->shop->id, $currency); } @@ -309,13 +321,14 @@ public function saveLocalPaymentInformations($context) ); foreach ($this->module->hipayConfigTool->getLocalPayment() as $card => $conf) { + $keySaved = array_merge($conf["displayConfigurationFields"], $keySavedBase); foreach ($conf as $key => $value) { //prevent specific fields from being updated if (in_array($key, $keySaved)) { $fieldValue = Tools::getValue($card . "_" . $key); - if ($key == "currencies") { - foreach (Tools::getValue($card . "_" . $key) as $currency) { + if ($key == "currencies" && $fieldValue) { + foreach ($fieldValue as $currency) { if (!in_array($currency, $this->module->moduleCurrencies)) { $this->module->db->setCurrencies($this->module->id, $context->shop->id, $currency); } diff --git a/src/hipay_enterprise/classes/helper/HipayDBQuery.php b/src/hipay_enterprise/classes/helper/HipayDBQuery.php index 8a86b871..689e5bd3 100755 --- a/src/hipay_enterprise/classes/helper/HipayDBQuery.php +++ b/src/hipay_enterprise/classes/helper/HipayDBQuery.php @@ -963,4 +963,28 @@ public function isManualCapture($orderId) return false; } + + /** + * Returns a module's version from database + * @param $moduleName The module's name + * @return mixed + * @throws PrestaShopDatabaseException + */ + public function getModuleVersion($moduleName){ + $sql = 'SELECT version FROM `' . + _DB_PREFIX_ . + 'module` WHERE name = \'' . + pSQL( + $moduleName + ) . + '\' LIMIT 1;'; + + $result = Db::getInstance()->executeS($sql); + + if(isset($result[0]) && is_array($result[0])) { + return $result[0]['version']; + } else { + return null; + } + } } diff --git a/src/hipay_enterprise/classes/helper/HipayHelper.php b/src/hipay_enterprise/classes/helper/HipayHelper.php index 7ec36498..89b2f490 100755 --- a/src/hipay_enterprise/classes/helper/HipayHelper.php +++ b/src/hipay_enterprise/classes/helper/HipayHelper.php @@ -508,7 +508,7 @@ public static function getActivatedPaymentByCountryAndCurrency( if ($paymentMethodType == "local_payment") { if (Configuration::get('PS_ROUND_TYPE') == Order::ROUND_LINE || Configuration::get('PS_ROUND_TYPE') == Order::ROUND_ITEM || - !$settings["forceBasket"] + !$settings["basketRequired"] ) { $activatedPayment[$name] = $settings; $activatedPayment[$name]["link"] = $context->link->getModuleLink( diff --git a/src/hipay_enterprise/classes/helper/HipayNotification.php b/src/hipay_enterprise/classes/helper/HipayNotification.php index d93cec26..8f484026 100755 --- a/src/hipay_enterprise/classes/helper/HipayNotification.php +++ b/src/hipay_enterprise/classes/helper/HipayNotification.php @@ -416,7 +416,7 @@ private function saveCardToken() $configCC = $this->module->hipayConfigTool->getPaymentCreditCard()[strtolower( $this->transaction->getPaymentProduct() )]; - if (isset($configCC['recurring']) && $configCC['recurring']) { + if (isset($configCC['canRecurring']) && $configCC['canRecurring']) { $card = array( "token" => $this->transaction->getPaymentMethod()->getToken(), diff --git a/src/hipay_enterprise/classes/helper/HipayUpdateNotif.php b/src/hipay_enterprise/classes/helper/HipayUpdateNotif.php new file mode 100755 index 00000000..49895318 --- /dev/null +++ b/src/hipay_enterprise/classes/helper/HipayUpdateNotif.php @@ -0,0 +1,182 @@ + + * @copyright 2017 HiPay + * @license https://github.com/hipay/hipay-enterprise-sdk-prestashop/blob/master/LICENSE.md + */ + +require_once(dirname(__FILE__) . '/HipayHelper.php'); + +/** + * Handle new versions notifications + * + * @author HiPay + * @copyright Copyright (c) 2019 - HiPay + * @license https://github.com/hipay/hipay-enterprise-sdk-prestashop/blob/master/LICENSE.md + * @link https://github.com/hipay/hipay-enterprise-sdk-prestashop + */ +class HipayUpdateNotif +{ + const HIPAY_GITHUB_PRESTASHOP_LATEST = "https://api.github.com/repos/hipay/hipay-enterprise-sdk-prestashop/releases/latest"; + + /** + * @var mixed $module Current module + */ + private $module; + + /** + * @var mixed $context Current context + */ + private $context; + + /** + * @var String $version Current module version + */ + private $version; + + /** + * @var String $newVersion Latest version available + */ + private $newVersion; + + /** + * @var String $readMeUrl URL targeting the latest version's ReadMe on GitHub + */ + private $readMeUrl; + + /** + * @var String $downloadUrl URL targeting the latest version's direct download on GitHub + */ + private $downloadUrl; + + /** + * HipayUpdateNotif constructor. + * @param string $version + * @throws Exception + */ + public function __construct($module) + { + $this->module = $module; + $this->context = Context::getContext(); + $this->version = $module->db->getModuleVersion($module->name); + + // We read info from the saved configuration first, to have values even if GitHub doesn't answer properly + $this->readFromConf(); + + /* + * GitHub limits calls over 60 per hour per IP + * https://developer.github.com/v3/#rate-limiting + * + * Solution : max 1 call per hour + */ + $lastCall = DateTime::createFromFormat('d/m/Y H:i:s', Configuration::get('HIPAY_UPDATE_NOTIF_LAST_CALL')); + $curdate = new DateTime(); + + /* + * PT1H => Interval of 1 hour + * https://www.php.net/manual/en/dateinterval.construct.php + */ + if(!$lastCall || $lastCall->add(new DateInterval("PT1H")) < $curdate ) { + // Headers to avoid 403 error from GitHub + $opts = [ + 'http' => [ + 'method' => 'GET', + 'header' => [ + 'User-Agent: PHP' + ] + ] + ]; + $context = stream_context_create($opts); + $gitHubInfo = json_decode(file_get_contents(self::HIPAY_GITHUB_PRESTASHOP_LATEST, false, $context)); + // If call is successful, reading from call + if ($gitHubInfo) { + $this->newVersion = $gitHubInfo->tag_name; + $this->readMeUrl = $gitHubInfo->html_url; + $this->downloadUrl = $gitHubInfo->assets[0]->browser_download_url; + + $infoFormatted = new stdClass(); + $infoFormatted->newVersion = $this->newVersion; + $infoFormatted->readMeUrl = $this->readMeUrl; + $infoFormatted->downloadUrl = $this->downloadUrl; + + Configuration::updateValue('HIPAY_UPDATE_NOTIF_LAST_CALL', $curdate->format('d/m/Y H:i:s')); + Configuration::updateValue('HIPAY_UPDATE_NOTIF_LAST_RESULT', json_encode($infoFormatted)); + } + } + } + + /** + * Reads the update info from saved configuration data + */ + public function readFromConf(){ + $lastResult = json_decode(Configuration::get('HIPAY_UPDATE_NOTIF_LAST_RESULT')); + + // If conf exists, reading from it + if($lastResult) { + $this->newVersion = $lastResult->newVersion; + $this->readMeUrl = $lastResult->readMeUrl; + $this->downloadUrl = $lastResult->downloadUrl; + // If not, setting default data with values not showing the block + } else { + $this->newVersion = $this->version; + $this->readMeUrl = "#"; + $this->downloadUrl = "#"; + } + } + + /** + * Displays the notification block in main admin dashboard + * @return mixed + */ + public function displayBlock() + { + $this->context->smarty->assign( + array( + 'updateNotif' => $this + ) + ); + + return $this->module->display( + $this->module->name, + 'views/templates/hook/updateNotif.tpl' + ); + } + + /** + * @return String + */ + public function getVersion() + { + return $this->version; + } + + /** + * @return String + */ + public function getNewVersion() + { + return $this->newVersion; + } + + /** + * @return String + */ + public function getReadMeUrl() + { + return $this->readMeUrl; + } + + /** + * @return String + */ + public function getDownloadUrl() + { + return $this->downloadUrl; + } +} \ No newline at end of file diff --git a/src/hipay_enterprise/composer.json b/src/hipay_enterprise/composer.json index 8cc7d332..70eddf37 100755 --- a/src/hipay_enterprise/composer.json +++ b/src/hipay_enterprise/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "hipay/hipay-fullservice-sdk-php": "2.0.1" + "hipay/hipay-fullservice-sdk-php": "2.2.1" }, "require-dev": { "phpunit/phpunit": "5.6.1" diff --git a/src/hipay_enterprise/hipay_enterprise.php b/src/hipay_enterprise/hipay_enterprise.php index 0212d80d..05295254 100755 --- a/src/hipay_enterprise/hipay_enterprise.php +++ b/src/hipay_enterprise/hipay_enterprise.php @@ -26,6 +26,7 @@ class Hipay_enterprise extends PaymentModule { public $hipayConfigTool; + public $hipayUpdateNotif; public $_errors = array(); public $_successes = array(); public $currencies_titles = array(); @@ -37,7 +38,7 @@ public function __construct() $this->name = 'hipay_enterprise'; $this->tab = 'payments_gateways'; - $this->version = '2.7.0'; + $this->version = '2.7.1'; $this->module_key = 'c3c030302335d08603e8669a5210c744'; $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); $this->currencies = true; @@ -88,6 +89,9 @@ public function __construct() //configuration is handle by an helper class $this->hipayConfigTool = new HipayConfig($this); + + // Checking new versions of the module + $this->hipayUpdateNotif = new HipayUpdateNotif($this); } /** @@ -161,6 +165,7 @@ public function installHipay() $return &= $this->registerHook('updateCarrier'); $return &= $this->registerHook('actionAdminDeleteBefore'); $return &= $this->registerHook('actionAdminBulKDeleteBefore'); + $return &= $this->registerHook('dashboardZoneOne'); if (_PS_VERSION_ >= '1.7') { $return17 = $this->registerHook('paymentOptions') && $this->registerHook('header') && @@ -384,6 +389,15 @@ public function hookDisplayPaymentEU($params) return $paymentOptions; } + /** + * Displays notification block in main admin dashboard + * @param $params + * @return mixed + */ + public function hookDashboardZoneOne($params){ + return $this->hipayUpdateNotif->displayBlock(); + } + /** * Handling prestashop payment hook. Adding payment methods (PS17) * @param type $params @@ -511,7 +525,8 @@ public function getContent() 'ajax_url' => $this->context->link->getAdminLink('AdminModules'), 'url_site' => Tools::getHttpHost(true) . __PS_BASE_URI__, 'syncLink' => $this->context->link->getAdminLink('AdminHiPaySynchronizeHashing'), - 'syncToken' => Tools::getAdminTokenLite('AdminHiPaySynchronizeHashing') + 'syncToken' => Tools::getAdminTokenLite('AdminHiPaySynchronizeHashing'), + "updateNotif" => $this->hipayUpdateNotif ) ); @@ -633,3 +648,4 @@ private function deleteHipayTable() require_once(dirname(__FILE__) . '/classes/helper/HipayFormControl.php'); require_once(dirname(__FILE__) . '/classes/helper/HipayConfigFormHandler.php'); require_once(dirname(__FILE__) . '/classes/helper/HipayMaintenanceBlock.php'); +require_once(dirname(__FILE__) . '/classes/helper/HipayUpdateNotif.php'); diff --git a/src/hipay_enterprise/mails/it/fraud.html b/src/hipay_enterprise/mails/it/fraud.html old mode 100644 new mode 100755 diff --git a/src/hipay_enterprise/mails/it/fraud.txt b/src/hipay_enterprise/mails/it/fraud.txt old mode 100644 new mode 100755 diff --git a/src/hipay_enterprise/mails/it/index.php b/src/hipay_enterprise/mails/it/index.php old mode 100644 new mode 100755 diff --git a/src/hipay_enterprise/mails/it/payment_deny.html b/src/hipay_enterprise/mails/it/payment_deny.html old mode 100644 new mode 100755 diff --git a/src/hipay_enterprise/mails/it/payment_deny.txt b/src/hipay_enterprise/mails/it/payment_deny.txt old mode 100644 new mode 100755 diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/01-visa.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/01-visa.json index 81eec1d6..dbeb14cd 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/01-visa.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/01-visa.json @@ -3,25 +3,11 @@ "config": { "displayName": "Visa", "activated": 1, - "can3ds": 1, - "canRecurring": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "GB", - "FR" - ], - "recurring": 1 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/02-mastercard.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/02-mastercard.json index d08d8a5f..4e770116 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/02-mastercard.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/02-mastercard.json @@ -3,25 +3,11 @@ "config": { "displayName": "Mastercard", "activated": 1, - "can3ds": 1, - "canRecurring": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "GB", - "FR" - ], - "recurring": 1 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/03-cb.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/03-cb.json index 00ea6720..07f1f142 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/03-cb.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/03-cb.json @@ -3,24 +3,11 @@ "config": { "displayName": "Carte Bancaire", "activated": 1, - "can3ds": 1, - "canRecurring": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "FR" - ], - "recurring": 1 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/04-maestro.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/04-maestro.json index bd43dd6c..393ae1eb 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/04-maestro.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/04-maestro.json @@ -3,25 +3,11 @@ "config": { "displayName": "Maestro", "activated": 1, - "can3ds": 1, - "canRecurring": 0, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "GB", - "FR" - ], - "recurring": 0 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/05-american-express.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/05-american-express.json index 065f8bfc..7ac7d057 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/05-american-express.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/05-american-express.json @@ -3,25 +3,11 @@ "config": { "displayName": "American Express", "activated": 1, - "can3ds": 1, - "canRecurring": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "GB", - "FR" - ], - "recurring": 1 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/creditCard/06-bcmc.json b/src/hipay_enterprise/paymentConfigFiles/creditCard/06-bcmc.json index 8e389b07..a2af8fa3 100755 --- a/src/hipay_enterprise/paymentConfigFiles/creditCard/06-bcmc.json +++ b/src/hipay_enterprise/paymentConfigFiles/creditCard/06-bcmc.json @@ -3,24 +3,11 @@ "config": { "displayName": "Bancontact", "activated": 1, - "can3ds": 1, - "canRecurring": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false - }, - "countries": [ - "BE" - ], - "recurring": 0 + } } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local.json.sample b/src/hipay_enterprise/paymentConfigFiles/local.json.sample new file mode 100755 index 00000000..3bf761d0 --- /dev/null +++ b/src/hipay_enterprise/paymentConfigFiles/local.json.sample @@ -0,0 +1,46 @@ +{ + "name": "test", + "config": { + "group": { + "code": "test", + "label": "Test method group is optional" + }, + "displayNameBO": "Test method", + "displayName": { + "fr": "Test method", + "en": "Test method" + }, + "frontPosition": 31, + "activated": 0, + "canRefund": 0, + "canRefundPartially": 0, + "canManualCapture": 0, + "canManualCapturePartially": 0, + "currencies": [ + "EUR" + ], + "countries": [ + "FR" + ], + "displayConfigurationFields": [ + "displayName", + "minAmount", + "maxAmount", + "countries", + "iframe" + ], + "countrySelectorReadOnly": 1, + "currencySelectorReadOnly": 1, + "basketRequired": 1, + "forceHpayment": 1, + "iframe": 0, + "minAmount": { + "EUR": 0 + }, + "maxAmount": { + "EUR": false + }, + "logo": "oney-carte-cadeau.png", + "additionalFields": {} + } +} diff --git a/src/hipay_enterprise/paymentConfigFiles/local/3xcb-no-fees.json b/src/hipay_enterprise/paymentConfigFiles/local/3xcb-no-fees.json index 9f44234d..b35c47dc 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/3xcb-no-fees.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/3xcb-no-fees.json @@ -12,16 +12,6 @@ }, "frontPosition": 2, "activated": 0, - "canRefund": 1, - "canRefundPartially": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,14 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "oney.png", - "additionalFields": {} + "logo": "oney.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/3xcb.json b/src/hipay_enterprise/paymentConfigFiles/local/3xcb.json index 9bbca880..d6909b2f 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/3xcb.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/3xcb.json @@ -12,16 +12,6 @@ }, "frontPosition": 3, "activated": 0, - "canRefund": 1, - "canRefundPartially": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,14 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "oney.png", - "additionalFields": {} + "logo": "oney.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/4xcb-no-fees.json b/src/hipay_enterprise/paymentConfigFiles/local/4xcb-no-fees.json index a2c70823..38deb920 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/4xcb-no-fees.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/4xcb-no-fees.json @@ -12,16 +12,6 @@ }, "frontPosition": 4, "activated": 0, - "canRefund": 1, - "canRefundPartially": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,14 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "oney.png", - "additionalFields": {} + "logo": "oney.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/4xcb.json b/src/hipay_enterprise/paymentConfigFiles/local/4xcb.json index 22ed4262..e67fbccb 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/4xcb.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/4xcb.json @@ -12,16 +12,6 @@ }, "frontPosition": 5, "activated": 0, - "canRefund": 1, - "canRefundPartially": 1, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,14 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "oney.png", - "additionalFields": {} + "logo": "oney.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/aura.json b/src/hipay_enterprise/paymentConfigFiles/local/aura.json index 2531df07..40c14b62 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/aura.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/aura.json @@ -12,16 +12,6 @@ }, "frontPosition": 6, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "aura.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "aura.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/banamex.json b/src/hipay_enterprise/paymentConfigFiles/local/banamex.json index 2b3e0029..91381734 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/banamex.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/banamex.json @@ -12,16 +12,6 @@ }, "frontPosition": 7, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "MXN" - ], - "countries": [ - "MX" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "banamex.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CURP/CPN", - "fr": "CURP/CPN" - }, - "type": "text", - "required": true, - "controlType": "curp-cpn" - } - } - } + "logo": "banamex.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/banco-do-brasil.json b/src/hipay_enterprise/paymentConfigFiles/local/banco-do-brasil.json index 015a77a0..0d8e30c0 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/banco-do-brasil.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/banco-do-brasil.json @@ -12,16 +12,6 @@ }, "frontPosition": 8, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "banco-do-brasil.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "banco-do-brasil.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/bbva-bancomer.json b/src/hipay_enterprise/paymentConfigFiles/local/bbva-bancomer.json index a24a6176..6e85036c 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/bbva-bancomer.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/bbva-bancomer.json @@ -12,16 +12,6 @@ }, "frontPosition": 9, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "MXN" - ], - "countries": [ - "MX" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "bbva.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CURP/CPN", - "fr": "CURP/CPN" - }, - "type": "text", - "required": true, - "controlType": "curp-cpn" - } - } - } + "logo": "bbva.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/belfius.json b/src/hipay_enterprise/paymentConfigFiles/local/belfius.json index aad24a15..e98f934a 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/belfius.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/belfius.json @@ -8,17 +8,6 @@ }, "frontPosition": 10, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "dexia-directnet.png", - "additionalFields": {} + "logo": "dexia-directnet.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/bnpp-3xcb.json b/src/hipay_enterprise/paymentConfigFiles/local/bnpp-3xcb.json index 2360d871..e14853a8 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/bnpp-3xcb.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/bnpp-3xcb.json @@ -12,16 +12,6 @@ }, "frontPosition": 30, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,18 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "bnp_140_3x.jpg", - "additionalFields": {}, - "checkoutFieldsMandatory" : [ - "phone", - "gender" - ] + "logo": "bnp_140_3x.jpg" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/bnpp-4xcb.json b/src/hipay_enterprise/paymentConfigFiles/local/bnpp-4xcb.json index 06a3ae42..3fc79fd4 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/bnpp-4xcb.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/bnpp-4xcb.json @@ -12,16 +12,6 @@ }, "frontPosition": 35, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,18 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "bnp_140_4x.jpg", - "additionalFields": {}, - "checkoutFieldsMandatory" : [ - "phone", - "gender" - ] + "logo": "bnp_140_4x.jpg" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/boleto-bancario.json b/src/hipay_enterprise/paymentConfigFiles/local/boleto-bancario.json index 91269e21..5260a615 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/boleto-bancario.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/boleto-bancario.json @@ -12,16 +12,6 @@ }, "frontPosition": 11, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "boleto.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "boleto.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/bradesco.json b/src/hipay_enterprise/paymentConfigFiles/local/bradesco.json index 47cef48d..f1578b18 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/bradesco.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/bradesco.json @@ -12,16 +12,6 @@ }, "frontPosition": 12, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "bradesco.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "bradesco.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/caixa.json b/src/hipay_enterprise/paymentConfigFiles/local/caixa.json index 57a86d8c..b91e8c61 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/caixa.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/caixa.json @@ -12,16 +12,6 @@ }, "frontPosition": 13, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "aura.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "aura.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/giropay.json b/src/hipay_enterprise/paymentConfigFiles/local/giropay.json index 31e790e0..a0e5f2db 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/giropay.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/giropay.json @@ -8,16 +8,6 @@ }, "frontPosition": 14, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "DE" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,28 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "giropay.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\IssuerBankIDPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "issuer_bank_id": { - "label": { - "en": "Business Identifier Code (BIC)", - "fr": "Business Identifier Code (BIC)" - }, - "type": "text", - "required": true, - "controlType": "bic" - } - } - } + "logo": "giropay.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/ideal.json b/src/hipay_enterprise/paymentConfigFiles/local/ideal.json index d8cee5a4..2529faea 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/ideal.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/ideal.json @@ -8,16 +8,6 @@ }, "frontPosition": 15, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "NL" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,29 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "acceptHostedOrder": true, - "logo": "ideal.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\IssuerBankIDPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "issuer_bank_id": { - "label": { - "en": "Business Identifier Code (BIC)", - "fr": "Business Identifier Code (BIC)" - }, - "type": "text", - "required": true, - "controlType": "bic" - } - } - } + "logo": "ideal.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/ing-homepay.json b/src/hipay_enterprise/paymentConfigFiles/local/ing-homepay.json index 5cd42c16..031a653e 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/ing-homepay.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/ing-homepay.json @@ -8,17 +8,6 @@ }, "frontPosition": 16, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "ing-homepay.png", - "additionalFields": {} + "logo": "ing-homepay.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/itau.json b/src/hipay_enterprise/paymentConfigFiles/local/itau.json index 0de4a27d..b8715bef 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/itau.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/itau.json @@ -12,16 +12,6 @@ }, "frontPosition": 17, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "itau.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "itau.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/klarna.json b/src/hipay_enterprise/paymentConfigFiles/local/klarna.json index b4231157..42c8f9dd 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/klarna.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/klarna.json @@ -8,16 +8,6 @@ }, "frontPosition": 18, "activated": 0, - "canManualCapture": 1, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "DE" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "klarna.png", - "additionalFields": {} + "logo": "klarna.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/mybank.json b/src/hipay_enterprise/paymentConfigFiles/local/mybank.json index ae0c3271..4c703154 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/mybank.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/mybank.json @@ -8,16 +8,6 @@ }, "frontPosition": 31, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "IT" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,14 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "mybank.png", - "additionalFields": {} + "logo": "mybank.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/oney-carte-cadeau.json b/src/hipay_enterprise/paymentConfigFiles/local/oney-carte-cadeau.json index ce9b3962..3d62ca71 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/oney-carte-cadeau.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/oney-carte-cadeau.json @@ -31,7 +31,7 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 1, + "basketRequired": 1, "forceHpayment": 1, "iframe": 0, "minAmount": { diff --git a/src/hipay_enterprise/paymentConfigFiles/local/oxxo.json b/src/hipay_enterprise/paymentConfigFiles/local/oxxo.json index 52dd21e3..cfdc9ce1 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/oxxo.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/oxxo.json @@ -12,16 +12,6 @@ }, "frontPosition": 19, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "MXN" - ], - "countries": [ - "MX" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "oxxo.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CURP/CPN", - "fr": "CURP/CPN" - }, - "type": "text", - "required": true, - "controlType": "curp-cpn" - } - } - } + "logo": "oxxo.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/paypal.json b/src/hipay_enterprise/paymentConfigFiles/local/paypal.json index b3293b8e..afe27946 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/paypal.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/paypal.json @@ -8,17 +8,6 @@ }, "frontPosition": 20, "activated": 0, - "canManualCapture": 1, - "canManualCapturePartially": 1, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "paypal.png", - "additionalFields": {} + "logo": "paypal.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/postfinance-card.json b/src/hipay_enterprise/paymentConfigFiles/local/postfinance-card.json index 67d7c0c8..7ad567db 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/postfinance-card.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/postfinance-card.json @@ -12,17 +12,6 @@ }, "frontPosition": 21, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -31,14 +20,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "postfinance-card.png", - "additionalFields": {} + "logo": "postfinance-card.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/postfinance-efinance.json b/src/hipay_enterprise/paymentConfigFiles/local/postfinance-efinance.json index 46819ac6..63317953 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/postfinance-efinance.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/postfinance-efinance.json @@ -12,17 +12,6 @@ }, "frontPosition": 22, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -31,14 +20,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "postfinance-efinance.png", - "additionalFields": {} + "logo": "postfinance-efinance.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/przelewy24.json b/src/hipay_enterprise/paymentConfigFiles/local/przelewy24.json index 132236ec..a0c4130c 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/przelewy24.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/przelewy24.json @@ -8,16 +8,6 @@ }, "frontPosition": 23, "activated": 0, - "canManualCapture": 1, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "PLN" - ], - "countries": [ - "PL" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,14 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "p24.png", - "additionalFields": {} + "logo": "p24.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/santander-cash.json b/src/hipay_enterprise/paymentConfigFiles/local/santander-cash.json index 0ee94919..4160f374 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/santander-cash.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/santander-cash.json @@ -12,16 +12,6 @@ }, "frontPosition": 24, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "MXN" - ], - "countries": [ - "MX" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "satander.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label":{ - "en": "CURP/CPN", - "fr": "CURP/CPN" - }, - "type": "text", - "required": true, - "controlType": "curp-cpn" - } - } - } + "logo": "satander.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/santander-home-banking.json b/src/hipay_enterprise/paymentConfigFiles/local/santander-home-banking.json index 42b36554..55fbd872 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/santander-home-banking.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/santander-home-banking.json @@ -12,16 +12,6 @@ }, "frontPosition": 25, "activated": 0, - "canRefund": 0, - "canRefundPartially": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "currencies": [ - "BRL" - ], - "countries": [ - "BR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -30,28 +20,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "satander.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\AstropayPaymentMethod", - "defaultFieldsValue": {}, - "formFields": { - "national_identification_number": { - "label": { - "en": "CPF", - "fr": "CPF" - }, - "type": "text", - "required": true, - "controlType": "cpf" - } - } - } + "logo": "satander.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/sdd.json b/src/hipay_enterprise/paymentConfigFiles/local/sdd.json index b35e3d35..f13a85dd 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/sdd.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/sdd.json @@ -8,17 +8,6 @@ }, "frontPosition": 26, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,76 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, - "electronicSignature": 1, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "sdd.png", - "additionalFields": { - "sdkClass": "HiPay\\Fullservice\\Gateway\\Request\\PaymentMethod\\SEPADirectDebitPaymentMethod", - "defaultFieldsValue": { - "recurring_payment": 0 - }, - "formFields": { - "gender": { - "label": { - "en": "Gender", - "fr": "Civilité" - }, - "type": "gender", - "required": true, - "controlType": false - }, - "firstname": { - "label": { - "en": "Firstname", - "fr": "Prénom" - }, - "type": "text", - "required": true, - "controlType": false - }, - "lastname": { - "label": { - "en": "Lastname", - "fr": "Nom" - }, - "type": "text", - "required": true, - "controlType": false - }, - "bank_name": { - "label": { - "en": "Bank name", - "fr": "Nom de la banque" - }, - "type": "text", - "required": true, - "controlType": false - }, - "iban": { - "label":{ - "en": "IBAN", - "fr": "IBAN" - }, - "type": "text", - "required": true, - "controlType": "iban" - }, - "issuer_bank_id": { - "label": { - "en": "BIC", - "fr": "BIC" - }, - "type": "text", - "required": true, - "controlType": "bic" - } - } - } + "logo": "sdd.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/sisal.json b/src/hipay_enterprise/paymentConfigFiles/local/sisal.json index e5a57434..f69521d4 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/sisal.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/sisal.json @@ -8,17 +8,6 @@ }, "frontPosition": 27, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "sisal.png", - "additionalFields": {} + "logo": "sisal.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/sofort.json b/src/hipay_enterprise/paymentConfigFiles/local/sofort.json index 6295d12b..6062da01 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/sofort.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/sofort.json @@ -8,17 +8,6 @@ }, "frontPosition": 28, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 1, - "canRefundPartially": 1, - "currencies": [ - "EUR" - ], - "countries": [ - "GB", - "FR" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -27,14 +16,12 @@ ], "countrySelectorReadOnly": 0, "currencySelectorReadOnly": 0, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "sofort.png", - "additionalFields": {} + "logo": "sofort.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/webmoney.json b/src/hipay_enterprise/paymentConfigFiles/local/webmoney.json index 91f3597a..7be68e02 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/webmoney.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/webmoney.json @@ -8,16 +8,6 @@ }, "frontPosition": 29, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "RUB" - ], - "countries": [ - "RU" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,14 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "webmoney.png", - "additionalFields": {} + "logo": "webmoney.png" } } diff --git a/src/hipay_enterprise/paymentConfigFiles/local/yandex.json b/src/hipay_enterprise/paymentConfigFiles/local/yandex.json index 2a1715cf..6c67ece2 100755 --- a/src/hipay_enterprise/paymentConfigFiles/local/yandex.json +++ b/src/hipay_enterprise/paymentConfigFiles/local/yandex.json @@ -8,16 +8,6 @@ }, "frontPosition": 30, "activated": 0, - "canManualCapture": 0, - "canManualCapturePartially": 0, - "canRefund": 0, - "canRefundPartially": 0, - "currencies": [ - "RUB" - ], - "countries": [ - "RU" - ], "displayConfigurationFields": [ "displayName", "minAmount", @@ -26,14 +16,12 @@ ], "countrySelectorReadOnly": 1, "currencySelectorReadOnly": 1, - "forceBasket": 0, "minAmount": { "EUR": 0 }, "maxAmount": { "EUR": false }, - "logo": "yandex.png", - "additionalFields": {} + "logo": "yandex.png" } } diff --git a/src/hipay_enterprise/translations/en.php b/src/hipay_enterprise/translations/en.php index f7e3aa7b..0dae732d 100755 --- a/src/hipay_enterprise/translations/en.php +++ b/src/hipay_enterprise/translations/en.php @@ -24,17 +24,37 @@ $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_27266fe4d37bf06589c7c6dbf2d5c067'] = 'Pay by'; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process '; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_2c84752887477f3a1d1ac7e0b6a39105'] = 'A SSL certificate is required to process credit card payments using HiPay. Please consult the FAQ. '; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Please enter your phone number to use this payment method. '; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Please check the phone number entered.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Please inform your civility to use this method of payment. '; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Please check the information entered.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Order created by HiPay after success payment.'; +$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'An error occurred during maintenance request.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domain.com'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Fraudulent payment email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'Copy to'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Enter a valid email, during a transaction challenged an email will be sent to this address '; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Copy method'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = 'The recipient will be in copy of the email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Separate email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = 'Two mails are sent'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'When a transaction is likely to be a fraud then an email is sent to the contact email from your shop as well as to an additional sender. Here you can configure the additional recipient email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'This field is mandatory'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'A payment transaction is awaiting validation for the order %s'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Refused payment for order %s'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_3e47effda726a2571c6f8ea7b3bf9f73'] = 'Registered notification from HiPay about captured amount of '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_dcff891b1393af8c2f13bcb13307d6dc'] = 'Registered notification from HiPay about refunded amount of '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_147b202e5d808b32bd8d1eaaa135a58e'] = 'Order total amount:'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_41683156a02a5458061f1ceff3a7b7e4'] = 'Transaction ID: '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_cab7966508bf13075ade294cdf147b53'] = 'HiPay status: '; -$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'Update failed, please try again.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Please enter your phone number to use this payment method. '; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Please check the phone number entered.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Please inform your civility to use this method of payment. '; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Please check the information entered.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Order created by HiPay after success payment.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_6d12f60dbfa06b3da45091a331957382'] = 'Module settings saved successfully.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_8458084c5456ab2d8eef1aa3a2adb68b'] = 'Global payment method settings saved successfully.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_edd17fcd44ef5daf55530049faf68592'] = 'Credit card settings saved successfully.'; @@ -43,27 +63,223 @@ $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_2619ca57838110e4a58d37cdaeab443e'] = 'Fraud settings saved successfully.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_999560dd2effd4a7ca12a7e2e1a93731'] = 'Fraud settings saved successfully.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_5dc62ffa17f4b575b79d53749d74ad39'] = 'Carrier mapping configuration saved successfully.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'This field is mandatory'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'A payment transaction is awaiting validation for the order %s'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Refused payment for order %s'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Fraudulent payment email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'Copy to'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Enter a valid email, during a transaction challenged an email will be sent to this address '; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Copy method'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = 'The recipient will be in copy of the email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Separate email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = 'Two mails are sent'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'When a transaction is likely to be a fraud then an email is sent to the contact email from your shop as well as to an additional sender. Here you can configure the additional recipient email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domain.com'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; -$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'An error occurred during maintenance request.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'Update failed, please try again.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'You have no saved credit/debit card.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'Credit card successfully deleted.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'This credit card doesn\'t exist.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'Hash Algorithm for %s was already set with %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'Hash Algorithm for %s has been syncrhonize with %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'An error occurred for %s : %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'Hash Algorithm for %s has not been updated : You must filled credentials.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Please enter an amount'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Please enter an amount greater than zero'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'Amount exceeding authorized amount'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'No transaction reference linked to this order'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Select at least one item to capture'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'Capture amount must be greater than zero.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Capture amount must be lower than the amount still to be captured. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'You must capture discount because next capture amount will be lower than total discount amount. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'Capture has been validated.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Please enter an amount'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Please enter an amount greater than zero'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'Amount exceeding authorized amount'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'No transaction reference linked to this order'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Select at least one item to refund'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'Refund amount must be greater than zero.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'Refund amount must be lower than the amount still to be refunded. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'You must refund discount because next refund amount will be lower than total discount amount. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Refund has been validated.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'The challenged transaction has been validated.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Payment has been processed.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Payment has been declined.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Payment is pending.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'An error occurred with your payment. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Order history'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Saved credit/debit card'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = ' Here are the saved credit cards from previous orders.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Card number'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Card owner'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'You have no saved credit/debit card.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Are you sure you want to delete this card?'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit card'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Saved credit/debit card'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Card number'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Card owner'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Are you sure you want to delete this card?'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'Mr'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Mrs'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'An error has occurred'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise is temporarily unable to process the request. Please try again later.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'A forbidden action has been identified, payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Please select one of the saved cards before continuing.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'This field is mandatory'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Credit card number incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'An error occurred with the request. '; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Card number'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Name on the card'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / YY'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'YY'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'The expiration date is incorrect. Please enter a date after the current date.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = '3-digit security code usually found on the back of your card. American Express cards have a 4-digit code located on the front.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'What is CVC ?'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pay by'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process.'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = '(test mode)'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pay by'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process.'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(Test mode)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; +$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Pay with a saved credit card'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Exp. date'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise is temporarily unable to process the request. Please try again later.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'A forbidden action has been identified, payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Please select one of the saved cards before continuing.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Error code '; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Pay with %s'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Your order is awaiting payment confirmation.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Once approved, it will be available in your'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'order history'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Back to home'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Your order has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'We noticed a problem with your order. Please contact our'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Customer support'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart '; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Your order has been declined.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Your order has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'We noticed a problem with your order. Please contact our'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Customer support'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Your order has been declined.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Your order is awaiting payment confirmation.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Once approved, it will be available in your'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'order history '; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Back to home'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Your order is complete.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Amount'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'An email has been sent with this information.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'If you have questions, comments or concerns, please contact our'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'expert customer support team.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Your order has not been accepted.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Please try to order again.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_577d857fab0c8efb7d74a088ca76686c'] = 'HiPay Information'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_08a426952cf23e67b1095e3865eaf5f9'] = 'There is a new version of HiPay Enterprise module available.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_8a4eaf9ad80f8f02146a37917742458d'] = 'View version %s details'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'or'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_c1cf9b68cf476dfd37470588f5988a2a'] = 'update now'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page '; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Fullname'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Card Number'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Expiry date'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'HiPay actions'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'No actions available'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'A refund has been requested, actions are disabled during validation process.'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'A refund or a capture has been validated from the HiPay back office: you must proceed with the refund or the capture from the HiPay back office.'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'One-click management'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit cards'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'One-click management'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit cards'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1a11db3d2781e8ee1401eab17b296b6a'] = 'Module settings'; $_MODULE['<{hipay_enterprise}prestashop>configuration_0da8d9a75492046bea7f314521e07cae'] = 'Payment methods'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b130f12d0f2e4cc10edbe80fe31738dc'] = 'Fraud'; @@ -71,6 +287,40 @@ $_MODULE['<{hipay_enterprise}prestashop>configuration_8c7f48c3c9b7a171a3cc84221ae3e900'] = 'Carrier mapping'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1fe917b01f9a3f87fa2d7d3b7643fac1'] = 'FAQ'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b2d37ae1cedf42ff874289b721860af2'] = 'Logs'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Module information'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'To help you configure your platform and module, please refer to the module documentation on our Developer portal at the following address:'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Our Support team is available for any questions at the following address: '; +$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'HiPay module'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'PrestaShop version'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'IP address'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'Callback URL'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Technical warning'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_08a426952cf23e67b1095e3865eaf5f9'] = 'There is a new version of HiPay Enterprise module available.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_8a4eaf9ad80f8f02146a37917742458d'] = 'View version %s details'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'or'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_c1cf9b68cf476dfd37470588f5988a2a'] = 'update now'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'The API gateway is configured in TEST mode but your test credentials are not specified.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'The API gateway is configured in PRODUCTION mode but your production credentials are not specified.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'You have to map your product categories and delivery methods to HiPay’s categories.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay is a global online payment platform designed to handle all your payment needs.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'It offers you end-to-end customizable fraud protection, industry-leading data and analytics, seamless omnichannel support and automated financial reconciliation.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visit our website to'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'find out more'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'More information'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Expand your business internationally.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'Optimize your conversion rates with one single integration to access a wide range of local and international payment methods so that your customers can make purchases using their preferred currency and payment methods.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Over 100 currencies and 220 payment methods are available.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Choose the best way to integrate your payment pages.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Hosted integration'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay hosts the payment page on its secure site. With this option, you benefit from a single point of contact and personalized payment pages that are PCI DSS compliant.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'A hybrid solution that enables the buyer to remain on the merchant’s site to make a payment while the information is entered on an iFrame hosted by HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'API integration'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'The payment page is hosted entirely on the merchant’s site. You will need a PCI DSS certification to allow credit card numbers to transit through your servers.'; +$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Error!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Warning!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Success!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\'Round on the total\' is activated in the PrestaShop configuration: the cart will not be sent and the payment methods forcing cart sending will be disabled.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_aa9043d7b0ff404fd7b913d284ea72c6'] = 'You must map your shop categories to HiPay’s categories.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_81db52287b034678b18598c8de281e85'] = 'Mapping categories is mandatory for Oney payment methods or if you enable the option Customer\'s cart sending.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_9455e5b0584f997580e48afa2e3ac696'] = 'Category mapping'; @@ -79,18 +329,6 @@ $_MODULE['<{hipay_enterprise}prestashop>category-mapping_5c3937340332b499f6e6f795009703b1'] = '- Select category -'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Discard changes'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'You have to map your delivery methods to HiPay\'s delivery methods.'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'Mapping delivery methods is mandatory for Oney payment methods or if you enable the option Customer\'s cart sending.'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Delivery method mapping'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'PrestaShop delivery method'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Order preparation estimated time'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Delivery estimated time'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'HiPay delivery mode'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'HiPay delivery method'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Select carrier mode -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Select carrier shipping -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Discard changes'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; $_MODULE['<{hipay_enterprise}prestashop>faq_b83348569801fff18e94c5bddf070572'] = 'How do I get my HiPay API credentials ?'; $_MODULE['<{hipay_enterprise}prestashop>faq_3f368b27bd96aacbe1cad104060b72ae'] = 'You need to generate'; $_MODULE['<{hipay_enterprise}prestashop>faq_1ba0799e1be99db5275b593b0184e5ce'] = 'API credentials'; @@ -150,6 +388,18 @@ $_MODULE['<{hipay_enterprise}prestashop>faq_9737653d570acb7e07b4e21b8a8d9576'] = 'If your module is configured as \"Capture: Manual\", you must make captures manually.'; $_MODULE['<{hipay_enterprise}prestashop>faq_d09339ca1530e34e0fc385623ea4ffc4'] = 'Two possibilities are offered to you: either from your HiPay Enterprise back office, or directly from the order form on your PrestaShop site.'; $_MODULE['<{hipay_enterprise}prestashop>faq_f9000c075d958a36cd48b435a2dade76'] = 'To get the detailed procedure, please refer to the module documentation on our Developer Portal: https://developer.hipay.com/doc/hipay-enterprise-sdk-prestashop_1-6-1-7/'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'You have to map your delivery methods to HiPay\'s delivery methods.'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'Mapping delivery methods is mandatory for Oney payment methods or if you enable the option Customer\'s cart sending.'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Delivery method mapping'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'PrestaShop delivery method'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Order preparation estimated time'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Delivery estimated time'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'HiPay delivery mode'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'HiPay delivery method'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Select carrier mode -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Select carrier shipping -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Discard changes'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; $_MODULE['<{hipay_enterprise}prestashop>account_bfa14b00b28d0ed83ee84a3180a909ac'] = 'Gateway configuration'; $_MODULE['<{hipay_enterprise}prestashop>account_650be61892bf690026089544abbd9d26'] = 'Mode'; $_MODULE['<{hipay_enterprise}prestashop>account_0cbc6611f5540bd0809a388dc95a615b'] = 'Test'; @@ -184,6 +434,37 @@ $_MODULE['<{hipay_enterprise}prestashop>account_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; $_MODULE['<{hipay_enterprise}prestashop>account_d8e89ebf3a6858465d367df3ca1ce25c'] = 'Are you sure you want to sync the hashing configuration for notifications ?'; $_MODULE['<{hipay_enterprise}prestashop>account_716fbf64d49a2faa10cf8da0e29d745d'] = 'An error has occured. Please try again'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Display Hosted Page'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirect'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Display card selector on iFrame or hosted page.'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Display card selector'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'CSS Url'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL to your CSS (style sheet) to customize your hosted page or iFrame (Important: the HTTPS protocol is required).'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Activate 3-D Secure'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Try to enable for all transactions'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Try to enable for configured 3ds rules'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Force for configured 3ds rules'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Force for all transactions'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = '3-D secure rules'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Greater than'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Greater than or equals to'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Lower than'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Lower than or equals to'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Equals to'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Not equals to'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Hosted Fields style'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Hosted Fields style settings'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Font family'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Font size'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Font weight'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Placeholder color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Caret color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Icon color'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e7f9e382dc50889098cbe56f2554c77b'] = 'Credit card'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Display name'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_8d536440734fa779815bee3efa7d4c76'] = 'Display name for payment by credit card on your checkout page.'; @@ -199,6 +480,19 @@ $_MODULE['<{hipay_enterprise}prestashop>creditcard_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_d5b635fe0be7b3b088f60a5544251b95'] = 'Available countries'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Authorized countries'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Activated'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Display name'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Payment page positioning'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Minimum order amount'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Maximum order amount'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Activated currencies'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'This currency is not activated in your PrestaShop shop.'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Activated countries'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'This country is not activated in your PrestaShop shop.'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Countries'; $_MODULE['<{hipay_enterprise}prestashop>global_108490afa8365531d5eade07c3cc38f4'] = 'Global settings'; $_MODULE['<{hipay_enterprise}prestashop>global_3aa43f82fc2f41e3036679584f63fe4f'] = 'Operating mode'; $_MODULE['<{hipay_enterprise}prestashop>global_3e8ba3c7ebacf9cef2d36d6585c8dc76'] = 'Direct Post'; @@ -226,95 +520,46 @@ $_MODULE['<{hipay_enterprise}prestashop>global_7befac932a45f12a0ed85683e0f4b68f'] = 'If so, then the URL of your site is sent during the payment and notifications will be sent to this URL. To use only for multi site.'; $_MODULE['<{hipay_enterprise}prestashop>global_98313f623bb6f464b9a154eca0b99bf3'] = 'Discard changes'; $_MODULE['<{hipay_enterprise}prestashop>global_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Activated'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Display name'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Payment page positioning'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Minimum order amount'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Maximum order amount'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Activated currencies'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'This currency is not activated in your PrestaShop shop.'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Activated countries'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'This country is not activated in your PrestaShop shop.'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Countries'; $_MODULE['<{hipay_enterprise}prestashop>local_63a9681ca50ce6ebf74c19defb9747af'] = 'Local payment'; $_MODULE['<{hipay_enterprise}prestashop>local_98313f623bb6f464b9a154eca0b99bf3'] = 'Discard changes'; $_MODULE['<{hipay_enterprise}prestashop>local_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Save configuration changes'; $_MODULE['<{hipay_enterprise}prestashop>local_d5b635fe0be7b3b088f60a5544251b95'] = 'Available countries'; $_MODULE['<{hipay_enterprise}prestashop>local_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Authorized countries'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Display Hosted Page'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirect'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Display card selector on iFrame or hosted page.'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Display card selector'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'CSS Url'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL to your CSS (style sheet) to customize your hosted page or iFrame (Important: the HTTPS protocol is required).'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Hosted Fields style'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Hosted Fields style settings'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Font family'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Font size'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Font weight'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Placeholder color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Caret color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Icon color'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Activate 3-D Secure'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Try to enable for all transactions'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Try to enable for configured 3ds rules'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Force for configured 3ds rules'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Force for all transactions'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = '3-D secure rules'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Greater than'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Greater than or equals to'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Lower than'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Lower than or equals to'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Equals to'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Not equals to'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Module information'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'To help you configure your platform and module, please refer to the module documentation on our Developer portal at the following address:'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Our Support team is available for any questions at the following address: '; -$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'HiPay module'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'PrestaShop version'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'IP address'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'Callback URL'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Technical warning'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'The API gateway is configured in TEST mode but your test credentials are not specified.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'The API gateway is configured in PRODUCTION mode but your production credentials are not specified.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'You have to map your product categories and delivery methods to HiPay’s categories.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay is a global online payment platform designed to handle all your payment needs.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'It offers you end-to-end customizable fraud protection, industry-leading data and analytics, seamless omnichannel support and automated financial reconciliation.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visit our website to'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'find out more'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'More information'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Expand your business internationally.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'Optimize your conversion rates with one single integration to access a wide range of local and international payment methods so that your customers can make purchases using their preferred currency and payment methods.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Over 100 currencies and 220 payment methods are available.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Choose the best way to integrate your payment pages.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Hosted integration'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay hosts the payment page on its secure site. With this option, you benefit from a single point of contact and personalized payment pages that are PCI DSS compliant.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'A hybrid solution that enables the buyer to remain on the merchant’s site to make a payment while the information is entered on an iFrame hosted by HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'API integration'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'The payment page is hosted entirely on the merchant’s site. You will need a PCI DSS certification to allow credit card numbers to transit through your servers.'; -$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Error!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Warning!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Success!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\'Round on the total\' is activated in the PrestaShop configuration: the cart will not be sent and the payment methods forcing cart sending will be disabled.'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Manage challenged transactions'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accept payment'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Deny payment'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Are you sure you want to $action this order?'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_8e553d25547a55b22266ee5c64fd84c4'] = 'Manual order payment (MO/TO)'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_ea7490116e7c2d2989fad25304b3784d'] = 'Your Test MO/TO credentials are empty.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2fddca48a3f918c79da821c7f79f31df'] = 'To generate the invoice, you must capture the amount still outstanding. The invoice will be issued once the order full amount has been captured.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2a05baf1522d53a52646c40199bf5512'] = 'Your Production MO/TO credentials are empty.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_e64a06133007e4786090eabbb268917c'] = 'You will be redirected to the HiPay payment page to complete the payment of this order.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_c41651a1244e41b44afed08c0740abea'] = 'Pay MO/TO order'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Manage challenged transactions'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accept payment'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Deny payment'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Are you sure you want to $action this order?'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'Refund this order'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Amount that can be refunded'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'The amount will be updated once the refund is confirmed by HiPay Enterprise.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Refund type'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Complete'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Partial'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Refunded amount'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Product name'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Unit price'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Refunded'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qty to be refunded'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Shipping'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_90a150a96b5eea70b5d9fbd092f9f9f2'] = 'Not captured'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Refund delivery fees'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Wrapping gift'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_b2e990dd78d9a8e30acbc9fe8f776cca'] = 'Refund Wrapping gift'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Discount'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Refund discount'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Total'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Refund'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Are you sure you want to refund this order?'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'Refund amount must be greater than zero.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'Refund amount must be lower than the amount still to be refunded.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'You must refund the discount because the next refund amount will be lower than the total discount amount.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_0f0715f4a58292667ce012e7fe013a08'] = 'Manage Capture'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_8f3f1c6951cfc849547412369b0776ce'] = 'The order has not been fully captured.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_2fddca48a3f918c79da821c7f79f31df'] = 'To generate the invoice, you must capture the amount still outstanding. The invoice will be issued once the order full amount has been captured.'; @@ -342,239 +587,3 @@ $_MODULE['<{hipay_enterprise}prestashop>capture.partial_1216ce40106a95ed7b36d1e97b31599d'] = 'Capture amount must be greater than zero.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Capture amount must be lower than the amount still to be captured.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_7c1231480954da0e29816ecc4bb5f90e'] = 'You must capture the discount because the next capture amount will be lower than the total discount amount.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'Refund this order'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Amount that can be refunded'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'The amount will be updated once the refund is confirmed by HiPay Enterprise.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Refund type'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Complete'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Partial'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Refunded amount'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Product name'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Unit price'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Refunded'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qty to be refunded'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Shipping'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Refund delivery fees'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Wrapping gift'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_90a150a96b5eea70b5d9fbd092f9f9f2'] = 'Not captured'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_b2e990dd78d9a8e30acbc9fe8f776cca'] = 'Refund Wrapping gift'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Discount'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Refund discount'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Total'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Refund'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Are you sure you want to refund this order?'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'Refund amount must be greater than zero.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'Refund amount must be lower than the amount still to be refunded.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'You must refund the discount because the next refund amount will be lower than the total discount amount.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Your order is awaiting payment confirmation.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Once approved, it will be available in your'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'order history'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Back to home'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Your order has been declined.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Your order has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'We noticed a problem with your order. Please contact our'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Customer support'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart '; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Your order is awaiting payment confirmation.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Once approved, it will be available in your'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'order history '; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Back to home'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Your order has been declined.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'We noticed a problem with your order. Please contact our'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Customer support'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Your order has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Back to cart'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Order history'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Saved credit/debit card'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = ' Here are the saved credit cards from previous orders.'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Card number'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Card owner'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'You have no saved credit/debit card.'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Are you sure you want to delete this card?'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit card'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Saved credit/debit card'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Card number'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Card owner'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Are you sure you want to delete this card?'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Payment summary'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise is temporarily unable to process the request. Please try again later.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'A forbidden action has been identified, payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Please select one of the saved cards before continuing.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Error code '; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Pay with %s'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Payment'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Order summary'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'HiPay payment.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Amount to pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Pay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Pay with a new credit card'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Your payment is being processed. Please wait.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'This credit card type or the order currency is not supported. Please choose an other payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'Mr'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Mrs'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pay by credit card'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pay by'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process.'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(Test mode)'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pay by'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process.'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = '(test mode)'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'This field is mandatory'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Credit card number incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'An error occurred with the request. '; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Card number'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Name on the card'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / YY'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'YY'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'The expiration date is incorrect. Please enter a date after the current date.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = '3-digit security code usually found on the back of your card. American Express cards have a 4-digit code located on the front.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'What is CVC ?'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'An error has occurred'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise is temporarily unable to process the request. Please try again later.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'A forbidden action has been identified, payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Please select one of the saved cards before continuing.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'This credit card type or the order currency is not supported. Please choose another payment method.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'An error occurred, payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'The request was rejected due to a validation error. Please verify the card details you entered.'; -$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Save credit card (One click payment)'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Pay with a saved credit card'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Exp. date'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Fullname'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Card Number'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Expiry date'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Your order is complete.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Amount'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'An email has been sent with this information.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'If you have questions, comments or concerns, please contact our'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'expert customer support team.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Your order has not been accepted.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Please try to order again.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'HiPay actions'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'No actions available'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'A refund has been requested, actions are disabled during validation process.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'A refund or a capture has been validated from the HiPay back office: you must proceed with the refund or the capture from the HiPay back office.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirm your order to go to the payment page '; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'You will be redirected to an external payment page. Please do not refresh the page during the process'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'One-click management'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit cards'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'One-click management'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Manage saved credit/debit cards'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Please enter an amount'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Please enter an amount greater than zero'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'Amount exceeding authorized amount'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'No transaction reference linked to this order'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Select at least one item to capture'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'Capture amount must be greater than zero.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Capture amount must be lower than the amount still to be captured. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'You must capture discount because next capture amount will be lower than total discount amount. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'Capture has been validated.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'Hash Algorithm for %s was already set with %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'Hash Algorithm for %s has been syncrhonize with %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'An error occurred for %s : %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'Hash Algorithm for %s has not been updated : You must filled credentials.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Please enter an amount'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Please enter an amount greater than zero'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'Amount exceeding authorized amount'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'No transaction reference linked to this order'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Select at least one item to refund'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'Refund amount must be greater than zero.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'Refund amount must be lower than the amount still to be refunded. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'You must refund discount because next refund amount will be lower than total discount amount. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Refund has been validated.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Payment has been processed.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Payment has been declined.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Payment is pending.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'An error occurred with your payment. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Payment has been canceled.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'The challenged transaction has been validated.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'You have no saved credit/debit card.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'Credit card successfully deleted.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'This credit card doesn\'t exist.'; diff --git a/src/hipay_enterprise/translations/fr.php b/src/hipay_enterprise/translations/fr.php index c0a3ba18..c9a54fc1 100755 --- a/src/hipay_enterprise/translations/fr.php +++ b/src/hipay_enterprise/translations/fr.php @@ -24,17 +24,37 @@ $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_27266fe4d37bf06589c7c6dbf2d5c067'] = 'Payer par'; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_2c84752887477f3a1d1ac7e0b6a39105'] = 'Un certificat SSL est nécessaire pour procéder aux paiements par carte crédit en utilisant le module HiPay. Veuillez consulter la FAQ.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Veuillez renseigner votre numéro de téléphone pour utiliser cette méthode de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Veuillez vérifier le numéro de téléphone saisi.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Veuillez renseigner votre civilité pour utiliser cette méthode de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Veuillez vérifier les informations saisies.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Commande créée par HiPay après un paiement effectué avec succès '; +$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'Une erreur est survenue pendant la requête de maintenance.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domaine.com'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Email pour paiement frauduleux'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'En copie'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Renseignez un e-mail valide, si une transaction est au statut \"challenged\" un e-mail sera envoyé à cette adresse'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Méthode d\'envoi'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = 'Le destinataire sera en copie de l\'email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Email séparé'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = 'Deux mails sont envoyés'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements de configuration'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'Quand une transaction est potentiellement frauduleuse, un e-mail est envoyé à l\'e-mail de contact de votre boutique ainsi qu\'à un contact additionnel. Ici vous pouvez configurer ce contact additionnel.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'Champ obligatoire'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'Un paiement est en attente de validation pour la commande %s.'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Le paiement pour la commande %s a été refusé.'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_3e47effda726a2571c6f8ea7b3bf9f73'] = 'Notification enregistrée envoyée par HiPay concernant un montant capturé de'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_dcff891b1393af8c2f13bcb13307d6dc'] = 'Notification enregistrée envoyée par HiPay concernant un montant remboursé de '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_147b202e5d808b32bd8d1eaaa135a58e'] = 'Montant total de la commande :'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_41683156a02a5458061f1ceff3a7b7e4'] = 'ID de la transaction :'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_cab7966508bf13075ade294cdf147b53'] = 'Statut HiPay :'; -$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'La mise à jour a échoué, veuillez réessayer.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Veuillez renseigner votre numéro de téléphone pour utiliser cette méthode de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Veuillez vérifier le numéro de téléphone saisi.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Veuillez renseigner votre civilité pour utiliser cette méthode de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Veuillez vérifier les informations saisies.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Commande créée par HiPay après un paiement effectué avec succès '; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_6d12f60dbfa06b3da45091a331957382'] = 'Configuration du module sauvegardée avec succès'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_8458084c5456ab2d8eef1aa3a2adb68b'] = 'Configuration globale des méthodes de paiement sauvegardée avec succès'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_edd17fcd44ef5daf55530049faf68592'] = 'Configuration des cartes de crédit sauvegardée avec succès'; @@ -43,27 +63,223 @@ $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_2619ca57838110e4a58d37cdaeab443e'] = 'Configuration des règles anti-fraude sauvegardée avec succès'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_999560dd2effd4a7ca12a7e2e1a93731'] = 'Mapping des catégories sauvegardé avec succès'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_5dc62ffa17f4b575b79d53749d74ad39'] = 'Mapping des transporteurs sauvegardé avec succès'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'Champ obligatoire'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'Un paiement est en attente de validation pour la commande %s.'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Le paiement pour la commande %s a été refusé.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Email pour paiement frauduleux'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'En copie'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Renseignez un e-mail valide, si une transaction est au statut \"challenged\" un e-mail sera envoyé à cette adresse'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Méthode d\'envoi'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = 'Le destinataire sera en copie de l\'email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Email séparé'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = 'Deux mails sont envoyés'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements de configuration'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'Quand une transaction est potentiellement frauduleuse, un e-mail est envoyé à l\'e-mail de contact de votre boutique ainsi qu\'à un contact additionnel. Ici vous pouvez configurer ce contact additionnel.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domaine.com'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'Une erreur est survenue pendant la requête de maintenance.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'La mise à jour a échoué, veuillez réessayer.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Vous n\'avez aucune carte de crédit/débit sauvegardée.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'Carte de crédit supprimée avec succès.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'Cette carte de crédit n\'existe pas.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'L\'algorithme de hachage pour %s était déjà défini avec %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'Algorithme de hachage pour %s a été synchronisé avec %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'Une erreur est survenue pour %s : %'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'L\'algorithme de hachage pour %s n\'a pas été mis à jour: Vous devez renseigner les informations d\'identification.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Veuillez saisir un montant.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Veuillez saisir un montant supérieur à zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'Le montant saisi dépasse le montant autorisé.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'Aucune référence de transaction n\'est liée à cette commande.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Sélectionnez au moins un article à capturer.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'Le montant capturé doit être supérieur à zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Le montant de la capture doit être plus grande que zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'Vous devez capturer un bon de réduction car le prochain montant de capture sera inférieur au montant total d\'escompte.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'La capture a été validée.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Veuillez saisir un montant.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Veuillez saisir un montant supérieur à zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'Le montant saisi dépasse le montant autorisé.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'Aucune référence de transaction n\'est liée à cette commande.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Sélectionnez au moins un article à rembourser.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'Le montant remboursé doit être supérieur à zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'Le montant du remboursement doit être plus grand que zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Vous devez remboursé la réduction car le montant du prochain remboursement sera inférieur à celui du montant total de la réduction.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Le remboursement a été validé.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'La transaction en statut \"challenged\" a été validée.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Le paiement a été traité.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Le paiement a été refusé.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Le paiement est en attente.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'Une erreur s\'est produite lors de votre paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historique des commandes'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Cartes de crédit/débit sauvegardées'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = 'Liste des cartes de crédit sauvegardées lors de commandes précédentes'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Numéro de carte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Titulaire de la carte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Date d\'expiration'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Vous n\'avez pas de carte de crédit/débit sauvegardée.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retourner à votre compte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Page d\'accueil'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Êtes-vous sûr de vouloir supprimer cette carte ?'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Cartes de crédit/débit sauvegardées'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Numéro de carte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Titulaire de la carte'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Date d\'expiration'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Êtes-vous sûr de vouloir supprimer cette carte ?'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'M.'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Mme'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Une erreur est survenue.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'La demande a été rejetée à cause d\'une erreur de validation. Veuillez vérifier les informations de la carte saisies.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise est temporairement dans l\'incapacité de traiter la demande. Veuillez réessayer plus tard.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'Une action interdite a été identifiée, le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Veuillez sélectionner une des cartes sauvegardées avant de poursuivre.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'Champ obligatoire'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Numéro de carte de crédit incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP incorrect'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'Une erreur est survenue pendant la requête.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Numéro de carte'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Nom sur la carte'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / AA'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'AA'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'La date d\'expiration est incorrecte. Veuillez entrer une date ultérieure à la date actuelle.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = 'Le code de vérification de la carte (CVC) est un code de sécurité à 3 chiffres qui se trouve généralement au dos de votre carte. Les cartes American Express disposent d\'un code à 4 chiffres situé sur le devant.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'Qu\'est-ce que le CVC ?'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Payer par'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = ' (mode test) '; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Payer par'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(mode test)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'Votre requête a été rejetée suite à une erreur de validation. Veuillez vérifier les informations renseignées'; +$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Payer avec une carte de crédit sauvegardée'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Date d\'exp.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'La demande a été rejetée à cause d\'une erreur de validation. Veuillez vérifier les informations de carte saisies.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise est temporairement dans l\'incapacité de traiter la demande. Veuillez réessayer plus tard.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'Une action interdite a été identifiée, le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Veuillez sélectionner une des cartes sauvegardées avant de continuer.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Code d\'erreur'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Payer avec %s'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif de la commande'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers la page de paiement HiPay pour effectuer le paiement de la commande.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers la page de paiement HiPay pour effectuer le paiement de la commande.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Votre commande est en attente de la confirmation de votre paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Une fois approuvée, elle sera disponible dans votre'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'historique de commandes'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Retourner à la page d’accueil'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Votre commande a été annulée.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'Une erreur est survenue pendant votre commande. Veuillez contacter notre'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Support client'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Votre commande a été refusée.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Votre commande a été annulée.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'Une erreur est survenue pendant votre commande. Veuillez contacter notre'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Support client'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Votre commande a été refusée.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Votre commande est en attente de la confirmation de votre paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Une fois validée, elle sera disponible dans votre'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'historique de commandes'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Retourner à la page d’accueil'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Votre commande a été effectuée.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Montant'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'Un email a été envoyé avec ces informations.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'Pour toute question ou commentaire, veuillez contacter'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'notre équipe d\'experts au Support client.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Votre commande a été refusée.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Veuillez réessayer.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_577d857fab0c8efb7d74a088ca76686c'] = 'HiPay Information'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_08a426952cf23e67b1095e3865eaf5f9'] = 'Une nouvelle version du module HiPay Enterprise est disponible.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_8a4eaf9ad80f8f02146a37917742458d'] = 'Voir les détails de la version %s'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_c1cf9b68cf476dfd37470588f5988a2a'] = 'mettre à jour'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Nom du porteur'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Numéro de carte'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Date d\'exp.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'Actions HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'Aucune action disponible'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'Un remboursement a été demandé, les actions sont désactivées durant la validation du processus.'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'Une capture ou un remboursement a été validé depuis le back office HiPay : vous devez procéder à la capture ou au remboursement depuis le back office HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestion du One-click'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestion du One-click'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1a11db3d2781e8ee1401eab17b296b6a'] = 'Paramètres du module'; $_MODULE['<{hipay_enterprise}prestashop>configuration_0da8d9a75492046bea7f314521e07cae'] = 'Méthodes de paiement'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b130f12d0f2e4cc10edbe80fe31738dc'] = 'Fraude'; @@ -71,6 +287,40 @@ $_MODULE['<{hipay_enterprise}prestashop>configuration_8c7f48c3c9b7a171a3cc84221ae3e900'] = 'Mapping des transporteurs'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1fe917b01f9a3f87fa2d7d3b7643fac1'] = 'FAQ'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b2d37ae1cedf42ff874289b721860af2'] = 'Logs'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Informations du module'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'Pour vous aider dans la configuration de votre plateforme et de votre module, vous trouverez la documentation du module sur notre Portail développeurs à l\'adresse suivante :'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Notre équipe Support est disponible pour toute question à l\'adresse suivante :'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'Module HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'Version de PrestaShop'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'Adresse IP'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'URL de rappel'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Alertes techniques'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_08a426952cf23e67b1095e3865eaf5f9'] = 'Une nouvelle version du module HiPay Enterprise est disponible.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_8a4eaf9ad80f8f02146a37917742458d'] = 'Voir les détails de la version %s'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_c1cf9b68cf476dfd37470588f5988a2a'] = 'mettre à jour'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'Votre module est configuré pour utiliser l\'API de HiPay en mode TEST, mais vos identifiants de compte test ne sont pas renseignés.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'Votre module est configuré pour utiliser l\'API de HiPay en mode PRODUCTION, mais vos identifiants de compte production ne sont pas renseignés.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'Vous devez mapper vos catégories de produits et vos méthodes de livraison avec les catégories de HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay est une plateforme de paiement en ligne internationale conçue pour répondre à tous vos besoins.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'Outil complet et personnalisable de lutte contre la fraude, solution unique d’analyse des données, expérience omnicanale et processus de réconciliation financière automatisé.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visitez notre site pour'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'en savoir plus'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'Plus d\'informations'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Développez votre activité à l’étranger'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'En une intégration, accédez à une large gamme de méthodes de paiement locales et internationales. Vos clients peuvent ainsi acheter dans leurs devises et avec leurs méthodes de paiement préférées.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Plus de 100 devises et 220 méthodes de paiement disponibles.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Choisissez le meilleur moyen d\'intégrer vos pages de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Intégration hébergée'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay héberge la page de paiement sur son site sécurisé. Avec cette option, vous bénéficiez d\'un seul point de contact et de pages de paiement personnalisées en conformité avec les normes PCI DSS.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'Une solution hybride qui permet aux clients de rester sur le site du marchand pour effectuer un paiement tandis que les informations sont saisies dans une iFrame hébergée par HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'Intégration par API'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'La page de paiement est hébergée entièrement sur le site du marchand. Vous devez être conforme à la certification PCI DSS pour permettre à des numéros de carte de crédit de transiter par vos serveurs.'; +$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Erreur !'; +$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Alerte !'; +$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Succès !'; +$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\"Arrondi sur le total\" est activé dans la configuration de PrestaShop. Le panier ne sera pas envoyé et les méthodes de paiement forçant son envoi seront désactivées.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_aa9043d7b0ff404fd7b913d284ea72c6'] = 'Vous devez mapper les catégories de produits de votre boutique avec celles de HiPay.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_81db52287b034678b18598c8de281e85'] = 'Le mapping des catégories est obligatoire pour les méthodes de paiement Oney ou si vous activez l\'option \"Envoyer le panier du client\".'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_9455e5b0584f997580e48afa2e3ac696'] = 'Mapping des catégories'; @@ -79,18 +329,6 @@ $_MODULE['<{hipay_enterprise}prestashop>category-mapping_5c3937340332b499f6e6f795009703b1'] = '- Sélectionner une catégorie -'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Annuler les changements'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'Vous devez mapper vos méthodes de livraison avec celles de HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'Le mapping des méthodes de livraison est obligatoire pour les méthodes de paiement Oney ou si vous activez l\'option \"Envoyer le panier du client\".'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Mapping des méthodes de livraison'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'Méthode de livraison PrestaShop'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Temps estimé pour la préparation de la commande'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Temps estimé pour la livraison'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'Mode de livraison HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'Méthode de livraison HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Sélectionner un mode de transport -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Sélectionner un mode d\'expédition -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Annuler les changements'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; $_MODULE['<{hipay_enterprise}prestashop>faq_b83348569801fff18e94c5bddf070572'] = 'Comment puis-je récupérer mes identifiants API HiPay ?'; $_MODULE['<{hipay_enterprise}prestashop>faq_3f368b27bd96aacbe1cad104060b72ae'] = 'Vous devez générer des'; $_MODULE['<{hipay_enterprise}prestashop>faq_1ba0799e1be99db5275b593b0184e5ce'] = 'identifiants API'; @@ -150,6 +388,18 @@ $_MODULE['<{hipay_enterprise}prestashop>faq_9737653d570acb7e07b4e21b8a8d9576'] = 'Si votre module est configuré avec \"Capture: Manuel, vous devez faire vos captures manuellement.'; $_MODULE['<{hipay_enterprise}prestashop>faq_d09339ca1530e34e0fc385623ea4ffc4'] = 'Deux possibilités s\'offrent à vous: soit depuis le back-office HiPay Enterprise, soit directement depuis la commande dans votre back-office PrestaShop.'; $_MODULE['<{hipay_enterprise}prestashop>faq_f9000c075d958a36cd48b435a2dade76'] = 'Pour avoir la procédure détaillée, référez vous à la documentation du module sur notre portail développeur : https://developer.hipay.com/doc/hipay-enterprise-sdk-prestashop_1-6-1-7/'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'Vous devez mapper vos méthodes de livraison avec celles de HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'Le mapping des méthodes de livraison est obligatoire pour les méthodes de paiement Oney ou si vous activez l\'option \"Envoyer le panier du client\".'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Mapping des méthodes de livraison'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'Méthode de livraison PrestaShop'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Temps estimé pour la préparation de la commande'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Temps estimé pour la livraison'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'Mode de livraison HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'Méthode de livraison HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Sélectionner un mode de transport -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Sélectionner un mode d\'expédition -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Annuler les changements'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; $_MODULE['<{hipay_enterprise}prestashop>account_bfa14b00b28d0ed83ee84a3180a909ac'] = 'Configuration de la passerelle'; $_MODULE['<{hipay_enterprise}prestashop>account_650be61892bf690026089544abbd9d26'] = 'Mode'; $_MODULE['<{hipay_enterprise}prestashop>account_0cbc6611f5540bd0809a388dc95a615b'] = 'Test'; @@ -184,6 +434,37 @@ $_MODULE['<{hipay_enterprise}prestashop>account_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; $_MODULE['<{hipay_enterprise}prestashop>account_d8e89ebf3a6858465d367df3ca1ce25c'] = 'Êtes-vous sûr de vouloir synchroniser la configuration de hachage pour les notifications?'; $_MODULE['<{hipay_enterprise}prestashop>account_716fbf64d49a2faa10cf8da0e29d745d'] = 'Une erreur est survenue. Veuillez réessayer'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Afficher la page hébergée'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirection'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Afficher le sélecteur de cartes sur l\'iFrame ou la page hébergée.'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Afficher le sélecteur de cartes'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'URL de la CSS'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL de votre CSS (feuille de style) pour personnaliser votre page hébergée ou votre iFrame (Important : le protocole HTTPS est requis).'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Activer le 3-D Secure'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Pour toutes les transactions, si disponible'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Selon les règles 3DS configurées, si disponible'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Obligatoire selon les règles 3DS configurées'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Obligatoire pour toutes les transactions'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = 'Règles 3-D Secure'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Supérieur à'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Supérieur ou égal à'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Inférieur à'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Inférieur ou égal à'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Égal à'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Différent de '; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Style des champs hebergés'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Configuration du style des champs hebergés'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Font family '; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Font size'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Font weight'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Placeholder color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Caret color'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Icon color'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e7f9e382dc50889098cbe56f2554c77b'] = 'Carte de crédit'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nom affiché'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_8d536440734fa779815bee3efa7d4c76'] = 'Nom affiché pour le paiement par carte de crédit sur la page de paiement'; @@ -199,6 +480,19 @@ $_MODULE['<{hipay_enterprise}prestashop>creditcard_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_d5b635fe0be7b3b088f60a5544251b95'] = 'Pays disponibles'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Pays autorisés'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Activé'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Oui '; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non '; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nom affiché'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Positionnement dans la page de paiement'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Montant de commande minimum'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Montant de commande maximum'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Devises activées'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'Cette devise n\'est pas activée dans votre boutique PrestaShop .'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Pays activés'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'Ce pays n\'est pas activé dans votre boutique PrestaShop.'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Pays'; $_MODULE['<{hipay_enterprise}prestashop>global_108490afa8365531d5eade07c3cc38f4'] = 'Paramètres globaux'; $_MODULE['<{hipay_enterprise}prestashop>global_3aa43f82fc2f41e3036679584f63fe4f'] = 'Mode de fonctionnement'; $_MODULE['<{hipay_enterprise}prestashop>global_3e8ba3c7ebacf9cef2d36d6585c8dc76'] = 'Direct Post'; @@ -226,95 +520,46 @@ $_MODULE['<{hipay_enterprise}prestashop>global_7befac932a45f12a0ed85683e0f4b68f'] = 'Si oui, l\'URL de votre site est envoyée lors du paiement et les notifications seront envoyées à cette URL. À utiliser uniquement pour les multis sites.'; $_MODULE['<{hipay_enterprise}prestashop>global_98313f623bb6f464b9a154eca0b99bf3'] = 'Annuler les changements'; $_MODULE['<{hipay_enterprise}prestashop>global_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Activé'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Oui '; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non '; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nom affiché'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Positionnement dans la page de paiement'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Montant de commande minimum'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Montant de commande maximum'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Devises activées'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'Cette devise n\'est pas activée dans votre boutique PrestaShop .'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Pays activés'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'Ce pays n\'est pas activé dans votre boutique PrestaShop.'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Pays'; $_MODULE['<{hipay_enterprise}prestashop>local_63a9681ca50ce6ebf74c19defb9747af'] = 'Méthodes de paiement locales'; $_MODULE['<{hipay_enterprise}prestashop>local_98313f623bb6f464b9a154eca0b99bf3'] = 'Annuler les changements'; $_MODULE['<{hipay_enterprise}prestashop>local_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Sauvegarder les changements'; $_MODULE['<{hipay_enterprise}prestashop>local_d5b635fe0be7b3b088f60a5544251b95'] = 'Pays disponibles'; $_MODULE['<{hipay_enterprise}prestashop>local_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Pays autorisés'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Afficher la page hébergée'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirection'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Afficher le sélecteur de cartes sur l\'iFrame ou la page hébergée.'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Afficher le sélecteur de cartes'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'URL de la CSS'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL de votre CSS (feuille de style) pour personnaliser votre page hébergée ou votre iFrame (Important : le protocole HTTPS est requis).'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Style des champs hebergés'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Configuration du style des champs hebergés'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Font family '; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Font size'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Font weight'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Placeholder color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Caret color'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Icon color'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Activer le 3-D Secure'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Pour toutes les transactions, si disponible'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Selon les règles 3DS configurées, si disponible'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Obligatoire selon les règles 3DS configurées'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Obligatoire pour toutes les transactions'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = 'Règles 3-D Secure'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Supérieur à'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Supérieur ou égal à'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Inférieur à'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Inférieur ou égal à'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Égal à'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Différent de '; -$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Informations du module'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'Pour vous aider dans la configuration de votre plateforme et de votre module, vous trouverez la documentation du module sur notre Portail développeurs à l\'adresse suivante :'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Notre équipe Support est disponible pour toute question à l\'adresse suivante :'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'Module HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'Version de PrestaShop'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'Adresse IP'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'URL de rappel'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Alertes techniques'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'Votre module est configuré pour utiliser l\'API de HiPay en mode TEST, mais vos identifiants de compte test ne sont pas renseignés.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'Votre module est configuré pour utiliser l\'API de HiPay en mode PRODUCTION, mais vos identifiants de compte production ne sont pas renseignés.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'Vous devez mapper vos catégories de produits et vos méthodes de livraison avec les catégories de HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay est une plateforme de paiement en ligne internationale conçue pour répondre à tous vos besoins.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'Outil complet et personnalisable de lutte contre la fraude, solution unique d’analyse des données, expérience omnicanale et processus de réconciliation financière automatisé.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visitez notre site pour'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'en savoir plus'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'Plus d\'informations'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Développez votre activité à l’étranger'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'En une intégration, accédez à une large gamme de méthodes de paiement locales et internationales. Vos clients peuvent ainsi acheter dans leurs devises et avec leurs méthodes de paiement préférées.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Plus de 100 devises et 220 méthodes de paiement disponibles.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Choisissez le meilleur moyen d\'intégrer vos pages de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Intégration hébergée'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay héberge la page de paiement sur son site sécurisé. Avec cette option, vous bénéficiez d\'un seul point de contact et de pages de paiement personnalisées en conformité avec les normes PCI DSS.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'Une solution hybride qui permet aux clients de rester sur le site du marchand pour effectuer un paiement tandis que les informations sont saisies dans une iFrame hébergée par HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'Intégration par API'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'La page de paiement est hébergée entièrement sur le site du marchand. Vous devez être conforme à la certification PCI DSS pour permettre à des numéros de carte de crédit de transiter par vos serveurs.'; -$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Erreur !'; -$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Alerte !'; -$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Succès !'; -$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\"Arrondi sur le total\" est activé dans la configuration de PrestaShop. Le panier ne sera pas envoyé et les méthodes de paiement forçant son envoi seront désactivées.'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Gérer les transactions en statut \"challenged\"'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accepter le paiement'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Refuser le paiement'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Êtes-vous sûr de vouloir $action cette commande ?'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_8e553d25547a55b22266ee5c64fd84c4'] = 'Paiement manuel de la commande (MO/TO)'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_ea7490116e7c2d2989fad25304b3784d'] = 'Vos identifiants MO/TO de test ne sont pas renseignés.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2fddca48a3f918c79da821c7f79f31df'] = 'Pour générer une facture, vous devez capturer le montant restant dû. La facture sera émise lorsque le montant total de la commande sera capturé.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2a05baf1522d53a52646c40199bf5512'] = 'Vos identifiants MO/TO de production ne sont pas renseignés.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_e64a06133007e4786090eabbb268917c'] = 'Vous allez être redirigé vers la page de paiement HiPay pour effectuer le paiement de la commande.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_c41651a1244e41b44afed08c0740abea'] = 'Payer la commande MO/TO'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Gérer les transactions en statut \"challenged\"'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accepter le paiement'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Refuser le paiement'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Êtes-vous sûr de vouloir $action cette commande ?'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'Rembourser cette commande'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Montant remboursable'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'Le montant sera mis à jour lorsque le remboursement sera confirmé par HiPay Enterprise.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Type de remboursement'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Complet'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Partiel'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Montant du remboursement'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Nom du produit'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unitaire'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Rembourser'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qté à rembourser'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Livraison'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_90a150a96b5eea70b5d9fbd092f9f9f2'] = 'Non capturé'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Rembourser les frais de livraison'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Emballage cadeau'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_b2e990dd78d9a8e30acbc9fe8f776cca'] = 'Rembourser l\'emballage cadeau'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Bon de réduction'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Rembourser le bon de réduction'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Total'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Rembourser'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Êtes-vous sûr de vouloir rembourser cette commande ? '; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'Le montant du remboursement doit être supérieur à zéro.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'Le montant du remboursement doit être inférieur au montant restant à rembourser.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Vous devez rembourser le bon de réduction, car le prochain remboursement sera inférieur au montant total de la réduction.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_0f0715f4a58292667ce012e7fe013a08'] = 'Gestion de la capture'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_8f3f1c6951cfc849547412369b0776ce'] = 'La commande n’a pas été capturée entièrement.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_2fddca48a3f918c79da821c7f79f31df'] = 'Pour générer une facture, vous devez capturer le montant restant dû. La facture sera émise lorsque le montant total de la commande sera capturé.'; @@ -342,239 +587,3 @@ $_MODULE['<{hipay_enterprise}prestashop>capture.partial_1216ce40106a95ed7b36d1e97b31599d'] = 'Le montant de la capture doit être supérieur à zéro.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Le montant de la capture doit être inférieur au montant restant à capturer.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_7c1231480954da0e29816ecc4bb5f90e'] = 'Vous devez capturer un bon de réduction, car le prochain montant de capture sera inférieur au montant total d\'escompte.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'Rembourser cette commande'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Montant remboursable'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'Le montant sera mis à jour lorsque le remboursement sera confirmé par HiPay Enterprise.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Type de remboursement'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Complet'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Partiel'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Montant du remboursement'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Nom du produit'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unitaire'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Rembourser'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qté à rembourser'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Livraison'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Rembourser les frais de livraison'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Emballage cadeau'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_90a150a96b5eea70b5d9fbd092f9f9f2'] = 'Non capturé'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_b2e990dd78d9a8e30acbc9fe8f776cca'] = 'Rembourser l\'emballage cadeau'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Bon de réduction'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Rembourser le bon de réduction'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Total'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Rembourser'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Êtes-vous sûr de vouloir rembourser cette commande ? '; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'Le montant du remboursement doit être supérieur à zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'Le montant du remboursement doit être inférieur au montant restant à rembourser.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Vous devez rembourser le bon de réduction, car le prochain remboursement sera inférieur au montant total de la réduction.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Votre commande est en attente de la confirmation de votre paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Une fois approuvée, elle sera disponible dans votre'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'historique de commandes'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Retourner à la page d’accueil'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Votre commande a été refusée.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Votre commande a été annulée.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'Une erreur est survenue pendant votre commande. Veuillez contacter notre'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Support client'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Votre commande est en attente de la confirmation de votre paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Une fois validée, elle sera disponible dans votre'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'historique de commandes'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Retourner à la page d’accueil'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Votre commande a été refusée.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'Une erreur est survenue pendant votre commande. Veuillez contacter notre'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Support client'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Votre commande a été annulée.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Retourner au panier'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historique des commandes'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Cartes de crédit/débit sauvegardées'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = 'Liste des cartes de crédit sauvegardées lors de commandes précédentes'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Numéro de carte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Titulaire de la carte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Date d\'expiration'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Vous n\'avez pas de carte de crédit/débit sauvegardée.'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retourner à votre compte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Page d\'accueil'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Êtes-vous sûr de vouloir supprimer cette carte ?'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Cartes de crédit/débit sauvegardées'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Numéro de carte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Titulaire de la carte'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Date d\'expiration'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Êtes-vous sûr de vouloir supprimer cette carte ?'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif de la commande'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers la page de paiement HiPay pour effectuer le paiement de la commande.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'La demande a été rejetée à cause d\'une erreur de validation. Veuillez vérifier les informations de carte saisies.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise est temporairement dans l\'incapacité de traiter la demande. Veuillez réessayer plus tard.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'Une action interdite a été identifiée, le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Veuillez sélectionner une des cartes sauvegardées avant de continuer.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Code d\'erreur'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Payer avec %s'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif du paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Paiement HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Montant à payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Payer'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers la page de paiement HiPay pour effectuer le paiement de la commande.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Payer avec une nouvelle carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Votre paiement est en cours de traitement. Merci de patienter.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'M.'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Mme'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Payer par carte de crédit'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Payer par'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(mode test)'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Payer par'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = ' (mode test) '; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'Champ obligatoire'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Numéro de carte de crédit incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP incorrect'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'Une erreur est survenue pendant la requête.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Numéro de carte'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Nom sur la carte'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / AA'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'AA'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'La date d\'expiration est incorrecte. Veuillez entrer une date ultérieure à la date actuelle.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = 'Le code de vérification de la carte (CVC) est un code de sécurité à 3 chiffres qui se trouve généralement au dos de votre carte. Les cartes American Express disposent d\'un code à 4 chiffres situé sur le devant.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'Qu\'est-ce que le CVC ?'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Une erreur est survenue.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'La demande a été rejetée à cause d\'une erreur de validation. Veuillez vérifier les informations de la carte saisies.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise est temporairement dans l\'incapacité de traiter la demande. Veuillez réessayer plus tard.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'Une action interdite a été identifiée, le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Veuillez sélectionner une des cartes sauvegardées avant de poursuivre.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'Ce type de carte ou la devise de la commande ne sont pas pris en charge. Veuillez choisir un autre moyen de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'Une erreur est survenue, le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'Votre requête a été rejetée suite à une erreur de validation. Veuillez vérifier les informations renseignées'; -$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Sauvegarder la carte de crédit (paiement One-click)'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Payer avec une carte de crédit sauvegardée'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Date d\'exp.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Nom du porteur'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Numéro de carte'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Date d\'exp.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Votre commande a été effectuée.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Montant'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'Un email a été envoyé avec ces informations.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'Pour toute question ou commentaire, veuillez contacter'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'notre équipe d\'experts au Support client.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Votre commande a été refusée.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Veuillez réessayer.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'Actions HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'Aucune action disponible'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'Un remboursement a été demandé, les actions sont désactivées durant la validation du processus.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'Une capture ou un remboursement a été validé depuis le back office HiPay : vous devez procéder à la capture ou au remboursement depuis le back office HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Confirmez votre commande pour accéder à la page de paiement'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Vous allez être redirigé vers une page de paiement externe. Veuillez ne pas actualiser la page pendant le processus.'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestion du One-click'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestion du One-click'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gérer les cartes de crédit/débit sauvegardées'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Veuillez saisir un montant.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Veuillez saisir un montant supérieur à zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'Le montant saisi dépasse le montant autorisé.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'Aucune référence de transaction n\'est liée à cette commande.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Sélectionnez au moins un article à capturer.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'Le montant capturé doit être supérieur à zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'Le montant de la capture doit être plus grande que zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'Vous devez capturer un bon de réduction car le prochain montant de capture sera inférieur au montant total d\'escompte.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'La capture a été validée.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'L\'algorithme de hachage pour %s était déjà défini avec %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'Algorithme de hachage pour %s a été synchronisé avec %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'Une erreur est survenue pour %s : %'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'L\'algorithme de hachage pour %s n\'a pas été mis à jour: Vous devez renseigner les informations d\'identification.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Veuillez saisir un montant.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Veuillez saisir un montant supérieur à zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'Le montant saisi dépasse le montant autorisé.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'Aucune référence de transaction n\'est liée à cette commande.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Sélectionnez au moins un article à rembourser.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'Le montant remboursé doit être supérieur à zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'Le montant du remboursement doit être plus grand que zéro.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Vous devez remboursé la réduction car le montant du prochain remboursement sera inférieur à celui du montant total de la réduction.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Le remboursement a été validé.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Le paiement a été traité.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Le paiement a été refusé.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Le paiement est en attente.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'Une erreur s\'est produite lors de votre paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Le paiement a été annulé.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'La transaction en statut \"challenged\" a été validée.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Vous n\'avez aucune carte de crédit/débit sauvegardée.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'Carte de crédit supprimée avec succès.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'Cette carte de crédit n\'existe pas.'; diff --git a/src/hipay_enterprise/translations/it.php b/src/hipay_enterprise/translations/it.php index 77de890b..63db7bab 100755 --- a/src/hipay_enterprise/translations/it.php +++ b/src/hipay_enterprise/translations/it.php @@ -24,17 +24,37 @@ $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_27266fe4d37bf06589c7c6dbf2d5c067'] = 'Pagato con'; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo.'; $_MODULE['<{hipay_enterprise}prestashop>hipay_enterprise_2c84752887477f3a1d1ac7e0b6a39105'] = 'È necessario un certificato SSL per poter elaborare pagamenti con carta di credito utilizzando HiPay. Si prega di consultare le FAQ.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Sei pregato d\'inserire il tuo numero di telefono per usare questo metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Si prega di verificare il numero di telefono inserito.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Veuillez renseigner votre civilité pour utiliser cette méthode de paiement.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Si prega di verificare le informazioni inserite.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Ordine creato da HiPay dopo un pagamento eseguito con successo.'; +$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'Si è verificato un errore durante la richiesta di manutenzione.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domain.com'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Abilitato'; +$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabilitato'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Email pagamenti fraudolenti'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'In copia a'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Inserisci una e-mail valida e quando una transazione sarà contestata, verrà inviata un\'e-mail all\'indirizzo specificato.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Metodo di copia'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = ' Questo indirizzo sarà in copia nella email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Email separata'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = ' Sono inviate due email'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva cambiamenti configurazione'; +$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'Quando una transazione è probabilmente una frode, viene inviata un\'email all\'indirizzo e-mail di contatto del tuo shop e anche a un altro destinatario in copia. Configura qui l\'indirizzo email del destinatario in copia'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'Questo campo è obbligatorio'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN non corretto'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC non corretto'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF non corretto'; +$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN non corretto'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'Una transazione di pagamento sta attendendo la validazione per l\'ordine %s'; +$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Pagamento rifiutato per l\'ordine %s'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_3e47effda726a2571c6f8ea7b3bf9f73'] = 'Registrata la notifica da HiPay per la cattura dell\'importo di '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_dcff891b1393af8c2f13bcb13307d6dc'] = 'Registrata la notifica da HiPay per il rimborso dell\'importo di '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_147b202e5d808b32bd8d1eaaa135a58e'] = 'Importo totale dell\'ordine:'; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_41683156a02a5458061f1ceff3a7b7e4'] = 'ID Transazione: '; $_MODULE['<{hipay_enterprise}prestashop>hipayordermessage_cab7966508bf13075ade294cdf147b53'] = 'Status HiPay: '; -$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'Aggiornamento Fallito, per favore prova ancora.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_2d2a9e31222bd2645ec042fbf051ffd9'] = 'Sei pregato d\'inserire il tuo numero di telefono per usare questo metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_b1252ca7cb264a8e865f94348659ddcb'] = 'Si prega di verificare il numero di telefono inserito.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_0e4d9df3d2bd3df7319ec9a6dac9e1bb'] = 'Veuillez renseigner votre civilité pour utiliser cette méthode de paiement.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_231a9e18ea5a2be09a73a60a4498695b'] = 'Si prega di verificare le informazioni inserite.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayhelper_95de3b921c187aee5af0a38652383790'] = 'Ordine creato da HiPay dopo un pagamento eseguito con successo.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_6d12f60dbfa06b3da45091a331957382'] = 'Impostazioni modulo salvate con successo.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_8458084c5456ab2d8eef1aa3a2adb68b'] = 'Impostazioni Metodi Pagamento Globali salvate con successo.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_edd17fcd44ef5daf55530049faf68592'] = 'Impostazioni Carta di Credito salvate con successo.'; @@ -43,27 +63,223 @@ $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_2619ca57838110e4a58d37cdaeab443e'] = 'Impostazioni Frode salvate con successo.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_999560dd2effd4a7ca12a7e2e1a93731'] = 'Impostazioni Frode salvate con successo.'; $_MODULE['<{hipay_enterprise}prestashop>hipayconfigformhandler_5dc62ffa17f4b575b79d53749d74ad39'] = 'Impostazioni mappatura spedizioni salvate con successo.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_7f6c29842152c67b71b49d97ef59b277'] = 'Questo campo è obbligatorio'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN non corretto'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC non corretto'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF non corretto'; -$_MODULE['<{hipay_enterprise}prestashop>hipayformcontrol_620a51169e83f5ecf0f7844680f5505d'] = 'CURP/CPN non corretto'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_7b6ba38a51257882e4152de4b64b7e43'] = 'Una transazione di pagamento sta attendendo la validazione per l\'ordine %s'; -$_MODULE['<{hipay_enterprise}prestashop>hipaymail_058990c1e83284d157854bf34bb0309d'] = 'Pagamento rifiutato per l\'ordine %s'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_36688d4ca7089c01d51eb950788bc7fe'] = 'Email pagamenti fraudolenti'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_2fb302ad440d0eade342f67f7cfcfb31'] = 'In copia a'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_077040cdb8d3c4db4bb50351a952ef44'] = 'Inserisci una e-mail valida e quando una transazione sarà contestata, verrà inviata un\'e-mail all\'indirizzo specificato.'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_b627630626fd6ea907a6481cc1af9598'] = 'Metodo di copia'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_f31ffd8a957ed58bd7f57e74a99ae496'] = ' Questo indirizzo sarà in copia nella email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_11b61d4b1d1cc34fb081410f0ec5595e'] = 'Email separata'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_8df0982966fe750f140b222aee116e79'] = ' Sono inviate due email'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_165e7ce57962f7d8e6831ee7a7eed5bb'] = 'Bcc'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva cambiamenti configurazione'; -$_MODULE['<{hipay_enterprise}prestashop>hipayform_92f0352f846dae3265a134be268f14e8'] = 'Quando una transazione è probabilmente una frode, viene inviata un\'email all\'indirizzo e-mail di contatto del tuo shop e anche a un altro destinatario in copia. Configura qui l\'indirizzo email del destinatario in copia'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_7328fddefd53de471baeb6e2b764f78a'] = 'email@domain.com'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Abilitato'; -$_MODULE['<{hipay_enterprise}prestashop>hipayforminput_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabilitato'; -$_MODULE['<{hipay_enterprise}prestashop>apihandler_36d106fda0d4944b026a68b55e9a8807'] = 'Si è verificato un errore durante la richiesta di manutenzione.'; +$_MODULE['<{hipay_enterprise}prestashop>hipayconfig_4d1f6f5436ec3e2310a76621e43d4c60'] = 'Aggiornamento Fallito, per favore prova ancora.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Non hai salvato la carta di credito/debito.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'La carta di credito è stata cancellata con successo.'; +$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'Questa carta di credito non esiste.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'L\'algoritomo di Hash per %s è già stato impostato con %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'L\'algoritomo di Hash per %s è stato sincronizzato con %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'Si è verificato un errore per %s : %s'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'L\'algoritomo di Hash per %s non è stato aggiornato : devi inserire le credenziali.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Si prega di inserire l\'importo'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Si prega di inserire un importo superiore a zero'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'L\'importo eccede quello autorizzato'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'Nessuna referenza di transazione collegata a quest\'ordine'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Scegli almeno un elemento da catturare'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'L\'importo da catturare deve essere superiore a zero.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'L\'importo della cattura deve essere inferiore all\'importo che deve essere ancora catturato.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'Devi catturare lo sconto perché l\'importo di cattura successivo sarà inferiore all\'importo dello sconto complessivo.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'La catura è stata validata.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Si prega di inserire un importo'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Si prega di inserire un importo superiore a zero'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'L\'importo eccede quello autorizzato'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'Nessuna referenza di transazione collegata a quest\'ordine'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Scegli almeno un elemento da rimborsare'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'L\'importo da rimborsare deve essere superiore a zero.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'L\'importo del rimborso deve essere inferiore all\'importo ancora da rimborsare.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Devi rimborsare lo sconto perché il prossimo importo del rimborso sarà inferiore all\'importo dello sconto totale. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Il rimborso è stato validato.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'La transazione in Challenge è stata validata.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Il pagamento è stato processato.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Il pagamento è stato rifiutato.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Il pagamento è in sospeso.'; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'Si è verificato un errore col tuo pagamento. '; +$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Il pagamento è stato cancellato.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mio account'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Storico ordini'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Carte credito/debito salvate'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = ' Ecco le carte di credito salvate per gli ordini precedenti.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Numero carta'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Proprietario carta'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Data scadenza'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancella'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Non hai carte di credito/debito salvate.'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Sei sicuro di voler cancellare questa carta?'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Salva carta di credit/debito'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Numero carta'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Proprietario carta'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Data scadenza'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancella'; +$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Sei sicuro di voler cancellare questa carta?'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'Sig'; +$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Sigra'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Si è verificato un errore'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'La richeista è stata rigettata a causa di un errore di validazione. Si prega di verificare i dettagli della carta inseriti.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise non è temporaneamente in grado di processare la richiesta. Si prega di più tardi.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'È stata identificata un\'azione non consentita, il pagamento è stato annullato.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Si prega di selezionare una delle carte salvate prima di continuare.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato annullato.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'Questo campo è obbligatorio'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN errato'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC errato'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Numero carta di credito errato'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF errato'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP errato'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'Un errore è accaduto con la richiesta. '; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Numero carta'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Nome sulla carta'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / YY'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'YY'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'La data di scadenza errata. Si prega di inserire una data successiva a quella corrente.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = 'Codice di sicurezza a 3 cifre solitamente sul retro della carta. Le carte American Express hanno un codice di 4 cifre situato nella parte anteriore.'; +$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'Cos\'è il CVC ?'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pagato con'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo.'; +$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = '(test mode)'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pagato con carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pagato con'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo.'; +$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(modalità Test)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'La richiesta è stata rifiutata per un un errore validazione. Si prega di verificare i dettagli della carta inseriti.'; +$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Paga con una carta di credito salvata'; +$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Data Esp.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'La richiesta è stata rifiutata per un un errore validazione. Si prega di verificare i dettagli della carta inseriti.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise non è temporaneamente in grado di processare la richiesta. Si prega di più tardi.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'È stata identificata un\'azione non consentita, il pagamento è stato annullato.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Si prega di selezionare una delle carte salvate prima di continuare.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Codice errore '; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato annullato.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Paga con %s'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo ordine'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo ordine'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click )'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Il tuo ordine è in attesa di una conferma di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Una volta approvato, questo sarà disponibile nel tuo'; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'storico ordini '; +$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Torna alla Home'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Il tuo ordine è stato cancellato.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'Abbiamo verificato un problema col tuo ordine. Si prega di contattare il nostro'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Supporto Clienti'; +$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello '; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Il tuo ordine è stato rifiutato.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Il tuo ordine è stato cancellato.'; +$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato cancellato.'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'Abbiamo verificato un problema col tuo ordine. Si prega di contattare il nostro'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Supporto Clienti'; +$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Il tuo ordine è stato rifiutato.'; +$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Il tuo ordine è in attesa di una conferma di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Una volta approvato, questo sarà disponibile nel tuo'; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'storico ordini '; +$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Torna alla Home'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Il tuo ordine è completo.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Importo'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Referenza'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'Un\'email è stata inviata con queste informazioni.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'Se avete domande, commenti o dubbi, per favore contattate il nostro'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'esperto team di assistenza clienti.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Il tuo ordine non è stato accettato.'; +$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Si prega di provare a ordinare nuovamente.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_577d857fab0c8efb7d74a088ca76686c'] = 'HiPay Notizia'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_08a426952cf23e67b1095e3865eaf5f9'] = 'È disponibile una nuova versione del modulo HiPay Enterprise.'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_8a4eaf9ad80f8f02146a37917742458d'] = 'Vedi dettagli della versione %s'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'o'; +$_MODULE['<{hipay_enterprise}prestashop>updatenotif_c1cf9b68cf476dfd37470588f5988a2a'] = 'aggiornare'; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento '; +$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Nome e cognome'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Numero Carta'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Data scadenza'; +$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'Azioni HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'Nessuna azione disponibile'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'È stato richiesto il rimborso, le azioni sono disabilitate durante il processo di validazione.'; +$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'Il rimborso o la cattura è stata convalidata dal back office HiPay: devi procedere col rimborso o la cattua dal back office HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestione One-Click'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestione One-Click'; +$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1a11db3d2781e8ee1401eab17b296b6a'] = 'Impostazioni Modulo'; $_MODULE['<{hipay_enterprise}prestashop>configuration_0da8d9a75492046bea7f314521e07cae'] = 'Metodi di pagamento'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b130f12d0f2e4cc10edbe80fe31738dc'] = 'Frodi'; @@ -71,6 +287,40 @@ $_MODULE['<{hipay_enterprise}prestashop>configuration_8c7f48c3c9b7a171a3cc84221ae3e900'] = 'Mappatura corriere'; $_MODULE['<{hipay_enterprise}prestashop>configuration_1fe917b01f9a3f87fa2d7d3b7643fac1'] = 'FAQ'; $_MODULE['<{hipay_enterprise}prestashop>configuration_b2d37ae1cedf42ff874289b721860af2'] = 'Logs'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Informazioni Modulo'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'Per supportarti nella configurazione della tua piattaforma e del modulo, fai riferimento alla documentazione sul nostro Developer Portal al seguente indirizzo:'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Il nostro team di supporto è disponibile per qualunque domanda al seguente indirizzo: '; +$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'Modulo HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'Versione PrestaShop'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'Indirizzo IP'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'Callback URL'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Allerta tecnico'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_08a426952cf23e67b1095e3865eaf5f9'] = 'È disponibile una nuova versione del modulo HiPay Enterprise.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_8a4eaf9ad80f8f02146a37917742458d'] = 'Vedi dettagli della versione %s'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'o'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_c1cf9b68cf476dfd37470588f5988a2a'] = 'aggiornare'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'Il gateway API è configurato in modalità TEST ma le credenziali di test non sono specificate.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'Il gateway API è configurato in modalità PRODUZIONE ma le tue credenziali di produzione non sono specificate.'; +$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'Devi mappare le categorie dei prodotti e i metodi di consegna nelle categorie HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay è una piattaforma online globale di pagamento progettata per gestire tutte le tue esigenze di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'Ti offre protezione dalle frodi end-to-end personalizzabile, analytics e dati come leader di settore, supporto omnichannel senza soluzione di continuità e riconciliazione finanziaria automatizzata.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visita il nostro sito per'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'Trovare più'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'Informazioni'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Espandi la tua attività a livello internazionale.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'Ottimizza i tuoi tassi di conversione con una singola integrazione per accedere a una vasta gamma di metodi di pagamento locali e internazionali in modo che i tuoi clienti possano effettuare acquisti utilizzando la loro valuta e i metodi di pagamento preferiti.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Oltre 100 valute e 220 metodi di pagamento disponibili.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Scegli il miglior modo per integrare le tue pagine di pagamento.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Integrazione Hosted'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay ospita la pagina di pagamento nel suo sito in sicurezza. Con quest\'opzione, beneficerai di un singolo punto di contatto e di pagine di pagamento personalizzate che sono conformi al PCI DSS.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'Una soluzione ibrida che consente all\'acquirente di rimanere sul sito del merchant per effettuare un pagamento mentre le informazioni sono inserite su un iFrame ospitato da HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'Integrazione API'; +$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'La pagina di pagamento è ospitata completamente nel sito del merchant. Avrai bisogno di una certificazione PCI DSS affinché i numeri delle carte di credito possano transitare attraverso sui tuoi server.'; +$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Errore!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Warning!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Successo!'; +$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\'Arrotonda il totale\' è attivato nella configurazione PrestaShop: il carrello non verrà inviato e i metodi di pagamento che forzano l\'invio del carrello saranno disabilitati.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_aa9043d7b0ff404fd7b913d284ea72c6'] = 'Devi mappare le categorie del tuo shop rispetto alle categorie di HiPay.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_81db52287b034678b18598c8de281e85'] = 'La mappatura dei metodi di consegna è obbligatoria per i metodi di pagamento Oney o se abiliti l\'opzione per l\'invio carrello cliente.'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_9455e5b0584f997580e48afa2e3ac696'] = 'Mappatura categorie'; @@ -79,18 +329,6 @@ $_MODULE['<{hipay_enterprise}prestashop>category-mapping_5c3937340332b499f6e6f795009703b1'] = '- Scegli categoria -'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Elimina modifiche'; $_MODULE['<{hipay_enterprise}prestashop>category-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'Devi mappare i tuoi metodi di consegna nei metodi di consegna di HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'La mappatura dei metodi di consegna è obbligatoria per i metodi di pagamento Oney o se abiliti l\'opzione per l\'invio carrello cliente.'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Mappatura metodi di consegna'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'Metodi di consegna PrestaShop'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Tempo stimato preparazione ordine'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Tempo stimato consegna'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'Modalità di consegna HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'Metodi di consegna HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Scegli modalità corriere -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Scegli corriere spedizione -'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Elimina modifiche'; -$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; $_MODULE['<{hipay_enterprise}prestashop>faq_b83348569801fff18e94c5bddf070572'] = 'Come ottengo le credenziali API di HiPay?'; $_MODULE['<{hipay_enterprise}prestashop>faq_3f368b27bd96aacbe1cad104060b72ae'] = 'Devi generare'; $_MODULE['<{hipay_enterprise}prestashop>faq_1ba0799e1be99db5275b593b0184e5ce'] = 'credenziali API'; @@ -150,6 +388,18 @@ $_MODULE['<{hipay_enterprise}prestashop>faq_9737653d570acb7e07b4e21b8a8d9576'] = 'Se il tuo modulo è configurato con \"Cattura: Manual\", devi eseguire le catture manualmente.'; $_MODULE['<{hipay_enterprise}prestashop>faq_d09339ca1530e34e0fc385623ea4ffc4'] = 'Ti sono offerte due possibilità o dal tuo back office HiPay Enterprise oppure direttamente dal modulo degli ordini sul tuo sito PrestaShop.'; $_MODULE['<{hipay_enterprise}prestashop>faq_f9000c075d958a36cd48b435a2dade76'] = 'Per consultare la procedura dettagliata, fai riferimento alla documentazione del modulo sul nostro Developer Portal: https://developer.hipay.com/doc/hipay-enterprise-sdk-prestashop_1-6-1-7/'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e0772251a1bb5a178ea9440b9f814093'] = 'Devi mappare i tuoi metodi di consegna nei metodi di consegna di HiPay.'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_810bada0db657f83c8a218454f20be62'] = 'La mappatura dei metodi di consegna è obbligatoria per i metodi di pagamento Oney o se abiliti l\'opzione per l\'invio carrello cliente.'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b94184e1fa41e8b591c9aa8f9518851b'] = 'Mappatura metodi di consegna'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_c6e057ce626d988bcac2b91a67bee65d'] = 'Metodi di consegna PrestaShop'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_941791fa51ce9fb28b3f4b18228b59bd'] = 'Tempo stimato preparazione ordine'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_b2190a2591b01cd2383bbf17071ba198'] = 'Tempo stimato consegna'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_4b39ebf2c41fb37ab292617c9faa9291'] = 'Modalità di consegna HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_bc6130b7b62ec5565937c069cfe59cc0'] = 'Metodi di consegna HiPay'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_fd2eaeb27b625e6fdcead58764df567a'] = '- Scegli modalità corriere -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_eb941f444f9742948fb7ac4b5046dd6c'] = '- Scegli corriere spedizione -'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_98313f623bb6f464b9a154eca0b99bf3'] = 'Elimina modifiche'; +$_MODULE['<{hipay_enterprise}prestashop>carrier-mapping_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; $_MODULE['<{hipay_enterprise}prestashop>account_bfa14b00b28d0ed83ee84a3180a909ac'] = 'Configurazione Gateway'; $_MODULE['<{hipay_enterprise}prestashop>account_650be61892bf690026089544abbd9d26'] = 'Modalità'; $_MODULE['<{hipay_enterprise}prestashop>account_0cbc6611f5540bd0809a388dc95a615b'] = 'Test'; @@ -184,6 +434,37 @@ $_MODULE['<{hipay_enterprise}prestashop>account_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; $_MODULE['<{hipay_enterprise}prestashop>account_d8e89ebf3a6858465d367df3ca1ce25c'] = 'Sei sicuro di voler sincronizzare la configurazione dell\'hash per le notifiche?'; $_MODULE['<{hipay_enterprise}prestashop>account_716fbf64d49a2faa10cf8da0e29d745d'] = 'Si è verificato un errore. Per favore riprova'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Mostra Hosted Page'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirezione'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Mostra selettore carte nel iFrame o hosted page.'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Mostra selettore carte'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'Url CSS'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL al tuo CSS (style sheet) per personalizzare la tua hosted page o iFrame (Importante: è richiesto il protocollo HTTPS).'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Attiva 3-D Secure'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabilitato'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Prova ad abilitare per tutte le transazioni'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Try to enable for configured 3ds rules'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Force for configured 3ds rules'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Force for all transactions'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = 'Regole 3-D Secure'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Più grande di'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Più grande o uguale a'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Più piccolo di'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Più piccolo o uguale a'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Uguale a'; +$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Non uguale a'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Stile Hosted Fields'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Impostazioni di stile Hosted Fields'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Colore'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Famiglia carattere'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Dimensione carattere'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Peso carattere'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Colore segnaposto'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Colore caret'; +$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Colore Icona'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e7f9e382dc50889098cbe56f2554c77b'] = 'Carte di credito'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nome visualizato'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_8d536440734fa779815bee3efa7d4c76'] = 'Mostra il nome della carta di credito per il pagamento nella tua pagina di checkout.'; @@ -199,6 +480,19 @@ $_MODULE['<{hipay_enterprise}prestashop>creditcard_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_d5b635fe0be7b3b088f60a5544251b95'] = 'Nazioni disponibili'; $_MODULE['<{hipay_enterprise}prestashop>creditcard_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Nazioni autorizzate'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Attivato'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nome visualizato'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Posizionamento pagina pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Minimo importo ordine'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Massimo importo ordine'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Valute attivate'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'Questa valuta non è attivata nel tuo shop PrestaShop.'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Nazioni attivate'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'Questa nazione non è attivata nel tuo shop PrestaShop.'; +$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Nazioni'; $_MODULE['<{hipay_enterprise}prestashop>global_108490afa8365531d5eade07c3cc38f4'] = 'Impostazioni globali'; $_MODULE['<{hipay_enterprise}prestashop>global_3aa43f82fc2f41e3036679584f63fe4f'] = 'Modalità operativa'; $_MODULE['<{hipay_enterprise}prestashop>global_3e8ba3c7ebacf9cef2d36d6585c8dc76'] = 'Direct Post'; @@ -226,95 +520,46 @@ $_MODULE['<{hipay_enterprise}prestashop>global_7befac932a45f12a0ed85683e0f4b68f'] = 'Se abilitato, l\'URL del vostro sito sarà inviato quando il pagamento e le notifiche verranno inviate da questo URL. Da utilizzare solo in caso di multi-sito.'; $_MODULE['<{hipay_enterprise}prestashop>global_98313f623bb6f464b9a154eca0b99bf3'] = 'Elimina modifiche'; $_MODULE['<{hipay_enterprise}prestashop>global_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_cb456215c3333db0551bd0788bc258c7'] = 'Attivato'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_bc9e270b7b1a09eeac794d32b3d9dc8f'] = 'Nome visualizato'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b4bc22cc77824a64935fb2032a8e2109'] = 'Posizionamento pagina pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_a025e05161bb17cbab898f0e77b09a2b'] = 'Iframe'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_b16854ceee6fb9499c2ad3aac40d539e'] = 'Minimo importo ordine'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_abcac9aebb2505b3cf76c42e1bfbe8f7'] = 'Massimo importo ordine'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_fa31b6e88cdc95eab570d83db23e2c3d'] = 'Valute attivate'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_4107daf5746a644e08bca169bf6eba65'] = 'Questa valuta non è attivata nel tuo shop PrestaShop.'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_9e0bb754171ca97e4fb8e0dd8ccdef64'] = 'Nazioni attivate'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_d8ca6f07c1c9e3641e6ff6a3f4ec520c'] = 'Questa nazione non è attivata nel tuo shop PrestaShop.'; -$_MODULE['<{hipay_enterprise}prestashop>detail-local-payment_790d59ef178acbc75d233bf4211763c6'] = 'Nazioni'; $_MODULE['<{hipay_enterprise}prestashop>local_63a9681ca50ce6ebf74c19defb9747af'] = 'Pagamenti locali'; $_MODULE['<{hipay_enterprise}prestashop>local_98313f623bb6f464b9a154eca0b99bf3'] = 'Elimina modifiche'; $_MODULE['<{hipay_enterprise}prestashop>local_e84c1a9ae6ca2dafc5338e6a1c5b080f'] = 'Salva modifiche configurazione'; $_MODULE['<{hipay_enterprise}prestashop>local_d5b635fe0be7b3b088f60a5544251b95'] = 'Nazioni disponibili'; $_MODULE['<{hipay_enterprise}prestashop>local_e8d6e5e43508bfe833a0d1eb7e43974a'] = 'Nazioni autorizzate'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_e4a113b3a517f62528bd2258c1ebd09d'] = 'Mostra Hosted Page'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_4202ef115ebede37eb22297113f5fb32'] = 'Redirezione'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_f100e26792ddf73e60254cecd5a97f0f'] = 'Mostra selettore carte nel iFrame o hosted page.'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_a18295f253eaa7e65233705d5fa79261'] = 'Mostra selettore carte'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_62588e1f645aa6b71c35f84283e4b429'] = 'Url CSS'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_page.forms.partial_b6f1af8cece3ea29a95f4f2f3adedbc3'] = 'URL al tuo CSS (style sheet) per personalizzare la tua hosted page o iFrame (Importante: è richiesto il protocollo HTTPS).'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_08deed15263aa7d966a8a8a01e4d4ac1'] = 'Stile Hosted Fields'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_b9b8fa143b21bb5d29dc4de5794f0dd5'] = 'Impostazioni di stile Hosted Fields'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_cb5feb1b7314637725a2e73bdc9f7295'] = 'Colore'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_4c0ff9700cc0ef77c92b2627bdcd1fb8'] = 'Famiglia carattere'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_c4943062b634c56348c67fdebba808eb'] = 'Dimensione carattere'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_a47c4f19993bfe8ff2a3529bae8c0be3'] = 'Peso carattere'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_690d173134d2ab64aa541154d9e14a8c'] = 'Colore segnaposto'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_ab56ff36d96a7d03525c2b2d772055ad'] = 'Colore caret'; -$_MODULE['<{hipay_enterprise}prestashop>hosted_fields.forms.partial_534b7c706186028f1b4f51344bbca176'] = 'Colore Icona'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2a9621ba11cb428fcaefde69ca952016'] = 'Attiva 3-D Secure'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabilitato'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_aff521e71a000d8caad84a24b4cf4596'] = 'Prova ad abilitare per tutte le transazioni'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_00ec82e48150bde62704a5b6b8840401'] = 'Try to enable for configured 3ds rules'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_0ade53af513d0720b948e9b983db983d'] = 'Force for configured 3ds rules'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_f500523558647e2762acfcf7286e4af4'] = 'Force for all transactions'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6a2b46b8c3699e29efcb9d829561915f'] = 'Regole 3-D Secure'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_05824b7be006782aaefd1fdb97c71e06'] = 'Più grande di'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_303c27eabcd0612be7a0f42fded7b58f'] = 'Più grande o uguale a'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6c1e9c72d62db61b99c2f2f489091a62'] = 'Più piccolo di'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_2db69219312edb6a40f1db8f6bae16d7'] = 'Più piccolo o uguale a'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_4c2a7b52c5f2651ccc48007d3c8e9f16'] = 'Uguale a'; -$_MODULE['<{hipay_enterprise}prestashop>3ds.forms.partial_6ce14b8c89f6e674e2d56301d410c617'] = 'Non uguale a'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_55575a58c73033b059a5a7660238e453'] = 'Informazioni Modulo'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_d4d1347b351fd74846f497d6ba86eb8c'] = 'Per supportarti nella configurazione della tua piattaforma e del modulo, fai riferimento alla documentazione sul nostro Developer Portal al seguente indirizzo:'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_238c3d27e46dcaba54e23789b407edbb'] = 'Il nostro team di supporto è disponibile per qualunque domanda al seguente indirizzo: '; -$_MODULE['<{hipay_enterprise}prestashop>technicals_574233a2316a9793990fde5de075ae2e'] = 'Modulo HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_2a43f8406eb6c10f3f76a60f064e67fb'] = 'Versione PrestaShop'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_5b8c99dad1893a85076709b2d3c2d2d0'] = 'Indirizzo IP'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_41572c859d9fafdb13f17b473e2853fd'] = 'Callback URL'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_b66ee5a6b7c5b1c25aaafe6dd9f4e547'] = 'Allerta tecnico'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_212ea586c003e48370f63110b60862ef'] = 'Il gateway API è configurato in modalità TEST ma le credenziali di test non sono specificate.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_1493c34b452a9681e0832d8531841a2a'] = 'Il gateway API è configurato in modalità PRODUZIONE ma le tue credenziali di produzione non sono specificate.'; -$_MODULE['<{hipay_enterprise}prestashop>technicals_a3aec75b615b642506fb9d97be5c32a3'] = 'Devi mappare le categorie dei prodotti e i metodi di consegna nelle categorie HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_c4a571009fbdbae6c3266eb058fb331e'] = 'HiPay è una piattaforma online globale di pagamento progettata per gestire tutte le tue esigenze di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_f1192832eadebee22a2a5da7d146e8d7'] = 'Ti offre protezione dalle frodi end-to-end personalizzabile, analytics e dati come leader di settore, supporto omnichannel senza soluzione di continuità e riconciliazione finanziaria automatizzata.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b68f24b5388b6b89354a8cda41312fcb'] = 'Visita il nostro sito per'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_d9e0971b6595d63994d4f83613f910dc'] = 'Trovare più'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'Informazioni'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_0494782ce03ea5f1745675c4f77e3e46'] = 'Espandi la tua attività a livello internazionale.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_aed1cc7845b6f2acf5fe40e2292c0f81'] = 'Ottimizza i tuoi tassi di conversione con una singola integrazione per accedere a una vasta gamma di metodi di pagamento locali e internazionali in modo che i tuoi clienti possano effettuare acquisti utilizzando la loro valuta e i metodi di pagamento preferiti.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e63e28d7dd796e9466f9b3c02ea09680'] = 'Oltre 100 valute e 220 metodi di pagamento disponibili.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_84bf9dcb5dd6f5ad7f1d12ff6ab4ba78'] = 'Scegli il miglior modo per integrare le tue pagine di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_e2163cc7dbb0b1f3238c80eb983d8e34'] = 'Integrazione Hosted'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_022782389d55625f314e9fe57cc704f4'] = 'HiPay ospita la pagina di pagamento nel suo sito in sicurezza. Con quest\'opzione, beneficerai di un singolo punto di contatto e di pagine di pagamento personalizzate che sono conformi al PCI DSS.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_a025e05161bb17cbab898f0e77b09a2b'] = 'iFrame'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_b17a59115b2f48c14fc4254c644e4e66'] = 'Una soluzione ibrida che consente all\'acquirente di rimanere sul sito del merchant per effettuare un pagamento mentre le informazioni sono inserite su un iFrame ospitato da HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_34026f6e08a44b81ca8e0f1d65f197c5'] = 'Integrazione API'; -$_MODULE['<{hipay_enterprise}prestashop>marketing_2cc5b21b1ed34d4e2301bacfb0ee324d'] = 'La pagina di pagamento è ospitata completamente nel sito del merchant. Avrai bisogno di una certificazione PCI DSS affinché i numeri delle carte di credito possano transitare attraverso sui tuoi server.'; -$_MODULE['<{hipay_enterprise}prestashop>alert_ef7bd68a02b6b5656554f7a27d1c7bdf'] = 'Errore!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_520f9b37af10a8807ddc4ccfa8a9ad23'] = 'Warning!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_402e7a087747cb56c718bde84651f96a'] = 'Successo!'; -$_MODULE['<{hipay_enterprise}prestashop>alert_cff8361ced3621b2a2193a458568828f'] = '\'Arrotonda il totale\' è attivato nella configurazione PrestaShop: il carrello non verrà inviato e i metodi di pagamento che forzano l\'invio del carrello saranno disabilitati.'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Gestisci transazioni Challenge'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accetta pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Rifiuta pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Sei sicuro di voler $action questo ordine?'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_8e553d25547a55b22266ee5c64fd84c4'] = 'Pagamento manuale ordini (MO/TO)'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_ea7490116e7c2d2989fad25304b3784d'] = 'Le tue credenziali di Test MO/TO non sono definite.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2fddca48a3f918c79da821c7f79f31df'] = 'Per generare la fattura, devi catturare l\'importo ancora in sospeso. La fattura verrà generata quando l\'intero ammontare dell\'ordine verrà catturato.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_2a05baf1522d53a52646c40199bf5512'] = 'Le tue credenziali di Produzione MO/TO non sono definite.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_e64a06133007e4786090eabbb268917c'] = 'Verrai rediretto alla pagina di pagamento HiPay per completare il pagamento di questo ordine.'; $_MODULE['<{hipay_enterprise}prestashop>moto.partial_c41651a1244e41b44afed08c0740abea'] = 'Paga oridne MO/TO'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_fa521e30c7b8e19ba0c9c29a0b9c3fcb'] = 'Gestisci transazioni Challenge'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_d7eaccb58d9bea16f13059a71293220e'] = 'Accetta pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_8da2b8f389ed81e0f88fabdbb24443f1'] = 'Rifiuta pagamento'; +$_MODULE['<{hipay_enterprise}prestashop>panel-challenge_adbd5cb9ac15083a356f5f957c8467f9'] = 'Sei sicuro di voler $action questo ordine?'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'RImborsa questo ordine'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Importo che può essere rimborsato'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'L\'importo verrà aggiornato quando il rimborso verrà confermato da HiPay Enterprise.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Tipo rimborso'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Completo'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Parziale'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Importo rimborsato'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Referenza'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Nome prodotto'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prezzo unitario'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Rimborsato'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qtà da rimborsare'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_90a150a96b5eea70b5d9fbd092f9f9f2'] = 'Non capturé'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Rimborsa spese di consegna'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Emballage cadeau'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_b2e990dd78d9a8e30acbc9fe8f776cca'] = 'Rembourser l\'emballage cadeau'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Sconto'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Rimborsa sconto'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Totale'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Rimborso'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Sei sicuro di voler rimborsare quest\'ordine?'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'L\'importo da rimborsare deve essere superiore a zero.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'L\'importo da rimborsare deve essere inferiore all\'importo rimborsabile.'; +$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Devi rimborsare lo sconto perché il prossimo rimborso sarà inferiore all\'importo del totale sconto.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_0f0715f4a58292667ce012e7fe013a08'] = 'Gestisci cattura'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_8f3f1c6951cfc849547412369b0776ce'] = 'L\'ordine non è stato catturato completamente.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_2fddca48a3f918c79da821c7f79f31df'] = 'Per generare la fattura, devi catturare l\'importo ancora in sospeso. La fattura verrà generata quando l\'intero ammontare dell\'ordine verrà catturato.'; @@ -332,6 +577,8 @@ $_MODULE['<{hipay_enterprise}prestashop>capture.partial_8d873411b6e4cc1ec66cda29fee4a6f2'] = 'Qtà da catturare'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_4bcabb23436d1e64a4e9c5facdf89f88'] = 'Cattura spese di spedizione'; +$_MODULE['<{hipay_enterprise}prestashop>capture.partial_8a8f5b0cabb145f44e8e1ea9b4971715'] = 'Emballage cadeau'; +$_MODULE['<{hipay_enterprise}prestashop>capture.partial_c703ef8b59774b5395382716f84b11f3'] = 'Capturer l\'emballage cadeau'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_104d9898c04874d0fbac36e125fa1369'] = 'Sconto'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_94a2558987611e77c307fcf485f0b77b'] = 'Cattura sconto'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_96b0141273eabab320119c467cdcaf17'] = 'Totale'; @@ -340,236 +587,3 @@ $_MODULE['<{hipay_enterprise}prestashop>capture.partial_1216ce40106a95ed7b36d1e97b31599d'] = 'L\'importo da catturare deve essere superiore a zero.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'L\'importo da catturare deve essere inferiore a quanto deve essere ancora catturato.'; $_MODULE['<{hipay_enterprise}prestashop>capture.partial_7c1231480954da0e29816ecc4bb5f90e'] = 'È necessario catturare lo sconto poiché l\'importo di cattura successivo sarà inferiore all\'importo dello sconto totale.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc16e103e202a48009df202d9525f75f'] = 'RImborsa questo ordine'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_87b730dc199f601ee61bd060832d31c4'] = 'Importo che può essere rimborsato'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_fe8e3a6a5a381b3e5a771ec86529cabd'] = 'L\'importo verrà aggiornato quando il rimborso verrà confermato da HiPay Enterprise.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_1e424c220510d18ae97531f8ef9ba8a1'] = 'Tipo rimborso'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ae94f80b3ce82062a5dd7815daa04f9d'] = 'Completo'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_44ffd38a6dea695cbe2b34efdcc6cf27'] = 'Parziale'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_dd8366c780bd2ce22a842d6384fec8b2'] = 'Importo rimborsato'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_63d5049791d9d79d86e9a108b0a999ca'] = 'Referenza'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_df644ae155e79abf54175bd15d75f363'] = 'Nome prodotto'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prezzo unitario'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_cc61945cbbf46721a053467c395c666f'] = 'Rimborsato'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_6ebde8a987c71dd0de0c9c2454147301'] = 'Qtà da rimborsare'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_f111bfbf8b73344b9ef0c9a8da6b2779'] = 'Rimborsa spese di consegna'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_104d9898c04874d0fbac36e125fa1369'] = 'Sconto'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_221de160fc25ce07f3140f3ab19f1c94'] = 'Rimborsa sconto'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_96b0141273eabab320119c467cdcaf17'] = 'Totale'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_76f0ed934de85cc7131910b32ede7714'] = 'Rimborso'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_29e9b3a618b4e1a0332dcf4e89139624'] = 'Sei sicuro di voler rimborsare quest\'ordine?'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_170e56581f50a891010abea41cd8fea3'] = 'L\'importo da rimborsare deve essere superiore a zero.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_8277e2277acde3ac16e6bae1711ba57d'] = 'L\'importo da rimborsare deve essere inferiore all\'importo rimborsabile.'; -$_MODULE['<{hipay_enterprise}prestashop>refund.partial_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Devi rimborsare lo sconto perché il prossimo rimborso sarà inferiore all\'importo del totale sconto.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_0e6fd9532c268028a19082bdadecc041'] = 'Il tuo ordine è in attesa di una conferma di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_24deaba66b4e5ccfdbe61d763a755118'] = 'Una volta approvato, questo sarà disponibile nel tuo'; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6348d16e8e545de71d29ac6a1c20f517'] = 'storico ordini '; -$_MODULE['<{hipay_enterprise}prestashop>pending-16_6110e3692a789bcff0870b04b13a06bb'] = 'Torna alla Home'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Il tuo ordine è stato rifiutato.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_2758fccb8c7506009717e9834717c238'] = 'Il tuo ordine è stato cancellato.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_abd7da5d669688ffadf2ee23046eb1ca'] = 'Abbiamo verificato un problema col tuo ordine. Si prega di contattare il nostro'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Supporto Clienti'; -$_MODULE['<{hipay_enterprise}prestashop>exception-16_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello '; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_0e6fd9532c268028a19082bdadecc041'] = 'Il tuo ordine è in attesa di una conferma di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_24deaba66b4e5ccfdbe61d763a755118'] = 'Una volta approvato, questo sarà disponibile nel tuo'; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6348d16e8e545de71d29ac6a1c20f517'] = 'storico ordini '; -$_MODULE['<{hipay_enterprise}prestashop>pending-17_6110e3692a789bcff0870b04b13a06bb'] = 'Torna alla Home'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_7c19cd047f4d4e18d718c5ac6687fa14'] = 'Il tuo ordine è stato rifiutato.'; -$_MODULE['<{hipay_enterprise}prestashop>decline-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato cancellato.'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_abd7da5d669688ffadf2ee23046eb1ca'] = 'Abbiamo verificato un problema col tuo ordine. Si prega di contattare il nostro'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Supporto Clienti'; -$_MODULE['<{hipay_enterprise}prestashop>exception-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_0ca2b5535330f021917c16883385ed15'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_2758fccb8c7506009717e9834717c238'] = 'Il tuo ordine è stato cancellato.'; -$_MODULE['<{hipay_enterprise}prestashop>cancel-17_4e37eee382169d81a8613302503e7bc2'] = 'Torna al carrello'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mio account'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Storico ordini'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Carte credito/debito salvate'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_da81963dc2680178bc582204ae0b6b5d'] = ' Ecco le carte di credito salvate per gli ordini precedenti.'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_a44217022190f5734b2f72ba1e4f8a79'] = 'Numero carta'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Proprietario carta'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8c1279db4db86553e4b9682f78cf500e'] = 'Data scadenza'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancella'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Non hai carte di credito/debito salvate.'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-16_bb200a83661c2dfc29aea1435ddc05b0'] = 'Sei sicuro di voler cancellare questa carta?'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_096b0deeaf40ab7e3e3d2e1cb50a7850'] = 'Salva carta di credit/debito'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_a44217022190f5734b2f72ba1e4f8a79'] = 'Numero carta'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_5528ff0ed7af8f48fbc767b808aaaee1'] = 'Proprietario carta'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_8c1279db4db86553e4b9682f78cf500e'] = 'Data scadenza'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancella'; -$_MODULE['<{hipay_enterprise}prestashop>user-token-17_bb200a83661c2dfc29aea1435ddc05b0'] = 'Sei sicuro di voler cancellare questa carta?'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo ordine'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click )'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-16_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_f1d3b424cd68795ecaa552883759aceb'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentformiframe-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_b7d2f0f194257c6728603e53c60f8101'] = 'La richiesta è stata rifiutata per un un errore validazione. Si prega di verificare i dettagli della carta inseriti.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise non è temporaneamente in grado di processare la richiesta. Si prega di più tardi.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_df2336ccada3afc92ed66de25d8fc3db'] = 'È stata identificata un\'azione non consentita, il pagamento è stato annullato.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5703ad364b7ddaa8c9275b949aa89902'] = 'Si prega di selezionare una delle carte salvate prima di continuare.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_5f36cf760a5c474cc32a6d35d9c50d05'] = 'Codice errore '; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato annullato.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_35895cff7df70dab18783453e2bd241f'] = 'Paga con %s'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_9354dc0b37176ebaf3ce2f4adc85ef60'] = 'Pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo ordine'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_879f6b8877752685a966564d072f498f'] = 'Il tuo carrello è vuoto.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_c15aa73e3fc896d9e1365e5065bcd22b'] = 'Pagamento HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_25065e3ef9274f9b0e3088340f6d79e6'] = 'Paga con carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_d1c88d77a5f5e4417d8b85a938103756'] = 'Importo da pagare'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_99938b17c91170dfb0c2f3f8bc9f2a85'] = 'Paga'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-16_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-direct_post-17_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_page-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_148b2bc3888ea4c45fb942c1f2d24005'] = 'Paga con una nuova carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_069616c7259ee048bd594d10c8ee1cd7'] = 'Il tuo pagamento è in elaborazione. Attendere prego.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted_fields-17_755e746151fd31031acf6a0e611efd6f'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_2c9b5b15a6d3cc951ca57c65e4966fd3'] = 'Sig'; -$_MODULE['<{hipay_enterprise}prestashop>inputgender_7f2a1b59ac1ab6d2d892dbbf4f132c40'] = 'Sigra'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_25065e3ef9274f9b0e3088340f6d79e6'] = 'Pagato con carta di credito'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pagato con'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo.'; -$_MODULE['<{hipay_enterprise}prestashop>cc.paymentoption_c7cc9229632063f7337e50d31f713cec'] = '(modalità Test)'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_d22e8bf6263dfeb9e56945a2075b6b34'] = 'Pagato con'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo.'; -$_MODULE['<{hipay_enterprise}prestashop>local.paymentoption_e755d43d98e3d597b4492d2e6493ffed'] = '(test mode)'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_7f6c29842152c67b71b49d97ef59b277'] = 'Questo campo è obbligatorio'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_52dc8faa28d49a8a9c67114f3a1ee03c'] = 'IBAN errato'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_1ec9c387d8257bf02b3594d009c8603b'] = 'BIC errato'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_254403217719796723eb58fa41aea7ec'] = 'Numero carta di credito errato'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0e4fc7d1593232a8c43233dbc7a3188e'] = 'CPF errato'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_945e1955beccc1a37f03a296edd8a13c'] = 'CPN/CURP errato'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ab46006a075d4237288ca235f0f68cb3'] = 'Un errore è accaduto con la richiesta. '; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_931d3a3ad177dd96a28c9642fec11b01'] = 'Numero carta'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_f7c7b71c823f4afa44065aa411c40223'] = 'Nome sulla carta'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_26505a0eb1335c7011de6447c96d04eb'] = 'MM / YY'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_ad05f78187c942f9dd521605fa81f1ba'] = 'MM'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_0867f43e27585e019c13f7f4b7c4ab6b'] = 'YY'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_57ac36d61e6c554c83a0159d70a1f373'] = 'La data di scadenza errata. Si prega di inserire una data successiva a quella corrente.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_3d68ca85b20bc6e3caba123a019cb109'] = 'Codice di sicurezza a 3 cifre solitamente sul retro della carta. Le carte American Express hanno un codice di 4 cifre situato nella parte anteriore.'; -$_MODULE['<{hipay_enterprise}prestashop>js.strings_407acada64f6cf4820649be30131416a'] = 'Cos\'è il CVC ?'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Si è verificato un errore'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_b7d2f0f194257c6728603e53c60f8101'] = 'La richeista è stata rigettata a causa di un errore di validazione. Si prega di verificare i dettagli della carta inseriti.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_6c51eee5b3fc97e7e9322a4e41da6252'] = 'HiPay Enterprise non è temporaneamente in grado di processare la richiesta. Si prega di più tardi.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_df2336ccada3afc92ed66de25d8fc3db'] = 'È stata identificata un\'azione non consentita, il pagamento è stato annullato.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_5703ad364b7ddaa8c9275b949aa89902'] = 'Si prega di selezionare una delle carte salvate prima di continuare.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_cddcf1bdadaa3a50e049409f5addb89b'] = 'Questo tipo di carta di credito o valuta dell\'ordine non sono supportati. Si prega di scegliere un altro metodo di pagamento.'; -$_MODULE['<{hipay_enterprise}prestashop>paymenterror_291558103a4553ea6d985a6645e3d65b'] = 'Si è verificato un errore, il pagamento è stato annullato.'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_b7d2f0f194257c6728603e53c60f8101'] = 'La richiesta è stata rifiutata per un un errore validazione. Si prega di verificare i dettagli della carta inseriti.'; -$_MODULE['<{hipay_enterprise}prestashop>savetoken_001452862788e21bf55a8b4f16e028c2'] = 'Salva carta di credito (Pagamento One Click)'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_d7a3b3bf767faf334c85f11c8ba678c8'] = 'Paga con una carta di credito salvata'; -$_MODULE['<{hipay_enterprise}prestashop>oneclick_5d5f8125c7c41d3d32de532877b2bf49'] = 'Data Esp.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_9993039cea3e460750a2248fd8471415'] = 'Nome e cognome'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_931d3a3ad177dd96a28c9642fec11b01'] = 'Numero Carta'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_95b16127e70e8a90220404fb48343182'] = 'Data scadenza'; -$_MODULE['<{hipay_enterprise}prestashop>paymentform-hosted-fields_5ea7f231296949070013bc43715aae01'] = 'CVC'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_bddd470742bc2329733e489ed05a8ba1'] = 'Il tuo ordine è completo.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_b2f40690858b404ed10e62bdf422c704'] = 'Importo'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_63d5049791d9d79d86e9a108b0a999ca'] = 'Referenza'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_19c419a8a4f1cd621853376a930a2e24'] = 'Un\'email è stata inviata con queste informazioni.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_ca7e41a658753c87973936d7ce2429a8'] = 'Se avete domande, commenti o dubbi, per favore contattate il nostro'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_cd430c2eb4b87fb3b49320bd21af074e'] = 'esperto team di assistenza clienti.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_f301b6890eb0ba1b5d2c9c77e5886f2a'] = 'Il tuo ordine non è stato accettato.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentreturn_caa4088f1d295cf8ce8e358eb975ab32'] = 'Si prega di provare a ordinare nuovamente.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_bebe59b8b52e1699f79c24e6fbc6d669'] = 'Azioni HiPay'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_c2b1a89a01351dbd7c5d11e9b5ba9507'] = 'Nessuna azione disponibile'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_0585239ca102e86bcd54fb7317b29b03'] = 'È stato richiesto il rimborso, le azioni sono disabilitate durante il processo di validazione.'; -$_MODULE['<{hipay_enterprise}prestashop>maintenance_e2de43f39421491b1de87cccc40aa4d7'] = 'Il rimborso o la cattura è stata convalidata dal back office HiPay: devi procedere col rimborso o la cattua dal back office HiPay.'; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_bd6963a84800b01d6639adc5c407fcf4'] = 'Conferma il tuo ordine per andare alla pagina di pagamento '; -$_MODULE['<{hipay_enterprise}prestashop>paymentlocalform_8421ff4eedd1ef36b494adf1a5500c8b'] = 'Verrai reindirizzato a una pagina di pagamento esterna. Si prega di non aggiornare la pagina durante il processo'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestione One-Click'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-16_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_8cfac2e9c1b41846c3ff63095426f75b'] = 'Gestione One-Click'; -$_MODULE['<{hipay_enterprise}prestashop>my-account-17_e79f545fd93ed1aab5c175a7af2e9c73'] = 'Gestisci carte di credito/debito salvate'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_02e383a51b8b0406237283795478178b'] = 'Si prega di inserire l\'importo'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c56e444724c6564fd77922c01950efa'] = 'Si prega di inserire un importo superiore a zero'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_03ed23bea6d995c37463fc5818e9d778'] = 'L\'importo eccede quello autorizzato'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_5bf54f627807f6a4247706d80758657c'] = 'Nessuna referenza di transazione collegata a quest\'ordine'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_076fba4ed5dbb43df81bf55bfcc139b7'] = 'Scegli almeno un elemento da catturare'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_1216ce40106a95ed7b36d1e97b31599d'] = 'L\'importo da catturare deve essere superiore a zero.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c71d3ad9c88bcad768b88af9d7b31bd5'] = 'L\'importo della cattura deve essere inferiore all\'importo che deve essere ancora catturato.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_7c1231480954da0e29816ecc4bb5f90e'] = 'Devi catturare lo sconto perché l\'importo di cattura successivo sarà inferiore all\'importo dello sconto complessivo.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaycapture_c0b9b794e1a576ce7a38dce6a245c67c'] = 'La catura è stata validata.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_7f982d1fbaeb234e306099b815d460c7'] = 'L\'algoritomo di Hash per %s è già stato impostato con %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_1ef3f246df0161fbdd35caf4e839f5bd'] = 'L\'algoritomo di Hash per %s è stato sincronizzato con %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_2afd1e4ce785a3aedf46f8406827049b'] = 'Si è verificato un errore per %s : %s'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaysynchronizehashing_85640588e13fe53dd5601fa118794cbb'] = 'L\'algoritomo di Hash per %s non è stato aggiornato : devi inserire le credenziali.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_02e383a51b8b0406237283795478178b'] = 'Si prega di inserire un importo'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_7c56e444724c6564fd77922c01950efa'] = 'Si prega di inserire un importo superiore a zero'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_03ed23bea6d995c37463fc5818e9d778'] = 'L\'importo eccede quello autorizzato'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_5bf54f627807f6a4247706d80758657c'] = 'Nessuna referenza di transazione collegata a quest\'ordine'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_39d2b7e414467c725ba2be7ff1d98602'] = 'Scegli almeno un elemento da rimborsare'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_170e56581f50a891010abea41cd8fea3'] = 'L\'importo da rimborsare deve essere superiore a zero.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_8277e2277acde3ac16e6bae1711ba57d'] = 'L\'importo del rimborso deve essere inferiore all\'importo ancora da rimborsare.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_aa8c6ada0b8af0060be494414c7aa3aa'] = 'Devi rimborsare lo sconto perché il prossimo importo del rimborso sarà inferiore all\'importo dello sconto totale. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipayrefund_a87c213c9a08d3c38c5cc5876f1ea995'] = 'Il rimborso è stato validato.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_1c35ce43b7738c6efd374c31b7bf85bb'] = 'Il pagamento è stato processato.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_9e216745f67cad13afde8537f3490021'] = 'Il pagamento è stato rifiutato.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_2e23e8011f608f1ae2c6f7421c07fc6e'] = 'Il pagamento è in sospeso.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_fab40480530d65ca2b295a6ea01acaea'] = 'Si è verificato un errore col tuo pagamento. '; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaymoto_caaf77b3c36dcc77d3ae08b76a7a34c0'] = 'Il pagamento è stato cancellato.'; -$_MODULE['<{hipay_enterprise}prestashop>adminhipaychallenge_42abbba904ddc6f8a757b162a0fb23ed'] = 'La transazione in Challenge è stata validata.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_8a6a1ae7df2ffd93f8cb4ea79d944c99'] = 'Non hai salvato la carta di credito/debito.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_3099e4792d8c7bf8970f8250b3d07715'] = 'La carta di credito è stata cancellata con successo.'; -$_MODULE['<{hipay_enterprise}prestashop>usertoken_cea9a47d24ce678d0148ad6d9208f087'] = 'Questa carta di credito non esiste.'; diff --git a/src/hipay_enterprise/upgrade/Upgrade-2.7.1.php b/src/hipay_enterprise/upgrade/Upgrade-2.7.1.php new file mode 100755 index 00000000..8e317234 --- /dev/null +++ b/src/hipay_enterprise/upgrade/Upgrade-2.7.1.php @@ -0,0 +1,338 @@ + + * @copyright 2017 HiPay + * @license https://github.com/hipay/hipay-enterprise-sdk-prestashop/blob/master/LICENSE.md + */ + +require_once(dirname(__FILE__) . '/../classes/helper/HipayDBQuery.php'); + +function upgrade_module_2_7_1($module) +{ + $log = $module->getLogs(); + + $log->logInfos("Upgrade to 2.7.1"); + + try { + $keepParameters = array( + "visa" => array( + "currencies" => "", + "countries" => "", + "minAmount" => "", + "maxAmount" => "", + "frontPosition" => "", + "activated" => "" + ), + "mastercard" => array( + "currencies" => "", + "minAmount" => "", + "maxAmount" => "", + "countries" => "", + "frontPosition" => "", + "activated" => "" + ), + "cb" => array( + "currencies" => "", + "minAmount" => "", + "maxAmount" => "", + "countries" => "", + "frontPosition" => "", + "activated" => "" + ), + "maestro" => array( + "currencies" => "", + "minAmount" => "", + "maxAmount" => "", + "countries" => "", + "frontPosition" => "", + "activated" => "" + ), + "american-express" => array( + "currencies" => "", + "minAmount" => "", + "maxAmount" => "", + "countries" => "", + "frontPosition" => "", + "activated" => "" + ), + "bcmc" => array( + "currencies" => "", + "minAmount" => "", + "maxAmount" => "", + "countries" => "", + "frontPosition" => "", + "activated" => "" + ), + "3xcb" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "3xcb-no-fees" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "4xcb" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "4xcb-no-fees" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "4xcb-no-fees" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "aura" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "banamex" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "banco-do-brasil" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "bbva-bancomer" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "boleto-bancario" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "bradesco" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "caixa" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "itau" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "oxxo" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "santander-cash" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "santander-home-banking" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "dexia-directnet" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "bnpp-3xcb" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "bnpp-4xcb" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "giropay" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "ideal" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "ing-homepay" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "klarnainvoice" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "paypal" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "postfinance-card" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "postfinance-efinance" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "przelewy24" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "sdd" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "sisal" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "sofort-uberweisung" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "", + "currencies" => "", + "countries" => "" + ), + "webmoney-transfert" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "yandex" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "carte-cadeau" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ), + "mybank" => array( + "displayName" => "", + "frontPosition" => "", + "minAmount" => "", + "maxAmount" => "", + "activated" => "" + ) + ); + + // needed to update new config coming from the PHP SDK + $module->hipayConfigTool->updateFromJSONFile($keepParameters); + + return true; + } catch (Exception $e) { + $log->logException($e); + return false; + } +} diff --git a/src/hipay_enterprise/views/css/back.css b/src/hipay_enterprise/views/css/back.css index bc470264..7ffe1087 100755 --- a/src/hipay_enterprise/views/css/back.css +++ b/src/hipay_enterprise/views/css/back.css @@ -225,3 +225,16 @@ padding-top: 7px; font-weight: 600; } + +/***********************************/ +/** MAIN ADMIN VIEW **/ +/***********************************/ +#hipayNotifLogo { + max-height: 50px; + max-width: 100% !important; +} + +.vertical-align { + display: flex; + align-items: center; +} \ No newline at end of file diff --git a/src/hipay_enterprise/views/templates/admin/panelHeader/technicals.tpl b/src/hipay_enterprise/views/templates/admin/panelHeader/technicals.tpl index 729e8a6a..f5dca9f6 100755 --- a/src/hipay_enterprise/views/templates/admin/panelHeader/technicals.tpl +++ b/src/hipay_enterprise/views/templates/admin/panelHeader/technicals.tpl @@ -47,6 +47,18 @@
+ + {* Showing update alert if needed *} + {if $updateNotif->getVersion() != $updateNotif->getNewVersion()} +
+
+ {l s='There is a new version of HiPay Enterprise module available.' mod='hipay_enterprise'} + {l s='View version %s details' mod='hipay_enterprise' sprintf=$updateNotif->getNewVersion()} + {l s='or' mod='hipay_enterprise'} {l s='update now' mod='hipay_enterprise'}. +
+
+ {/if} + {if $config_hipay.account.global.sandbox_mode && (empty($config_hipay.account.sandbox.api_username_sandbox) || empty($config_hipay.account.sandbox.api_password_sandbox) || empty($config_hipay.account.sandbox.api_secret_passphrase_sandbox) )}
diff --git a/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/creditcard.tpl b/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/creditcard.tpl index 4a05e416..0cc5a209 100755 --- a/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/creditcard.tpl +++ b/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/creditcard.tpl @@ -148,7 +148,7 @@ name="{$creditCard@key}_currencies[]" multiple="multiple" class="multiselect-currency"> {foreach $limitedCurrencies as $currency } - {/foreach} diff --git a/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/detail-local-payment.tpl b/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/detail-local-payment.tpl index 7ab27c64..34e59084 100755 --- a/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/detail-local-payment.tpl +++ b/src/hipay_enterprise/views/templates/admin/tabs/payment-methods/detail-local-payment.tpl @@ -157,7 +157,7 @@ diff --git a/src/hipay_enterprise/views/templates/hook/maintenance.tpl b/src/hipay_enterprise/views/templates/hook/maintenance.tpl index d1bff3a9..6426bc4a 100755 --- a/src/hipay_enterprise/views/templates/hook/maintenance.tpl +++ b/src/hipay_enterprise/views/templates/hook/maintenance.tpl @@ -74,3 +74,4 @@ }); +
\ No newline at end of file diff --git a/src/hipay_enterprise/views/templates/hook/updateNotif.tpl b/src/hipay_enterprise/views/templates/hook/updateNotif.tpl new file mode 100755 index 00000000..bb9db36c --- /dev/null +++ b/src/hipay_enterprise/views/templates/hook/updateNotif.tpl @@ -0,0 +1,43 @@ +{** + * HiPay Enterprise SDK Prestashop + * + * 2019 HiPay + * + * NOTICE OF LICENSE + * + * @author HiPay + * @copyright 2019 HiPay + * @license https://github.com/hipay/hipay-enterprise-sdk-prestashop/blob/master/LICENSE.md + *} + +{* Showing update block if needed *} +{if $updateNotif->getVersion() != $updateNotif->getNewVersion()} +
+
+ + {l s='HiPay information' mod='hipay_enterprise'} +
+ +
+
+ +
+
+

{l s='There is a new version of HiPay Enterprise module available.' mod='hipay_enterprise'} + + {l s='View version %s details' mod='hipay_enterprise' sprintf=$updateNotif->getNewVersion()} + + {l s='or' mod='hipay_enterprise'} + {l s='update now' mod='hipay_enterprise'}. +

+
+
+
+ {* Script to move the block on the top of the column. Else it appears below everything *} + +{/if} \ No newline at end of file