[*] PDF : PDF templates are now into the root directory, you can override those templates into the /theme/<name>/pdf/ directory
This commit is contained in:
12
cache/class_index.php
vendored
12
cache/class_index.php
vendored
@@ -13,7 +13,7 @@
|
||||
'AddressesControllerCore' => 'controllers/front/AddressesController.php',
|
||||
'AdminAccessController' => 'override/controllers/admin/AdminAccessController.php',
|
||||
'AdminAccessControllerCore' => 'controllers/admin/AdminAccessController.php',
|
||||
'AdminAccountingConfigurationController' => '',
|
||||
'AdminAccountingConfigurationController' => 'override/controllers/admin/AdminAccountingConfigurationController.php',
|
||||
'AdminAccountingConfigurationControllerCore' => 'controllers/admin/AdminAccountingConfigurationController.php',
|
||||
'AdminAccountingExportController' => 'override/controllers/admin/AdminAccountingExportController.php',
|
||||
'AdminAccountingExportControllerCore' => 'controllers/admin/AdminAccountingExportController.php',
|
||||
@@ -122,7 +122,7 @@
|
||||
'AdminPPreferencesControllerCore' => 'controllers/admin/AdminPPreferencesController.php',
|
||||
'AdminPaymentController' => 'override/controllers/admin/AdminPaymentController.php',
|
||||
'AdminPaymentControllerCore' => 'controllers/admin/AdminPaymentController.php',
|
||||
'AdminPdfController' => '',
|
||||
'AdminPdfController' => 'override/controllers/admin/AdminPdfController.php',
|
||||
'AdminPdfControllerCore' => 'controllers/admin/AdminPdfController.php',
|
||||
'AdminPerformanceController' => 'override/controllers/admin/AdminPerformanceController.php',
|
||||
'AdminPerformanceControllerCore' => 'controllers/admin/AdminPerformanceController.php',
|
||||
@@ -478,7 +478,7 @@
|
||||
'OrderSlipCore' => 'classes/order/OrderSlip.php',
|
||||
'OrderState' => 'override/classes/order/OrderState.php',
|
||||
'OrderStateCore' => 'classes/order/OrderState.php',
|
||||
'PDF' => 'override/classes/pdf/PDF.php',
|
||||
'PDF' => 'override/classes/PDF.php',
|
||||
'PDFCore' => 'classes/pdf/PDF.php',
|
||||
'PDFGenerator' => 'override/classes/pdf/PDFGenerator.php',
|
||||
'PDFGeneratorCore' => 'classes/pdf/PDFGenerator.php',
|
||||
@@ -560,7 +560,7 @@
|
||||
'StateCore' => 'classes/State.php',
|
||||
'StatisticsController' => 'override/controllers/front/StatisticsController.php',
|
||||
'StatisticsControllerCore' => 'controllers/front/StatisticsController.php',
|
||||
'Stock' => 'override/classes/stock/Stock.php',
|
||||
'Stock' => 'override/classes/Stock.php',
|
||||
'StockAvailable' => 'override/classes/stock/StockAvailable.php',
|
||||
'StockAvailableCore' => 'classes/stock/StockAvailable.php',
|
||||
'StockCore' => 'classes/stock/Stock.php',
|
||||
@@ -571,9 +571,9 @@
|
||||
'StockManagerInterface' => 'classes/stock/StockManagerInterface.php',
|
||||
'StockManagerModule' => 'override/classes/stock/StockManagerModule.php',
|
||||
'StockManagerModuleCore' => 'classes/stock/StockManagerModule.php',
|
||||
'StockMvt' => 'override/classes/stock/StockMvt.php',
|
||||
'StockMvt' => 'override/classes/StockMvt.php',
|
||||
'StockMvtCore' => 'classes/stock/StockMvt.php',
|
||||
'StockMvtReason' => 'override/classes/stock/StockMvtReason.php',
|
||||
'StockMvtReason' => 'override/classes/StockMvtReason.php',
|
||||
'StockMvtReasonCore' => 'classes/stock/StockMvtReason.php',
|
||||
'StockMvtWS' => 'override/classes/stock/StockMvtWS.php',
|
||||
'StockMvtWSCore' => 'classes/stock/StockMvtWS.php',
|
||||
|
||||
@@ -56,7 +56,7 @@ abstract class HTMLTemplateCore
|
||||
'shop_name' => $shop_name
|
||||
));
|
||||
|
||||
return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/header.tpl');
|
||||
return $this->smarty->fetch($this->getTemplate('header'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -76,7 +76,7 @@ abstract class HTMLTemplateCore
|
||||
'free_text' => Configuration::get('PS_INVOICE_FREE_TEXT')
|
||||
));
|
||||
|
||||
return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/footer.tpl');
|
||||
return $this->smarty->fetch($this->getTemplate('footer'));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -102,12 +102,15 @@ abstract class HTMLTemplateCore
|
||||
*/
|
||||
protected function getLogo()
|
||||
{
|
||||
$logo = '';
|
||||
$logo = '';
|
||||
// TCPDF always uses the complete physical path, beware of PrestaShop virtual URI or complete path using symlinks
|
||||
$physical_uri = Context::getContext()->shop->physical_uri.'img/';
|
||||
|
||||
if (Configuration::get('PS_LOGO_INVOICE') != false && file_exists(_PS_IMG_DIR_.Configuration::get('PS_LOGO_INVOICE')))
|
||||
$logo = _PS_IMG_DIR_.Configuration::get('PS_LOGO_INVOICE');
|
||||
$logo = $physical_uri.Configuration::get('PS_LOGO_INVOICE');
|
||||
else if (Configuration::get('PS_LOGO') != false && file_exists(_PS_IMG_DIR_.Configuration::get('PS_LOGO')))
|
||||
$logo = _PS_IMG_DIR_.Configuration::get('PS_LOGO');
|
||||
$logo = $physical_uri.Configuration::get('PS_LOGO');
|
||||
|
||||
return $logo;
|
||||
}
|
||||
|
||||
@@ -145,6 +148,28 @@ abstract class HTMLTemplateCore
|
||||
*/
|
||||
abstract public function getBulkFilename();
|
||||
|
||||
/**
|
||||
* If the template is not present in the theme directory, it will return the default template
|
||||
* in _PS_PDF_DIR_ directory
|
||||
*
|
||||
* @param $template_name
|
||||
* @return string
|
||||
*/
|
||||
protected function getTemplate($template_name)
|
||||
{
|
||||
$template = false;
|
||||
$default_template = _PS_PDF_DIR_.'/'.$template_name.'.tpl';
|
||||
$overriden_template = _PS_THEME_DIR_.'/pdf/'.$template_name.'.tpl';
|
||||
|
||||
if (file_exists($overriden_template))
|
||||
$template = $overriden_template;
|
||||
else if (file_exists($default_template))
|
||||
$template = $default_template;
|
||||
|
||||
return $template;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Translatation method
|
||||
* @param string $string
|
||||
@@ -157,13 +182,19 @@ abstract class HTMLTemplateCore
|
||||
if (!Validate::isLangIsoCode($iso))
|
||||
Tools::displayError(sprintf('Invalid iso lang (%s)', Tools::safeOutput($iso)));
|
||||
|
||||
$file_name = _PS_THEME_DIR_.'pdf/lang/'.$iso.'.php';
|
||||
if (!file_exists($file_name) || !include($file_name))
|
||||
Tools::displayError(sprintf('Cannot include PDF translation language file : %s', $file_name));
|
||||
$override_i18n_file = _PS_THEME_DIR_.'pdf/lang/'.$iso.'.php';
|
||||
$i18n_file = _PS_TRANSLATIONS_DIR_.$iso.'/pdf.php';
|
||||
if (file_exists($override_i18n_file))
|
||||
$i18n_file = $override_i18n_file;
|
||||
|
||||
if (!include($i18n_file))
|
||||
Tools::displayError(sprintf('Cannot include PDF translation language file : %s', $i18n_file));
|
||||
|
||||
if (!isset($_LANGPDF) || !is_array($_LANGPDF))
|
||||
return str_replace('"', '"', $string);
|
||||
$key = md5(str_replace('\'', '\\\'', $string));
|
||||
|
||||
$key = md5(str_replace('\'', '\\\'', $string));
|
||||
|
||||
$str = (key_exists('PDF'.$key, $_LANGPDF) ? $_LANGPDF['PDF'.$key] : $string);
|
||||
|
||||
return $str;
|
||||
|
||||
@@ -77,7 +77,7 @@ class HTMLTemplateInvoiceCore extends HTMLTemplate
|
||||
'customer' => $customer
|
||||
));
|
||||
|
||||
return $this->smarty->fetch($this->getTemplate($country->iso_code));
|
||||
return $this->smarty->fetch($this->getTemplateByCountry($country->iso_code));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -96,25 +96,28 @@ class HTMLTemplateInvoiceCore extends HTMLTemplate
|
||||
'product_tax_breakdown' => $this->order_invoice->getProductTaxesBreakdown(),
|
||||
'shipping_tax_breakdown' => $this->order_invoice->getShippingTaxesBreakdown($this->order),
|
||||
'ecotax_tax_breakdown' => $this->order_invoice->getEcoTaxTaxesBreakdown(),
|
||||
'wrapping_tax_breakdown' => $this->order_invoice->getWrappingTaxesBreakdown(),
|
||||
'order' => $this->order,
|
||||
'order_invoice' => $this->order_invoice
|
||||
));
|
||||
|
||||
return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/invoice.tax-tab.tpl');
|
||||
return $this->smarty->fetch($this->getTemplate('invoice.tax-tab'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the invoice template associated to the country iso_code
|
||||
* @param string $iso_country
|
||||
*/
|
||||
protected function getTemplate($iso_country)
|
||||
protected function getTemplateByCountry($iso_country)
|
||||
{
|
||||
$file = Configuration::get('PS_INVOICE_MODEL');
|
||||
$template = _PS_THEME_DIR_.'/pdf/'.$file.'.tpl';
|
||||
|
||||
$iso_template = _PS_THEME_DIR_.'/pdf/'.$file.'.'.$iso_country.'.tpl';
|
||||
if (file_exists($iso_template))
|
||||
$template = $iso_template;
|
||||
// try to fetch the iso template
|
||||
$template = $this->getTemplate($file.'.'.$iso_country);
|
||||
|
||||
// else use the default one
|
||||
if (!$template)
|
||||
$template = $this->getTemplate($file);
|
||||
|
||||
return $template;
|
||||
}
|
||||
|
||||
@@ -46,6 +46,7 @@ define('_PS_ADMIN_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/admin/');
|
||||
define('_PS_TRANSLATIONS_DIR_', _PS_ROOT_DIR_.'/translations/');
|
||||
define('_PS_DOWNLOAD_DIR_', _PS_ROOT_DIR_.'/download/');
|
||||
define('_PS_MAIL_DIR_', _PS_ROOT_DIR_.'/mails/');
|
||||
define('_PS_PDF_DIR_', _PS_ROOT_DIR_.'/pdf/');
|
||||
define('_PS_ALL_THEMES_DIR_', _PS_ROOT_DIR_.'/themes/');
|
||||
define('_PS_IMG_DIR_', _PS_ROOT_DIR_.'/img/');
|
||||
if (!defined('_PS_MODULE_DIR_'))
|
||||
@@ -146,3 +147,4 @@ define('_PS_SMARTY_CONSOLE_OPEN_BY_URL_', 1);
|
||||
define('_PS_SMARTY_CONSOLE_OPEN_', 2);
|
||||
|
||||
define('_PS_JQUERY_VERSION_', '1.4.4');
|
||||
|
||||
|
||||
@@ -557,8 +557,14 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
if ($this->tabAccess['edit'] === '1')
|
||||
{
|
||||
if (!Validate::isLanguageIsoCode(Tools::strtolower(Tools::getValue('lang'))))
|
||||
die(Tools::displayError());
|
||||
$this->writeTranslationFile('PDF', _PS_THEME_DIR_.'pdf/lang/'.Tools::strtolower(Tools::getValue('lang')).'.php', 'PDF');
|
||||
throw new PrestaShopException('Invalid iso code ['.Tools::getValue('lang').']');
|
||||
|
||||
// Only the PrestaShop team should write the translations into the _PS_TRANSLATIONS_DIR_
|
||||
if ((_THEME_NAME_ == self::DEFAULT_THEME_NAME) && _PS_MODE_DEV_)
|
||||
$this->writeTranslationFile('PDF', _PS_TRANSLATIONS_DIR_.Tools::strtolower(Tools::getValue('lang')).'/pdf.php', 'PDF');
|
||||
else
|
||||
$this->writeTranslationFile('PDF', _PS_THEME_DIR_.'pdf/lang/'.Tools::strtolower(Tools::getValue('lang')).'.php', 'PDF');
|
||||
|
||||
}
|
||||
else
|
||||
$this->errors[] = Tools::displayError('You do not have permission to edit here.');
|
||||
@@ -1845,25 +1851,42 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
public function initFormPDF()
|
||||
{
|
||||
$lang = Tools::strtolower(Tools::getValue('lang'));
|
||||
$_LANG = array();
|
||||
$_LANGPDF = array();
|
||||
$missing_translations_pdf = array();
|
||||
|
||||
if (!Validate::isLangIsoCode($lang))
|
||||
die('Invalid iso lang ('.Tools::safeOutput($lang).')');
|
||||
|
||||
$i18n_dir = _PS_THEME_DIR_.'pdf/lang/';
|
||||
$i18n_file = $i18n_dir.$lang.'.php';
|
||||
$i18n_dir = _PS_TRANSLATIONS_DIR_.$lang.'/';
|
||||
$default_i18n_file = $i18n_dir.'pdf.php';
|
||||
|
||||
if ((_THEME_NAME_ != self::DEFAULT_THEME_NAME) || !_PS_MODE_DEV_)
|
||||
{
|
||||
$i18n_dir = _PS_THEME_DIR_.'pdf/lang/';
|
||||
$i18n_file = $i18n_dir.$lang.'.php';
|
||||
}
|
||||
else
|
||||
$i18n_file = $default_i18n_file;
|
||||
|
||||
$this->checkDirAndCreate($i18n_file);
|
||||
if (!file_exists($i18n_file))
|
||||
if (!file_put_contents($i18n_file, "<?php\n\nglobal \$_LANGPDF;\n\$_LANGPDF = array();\n\n?>"))
|
||||
die('Please create a "'.Tools::strtolower($lang).'.php" file in '.realpath(_PS_ADMIN_DIR_.'/'));
|
||||
die('Please create a "'.$lang.'.php" file in '.$i18n_dir);
|
||||
|
||||
if (!is_writable($i18n_file))
|
||||
die('Cannot write into the "'.$i18n_file);
|
||||
|
||||
unset($_LANGPDF);
|
||||
@include($i18n_file);
|
||||
|
||||
// if the override's translation file is empty load the default file
|
||||
if (!isset($_LANGPDF) || count($_LANGPDF) == 0)
|
||||
@include($default_i18n_file);
|
||||
|
||||
$count = 0;
|
||||
$prefix_key = 'PDF';
|
||||
$tabs_array = array($prefix_key=>array());
|
||||
$regex = '/HTMLTemplate.*::l\(\''._PS_TRANS_PATTERN_.'\'[\)|\,]/U';
|
||||
|
||||
// need to parse PDF.php in order to find $regex and add this to $tabs_array
|
||||
// this has to be done for the core class, and eventually for the override
|
||||
foreach (glob(_PS_CLASS_DIR_.'pdf/*.php') as $filename)
|
||||
@@ -1876,12 +1899,14 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
// parse pdf template
|
||||
/* Search language tags (eg {l s='to translate'}) */
|
||||
$regex = '/\{l s=\''._PS_TRANS_PATTERN_.'\'( js=1)?( pdf=\'true\')?\}/U';
|
||||
foreach (glob( _PS_THEME_DIR_.'/pdf/*.tpl') as $filename)
|
||||
$default_template_files = glob(_PS_PDF_DIR_.'*.tpl');
|
||||
$override_template_files = glob(_PS_THEME_DIR_.'pdf/*.tpl');
|
||||
|
||||
foreach (array_merge($default_template_files, $override_template_files) as $filename)
|
||||
{
|
||||
preg_match_all($regex, file_get_contents($filename), $matches);
|
||||
foreach ($matches[1] as $key)
|
||||
{
|
||||
// Caution ! front has underscore between prefix key and md5, back has not
|
||||
if (isset($_LANGPDF[$prefix_key.md5($key)]))
|
||||
{
|
||||
// @todo check key : md5($key) was initially md5(addslashes($key))
|
||||
@@ -1962,3 +1987,4 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF065ab3a28ca4f16f55f103adc7d0226f'] = 'Lieferadresse';
|
||||
$_LANGPDF['PDF28a59051cd90053f87bacd5f1ffbc0b8'] = 'Rechnungsadresse';
|
||||
$_LANGPDF['PDF2b56b5ec383be252fe778c4c6066b2fb'] = 'Liefer- & Rechnugnsadresse';
|
||||
$_LANGPDF['PDF2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Lieferadresse';
|
||||
$_LANGPDF['PDF3a80d6ec5285dd5d3930db30d04e2b9e'] = 'DE: exkl. Rabatt';
|
||||
$_LANGPDF['PDF5e5f0a863cd129317037e3def37b4097'] = 'Firma:';
|
||||
$_LANGPDF['PDF6c2fbe34c186a6b5725d212ad8cd2432'] = 'Rechnugnsadresse';
|
||||
$_LANGPDF['PDF8a5a12ba783d8cbb761974430d0a4d6a'] = 'Auftragsdatum:';
|
||||
$_LANGPDF['PDFa58b1c9575ab07c5be819243c96d9c0e'] = 'DI: inkl. Rabatt';
|
||||
$_LANGPDF['PDFc7d76074f459eaa296d3eb71efc23eba'] = 'Lieferschein-Nr.';
|
||||
$_LANGPDF['PDFd36a6948b01d3a75ed99858e2bfea939'] = 'Zahlungswiese:';
|
||||
$_LANGPDF['PDFd8b2145d049378e78bd41e65b31213f0'] = 'Auftragsnummer:';
|
||||
$_LANGPDF['PDFdcd320d017d7f3c317bc8b234287bc9f'] = 'REFERENZ';
|
||||
$_LANGPDF['PDFe2f324b87eac820c81e4d4a1105dcddf'] = 'Liefer- & Rechnugnsadresse';
|
||||
$_LANGPDF['PDFe36ba4b339b83cbb3c807bd0eb5610bc'] = 'MENGE';
|
||||
$_LANGPDF['PDFe40007b408ac5f66d2c2e6c54f787c99'] = 'Kostenloser Auftrag';
|
||||
$_LANGPDF['PDFf6244b08d5e0715572f9d4631b425eae'] = 'Produkte zur Rücksendung markiert';
|
||||
$_LANGPDF['PDFf771e4a4df40bf061607fdb8e3f140dc'] = 'Auftragsformular';
|
||||
$_LANGPDF['PDFfb8dada3941116ef49324d81bb944d0a'] = 'Rücksendungs-Nr. \'.sprintf(\'%06d';
|
||||
$_LANGPDF['submitTranslationsPdf'] = '1';
|
||||
|
||||
?>
|
||||
@@ -1,11 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF3a6a6d37bea2c7567f8599ea88b47930'] = 'Total (tax excl.)';
|
||||
$_LANGPDF['PDFc8ba77264f6e923f5ee35abf3108ae7c'] = 'Unit Price (tax excl.)';
|
||||
$_LANGPDF['PDFf4a232c48df10124ee867767a4e7280e'] = 'Base (tax excl.)';
|
||||
$_LANGPDF['PDFfa2ce544158555e8f06c69dd9e681832'] = 'Total (tax incl.)';
|
||||
$_LANGPDF['PDFff5db4935fb0fbf583796b50f05e25bc'] = 'An electronic version of this invoice is available in your account. To access it, login to our website using your e-mail address and password (which you created when placing your first order).';
|
||||
|
||||
?>
|
||||
@@ -1,81 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF01a2436b8e3782c1f99e6b26adf901b2'] = 'Valor Tasa';
|
||||
$_LANGPDF['PDF023f66b09075fa1cc29e74bed9f5ac40'] = 'Detalle de tasa';
|
||||
$_LANGPDF['PDF03ab340b3f99e03cff9e84314ead38c0'] = 'Cnt';
|
||||
$_LANGPDF['PDF065ab3a28ca4f16f55f103adc7d0226f'] = 'Envio';
|
||||
$_LANGPDF['PDF068f80c7519d0528fb08e82137a72131'] = 'Productos';
|
||||
$_LANGPDF['PDF078ac079d154d21533c57bced9fcb10f'] = '(Tasa excl.)';
|
||||
$_LANGPDF['PDF0d8d58008ef5dd7afce337373ef73993'] = 'Fecha:';
|
||||
$_LANGPDF['PDF104d9898c04874d0fbac36e125fa1369'] = 'Descuento';
|
||||
$_LANGPDF['PDF1300f86974cafc2d65eb1f082a26bdf1'] = 'Sumario:';
|
||||
$_LANGPDF['PDF197101c4a1b1fc503dcd6ebee127aa10'] = 'Precio unitario';
|
||||
$_LANGPDF['PDF19abe6c02a26dcd93020396df8d0721c'] = 'Total de vales';
|
||||
$_LANGPDF['PDF1a22913fb1b16ada25c2637af9d44013'] = 'Producto / Referencia';
|
||||
$_LANGPDF['PDF20a34c4e30c5bbe1d3f870ac55f0d831'] = 'Tasa de impuesto';
|
||||
$_LANGPDF['PDF22caf639b05c0fa192e81d58c553c89a'] = 'Total de tasa excl.';
|
||||
$_LANGPDF['PDF28a59051cd90053f87bacd5f1ffbc0b8'] = 'Dirección de facturación';
|
||||
$_LANGPDF['PDF2b56b5ec383be252fe778c4c6066b2fb'] = 'Dirección de facturación y entrega ';
|
||||
$_LANGPDF['PDF2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Dirección de envío';
|
||||
$_LANGPDF['PDF34bfda153cbe51eef5d4a88cdd7b616d'] = 'Por favor imprima este documento y guardarlo en su paquete.';
|
||||
$_LANGPDF['PDF3796bba38e4bc7dbc3ec97d73be42328'] = 'Si las siguientes condiciones no se respetan, nos reservamos el derecho de rechazar el paquete y / o reembolso:';
|
||||
$_LANGPDF['PDF3a6a6d37bea2c7567f8599ea88b47930'] = 'Total TE';
|
||||
$_LANGPDF['PDF3a80d6ec5285dd5d3930db30d04e2b9e'] = 'DE: Descuento excluido';
|
||||
$_LANGPDF['PDF448634536559b1f8aaa975e0aa12b930'] = 'TOTAL A PAGAR';
|
||||
$_LANGPDF['PDF4efeae9def7927946cb4929e0d298825'] = 'Resto total a pagar';
|
||||
$_LANGPDF['PDF5082245495aa792b3d0874088d2b111b'] = 'Total de producto';
|
||||
$_LANGPDF['PDF59aac4eb50a8249cbc9c12240c6a0a14'] = 'Para más asistencia, contacte con nuestro soporte';
|
||||
$_LANGPDF['PDF5e5f0a863cd129317037e3def37b4097'] = 'Empresa:';
|
||||
$_LANGPDF['PDF627be65d466c88030f7afcfdaf6d794f'] = '(Descuento excluido)';
|
||||
$_LANGPDF['PDF63d5049791d9d79d86e9a108b0a999ca'] = 'Referencia';
|
||||
$_LANGPDF['PDF66f6e4bbd0a0af1af6b54763871dd280'] = 'Productos ordenados:';
|
||||
$_LANGPDF['PDF6703aa9936582b4381418f7d523370b4'] = 'Grado de descuento';
|
||||
$_LANGPDF['PDF67606e3dd25c5effeb991c704b96d19c'] = 'Todos los productos deben ser devueltos en su embalaje original, sin daños o desgaste.';
|
||||
$_LANGPDF['PDF699e6bd4690ed3bd5f658052e12aba04'] = 'Valor de tasa';
|
||||
$_LANGPDF['PDF6b9e9f2472786ed1e76005bfc37bc8af'] = 'Orden de descuento';
|
||||
$_LANGPDF['PDF6c2fbe34c186a6b5725d212ad8cd2432'] = 'Factura';
|
||||
$_LANGPDF['PDF6f3455d187a23443796efdcbe044096b'] = 'Sin tasa';
|
||||
$_LANGPDF['PDF7137a85d9b8d9e6d09f47767d2ca31ee'] = 'APE:';
|
||||
$_LANGPDF['PDF716be2c7de31f063369ca297a9928403'] = 'Tasas:';
|
||||
$_LANGPDF['PDF7521172dd37ba56442ea866ac18eb49d'] = 'Antes del descuento';
|
||||
$_LANGPDF['PDF752ab8bad7c2e2d894ffa7f2b4f59919'] = 'Numero de retorno:';
|
||||
$_LANGPDF['PDF77c48b105700c87484e3008ca52a8e57'] = '(Descuento incluido)';
|
||||
$_LANGPDF['PDF77fd2b4393b379bedd30efcd5df02090'] = 'Reintegro parcial';
|
||||
$_LANGPDF['PDF7926243ab60a08b15932021bf108c578'] = 'Total de producto (Tasa excl.)';
|
||||
$_LANGPDF['PDF88be9ea838e21273267409d76af3b284'] = 'Hemos registrado su solicitud de devolución.';
|
||||
$_LANGPDF['PDF8a5a12ba783d8cbb761974430d0a4d6a'] = 'Fecha de orden:';
|
||||
$_LANGPDF['PDF8fe77c2601e54f1aaef28cfde997bbad'] = 'Tasa de impuesto';
|
||||
$_LANGPDF['PDF96b0141273eabab320119c467cdcaf17'] = 'Total';
|
||||
$_LANGPDF['PDF984a93f9899bf0b0a250ba66f022c630'] = 'Total de producto (Tasa incl.)';
|
||||
$_LANGPDF['PDF9e023503a19456d31f0760015d035e36'] = 'Por favor, incluya esta referencia regreso número en su paquete de retorno:';
|
||||
$_LANGPDF['PDFa58b1c9575ab07c5be819243c96d9c0e'] = 'DI: Descuento incluido';
|
||||
$_LANGPDF['PDFa5e35abc0c9e2d2784d0ef619b36448b'] = 'Costo de envío';
|
||||
$_LANGPDF['PDFa61109b693023aed557445989c517982'] = 'Después del descuento';
|
||||
$_LANGPDF['PDFb602e0d0c6a72053d0a5be60cb2f8126'] = 'Total de tasa';
|
||||
$_LANGPDF['PDFc7711fbc0d8f010e06a306cc63ef5393'] = 'El paquete debe enviarse a la siguiente dirección:';
|
||||
$_LANGPDF['PDFc7d76074f459eaa296d3eb71efc23eba'] = 'Hoja #';
|
||||
$_LANGPDF['PDFc8ba77264f6e923f5ee35abf3108ae7c'] = 'Precio unitario TE';
|
||||
$_LANGPDF['PDFced2da7b2baf942c0ffd4b8e45ec0fad'] = 'Costo de embalaje';
|
||||
$_LANGPDF['PDFd04e2c1b67f3ef0d475409516b812e8b'] = 'SIRET:';
|
||||
$_LANGPDF['PDFd36a6948b01d3a75ed99858e2bfea939'] = 'Forma de pago';
|
||||
$_LANGPDF['PDFd8b2145d049378e78bd41e65b31213f0'] = 'Número de orden:';
|
||||
$_LANGPDF['PDFdcd320d017d7f3c317bc8b234287bc9f'] = 'REFERENCIA';
|
||||
$_LANGPDF['PDFdd0b8feb4eb6c389c284518f5683017c'] = 'El paquete debe ser devuelto en el plazo de';
|
||||
$_LANGPDF['PDFe2f324b87eac820c81e4d4a1105dcddf'] = 'Dirección de compra y entrega';
|
||||
$_LANGPDF['PDFe36ba4b339b83cbb3c807bd0eb5610bc'] = 'CTD';
|
||||
$_LANGPDF['PDFe40007b408ac5f66d2c2e6c54f787c99'] = 'Sin pago';
|
||||
$_LANGPDF['PDFe7bbf027179f23c92bec649fa6ae78e4'] = 'Exento de la sección del IVA de acuerdo 259B del Código General de Impuestos.';
|
||||
$_LANGPDF['PDFea62a2e28a800c367509773730120a67'] = 'dias de recibida su orden.';
|
||||
$_LANGPDF['PDFea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Envio';
|
||||
$_LANGPDF['PDFf107f5a9ee4ecea58d0f29ae7959baa8'] = 'Designación';
|
||||
$_LANGPDF['PDFf4a232c48df10124ee867767a4e7280e'] = 'Base TE';
|
||||
$_LANGPDF['PDFf6244b08d5e0715572f9d4631b425eae'] = 'ITEMS MARCADOS COMO REGRESADOS';
|
||||
$_LANGPDF['PDFf771e4a4df40bf061607fdb8e3f140dc'] = 'Orden de pedido';
|
||||
$_LANGPDF['PDFfa2ce544158555e8f06c69dd9e681832'] = 'Total TI';
|
||||
$_LANGPDF['PDFfb8dada3941116ef49324d81bb944d0a'] = 'Regreso de orden \'.sprintf(\'%06d';
|
||||
$_LANGPDF['PDFff5db4935fb0fbf583796b50f05e25bc'] = 'Una versión electrónica de esta factura está disponible en su cuenta. Para acceder a ella, accede a nuestro sitio web utilizando su dirección de correo electrónico y contraseña (la que creó al hacer su pedido en primer lugar).';
|
||||
$_LANGPDF['submitTranslationsPdf'] = '1';
|
||||
|
||||
?>
|
||||
@@ -1,81 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['submitTranslationsPdf'] = 'Enregistrer les modifications';
|
||||
$_LANGPDF['PDF065ab3a28ca4f16f55f103adc7d0226f'] = 'Livraison';
|
||||
$_LANGPDF['PDF6c2fbe34c186a6b5725d212ad8cd2432'] = 'Facture';
|
||||
$_LANGPDF['PDFc7d76074f459eaa296d3eb71efc23eba'] = 'Bon #';
|
||||
$_LANGPDF['PDFf771e4a4df40bf061607fdb8e3f140dc'] = 'Bon de commande';
|
||||
$_LANGPDF['PDF3a80d6ec5285dd5d3930db30d04e2b9e'] = 'HR : hors remise';
|
||||
$_LANGPDF['PDFa58b1c9575ab07c5be819243c96d9c0e'] = 'RC : remise comprise';
|
||||
$_LANGPDF['PDF2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Addresse de Livraison';
|
||||
$_LANGPDF['PDF28a59051cd90053f87bacd5f1ffbc0b8'] = 'Adresse de Paiement';
|
||||
$_LANGPDF['PDFe2f324b87eac820c81e4d4a1105dcddf'] = 'Adresse de Paiement & Livraison';
|
||||
$_LANGPDF['PDFd8b2145d049378e78bd41e65b31213f0'] = 'Num. commande :';
|
||||
$_LANGPDF['PDF8a5a12ba783d8cbb761974430d0a4d6a'] = 'Date commande :';
|
||||
$_LANGPDF['PDFd36a6948b01d3a75ed99858e2bfea939'] = 'Méthode de paiement :';
|
||||
$_LANGPDF['PDFe40007b408ac5f66d2c2e6c54f787c99'] = 'Aucun paiement';
|
||||
$_LANGPDF['PDFf6244b08d5e0715572f9d4631b425eae'] = 'Articles à livrer';
|
||||
$_LANGPDF['PDFdcd320d017d7f3c317bc8b234287bc9f'] = 'Réference';
|
||||
$_LANGPDF['PDFe36ba4b339b83cbb3c807bd0eb5610bc'] = 'Qté';
|
||||
$_LANGPDF['PDFff5db4935fb0fbf583796b50f05e25bc'] = 'Une version electronique de ce document est disponible dans votre compte. Pour y accèder connectez vous sur notre site internet en utilisant votre adresse email et mot de passe (Crée lors de votre première commande). ';
|
||||
$_LANGPDF['PDF59aac4eb50a8249cbc9c12240c6a0a14'] = 'Pour plus d\'informations contactez notre Support:';
|
||||
$_LANGPDF['PDF2b56b5ec383be252fe778c4c6066b2fb'] = 'Adresse de Paiement & Livraison';
|
||||
$_LANGPDF['PDF5e5f0a863cd129317037e3def37b4097'] = 'Société:';
|
||||
$_LANGPDF['PDFd04e2c1b67f3ef0d475409516b812e8b'] = 'SIRET:';
|
||||
$_LANGPDF['PDF7137a85d9b8d9e6d09f47767d2ca31ee'] = 'APE:';
|
||||
$_LANGPDF['PDF1a22913fb1b16ada25c2637af9d44013'] = 'Produit / Référence';
|
||||
$_LANGPDF['PDF197101c4a1b1fc503dcd6ebee127aa10'] = 'Prix Unitaire';
|
||||
$_LANGPDF['PDF078ac079d154d21533c57bced9fcb10f'] = '(HT)';
|
||||
$_LANGPDF['PDF104d9898c04874d0fbac36e125fa1369'] = 'Réduction';
|
||||
$_LANGPDF['PDF03ab340b3f99e03cff9e84314ead38c0'] = 'Qté';
|
||||
$_LANGPDF['PDF96b0141273eabab320119c467cdcaf17'] = 'Total';
|
||||
$_LANGPDF['PDF7926243ab60a08b15932021bf108c578'] = 'Total Produits HT';
|
||||
$_LANGPDF['PDF984a93f9899bf0b0a250ba66f022c630'] = 'Total Produits TTC';
|
||||
$_LANGPDF['PDF5082245495aa792b3d0874088d2b111b'] = 'Total Produits';
|
||||
$_LANGPDF['PDF19abe6c02a26dcd93020396df8d0721c'] = 'Total des bons de réduction';
|
||||
$_LANGPDF['PDFced2da7b2baf942c0ffd4b8e45ec0fad'] = 'Coût d\'emballage';
|
||||
$_LANGPDF['PDFa5e35abc0c9e2d2784d0ef619b36448b'] = 'Coût de livraison';
|
||||
$_LANGPDF['PDFb602e0d0c6a72053d0a5be60cb2f8126'] = 'Total Taxes';
|
||||
$_LANGPDF['PDF4efeae9def7927946cb4929e0d298825'] = 'Restant dû';
|
||||
$_LANGPDF['PDFe7bbf027179f23c92bec649fa6ae78e4'] = 'L\'article 259B du code général des taxes accorde l\'exonération de TVA.';
|
||||
$_LANGPDF['PDF6f3455d187a23443796efdcbe044096b'] = 'Pas de taxe';
|
||||
$_LANGPDF['PDF023f66b09075fa1cc29e74bed9f5ac40'] = 'Détail des taxes';
|
||||
$_LANGPDF['PDF8fe77c2601e54f1aaef28cfde997bbad'] = 'Taux';
|
||||
$_LANGPDF['PDF22caf639b05c0fa192e81d58c553c89a'] = 'Total HT';
|
||||
$_LANGPDF['PDF068f80c7519d0528fb08e82137a72131'] = 'Produits';
|
||||
$_LANGPDF['PDFea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Transport';
|
||||
$_LANGPDF['PDF88be9ea838e21273267409d76af3b284'] = 'Nous avons enregistré votre demande de retour.';
|
||||
$_LANGPDF['PDFdd0b8feb4eb6c389c284518f5683017c'] = 'Votre paquet doit nous être retourné dans les';
|
||||
$_LANGPDF['PDFea62a2e28a800c367509773730120a67'] = 'jours après réception de votre commande.';
|
||||
$_LANGPDF['PDF752ab8bad7c2e2d894ffa7f2b4f59919'] = 'Numéro de retour:';
|
||||
$_LANGPDF['PDF0d8d58008ef5dd7afce337373ef73993'] = 'Date :';
|
||||
$_LANGPDF['PDF24488494b2a9126a5ef1dfdaea5913da'] = 'Produits à retourner';
|
||||
$_LANGPDF['PDF3796bba38e4bc7dbc3ec97d73be42328'] = 'Si les conditions suivantes ne sont pas respectées, nous nous réservons le droit de refuser votre paquet et/ou votre remboursement:';
|
||||
$_LANGPDF['PDF9e023503a19456d31f0760015d035e36'] = 'Merci d\'inscrire votre numéro de retour sur votre retour colis:';
|
||||
$_LANGPDF['PDF67606e3dd25c5effeb991c704b96d19c'] = 'Tous les produits doivent être retournés dans leur emballage d\'origine sans être altéré ou porté.';
|
||||
$_LANGPDF['PDF34bfda153cbe51eef5d4a88cdd7b616d'] = 'Merci d\'imprimer ces documents et avoir dans votre paquet.';
|
||||
$_LANGPDF['PDFc7711fbc0d8f010e06a306cc63ef5393'] = 'Le paquet devrait être envoyé à l\'adresse suivante:';
|
||||
$_LANGPDF['PDF77fd2b4393b379bedd30efcd5df02090'] = 'Remboursement partiel';
|
||||
$_LANGPDF['PDF66f6e4bbd0a0af1af6b54763871dd280'] = 'Produits commandés :';
|
||||
$_LANGPDF['PDF63d5049791d9d79d86e9a108b0a999ca'] = 'Référence';
|
||||
$_LANGPDF['PDFf107f5a9ee4ecea58d0f29ae7959baa8'] = 'Nom';
|
||||
$_LANGPDF['PDFc8ba77264f6e923f5ee35abf3108ae7c'] = 'Prix unitaire HT';
|
||||
$_LANGPDF['PDF3a6a6d37bea2c7567f8599ea88b47930'] = 'Prix HT';
|
||||
$_LANGPDF['PDF7521172dd37ba56442ea866ac18eb49d'] = 'Avant réduction';
|
||||
$_LANGPDF['PDF6703aa9936582b4381418f7d523370b4'] = 'Taux de remise';
|
||||
$_LANGPDF['PDFa61109b693023aed557445989c517982'] = 'Après réduction';
|
||||
$_LANGPDF['PDF20a34c4e30c5bbe1d3f870ac55f0d831'] = 'Taux TVA';
|
||||
$_LANGPDF['PDFfa2ce544158555e8f06c69dd9e681832'] = 'Prix TTC ';
|
||||
$_LANGPDF['PDF716be2c7de31f063369ca297a9928403'] = 'Taxes :';
|
||||
$_LANGPDF['PDFf4a232c48df10124ee867767a4e7280e'] = 'Base HT';
|
||||
$_LANGPDF['PDF01a2436b8e3782c1f99e6b26adf901b2'] = 'Montant TVA';
|
||||
$_LANGPDF['PDF1300f86974cafc2d65eb1f082a26bdf1'] = 'Résumé :';
|
||||
$_LANGPDF['PDF627be65d466c88030f7afcfdaf6d794f'] = 'Brut (Avant remise)';
|
||||
$_LANGPDF['PDF6b9e9f2472786ed1e76005bfc37bc8af'] = 'Remise globale';
|
||||
$_LANGPDF['PDF77c48b105700c87484e3008ca52a8e57'] = 'Net (Après remise)';
|
||||
$_LANGPDF['PDF699e6bd4690ed3bd5f658052e12aba04'] = 'Montant TVA';
|
||||
$_LANGPDF['PDF448634536559b1f8aaa975e0aa12b930'] = 'NET A PAYER';
|
||||
|
||||
?>
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF01a2436b8e3782c1f99e6b26adf901b2'] = 'Valore tasse';
|
||||
$_LANGPDF['PDF023f66b09075fa1cc29e74bed9f5ac40'] = 'Dettagli tasse';
|
||||
$_LANGPDF['PDF03ab340b3f99e03cff9e84314ead38c0'] = 'Q.tà';
|
||||
$_LANGPDF['PDF065ab3a28ca4f16f55f103adc7d0226f'] = 'Spedizione';
|
||||
$_LANGPDF['PDF068f80c7519d0528fb08e82137a72131'] = 'Prodotti';
|
||||
$_LANGPDF['PDF078ac079d154d21533c57bced9fcb10f'] = '(Tasse escluse)';
|
||||
$_LANGPDF['PDF0d8d58008ef5dd7afce337373ef73993'] = 'Data:';
|
||||
$_LANGPDF['PDF104d9898c04874d0fbac36e125fa1369'] = 'Sconto';
|
||||
$_LANGPDF['PDF1300f86974cafc2d65eb1f082a26bdf1'] = 'Sommario:';
|
||||
$_LANGPDF['PDF197101c4a1b1fc503dcd6ebee127aa10'] = 'Prezzo unitario';
|
||||
$_LANGPDF['PDF19abe6c02a26dcd93020396df8d0721c'] = 'Totale buoni';
|
||||
$_LANGPDF['PDF1a22913fb1b16ada25c2637af9d44013'] = 'Prodotto / Referenza';
|
||||
$_LANGPDF['PDF20a34c4e30c5bbe1d3f870ac55f0d831'] = 'Aliquota fiscale';
|
||||
$_LANGPDF['PDF22caf639b05c0fa192e81d58c553c89a'] = 'Totale tasse escluse';
|
||||
$_LANGPDF['PDF28a59051cd90053f87bacd5f1ffbc0b8'] = 'Indirizzo di Fatturazione';
|
||||
$_LANGPDF['PDF2b56b5ec383be252fe778c4c6066b2fb'] = 'Indirizzo di Fatturazione e di spedizione.';
|
||||
$_LANGPDF['PDF2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Indirizzo di spedizone';
|
||||
$_LANGPDF['PDF34bfda153cbe51eef5d4a88cdd7b616d'] = 'Si prega di stampare questo documento e di inserirlo nel vostro pacchetto.';
|
||||
$_LANGPDF['PDF3796bba38e4bc7dbc3ec97d73be42328'] = 'Se le seguenti condizioni non sono rispettate ci riserviamo il diritto di rifiutare il pacchetto e / o rimborso:';
|
||||
$_LANGPDF['PDF3a6a6d37bea2c7567f8599ea88b47930'] = 'Totale';
|
||||
$_LANGPDF['PDF3a80d6ec5285dd5d3930db30d04e2b9e'] = 'SE: Sconto escluso';
|
||||
$_LANGPDF['PDF448634536559b1f8aaa975e0aa12b930'] = 'TOTALE A PAGARE';
|
||||
$_LANGPDF['PDF4efeae9def7927946cb4929e0d298825'] = 'Totale resto pagato';
|
||||
$_LANGPDF['PDF5082245495aa792b3d0874088d2b111b'] = 'Totale prodotti';
|
||||
$_LANGPDF['PDF59aac4eb50a8249cbc9c12240c6a0a14'] = 'Per ulteriore assistenza, contatta il servizio clienti:';
|
||||
$_LANGPDF['PDF5e5f0a863cd129317037e3def37b4097'] = 'Società';
|
||||
$_LANGPDF['PDF627be65d466c88030f7afcfdaf6d794f'] = '(Sconto escluso)';
|
||||
$_LANGPDF['PDF63d5049791d9d79d86e9a108b0a999ca'] = 'Referenza';
|
||||
$_LANGPDF['PDF66f6e4bbd0a0af1af6b54763871dd280'] = 'Prodotti ordinati:';
|
||||
$_LANGPDF['PDF6703aa9936582b4381418f7d523370b4'] = 'Tasso di sconto';
|
||||
$_LANGPDF['PDF67606e3dd25c5effeb991c704b96d19c'] = 'Tutti i prodotti devono essere restituiti nella loro confezione originale, senza danni o usura.';
|
||||
$_LANGPDF['PDF699e6bd4690ed3bd5f658052e12aba04'] = 'Valore tassa';
|
||||
$_LANGPDF['PDF6b9e9f2472786ed1e76005bfc37bc8af'] = 'Sconto ordine';
|
||||
$_LANGPDF['PDF6c2fbe34c186a6b5725d212ad8cd2432'] = 'Fattura';
|
||||
$_LANGPDF['PDF6f3455d187a23443796efdcbe044096b'] = 'Nessuna tassa';
|
||||
$_LANGPDF['PDF7137a85d9b8d9e6d09f47767d2ca31ee'] = 'APE:';
|
||||
$_LANGPDF['PDF716be2c7de31f063369ca297a9928403'] = 'Tasse:';
|
||||
$_LANGPDF['PDF7521172dd37ba56442ea866ac18eb49d'] = 'Prima dello sconto';
|
||||
$_LANGPDF['PDF752ab8bad7c2e2d894ffa7f2b4f59919'] = 'Numero reso:';
|
||||
$_LANGPDF['PDF77c48b105700c87484e3008ca52a8e57'] = '(Sconto incluso)';
|
||||
$_LANGPDF['PDF77fd2b4393b379bedd30efcd5df02090'] = 'Parziale restituito';
|
||||
$_LANGPDF['PDF7926243ab60a08b15932021bf108c578'] = 'Totale prodotto (tasse escl.)';
|
||||
$_LANGPDF['PDF88be9ea838e21273267409d76af3b284'] = 'Abbiamo registrato òa tua richiesta di restituzione merce.';
|
||||
$_LANGPDF['PDF8a5a12ba783d8cbb761974430d0a4d6a'] = 'Data ordine:';
|
||||
$_LANGPDF['PDF8fe77c2601e54f1aaef28cfde997bbad'] = 'Aliquota fiscale';
|
||||
$_LANGPDF['PDF96b0141273eabab320119c467cdcaf17'] = 'Totale';
|
||||
$_LANGPDF['PDF984a93f9899bf0b0a250ba66f022c630'] = 'Totale prodotto (tasse incl.)';
|
||||
$_LANGPDF['PDF9e023503a19456d31f0760015d035e36'] = 'Si prega di includere questo numero di ritorno sul pacchetto restituito:';
|
||||
$_LANGPDF['PDFa58b1c9575ab07c5be819243c96d9c0e'] = 'SI: Sconto incluso';
|
||||
$_LANGPDF['PDFa5e35abc0c9e2d2784d0ef619b36448b'] = 'Costo spedizone';
|
||||
$_LANGPDF['PDFa61109b693023aed557445989c517982'] = 'Dopo lo sconto';
|
||||
$_LANGPDF['PDFb602e0d0c6a72053d0a5be60cb2f8126'] = 'Totale tasse';
|
||||
$_LANGPDF['PDFc7711fbc0d8f010e06a306cc63ef5393'] = 'Il pacco deve essere inviato al seguente indirizzo:';
|
||||
$_LANGPDF['PDFc8ba77264f6e923f5ee35abf3108ae7c'] = 'Prezzo unitario';
|
||||
$_LANGPDF['PDFced2da7b2baf942c0ffd4b8e45ec0fad'] = 'Costo imballaggio';
|
||||
$_LANGPDF['PDFd04e2c1b67f3ef0d475409516b812e8b'] = 'SIRET:';
|
||||
$_LANGPDF['PDFd36a6948b01d3a75ed99858e2bfea939'] = 'Metodo di pagamento:';
|
||||
$_LANGPDF['PDFd8b2145d049378e78bd41e65b31213f0'] = 'Ordine numero:';
|
||||
$_LANGPDF['PDFdcd320d017d7f3c317bc8b234287bc9f'] = 'REFERENZA';
|
||||
$_LANGPDF['PDFdd0b8feb4eb6c389c284518f5683017c'] = 'Il tuo pacco deve esserci restituito entro';
|
||||
$_LANGPDF['PDFe2f324b87eac820c81e4d4a1105dcddf'] = 'Indirizzo di fatturazione e spedizione';
|
||||
$_LANGPDF['PDFe36ba4b339b83cbb3c807bd0eb5610bc'] = 'Q.TA\'';
|
||||
$_LANGPDF['PDFe40007b408ac5f66d2c2e6c54f787c99'] = 'Nessun pagamento';
|
||||
$_LANGPDF['PDFea62a2e28a800c367509773730120a67'] = 'giorni dal ricevimento del tuo ordine';
|
||||
$_LANGPDF['PDFea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione';
|
||||
$_LANGPDF['PDFf107f5a9ee4ecea58d0f29ae7959baa8'] = 'Designazione';
|
||||
$_LANGPDF['PDFf6244b08d5e0715572f9d4631b425eae'] = 'ARTICOLO SEGNATO COME RESTITUITO';
|
||||
$_LANGPDF['PDFfa2ce544158555e8f06c69dd9e681832'] = 'Totale TI';
|
||||
$_LANGPDF['PDFff5db4935fb0fbf583796b50f05e25bc'] = 'Una copia elettronica di questa fattura è disponibile nel tuo account. Per accedere, effettua il login sul nostro sito inserendo user e passord.';
|
||||
$_LANGPDF['submitTranslationsPdf'] = '1';
|
||||
|
||||
?>
|
||||
@@ -2,69 +2,5 @@
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF_invoicee0036b67b754e9f6442f9f9e6b200c33'] = 'Rücksendungs-Nr.';
|
||||
$_LANGPDF['PDF_invoice77c3e447f60541a1c346a08134078c7f'] = 'Guthaben Nr.';
|
||||
$_LANGPDF['PDF_invoicecb5efbba6a6babef9082ca6976928ca7'] = 'Lieferschein-Nr.';
|
||||
$_LANGPDF['PDF_invoicefe4da50838bb10dcbf1bf8dcd9b12ab5'] = 'Rechnungs-Nr.';
|
||||
$_LANGPDF['PDF_invoiceba160acb58001c904c57507da3689265'] = 'Bestell-Nr.';
|
||||
$_LANGPDF['PDF_invoice808a04117534f9dfb63b9accd7efc609'] = 'Firmensitz';
|
||||
$_LANGPDF['PDF_invoicea54cedc1e053a70d4a6319feccf531ca'] = 'Telefonnr.:';
|
||||
$_LANGPDF['PDF_invoice2babe53026309ed1bc4d26626dbaf9b3'] = 'Details:';
|
||||
$_LANGPDF['PDF_invoice15b57bef332e7e0327d89fe93711a954'] = 'Eine elektronische Version dieser Rechnun steht Ihnen in Ihrem Kundenkonto zur weiteren Verwendung bereit. Um die Rechnung einzusehen, melden Sie sich ';
|
||||
$_LANGPDF['PDF_invoiceb1fb57b55075a4a51cf83e44d0440358'] = 'mit Ihren Zugangsdaten an (die Sie bei Ihrer ersten Bestellung erhalten haben).';
|
||||
$_LANGPDF['PDF_invoiced98a07f84921b24ee30f86fd8cd85c3c'] = 'vom';
|
||||
$_LANGPDF['PDF_invoice88be9ea838e21273267409d76af3b284'] = 'Wir haben Ihre Bitte um Rücksendung gespeichert.';
|
||||
$_LANGPDF['PDF_invoicedd0b8feb4eb6c389c284518f5683017c'] = 'Wir erinnern Sie daran, dass Ihr Paket innerhalb von ';
|
||||
$_LANGPDF['PDF_invoiceea62a2e28a800c367509773730120a67'] = 'Tagen nach Erhalt Ihrer Bestellung an uns zurückgesendet werden muss.';
|
||||
$_LANGPDF['PDF_invoice3d2f834cf879baebfdbe52c1c14d9d53'] = 'Liste der Produkte, die zurückgesendet werden:';
|
||||
$_LANGPDF['PDF_invoice9fad4fa5f3fa5caad9b506bbdd9f35d4'] = 'Ihre Rücksendenummer:';
|
||||
$_LANGPDF['PDF_invoicefb902bc4807c307b9309f2b528b96f2b'] = 'Rücksendung';
|
||||
$_LANGPDF['PDF_invoiceec9d9f81be48dabb74bcdad5312816af'] = 'Bitte sorgen Sie dafür, dass diese Nummer auf Ihrem Rücksendepaket steht.';
|
||||
$_LANGPDF['PDF_invoicefbbd47b7e45c0ad3fe0bf70539b5a2d4'] = 'ERINNERUNG:';
|
||||
$_LANGPDF['PDF_invoicea3852e23346f6f1e29e1683991690af3'] = '- Alle Produkte müssen in ihrer Originalverpackung und im ursprünglichen Zustand zurückgeschickt werden.';
|
||||
$_LANGPDF['PDF_invoice0e9a828e54995e48083a072205493fb4'] = '- Bitte drucken Sie dieses Dokument aus und legen es Ihrem Paket bei.';
|
||||
$_LANGPDF['PDF_invoicead500469c8dc258dcebb89c9efe15de7'] = '- Das Paket muss an folgende Adresse geschickt werden:';
|
||||
$_LANGPDF['PDF_invoice9f68b11daca41ccf9fdc9d2f69901c9c'] = 'Nach Erhalt Ihres Pakets erstatten wir Ihnen dann den Betrag Ihrer Bestellung und benachrichtigen Sie per E-Mail darüber.';
|
||||
$_LANGPDF['PDF_invoice2d0620950a4d96ae301ba7a98e528714'] = 'Bitte wenden Sie sich an uns, wenn Sie Fragen haben.';
|
||||
$_LANGPDF['PDF_invoice25e12a86579549b9f88117615eb05e4b'] = 'Wenn die oben genannten Rücksendebedingungen nicht erfüllt wurden,';
|
||||
$_LANGPDF['PDF_invoicec896fe3f3895e8ef54194eec601b8f3c'] = 'behalten wir uns das Recht vor, Ihr Paket oder Ihre Rückerstattung zu verweigern.';
|
||||
$_LANGPDF['PDF_invoiceb5a7adde1af5c87d7fd797b6245c2a39'] = 'Beschreibung';
|
||||
$_LANGPDF['PDF_invoice63d5049791d9d79d86e9a108b0a999ca'] = 'Referenz';
|
||||
$_LANGPDF['PDF_invoice03ab340b3f99e03cff9e84314ead38c0'] = 'Menge';
|
||||
$_LANGPDF['PDF_invoice396124314c5fd1fa5bf463274896dc80'] = 'Keine Methode zur Preisanzeige für diese Benutzergruppe definiert';
|
||||
$_LANGPDF['PDF_invoice065ab3a28ca4f16f55f103adc7d0226f'] = 'Lieferung';
|
||||
$_LANGPDF['PDF_invoice6bdf2efe1a99072849d4e87baee37dbe'] = 'Rechnungsstellung';
|
||||
$_LANGPDF['PDF_invoice60da3bd6867e3952ef0057a0772ea885'] = 'Steuernummer:';
|
||||
$_LANGPDF['PDF_invoice7b13afd12d6d91d52aa9f857d23f96ef'] = 'Rechnungsvorlage';
|
||||
$_LANGPDF['PDF_invoiced1228f5476d15142b1358ae4b5fa2454'] = 'Bestellung Nr.';
|
||||
$_LANGPDF['PDF_invoicef8617a92ba0a0a4eabee724eab7c9f48'] = 'Versanddienst:';
|
||||
$_LANGPDF['PDF_invoicec1f6368d15f7c13c4e5e8f70c68c747f'] = 'Zahlungsweise:';
|
||||
$_LANGPDF['PDF_invoicea3a79b28bc45b7fd393effd056b917e1'] = 'Absendedatum:';
|
||||
$_LANGPDF['PDF_invoice115dfa9ced2cf136ae677b9a389a5e60'] = 'Geschenkverpackung';
|
||||
$_LANGPDF['PDF_invoice2370a4958c4ebe6d6c8045cd49a6b392'] = 'Gesamtpreis exkl. USt.';
|
||||
$_LANGPDF['PDF_invoiceebaee01719541f61281c16ba22ebbfde'] = 'Gesamtpreis inkl. USt.';
|
||||
$_LANGPDF['PDF_invoicea0eb2cd0b3deb5444102e9a82edae11e'] = 'Gesamt Produkte';
|
||||
$_LANGPDF['PDF_invoicef3e545fccad720e197b9ca3b8b658440'] = 'Gesamt Ermäßigungen inkl. MwSt.';
|
||||
$_LANGPDF['PDF_invoice9cc000efe3e783af5bf114f2e6573156'] = 'Gesamtbetrag Geschenkverpackung';
|
||||
$_LANGPDF['PDF_invoicef246a17c095de09e043cc1cb917481da'] = 'Gesamt Versand (exkl. MwSt.)';
|
||||
$_LANGPDF['PDF_invoicee93f43fa527c3534aeca987091d6c049'] = 'Gesamt Versand (inkl. MwSt.)';
|
||||
$_LANGPDF['PDF_invoice96b0141273eabab320119c467cdcaf17'] = 'Gesamt';
|
||||
$_LANGPDF['PDF_invoice54732c5d0a3f0d597312b0ee55d71fca'] = 'inkl. MwSt.';
|
||||
$_LANGPDF['PDF_invoiceac5831c7ec2fed92c7bb73e9962003a4'] = 'exkl. MwSt.';
|
||||
$_LANGPDF['PDF_invoiceafd42dfebce46ec93972b2e0cbb8b83f'] = 'Einzelpreis';
|
||||
$_LANGPDF['PDF_invoice1d744a9ad1dac20645cfc4a36b77323b'] = 'Bild(er)';
|
||||
$_LANGPDF['PDF_invoicec2808546f3e14d267d798f4e0e6f102e'] = 'Benutzerdefiniert';
|
||||
$_LANGPDF['PDF_invoicea1e7379abfdbc3b8e03506e5489c6110'] = 'Ermäßigung:';
|
||||
$_LANGPDF['PDF_invoicee7bbf027179f23c92bec649fa6ae78e4'] = 'Gemäß Artikel 196 i.V.m. Artikel 44 Richtlinie 2006/112/EG (MwStSystRL) schuldet der Empfänger dieser Dienstleistungen die Mehrwertsteuer gegenüber dem Fiskus.';
|
||||
$_LANGPDF['PDF_invoice42c26bf38ece1dcd27aca8c6f8c076ed'] = 'Steuerdetails';
|
||||
$_LANGPDF['PDF_invoice4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Steuer';
|
||||
$_LANGPDF['PDF_invoicecd6576cc33506a6c44e2debbde5c14d9'] = 'Gesamtpreis exkl. MwSt.';
|
||||
$_LANGPDF['PDF_invoiceb602e0d0c6a72053d0a5be60cb2f8126'] = 'Gesamt Steuern';
|
||||
$_LANGPDF['PDF_invoicefe1218d355367ae728ae5bf4bbf0019e'] = 'Ökosteuer (inkl. MwSt.)';
|
||||
$_LANGPDF['PDF_invoiceae5c2883df7651730799e1036984a6a3'] = 'Gesamt inkl. MwSt.';
|
||||
$_LANGPDF['PDF_invoice068f80c7519d0528fb08e82137a72131'] = 'Produkte';
|
||||
$_LANGPDF['PDF_invoice914419aa32f04011357d3b604a86d7eb'] = 'Dienstleistungen (Versand)';
|
||||
$_LANGPDF['PDF_invoice41c1d61bfff3fc9b1fd8f195061b8caa'] = 'Geschenkverpackung';
|
||||
$_LANGPDF['PDF_invoice6f3455d187a23443796efdcbe044096b'] = 'Keine Steuer';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
@@ -2,8 +2,5 @@
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF_invoice15b57bef332e7e0327d89fe93711a954'] = 'An electronic version of this invoice is available in your account. To access it, log in to the';
|
||||
$_LANGPDF['PDF_invoice396124314c5fd1fa5bf463274896dc80'] = 'No price display method defined for this customer group';
|
||||
$_LANGPDF['PDF_invoicee7bbf027179f23c92bec649fa6ae78e4'] = 'Exempt of VAT according to section 259B of the General Tax Code.';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
@@ -2,67 +2,5 @@
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF_invoicee0036b67b754e9f6442f9f9e6b200c33'] = 'Devolución nº ';
|
||||
$_LANGPDF['PDF_invoice77c3e447f60541a1c346a08134078c7f'] = 'Vale de compra nº ';
|
||||
$_LANGPDF['PDF_invoicecb5efbba6a6babef9082ca6976928ca7'] = 'Albarán nº ';
|
||||
$_LANGPDF['PDF_invoicefe4da50838bb10dcbf1bf8dcd9b12ab5'] = 'Factura nº ';
|
||||
$_LANGPDF['PDF_invoiceba160acb58001c904c57507da3689265'] = 'Pedido n°';
|
||||
$_LANGPDF['PDF_invoice808a04117534f9dfb63b9accd7efc609'] = 'Oficinas:';
|
||||
$_LANGPDF['PDF_invoicea54cedc1e053a70d4a6319feccf531ca'] = 'TELÉFONO:';
|
||||
$_LANGPDF['PDF_invoice2babe53026309ed1bc4d26626dbaf9b3'] = 'Detalles:';
|
||||
$_LANGPDF['PDF_invoice15b57bef332e7e0327d89fe93711a954'] = 'La versión electrónica de esta factura está disponible en su cuenta. Para acceder a ella, identifíquese en';
|
||||
$_LANGPDF['PDF_invoiceb1fb57b55075a4a51cf83e44d0440358'] = 'nuestra Web usando su dirección de correo electrónico y contraseña (que creó cuando realizó su primer pedido).';
|
||||
$_LANGPDF['PDF_invoiced98a07f84921b24ee30f86fd8cd85c3c'] = 'de';
|
||||
$_LANGPDF['PDF_invoice88be9ea838e21273267409d76af3b284'] = 'Hemos accedido a su solicitud de devolución.';
|
||||
$_LANGPDF['PDF_invoicedd0b8feb4eb6c389c284518f5683017c'] = 'Le recordamos que debemos recibir su devolución antes de';
|
||||
$_LANGPDF['PDF_invoiceea62a2e28a800c367509773730120a67'] = 'días desde el momento en que recibió su pedido.';
|
||||
$_LANGPDF['PDF_invoice3d2f834cf879baebfdbe52c1c14d9d53'] = 'Listado de artículos devueltos:';
|
||||
$_LANGPDF['PDF_invoice9fad4fa5f3fa5caad9b506bbdd9f35d4'] = 'Referencia de devolución:';
|
||||
$_LANGPDF['PDF_invoicefb902bc4807c307b9309f2b528b96f2b'] = 'RET';
|
||||
$_LANGPDF['PDF_invoiceec9d9f81be48dabb74bcdad5312816af'] = 'Gracias por incluir este número en su paquete de devolución.';
|
||||
$_LANGPDF['PDF_invoicefbbd47b7e45c0ad3fe0bf70539b5a2d4'] = 'RECUERDE:';
|
||||
$_LANGPDF['PDF_invoicea3852e23346f6f1e29e1683991690af3'] = '- Todos los artículos deben devolverse en su embalaje original en buen estado y sin haber sido usados.';
|
||||
$_LANGPDF['PDF_invoice0e9a828e54995e48083a072205493fb4'] = '- Por favor, imprima este documento e introdúzcalo en su envío.';
|
||||
$_LANGPDF['PDF_invoicead500469c8dc258dcebb89c9efe15de7'] = '- El paquete debe enviarse a la siguiente dirección:';
|
||||
$_LANGPDF['PDF_invoice9f68b11daca41ccf9fdc9d2f69901c9c'] = 'Una vez recibamos su envío, le informaremos por correo electrónico y procederemos al reembolso de su dinero.';
|
||||
$_LANGPDF['PDF_invoice2d0620950a4d96ae301ba7a98e528714'] = 'Indíquenos cualquier pregunta que le surja.';
|
||||
$_LANGPDF['PDF_invoice25e12a86579549b9f88117615eb05e4b'] = 'Si no se respetan las condiciones de devolución,';
|
||||
$_LANGPDF['PDF_invoicec896fe3f3895e8ef54194eec601b8f3c'] = 'nos reservamos el derecho de rechazar su envío o el reembolso.';
|
||||
$_LANGPDF['PDF_invoiceb5a7adde1af5c87d7fd797b6245c2a39'] = 'Descripción';
|
||||
$_LANGPDF['PDF_invoice63d5049791d9d79d86e9a108b0a999ca'] = 'Referencia';
|
||||
$_LANGPDF['PDF_invoice03ab340b3f99e03cff9e84314ead38c0'] = 'Cant.';
|
||||
$_LANGPDF['PDF_invoice396124314c5fd1fa5bf463274896dc80'] = 'No se ha definido ningún método de precio para este grupo';
|
||||
$_LANGPDF['PDF_invoice065ab3a28ca4f16f55f103adc7d0226f'] = 'Entrega';
|
||||
$_LANGPDF['PDF_invoice6bdf2efe1a99072849d4e87baee37dbe'] = 'Facturación';
|
||||
$_LANGPDF['PDF_invoice60da3bd6867e3952ef0057a0772ea885'] = 'id del impuesto';
|
||||
$_LANGPDF['PDF_invoice7b13afd12d6d91d52aa9f857d23f96ef'] = 'Proyecto de factura';
|
||||
$_LANGPDF['PDF_invoiced1228f5476d15142b1358ae4b5fa2454'] = 'Pedido nº ';
|
||||
$_LANGPDF['PDF_invoicef8617a92ba0a0a4eabee724eab7c9f48'] = 'Transportista:';
|
||||
$_LANGPDF['PDF_invoicec1f6368d15f7c13c4e5e8f70c68c747f'] = 'Modo de pago:';
|
||||
$_LANGPDF['PDF_invoicea3a79b28bc45b7fd393effd056b917e1'] = 'Fecha de envío:';
|
||||
$_LANGPDF['PDF_invoice115dfa9ced2cf136ae677b9a389a5e60'] = 'paquete regalo';
|
||||
$_LANGPDF['PDF_invoice2370a4958c4ebe6d6c8045cd49a6b392'] = 'Total productos sin IVA';
|
||||
$_LANGPDF['PDF_invoiceebaee01719541f61281c16ba22ebbfde'] = 'Total productos (IVA incluido)';
|
||||
$_LANGPDF['PDF_invoicea0eb2cd0b3deb5444102e9a82edae11e'] = 'Total productos';
|
||||
$_LANGPDF['PDF_invoicef3e545fccad720e197b9ca3b8b658440'] = 'Total descuentos (IVA incluido)';
|
||||
$_LANGPDF['PDF_invoice9cc000efe3e783af5bf114f2e6573156'] = 'Total embalaje';
|
||||
$_LANGPDF['PDF_invoice96b0141273eabab320119c467cdcaf17'] = 'Total';
|
||||
$_LANGPDF['PDF_invoice54732c5d0a3f0d597312b0ee55d71fca'] = '(IVA incluido)';
|
||||
$_LANGPDF['PDF_invoiceac5831c7ec2fed92c7bb73e9962003a4'] = '(sin IVA)';
|
||||
$_LANGPDF['PDF_invoiceafd42dfebce46ec93972b2e0cbb8b83f'] = 'Precio Un.';
|
||||
$_LANGPDF['PDF_invoice1d744a9ad1dac20645cfc4a36b77323b'] = 'imagen';
|
||||
$_LANGPDF['PDF_invoicec2808546f3e14d267d798f4e0e6f102e'] = 'Personalizado';
|
||||
$_LANGPDF['PDF_invoicea1e7379abfdbc3b8e03506e5489c6110'] = 'Descuento:';
|
||||
$_LANGPDF['PDF_invoicee7bbf027179f23c92bec649fa6ae78e4'] = 'Exento de IVA según el artículo 259B del Código General de los Impuestos.';
|
||||
$_LANGPDF['PDF_invoice42c26bf38ece1dcd27aca8c6f8c076ed'] = 'Desglose IVA';
|
||||
$_LANGPDF['PDF_invoice4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Tasa';
|
||||
$_LANGPDF['PDF_invoicecd6576cc33506a6c44e2debbde5c14d9'] = 'Total sin IVA';
|
||||
$_LANGPDF['PDF_invoiceb602e0d0c6a72053d0a5be60cb2f8126'] = 'Total IVA';
|
||||
$_LANGPDF['PDF_invoicefe1218d355367ae728ae5bf4bbf0019e'] = 'Ecotasa (IVA incl.)';
|
||||
$_LANGPDF['PDF_invoiceae5c2883df7651730799e1036984a6a3'] = 'Total IVA incluído';
|
||||
$_LANGPDF['PDF_invoice068f80c7519d0528fb08e82137a72131'] = 'Artículos';
|
||||
$_LANGPDF['PDF_invoice914419aa32f04011357d3b604a86d7eb'] = 'Transportista';
|
||||
$_LANGPDF['PDF_invoice41c1d61bfff3fc9b1fd8f195061b8caa'] = 'Embalaje';
|
||||
$_LANGPDF['PDF_invoice6f3455d187a23443796efdcbe044096b'] = 'Sin impuestos';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
@@ -2,7 +2,5 @@
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF_invoice396124314c5fd1fa5bf463274896dc80'] = 'Pas de méthode d\'affichage de prix défini pour ce groupe d\'utilisateur';
|
||||
$_LANGPDF['PDF_invoice5082245495aa792b3d0874088d2b111b'] = 'plopd';
|
||||
|
||||
?>
|
||||
|
||||
@@ -2,69 +2,5 @@
|
||||
|
||||
global $_LANGPDF;
|
||||
$_LANGPDF = array();
|
||||
$_LANGPDF['PDF_invoicee0036b67b754e9f6442f9f9e6b200c33'] = 'Restituzione n.';
|
||||
$_LANGPDF['PDF_invoice77c3e447f60541a1c346a08134078c7f'] = 'Nota di credito n.';
|
||||
$_LANGPDF['PDF_invoicecb5efbba6a6babef9082ca6976928ca7'] = 'Buono di consegna n.';
|
||||
$_LANGPDF['PDF_invoicefe4da50838bb10dcbf1bf8dcd9b12ab5'] = 'Fattura n.';
|
||||
$_LANGPDF['PDF_invoiceba160acb58001c904c57507da3689265'] = 'Ordine n.';
|
||||
$_LANGPDF['PDF_invoice808a04117534f9dfb63b9accd7efc609'] = 'Sede sociale';
|
||||
$_LANGPDF['PDF_invoicea54cedc1e053a70d4a6319feccf531ca'] = 'Telefono:';
|
||||
$_LANGPDF['PDF_invoice2babe53026309ed1bc4d26626dbaf9b3'] = 'Dati:';
|
||||
$_LANGPDF['PDF_invoice15b57bef332e7e0327d89fe93711a954'] = 'Una versione elettronica è conservata nel tuo conto. Per accedervi, identificati nel sito';
|
||||
$_LANGPDF['PDF_invoiceb1fb57b55075a4a51cf83e44d0440358'] = 'con i tuoi dati identificativi (creati al momento del tuo primo ordine).';
|
||||
$_LANGPDF['PDF_invoiced98a07f84921b24ee30f86fd8cd85c3c'] = 'da';
|
||||
$_LANGPDF['PDF_invoice88be9ea838e21273267409d76af3b284'] = 'Abbiamo registrato la tua richiesta di restituzione.';
|
||||
$_LANGPDF['PDF_invoicedd0b8feb4eb6c389c284518f5683017c'] = 'Ti ricordiamo che il tuo pacco ci deve essere restituito nei';
|
||||
$_LANGPDF['PDF_invoiceea62a2e28a800c367509773730120a67'] = 'giorni successivi al ricevimento del tuo ordine.';
|
||||
$_LANGPDF['PDF_invoice3d2f834cf879baebfdbe52c1c14d9d53'] = 'Elenco dei prodotti che sono stati oggetto di una restituzione:';
|
||||
$_LANGPDF['PDF_invoice9fad4fa5f3fa5caad9b506bbdd9f35d4'] = 'Il tuo n. di restituzione:';
|
||||
$_LANGPDF['PDF_invoicefb902bc4807c307b9309f2b528b96f2b'] = 'REST';
|
||||
$_LANGPDF['PDF_invoiceec9d9f81be48dabb74bcdad5312816af'] = 'Ti preghiamo di inserire questo numero nel tuo pacco di restituzione.';
|
||||
$_LANGPDF['PDF_invoicefbbd47b7e45c0ad3fe0bf70539b5a2d4'] = 'PROMEMORIA:';
|
||||
$_LANGPDF['PDF_invoicea3852e23346f6f1e29e1683991690af3'] = '- Tutti i prodotti devono essere restituiti nel loro imballaggio e nel loro stato originale.';
|
||||
$_LANGPDF['PDF_invoice0e9a828e54995e48083a072205493fb4'] = '- Stampa questo documento e inseriscilo nel pacco.';
|
||||
$_LANGPDF['PDF_invoicead500469c8dc258dcebb89c9efe15de7'] = '- Il pacco va inviato al seguente indirizzo:';
|
||||
$_LANGPDF['PDF_invoice9f68b11daca41ccf9fdc9d2f69901c9c'] = 'Al momento del ricevimento del tuo pacco procederemo al rimborso della somma del tuo ordine e ti terremo informato tramite e-mail.';
|
||||
$_LANGPDF['PDF_invoice2d0620950a4d96ae301ba7a98e528714'] = 'Non esitare a contattarci per qualsiasi domanda.';
|
||||
$_LANGPDF['PDF_invoice25e12a86579549b9f88117615eb05e4b'] = 'Se le condizioni di restituzione qui sopra elencate non fossero state rispettate,';
|
||||
$_LANGPDF['PDF_invoicec896fe3f3895e8ef54194eec601b8f3c'] = 'ci riserviamo il diritto di rifiutare il tuo pacco o il tuo rimborso.';
|
||||
$_LANGPDF['PDF_invoiceb5a7adde1af5c87d7fd797b6245c2a39'] = 'Descrizione';
|
||||
$_LANGPDF['PDF_invoice63d5049791d9d79d86e9a108b0a999ca'] = 'Riferimento';
|
||||
$_LANGPDF['PDF_invoice03ab340b3f99e03cff9e84314ead38c0'] = 'Quant.';
|
||||
$_LANGPDF['PDF_invoice396124314c5fd1fa5bf463274896dc80'] = 'Non c\'è un metodo di visualizzazione dei prezzi definito per questo gruppo di utenti';
|
||||
$_LANGPDF['PDF_invoice065ab3a28ca4f16f55f103adc7d0226f'] = 'Consegna';
|
||||
$_LANGPDF['PDF_invoice6bdf2efe1a99072849d4e87baee37dbe'] = 'Fatturazione';
|
||||
$_LANGPDF['PDF_invoice60da3bd6867e3952ef0057a0772ea885'] = 'Numero di codice fiscale:';
|
||||
$_LANGPDF['PDF_invoice7b13afd12d6d91d52aa9f857d23f96ef'] = 'bozza fattura';
|
||||
$_LANGPDF['PDF_invoiced1228f5476d15142b1358ae4b5fa2454'] = 'Ordine n.';
|
||||
$_LANGPDF['PDF_invoicef8617a92ba0a0a4eabee724eab7c9f48'] = 'Mezzo di spedizione:';
|
||||
$_LANGPDF['PDF_invoicec1f6368d15f7c13c4e5e8f70c68c747f'] = 'Metodo di pagamento:';
|
||||
$_LANGPDF['PDF_invoicea3a79b28bc45b7fd393effd056b917e1'] = 'Data di spedizione:';
|
||||
$_LANGPDF['PDF_invoice115dfa9ced2cf136ae677b9a389a5e60'] = 'Pacco regalo';
|
||||
$_LANGPDF['PDF_invoice2370a4958c4ebe6d6c8045cd49a6b392'] = 'Totale prodotti tasse escl.';
|
||||
$_LANGPDF['PDF_invoiceebaee01719541f61281c16ba22ebbfde'] = 'Totale prodotti tasse incl.';
|
||||
$_LANGPDF['PDF_invoicea0eb2cd0b3deb5444102e9a82edae11e'] = 'Totale prodotti';
|
||||
$_LANGPDF['PDF_invoicef3e545fccad720e197b9ca3b8b658440'] = 'Totale sconti tasse incl.';
|
||||
$_LANGPDF['PDF_invoice9cc000efe3e783af5bf114f2e6573156'] = 'Totale pacco regalo';
|
||||
$_LANGPDF['PDF_invoicef246a17c095de09e043cc1cb917481da'] = 'Totale spedizione (tax escl.)';
|
||||
$_LANGPDF['PDF_invoicee93f43fa527c3534aeca987091d6c049'] = 'Totale spedizione (tax incl.)';
|
||||
$_LANGPDF['PDF_invoice96b0141273eabab320119c467cdcaf17'] = 'Totale';
|
||||
$_LANGPDF['PDF_invoice54732c5d0a3f0d597312b0ee55d71fca'] = 'Tasse incl.';
|
||||
$_LANGPDF['PDF_invoiceac5831c7ec2fed92c7bb73e9962003a4'] = 'Tasse escl.';
|
||||
$_LANGPDF['PDF_invoiceafd42dfebce46ec93972b2e0cbb8b83f'] = 'Prezzo unitario';
|
||||
$_LANGPDF['PDF_invoice1d744a9ad1dac20645cfc4a36b77323b'] = 'immagine/i';
|
||||
$_LANGPDF['PDF_invoicec2808546f3e14d267d798f4e0e6f102e'] = 'Personalizzato';
|
||||
$_LANGPDF['PDF_invoicea1e7379abfdbc3b8e03506e5489c6110'] = 'Sconto:';
|
||||
$_LANGPDF['PDF_invoicee7bbf027179f23c92bec649fa6ae78e4'] = 'Esente da IVA secondo l\'art. 259B del Codice Generale delle Imposte. ';
|
||||
$_LANGPDF['PDF_invoice42c26bf38ece1dcd27aca8c6f8c076ed'] = 'Dettagli fiscali';
|
||||
$_LANGPDF['PDF_invoice4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Tassa';
|
||||
$_LANGPDF['PDF_invoicecd6576cc33506a6c44e2debbde5c14d9'] = 'Totale tasse escl.';
|
||||
$_LANGPDF['PDF_invoiceb602e0d0c6a72053d0a5be60cb2f8126'] = 'Tasse totali';
|
||||
$_LANGPDF['PDF_invoicefe1218d355367ae728ae5bf4bbf0019e'] = 'Ecotassa (tasse incl.)';
|
||||
$_LANGPDF['PDF_invoiceae5c2883df7651730799e1036984a6a3'] = 'Totale tasse incl.';
|
||||
$_LANGPDF['PDF_invoice068f80c7519d0528fb08e82137a72131'] = 'Prodotti';
|
||||
$_LANGPDF['PDF_invoice914419aa32f04011357d3b604a86d7eb'] = 'Mezzo di spedizione';
|
||||
$_LANGPDF['PDF_invoice41c1d61bfff3fc9b1fd8f195061b8caa'] = 'Pacco regalo';
|
||||
$_LANGPDF['PDF_invoice6f3455d187a23443796efdcbe044096b'] = 'Nessuna tassa';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user