diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index bb91f96b5..a03e40fab 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -16,13 +16,14 @@ - bMancone - bumbu - Burhan -- Cédric Mouleyre - Caleydon Media - cam.lafit - Captain FLAM - Captain-FLAM - ccauw +- Cédric Mouleyre - ChristopheBoucaut +- CINS - cippest - cmouleyre - Corentin Delcourt @@ -34,42 +35,50 @@ - David Gasperoni - Davy Rolink - djfm +- dlage - dMetzger - (d)oekia - Dragan Skrbic -- DrÿSs' - dreammeup - DrySs +- DrÿSs +- DrÿSs' - dSevere - Edouard Gaulué - emily-d - Fabio Chelly - fBrignoli - fram +- Francois Gaillard - François Gaillard +- Fran?s Gaillard - fSerny - Gabriel Schwardy - gBrunier - gCharmes - gPoulain +- gr4devel - Grégoire Bélorgey - Gregory Roussac - gRoussac - Guillaume DELOINCE +- ha99y - hAitmansour - Ha!*!*y - indesign47 - inem0o - ivancasasempere -- Jérôme Nadaud - jBreux +- jeckyl - jeromenadaud - Jerome Nadaud +- Jérôme Nadaud - jessylenne - jmCollin - jObregon - Jonathan Danse - joseantgv +- Julien - Kevin Granger - kpodemski - Krystian Podemski @@ -77,8 +86,11 @@ - lCherifi - ldecoker - lLefevre +- LOIC ROSSET ltd +- makk1ntosh - marcinsz101 - Marco Cervellin +- matiasiglesias - Mats Rynge - MatthieuB - Maxence @@ -101,32 +113,39 @@ - PhpMadman - Pierre - Piotr Kaczor -- Piotr Moćko +- Piotr Mocko - PrestaEdit - prestarocket +- Prestaspirit - pxls -- Rémi Gaillard - Raphaël Malié - raulgundin +- Rémi Gaillard - rGaillard - Rimas Kudelis - rMalie - rMontagne +- romainberger - root - runningz -- Sébastien -- Sébastien Bocahu +- sagaradonis - Samy Rabih - Sarah Lorenzini - Seb +- Sébastien +- Sébastien Bocahu - Seynaeve - Shagshag +- sjousse - sLorenzini +- smartdatasoft +- soufyan - soware - Staging - sThiebaut - Sylvain WITMEYER - tDidierjean +- unknown - vAugagneur - vChabot - Vincent Augagneur @@ -138,3 +157,5 @@ - Xavier - Xavier POITAU - Yoozio +- zimmi1 + diff --git a/admin-dev/index.php b/admin-dev/index.php index f5fcc246d..33da0908a 100644 --- a/admin-dev/index.php +++ b/admin-dev/index.php @@ -27,6 +27,9 @@ $timer_start = microtime(true); define('_PS_ADMIN_DIR_', getcwd()); +if (!defined('PS_ADMIN_DIR')) + define('PS_ADMIN_DIR', _PS_ADMIN_DIR_); + require(_PS_ADMIN_DIR_.'/../config/config.inc.php'); require(_PS_ADMIN_DIR_.'/functions.php'); diff --git a/admin-dev/init.php b/admin-dev/init.php index 441433a2a..74e960149 100644 --- a/admin-dev/init.php +++ b/admin-dev/init.php @@ -49,9 +49,12 @@ try AdminTab::$currentIndex = $currentIndex; $iso = $context->language->iso_code; - include(_PS_TRANSLATIONS_DIR_.$iso.'/errors.php'); - include(_PS_TRANSLATIONS_DIR_.$iso.'/fields.php'); - include(_PS_TRANSLATIONS_DIR_.$iso.'/admin.php'); + if (file_exists(_PS_TRANSLATIONS_DIR_.$iso.'/errors.php')) + include(_PS_TRANSLATIONS_DIR_.$iso.'/errors.php'); + if (file_exists(_PS_TRANSLATIONS_DIR_.$iso.'/fields.php')) + include(_PS_TRANSLATIONS_DIR_.$iso.'/fields.php'); + if (file_exists(_PS_TRANSLATIONS_DIR_.$iso.'/admin.php')) + include(_PS_TRANSLATIONS_DIR_.$iso.'/admin.php'); /* Server Params */ $protocol_link = (Configuration::get('PS_SSL_ENABLED')) ? 'https://' : 'http://'; diff --git a/admin-dev/themes/default/template/controllers/groups/helpers/view/view.tpl b/admin-dev/themes/default/template/controllers/groups/helpers/view/view.tpl index e2503c9a6..96908c212 100755 --- a/admin-dev/themes/default/template/controllers/groups/helpers/view/view.tpl +++ b/admin-dev/themes/default/template/controllers/groups/helpers/view/view.tpl @@ -58,7 +58,7 @@

{l s='Members of this customer group'}

-

{l s='Limited to the 100th first customers.'} {l s='Please use filters to narrow your search.'}

+

{l s='Limited to the first 100 customers.'} {l s='Please use filters to narrow your search.'}

{$customerList} -{/block} \ No newline at end of file +{/block} diff --git a/admin-dev/themes/default/template/controllers/import/helpers/form/form.tpl b/admin-dev/themes/default/template/controllers/import/helpers/form/form.tpl index c867b6c6d..09a50329f 100644 --- a/admin-dev/themes/default/template/controllers/import/helpers/form/form.tpl +++ b/admin-dev/themes/default/template/controllers/import/helpers/form/form.tpl @@ -59,7 +59,7 @@ {if count($files_to_import)} {/if} @@ -67,20 +67,31 @@ Uplaod{l s='Upload'}
- {l s='Click to view our sample import csv files.'} - +
+ {l s='Click to view our sample import csv files.'} + +
+
+ {l s='Click to view your csv files.'} + +
 
@@ -108,12 +119,12 @@
- + {l s='e.g. '}"1;Ipod;129.90;5"
- + {l s='e.g. '}"Ipod;red.jpg,blue.jpg,green.jpg;129.90"
@@ -205,7 +216,7 @@ else { $(".import_supply_orders_details").hide(); - $('input[name=multiple_value_separator]').val(','); + $('input[name=multiple_value_separator]').val('{if isset($multiple_value_separator_selected)}{$multiple_value_separator_selected}{else},{/if}'); } if ($("#entity > option:selected").val() == 1) $("label[for=match_ref], #match_ref, label[for=regenerate], #regenerate").show(); diff --git a/admin-dev/themes/default/template/controllers/import/helpers/view/view.tpl b/admin-dev/themes/default/template/controllers/import/helpers/view/view.tpl index a7c20b5d8..97abf07a2 100644 --- a/admin-dev/themes/default/template/controllers/import/helpers/view/view.tpl +++ b/admin-dev/themes/default/template/controllers/import/helpers/view/view.tpl @@ -25,7 +25,7 @@ {extends file="helpers/view/view.tpl"} {block name="override_tpl"} {/if} - - -

@@ -76,10 +68,7 @@ var generated_date = {$smarty.now|intval}; {assign var='productId' value=$product.id_product} {assign var='productAttributeId' value=$product.id_product_attribute}

- {$product.cart_quantity}x - - {$product.name|truncate:13:'...'|escape:html:'UTF-8'} - {if !isset($customizedDatas.$productId.$productAttributeId) && (!isset($product.is_gift) || !$product.is_gift)} {/if} + {$product.cart_quantity}x{$product.name|truncate:13:'...'|escape:html:'UTF-8'}{if !isset($customizedDatas.$productId.$productAttributeId) && (!isset($product.is_gift) || !$product.is_gift)} {/if} {if !isset($product.is_gift) || !$product.is_gift} {if $priceDisplay == $smarty.const.PS_TAX_EXC}{displayWtPrice p="`$product.total`"}{else}{displayWtPrice p="`$product.total_wt`"}{/if} @@ -92,7 +81,6 @@ var generated_date = {$smarty.now|intval};
{$product.attributes_small} {/if} - {if isset($customizedDatas.$productId.$productAttributeId[$product.id_address_delivery])} {if !isset($product.attributes_small)}
{/if} @@ -110,31 +98,33 @@ var generated_date = {$smarty.now|intval}; {if !isset($product.attributes_small)}
{/if} {/if} - {if isset($product.attributes_small)}{/if} - {/foreach} {/if}

{l s='No products' mod='blockcart'}

- {if $discounts|@count > 0} + {foreach from=$discounts item=discount} {if $discount.value_real > 0} - - - - - - + + + + + + {/if} + {foreachelse}{* W3C and cart rule vouchers *} + + + {/foreach} + - {/if}

{$shipping_cost} {l s='Shipping' mod='blockcart'} @@ -172,5 +162,4 @@ var generated_date = {$smarty.now|intval};

- - + \ No newline at end of file diff --git a/translations/br.gzip b/translations/br.gzip deleted file mode 100644 index 8c1772ee4..000000000 Binary files a/translations/br.gzip and /dev/null differ diff --git a/translations/de.gzip b/translations/de.gzip deleted file mode 100644 index bafdfd1b9..000000000 Binary files a/translations/de.gzip and /dev/null differ diff --git a/translations/en.gzip b/translations/en.gzip index a43fe55a1..e9ba5fcc8 100644 Binary files a/translations/en.gzip and b/translations/en.gzip differ diff --git a/translations/es.gzip b/translations/es.gzip deleted file mode 100644 index 1dffffe1c..000000000 Binary files a/translations/es.gzip and /dev/null differ diff --git a/translations/fr.gzip b/translations/fr.gzip index 733390e04..960058ab7 100644 Binary files a/translations/fr.gzip and b/translations/fr.gzip differ diff --git a/translations/it.gzip b/translations/it.gzip deleted file mode 100644 index 96285a813..000000000 Binary files a/translations/it.gzip and /dev/null differ diff --git a/translations/nl.gzip b/translations/nl.gzip deleted file mode 100644 index bb17d5865..000000000 Binary files a/translations/nl.gzip and /dev/null differ diff --git a/translations/pl.gzip b/translations/pl.gzip deleted file mode 100644 index f38d6f128..000000000 Binary files a/translations/pl.gzip and /dev/null differ diff --git a/translations/ru.gzip b/translations/ru.gzip deleted file mode 100644 index 1af1cb113..000000000 Binary files a/translations/ru.gzip and /dev/null differ