From 2448b7bf8c7cf3130b4f4102ff8e5940224d5b0b Mon Sep 17 00:00:00 2001 From: Asturyan Date: Thu, 20 Mar 2014 16:18:30 +0100 Subject: [PATCH 01/10] Fix "Undefined variable: ex" --- core/lib/Thelia/Controller/Admin/AbstractCrudController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php index eeafe6a6c..8bce71bd1 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php @@ -287,6 +287,7 @@ abstract class AbstractCrudController extends BaseAdminController // Error (Default: false) $error_msg = false; + $ex = new \Exception(); // Create the Creation Form $creationForm = $this->getCreationForm($this->getRequest()); @@ -384,6 +385,7 @@ abstract class AbstractCrudController extends BaseAdminController // Error (Default: false) $error_msg = false; + $ex = new \Exception(); // Create the Form from the request $changeForm = $this->getUpdateForm($this->getRequest()); From fad37219a1bbeb2ef97893560ab5dc2f6ed00474 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Thu, 20 Mar 2014 16:33:36 +0100 Subject: [PATCH 02/10] Fix "Undefined variable: ex" --- core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php index 0d0fec0eb..db7e853db 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php @@ -168,6 +168,7 @@ abstract class AbstractSeoCrudController extends AbstractCrudController // Error (Default: false) $error_msg = false; + $ex = new \Exception(); // Create the Form from the request $updateSeoForm = $this->getUpdateSeoForm($this->getRequest()); From eaf5ab7a7eba150f0d293d9901a9c2689fec873a Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 09:20:48 +0100 Subject: [PATCH 03/10] Fix "Undefined variable: ex" --- .../Admin/AbstractCrudController.php | 38 ++++++++++--------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php index 8bce71bd1..1021d4283 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php @@ -287,7 +287,6 @@ abstract class AbstractCrudController extends BaseAdminController // Error (Default: false) $error_msg = false; - $ex = new \Exception(); // Create the Creation Form $creationForm = $this->getCreationForm($this->getRequest()); @@ -336,15 +335,17 @@ abstract class AbstractCrudController extends BaseAdminController $error_msg = $ex->getMessage(); } - $this->setupFormErrorContext( - $this->getTranslator()->trans("%obj creation", array('%obj' => $this->objectName)), - $error_msg, - $creationForm, - $ex - ); + if (false !=== $error_msg) { + $this->setupFormErrorContext( + $this->getTranslator()->trans("%obj creation", array('%obj' => $this->objectName)), + $error_msg, + $creationForm, + $ex + ); - // At this point, the form has error, and should be redisplayed. - return $this->renderList(); + // At this point, the form has error, and should be redisplayed. + return $this->renderList(); + } } /** @@ -385,7 +386,6 @@ abstract class AbstractCrudController extends BaseAdminController // Error (Default: false) $error_msg = false; - $ex = new \Exception(); // Create the Form from the request $changeForm = $this->getUpdateForm($this->getRequest()); @@ -437,15 +437,17 @@ abstract class AbstractCrudController extends BaseAdminController $error_msg = $ex->getMessage();*/ } - // At this point, the form has errors, and should be redisplayed. - $this->setupFormErrorContext( - $this->getTranslator()->trans("%obj modification", array('%obj' => $this->objectName)), - $error_msg, - $changeForm, - $ex - ); + if (false !=== $error_msg) { + // At this point, the form has errors, and should be redisplayed. + $this->setupFormErrorContext( + $this->getTranslator()->trans("%obj modification", array('%obj' => $this->objectName)), + $error_msg, + $changeForm, + $ex + ); - return $this->renderEditionTemplate(); + return $this->renderEditionTemplate(); + } } /** From e402fe051f65aa52d4a1c1edc177330cc842d31b Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 09:22:25 +0100 Subject: [PATCH 04/10] Fix "Undefined variable: ex" --- .../Admin/AbstractSeoCrudController.php | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php index db7e853db..2735ce176 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php @@ -168,7 +168,6 @@ abstract class AbstractSeoCrudController extends AbstractCrudController // Error (Default: false) $error_msg = false; - $ex = new \Exception(); // Create the Form from the request $updateSeoForm = $this->getUpdateSeoForm($this->getRequest()); @@ -222,15 +221,17 @@ abstract class AbstractSeoCrudController extends AbstractCrudController // Pass it to the parser $this->getParserContext()->addForm($changeForm); } - - $this->setupFormErrorContext( - $this->getTranslator()->trans("%obj SEO modification", array('%obj' => $this->objectName)), - $error_msg, - $updateSeoForm, - $ex - ); - - // At this point, the form has errors, and should be redisplayed. - return $this->renderEditionTemplate(); + + if (false !=== $error_msg) { + $this->setupFormErrorContext( + $this->getTranslator()->trans("%obj SEO modification", array('%obj' => $this->objectName)), + $error_msg, + $updateSeoForm, + $ex + ); + + // At this point, the form has errors, and should be redisplayed. + return $this->renderEditionTemplate(); + } } } From 553022ec58814da68bd2b05b03b37d34dff865ae Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 11:52:06 +0100 Subject: [PATCH 05/10] Add translation to jQPlot title --- core/lib/Thelia/Controller/Admin/HomeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Controller/Admin/HomeController.php b/core/lib/Thelia/Controller/Admin/HomeController.php index d4458843d..eb7a9a2ab 100644 --- a/core/lib/Thelia/Controller/Admin/HomeController.php +++ b/core/lib/Thelia/Controller/Admin/HomeController.php @@ -45,7 +45,7 @@ class HomeController extends BaseAdminController $data = new \stdClass(); - $data->title = "Stats on " . $this->getRequest()->query->get('month', date('m')) . "/" . $this->getRequest()->query->get('year', date('Y')); + $data->title = $this->getTranslator()->trans("Stats on %month/%year", array('%month' => $this->getRequest()->query->get('month', date('m')), '%year' => $this->getRequest()->query->get('year', date('Y')))); /* sales */ $saleSeries = new \stdClass(); From 2403cc52006300331356bf3cd3cae10adeee8a78 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 11:53:36 +0100 Subject: [PATCH 06/10] Add translation to jQPlot title --- templates/backOffice/default/I18n/en_US.php | 1895 ++++++++++--------- 1 file changed, 948 insertions(+), 947 deletions(-) diff --git a/templates/backOffice/default/I18n/en_US.php b/templates/backOffice/default/I18n/en_US.php index fb8b8bded..1d22ab2f2 100644 --- a/templates/backOffice/default/I18n/en_US.php +++ b/templates/backOffice/default/I18n/en_US.php @@ -1,949 +1,950 @@ - ' (default)', - '© Thelia 2013' => '© Thelia 2013', - '(edit)' => '(edit)', - 'Check the list of ISO 639-1 codes' => 'Check the list of ISO 639-1 codes', - '0 combinations' => '0 combinations', + ' (default)', + '© Thelia 2013' => '© Thelia 2013', + '(edit)' => '(edit)', + 'Check the list of ISO 639-1 codes' => 'Check the list of ISO 639-1 codes', + '0 combinations' => '0 combinations', 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration - of change the translation file by hand.' => 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration of change the translation file by hand.', - 'Congratulations, all text is now translated !' => 'Congratulations, all text is now translated !', - 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.' => 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.', - 'A content could be attached to more than one folder. Select here the additional folders for this content.' => 'A content could be attached to more than one folder. Select here the additional folders for this content.', - 'A product could be attached to more than one category. Select here the additional categories for this product.' => 'A product could be attached to more than one category. Select here the additional categories for this product.', - 'A short description, used when a summary or an introduction is required' => 'A short description, used when a summary or an introduction is required', - 'A short post-description information' => 'A short post-description information', - 'Aborted orders' => 'Aborted orders', - 'Accessory title' => 'Accessory title', - 'Action' => 'Action', - 'Actions' => 'Actions', - 'Activate this log destination' => 'Activate this log destination', - 'Add' => 'Add', - 'Add a new Customer' => 'Add a new Customer', - 'Add a new address' => 'Add a new address', - 'Add a new category' => 'Add a new category', - 'Add a new combination' => 'Add a new combination', - 'Add a new content' => 'Add a new content', - 'Add a new country' => 'Add a new country', - 'Add a new currency' => 'Add a new currency', - 'Add a new folder' => 'Add a new folder', - 'Add a new language' => 'Add a new language', - 'Add a new mailing template' => 'Add a new mailing template', - 'Add a new product' => 'Add a new product', - 'Add a new product attribute' => 'Add a new product attribute', - 'Add a new product feature' => 'Add a new product feature', - 'Add a new product template' => 'Add a new product template', - 'Add a new shipping configuration' => 'Add a new shipping configuration', - 'Add a new variable' => 'Add a new variable', - 'Add tax to this group' => 'Add tax to this group', - 'Add this attribute to all product templates' => 'Add this attribute to all product templates', - 'Add this country' => 'Add this country', - 'Add this feature to all product templates' => 'Add this feature to all product templates', - 'Add to all product templates' => 'Add to all product templates', - 'Additional Folders' => 'Additional Folders', - 'Additional address' => 'Additional address', - 'Additional categories' => 'Additional categories', - 'Address' => 'Address', - 'Administration logs' => 'Administration logs', - 'Administration profiles' => 'Administration profiles', - 'Administrators' => 'Administrators', - 'All orders' => 'All orders', - 'Alpha code 2' => 'Alpha code 2', - 'Alpha code 3' => 'Alpha code 3', - 'Amount' => 'Amount', - 'An error occured' => 'An error occured', - 'And' => 'And', - 'Application field' => 'Application field', - 'Apply' => 'Apply', - 'Associations' => 'Associations', - 'Attribute' => 'Attribute', - 'Attribute Combinations' => 'Attribute Combinations', - 'Attribute Name' => 'Attribute Name', - 'Attribute information' => 'Attribute information', - 'Attribute title' => 'Attribute title', - 'Attribute values' => 'Attribute values', - 'Attributes' => 'Attributes', - 'Attributes & Features' => 'Attributes & Features', - 'Auth Mode' => 'Auth Mode', - 'Auth Mode :' => 'Auth Mode :', - 'Average cart' => 'Average cart', - 'Back' => 'Back', - 'Back-office home' => 'Back-office home', - 'Back-office templates' => 'Back-office templates', - 'Back-office users' => 'Back-office users', - 'Browse files' => 'Browse files', - 'Browse this category' => 'Browse this category', - 'Browse this folder' => 'Browse this folder', - 'Can\'t be cumulative' => 'Can\'t be cumulative', - 'Can\'t load documents, please refresh this page.' => 'Can\'t load documents, please refresh this page.', - 'Can\'t load images, please refresh this page.' => 'Can\'t load images, please refresh this page.', - 'Can\'t reorder documents, please refresh this page.' => 'Can\'t reorder documents, please refresh this page.', - 'Can\'t reorder images, please refresh this page.' => 'Can\'t reorder images, please refresh this page.', - 'Cancel' => 'Cancel', - 'Cancel changes and revert to original value' => 'Cancel changes and revert to original value', - 'Cancel this order' => 'Cancel this order', - 'Cart - Prices in %currency' => 'Cart - Prices in %currency', - 'Catalog' => 'Catalog', - 'Categories' => 'Categories', - 'Categories in %cat' => 'Categories in %cat', - 'Category created on %date_create. Last modification: %date_change' => 'Category created on %date_create. Last modification: %date_change', - 'Category title' => 'Category title', - 'Cellular phone' => 'Cellular phone', - 'Cellular phone number' => 'Cellular phone number', - 'Change this administrator' => 'Change this administrator', - 'Change this attribute' => 'Change this attribute', - 'Change this country' => 'Change this country', - 'Change this currency' => 'Change this currency', - 'Change this feature' => 'Change this feature', - 'Change this language' => 'Change this language', - 'Change this mailing template' => 'Change this mailing template', - 'Change this product attribute' => 'Change this product attribute', - 'Change this product feature' => 'Change this product feature', - 'Change this product template' => 'Change this product template', - 'Change this profile' => 'Change this profile', - 'Change this shipping configuration' => 'Change this shipping configuration', - 'Change this shipping zone' => 'Change this shipping zone', - 'Change this tax' => 'Change this tax', - 'Change this tax rule' => 'Change this tax rule', - 'Change this template' => 'Change this template', - 'Change this variable' => 'Change this variable', - 'Chapo' => 'Chapo', - 'Check this box if you want to add this attributes to all product templates' => 'Check this box if you want to add this attributes to all product templates', - 'Check this box if you want to add this features to all product templates' => 'Check this box if you want to add this features to all product templates', - 'Choose a country' => 'Choose a country', - 'City' => 'City', - 'Classic modules' => 'Classic modules', - 'Click here' => 'Click here', - 'Close' => 'Close', - 'Close administation session' => 'Close administration session', - 'Code' => 'Code', - 'Code :' => 'Code :', - 'Combination EAN Code' => 'Combination EAN Code', - 'Combination builder' => 'Combination builder', - 'Combination reference' => 'Combination reference', - 'Company' => 'Company', - 'Condition\'s category :' => 'Condition\'s category :', - 'Conditions' => 'Conditions', - 'Configuration' => 'Configuration', - 'Configuration mailing system' => 'Configuration mailing system', - 'Configure' => 'Configure', - 'Configure this module' => 'Configure this module', - 'Confirm' => 'Confirm', - 'Confirm changes' => 'Confirm changes', - 'Confirmation' => 'Confirmation', - 'Content title' => 'Content title', - 'Contents in %fold' => 'Contents in %fold', - 'Copy source text in input field' => 'Copy source text in input field', - 'Countries' => 'Countries', - 'Countries that have the same tax rule' => 'Countries that have the same tax rule', - 'Country' => 'Country', - 'Country description' => 'Country description', - 'Country short description' => 'Country short description', - 'Country title' => 'Country title', - 'Coupon' => 'Coupon', - 'Coupon code' => 'Coupon code', - 'Coupons' => 'Coupons', - 'Coupons : ' => 'Coupons : ', - 'Create' => 'Create', - 'Create a customer address' => 'Create a customer address', - 'Create a new administrator' => 'Create a new administrator', - 'Create a new attribute' => 'Create a new attribute', - 'Create a new attribute value' => 'Create a new attribute value', - 'Create a new category' => 'Create a new category', - 'Create a new combination' => 'Create a new combination', - 'Create a new content' => 'Create a new content', - 'Create a new country' => 'Create a new country', - 'Create a new coupon' => 'Create a new coupon', - 'Create a new currency' => 'Create a new currency', - 'Create a new customer' => 'Create a new customer', - 'Create a new feature' => 'Create a new feature', - 'Create a new feature value' => 'Create a new feature value', - 'Create a new folder' => 'Create a new folder', - 'Create a new language' => 'Create a new language', - 'Create a new mailing template' => 'Create a new mailing template', - 'Create a new product' => 'Create a new product', - 'Create a new product template' => 'Create a new product template', - 'Create a new profile' => 'Create a new profile', - 'Create a new shipping configuration' => 'Create a new shipping configuration', - 'Create a new tax' => 'Create a new tax', - 'Create a new tax rule' => 'Create a new tax rule', - 'Create a new variable' => 'Create a new variable', - 'Create combinations' => 'Create combinations', - 'Create coupon' => 'Create coupon', - 'Create this address' => 'Create this address', - 'Create this attribute' => 'Create this attribute', - 'Create this category' => 'Create this category', - 'Create this combination' => 'Create this combination', - 'Create this content' => 'Create this content', - 'Create this country' => 'Create this country', - 'Create this currency' => 'Create this currency', - 'Create this customer' => 'Create this customer', - 'Create this feature' => 'Create this feature', - 'Create this folder' => 'Create this folder', - 'Create this language' => 'Create this language', - 'Create this mailing template' => 'Create this mailing template', - 'Create this product' => 'Create this product', - 'Create this product template' => 'Create this product template', - 'Create this shipping configuration' => 'Create this shipping configuration', - 'Create this value' => 'Create this value', - 'Create this variable' => 'Create this variable', - 'Currencies' => 'Currencies', - 'Currency ISO 4217 Code' => 'Currency ISO 4217 Code', - 'Currency name' => 'Currency name', - 'Currency rate' => 'Currency rate', - 'Currency symbol' => 'Currency symbol', - 'Current product template' => 'Current product template', - 'Current quantity' => 'Current quantity', - 'Current version' => 'Current version', - 'Customer' => 'Customer', - 'Customer informations' => 'Customer information', - 'Customers' => 'Customers', - 'Customers list' => 'Customers list', - 'Cutomer Name' => 'Cutomer Name', - 'Dashboard' => 'Dashboard', - 'Date & Hour' => 'Date & Hour', - 'Date of last order' => 'Date of last order', - 'Days before expiration' => 'Days before expiration', - 'Deactivate %title module' => 'Deactivate %title module', - 'Default' => 'Default', - 'Default address' => 'Default address', - 'Define here this product\'s accessories' => 'Define here this product\'s accessories', - 'Delete' => 'Delete', - 'Delete a combination' => 'Delete a combination', - 'Delete a module' => 'Delete a module', - 'Delete a variable' => 'Delete a variable', - 'Delete address' => 'Delete address', - 'Delete administrator' => 'Delete administrator', - 'Delete also module data' => 'Delete also module data', - 'Delete an order' => 'Delete an order', - 'Delete attribute' => 'Delete attribute', - 'Delete attribute value' => 'Delete attribute value', - 'Delete category' => 'Delete category', - 'Delete content' => 'Delete content', - 'Delete country' => 'Delete country', - 'Delete currency' => 'Delete currency', - 'Delete customer' => 'Delete customer', - 'Delete feature' => 'Delete feature', - 'Delete feature value' => 'Delete feature value', - 'Delete folder' => 'Delete folder', - 'Delete language' => 'Delete language', - 'Delete mailing template' => 'Delete mailing template', - 'Delete product' => 'Delete product', - 'Delete profile' => 'Delete profile', - 'Delete shipping configuration' => 'Delete shipping configuration', - 'Delete tax' => 'Delete tax', - 'Delete tax rule' => 'Delete tax rule', - 'Delete template' => 'Delete template', - 'Delete this accessory' => 'Delete this accessory', - 'Delete this administrator' => 'Delete this administrator', - 'Delete this attribute' => 'Delete this attribute', - 'Delete this category and all its contents' => 'Delete this category and all its contents', - 'Delete this combination' => 'Delete this combination', - 'Delete this content' => 'Delete this content', - 'Delete this country' => 'Delete this country', - 'Delete this currency' => 'Delete this currency', - 'Delete this customer and all his orders' => 'Delete this customer and all his orders', - 'Delete this feature' => 'Delete this feature', - 'Delete this folder and all its contents' => 'Delete this folder and all its contents', - 'Delete this language' => 'Delete this language', - 'Delete this mailing template' => 'Delete this mailing template', - 'Delete this module' => 'Delete this module', - 'Delete this product' => 'Delete this product', - 'Delete this product attribute' => 'Delete this product attribute', - 'Delete this product feature' => 'Delete this product feature', - 'Delete this product template' => 'Delete this product template', - 'Delete this profile' => 'Delete this profile', - 'Delete this shipping configuration' => 'Delete this shipping configuration', - 'Delete this tax' => 'Delete this tax', - 'Delete this tax rule' => 'Delete this tax rule', - 'Delete this value' => 'Delete this value', - 'Delete this variable' => 'Delete this variable', - 'Delete this zone' => 'Delete this zone', - 'Delivery address' => 'Delivery address', - 'Delivery module' => 'Delivery module', - 'Delivery modules' => 'Delivery modules', - 'Description' => 'Description', - 'Destinations' => 'Destinations', - 'Details' => 'Details', - 'Disabled coupons' => 'Disabled coupons', - 'Discount' => 'Discount', - 'Do not use a product template' => 'Do not use a product template', - 'Do you really want to add this attribute to all product templates ?' => 'Do you really want to add this attribute to all product templates ?', - 'Do you really want to add this feature to all product templates ?' => 'Do you really want to add this feature to all product templates ?', - 'Do you really want to cancel this order ?' => 'Do you really want to cancel this order ?', - 'Do you really want to delete this address ?' => 'Do you really want to delete this address ?', - 'Do you really want to delete this administrator ?' => 'Do you really want to delete this administrator ?', - 'Do you really want to delete this attribute ? It will be removed from all product templates.' => 'Do you really want to delete this attribute ? It will be removed from all product templates.', - 'Do you really want to delete this attribute value ?' => 'Do you really want to delete this attribute value ?', - 'Do you really want to delete this category and all its content ?' => 'Do you really want to delete this category and all its content ?', - 'Do you really want to delete this combination ?' => 'Do you really want to delete this combination ?', - 'Do you really want to delete this content ?' => 'Do you really want to delete this content ?', - 'Do you really want to delete this country ?' => 'Do you really want to delete this country ?', - 'Do you really want to delete this currency ?' => 'Do you really want to delete this currency ?', - 'Do you really want to delete this customer ?' => 'Do you really want to delete this customer ?', - 'Do you really want to delete this element ?' => 'Do you really want to delete this element ?', - 'Do you really want to delete this feature ? It will be removed from all product templates.' => 'Do you really want to delete this feature ? It will be removed from all product templates.', - 'Do you really want to delete this feature value ?' => 'Do you really want to delete this feature value ?', - 'Do you really want to delete this folder and all its content ?' => 'Do you really want to delete this folder and all its content ?', - 'Do you really want to delete this language ?' => 'Do you really want to delete this language ?', - 'Do you really want to delete this mailing template ?' => 'Do you really want to delete this mailing template ?', - 'Do you really want to delete this module ?' => 'Do you really want to delete this module ?', - 'Do you really want to delete this product ?' => 'Do you really want to delete this product ?', - 'Do you really want to delete this profile ?' => 'Do you really want to delete this profile ?', - 'Do you really want to delete this shipping configuration ?' => 'Do you really want to delete this shipping configuration ?', - 'Do you really want to delete this tax ?' => 'Do you really want to delete this tax ?', - 'Do you really want to delete this tax rule ?' => 'Do you really want to delete this tax rule ?', - 'Do you really want to delete this template ? It will be removed from all products.' => 'Do you really want to delete this template ? It will be removed from all products.', - 'Do you really want to delete this variable ?' => 'Do you really want to delete this variable ?', - 'Do you really want to enable this element ?' => 'Do you really want to enable this element ?', - 'Do you really want to remove the content from this folder ?' => 'Do you really want to remove the content from this folder ?', - 'Do you really want to remove the product from this category ?' => 'Do you really want to remove the product from this category ?', - 'Do you really want to remove this accessory from the product ?' => 'Do you really want to remove this accessory from the product ?', - 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.' => 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.', - 'Do you really want to remove this attribute from the template ?' => 'Do you really want to remove this attribute from the template ?', - 'Do you really want to remove this country ?' => 'Do you really want to remove this country ?', - 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.' => 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.', - 'Do you really want to remove this feature from the template ?' => 'Do you really want to remove this feature from the template ?', - 'Do you really want to remove this related content ?' => 'Do you really want to remove this related content ?', - 'Do you really want to remove this related content from the product ?' => 'Do you really want to remove this related content from the product ?', - 'Do you really want to remove this zone ?' => 'Do you really want to remove this zone ?', - 'Do you really want to set this coupon available to everyone ?' => 'Do you really want to set this coupon available to everyone ?', - 'Do you really want to use this address by default ?' => 'Do you really want to use this address by default ?', - 'Document' => 'Document', - 'Document informations' => 'Document information', - 'Documents' => 'Documents', - 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.' => 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.', - 'Download invoice as PDF' => 'Download invoice as PDF', - 'Download purchase order as PDF' => 'Download purchase order as PDF', - 'Drop files to upload' => 'Drop files to upload', - 'Drop tax here to create a tax group' => 'Drop tax here to create a tax group', - 'Drop tax here to delete from group' => 'Drop tax here to delete from group', - 'E-mail templates' => 'E-mail templates', - 'EAN Code' => 'EAN Code', - 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.' => 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.', - 'Edit' => 'Edit', - 'Edit %title' => 'Edit %title', - 'Edit a country' => 'Edit a country', - 'Edit a currency' => 'Edit a currency', - 'Edit a customer' => 'Edit a customer', - 'Edit a customer address' => 'Edit a customer address', - 'Edit a document' => 'Edit a document', - 'Edit a feature' => 'Edit a feature', - 'Edit a language' => 'Edit a language', - 'Edit a mailing template' => 'Edit a mailing template', - 'Edit a module' => 'Edit a module', - 'Edit a profile' => 'Edit a profile', - 'Edit a shipping configuration' => 'Edit a shipping configuration', - 'Edit a shipping zone' => 'Edit a shipping zone', - 'Edit a system variable' => 'Edit a system variable', - 'Edit a tax' => 'Edit a tax', - 'Edit a tax rule' => 'Edit a tax rule', - 'Edit a template' => 'Edit a template', - 'Edit an attribute' => 'Edit an attribute', - 'Edit an image' => 'Edit an image', - 'Edit an order' => 'Edit an order', - 'Edit attribute "%name"' => 'Edit attribute "%name"', - 'Edit category' => 'Edit category', - 'Edit category %title' => 'Edit category %title', - 'Edit content' => 'Edit content', - 'Edit content %title' => 'Edit content %title', - 'Edit country "%name"' => 'Edit country "%name"', - 'Edit currency "%name"' => 'Edit currency "%name"', - 'Edit customer %firstname %lastname' => 'Edit customer %firstname %lastname', - 'Edit delivery address' => 'Edit delivery address', - 'Edit document "%name"' => 'Edit document "%name"', - 'Edit feature "%name"' => 'Edit feature "%name"', - 'Edit folder' => 'Edit folder', - 'Edit folder %title' => 'Edit folder %title', - 'Edit image "%name"' => 'Edit image "%name"', - 'Edit information in %lng' => 'Edit information in %lng', - 'Edit invoice address' => 'Edit invoice address', - 'Edit mailing template "%name"' => 'Edit mailing template "%name"', - 'Edit next category' => 'Edit next category', - 'Edit next content' => 'Edit next content', - 'Edit next folder' => 'Edit next folder', - 'Edit next product' => 'Edit next product', - 'Edit order address' => 'Edit order address', - 'Edit previous category' => 'Edit previous category', - 'Edit previous content' => 'Edit previous content', - 'Edit previous folder' => 'Edit previous folder', - 'Edit previous product' => 'Edit previous product', - 'Edit prices in %curr' => 'Edit prices in %curr', - 'Edit product' => 'Edit product', - 'Edit product %title' => 'Edit product %title', - 'Edit shipping configuration %title' => 'Edit shipping configuration %title', - 'Edit shipping zone %title' => 'Edit shipping zone %title', - 'Edit tax rule taxes' => 'Edit tax rule taxes', - 'Edit template "%name"' => 'Edit template "%name"', - 'Edit this address' => 'Edit this address', - 'Edit this category' => 'Edit this category', - 'Edit this content' => 'Edit this content', - 'Edit this customer' => 'Edit this customer', - 'Edit this folder' => 'Edit this folder', - 'Edit this module' => 'Edit this module', - 'Edit this order' => 'Edit this order', - 'Edit this product' => 'Edit this product', - 'Edit variable %name' => 'Edit variable %name', - 'Editing %cat' => 'Editing %cat', - 'Editing %fold' => 'Editing %fold', - 'Editing %title' => 'Editing %title', - 'Editing attribute "%name"' => 'Editing attribute "%name"', - 'Editing country "%name"' => 'Editing country "%name"', - 'Editing currency "%name"' => 'Editing currency "%name"', - 'Editing customer "%name"' => 'Editing customer "%name"', - 'Editing document "%name"' => 'Editing document "%name"', - 'Editing feature "%name"' => 'Editing feature "%name"', - 'Editing image "%name"' => 'Editing image "%name"', - 'Editing mailing template "%name"' => 'Editing mailing template "%name"', - 'Editing module' => 'Editing module', - 'Editing profile' => 'Editing profile', - 'Editing shipping configuration "%name"' => 'Editing shipping configuration "%name"', - 'Editing shipping zone "%name"' => 'Editing shipping zone "%name"', - 'Editing tax' => 'Editing tax', - 'Editing tax rule' => 'Editing tax rule', - 'Editing template "%name"' => 'Editing template "%name"', - 'Editing variable "%name"' => 'Editing variable "%name"', - 'Email address' => 'Email address', - 'Email used when you send an email to your customers (Order confirmations, etc).' => 'Email used when you send an email to your customers (Order confirmations, etc).', - 'Enable remote SMTP use : ' => 'Enable remote SMTP use : ', - 'Enable/Disable' => 'Enable/Disable', - 'Enabled coupons' => 'Enabled coupons', - 'Encryption' => 'Encryption', - 'Encryption :' => 'Encryption :', - 'Enter here all possible attribute values.' => 'Enter here all possible attribute values.', - 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.' => 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.', - 'Enter here the attribute name in the default language (%language_name)' => 'Enter here the attribute name in the default language (%language_name)', - 'Enter here the category name in the default language (%title)' => 'Enter here the category name in the default language (%title)', - 'Enter here the content name in the default language (%title)' => 'Enter here the content name in the default language (%title)', - 'Enter here the currency name in the default language (%title)' => 'Enter here the currency name in the default language (%title)', - 'Enter here the feature name in the default language (%title)' => 'Enter here the feature name in the default language (%title)', - 'Enter here the feature value as free text' => 'Enter here the feature value as free text', - 'Enter here the folder name in the default language (%title)' => 'Enter here the folder name in the default language (%title)', - 'Enter here the mailing template purpose in the default language (%title)' => 'Enter here the mailing template purpose in the default language (%title)', - 'Enter here the product name in the default language (%title)' => 'Enter here the product name in the default language (%title)', - 'Enter here the product price in the default currency (%title)' => 'Enter here the product price in the default currency (%title)', - 'Enter here the product reference' => 'Enter here the product reference', - 'Enter here the product tax price in the default currency (%title)' => 'Enter here the product tax price in the default currency (%title)', - 'Enter here the product weight, in Kilogrammes' => 'Enter here the product weight, in Kilogrammes', - 'Enter here the template name in the default language (%title)' => 'Enter here the template name in the default language (%title)', - 'Enter here the value in the current edit language (%language_name)' => 'Enter here the value in the current edit language (%language_name)', - 'Enter here the value in the current edit language (%title)' => 'Enter here the value in the current edit language (%title)', - 'Enter new accessory position' => 'Enter new accessory position', - 'Enter new attribute position' => 'Enter new attribute position', - 'Enter new category position' => 'Enter new category position', - 'Enter new content position' => 'Enter new content position', - 'Enter new currency position' => 'Enter new currency position', - 'Enter new feature position' => 'Enter new feature position', - 'Enter new folder position' => 'Enter new folder position', - 'Enter new module position' => 'Enter new module position', - 'Enter new product position' => 'Enter new product position', - 'Enter new value position' => 'Enter new value position', - 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses' => 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses', - 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.' => 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.', - 'Error' => 'Error', - 'Example :' => 'Example :', - 'Existing combinations will be deleted. Do you want to continue ?' => 'Existing combinations will be deleted. Do you want to continue ?', - 'Expiration date' => 'Expiration date', - 'Expiration date :' => 'Expiration date :', - 'Failed to get converted prices. Please try again.' => 'Failed to get converted prices. Please try again.', - 'Failed to get prices. Please try again.' => 'Failed to get prices. Please try again.', - 'Fax number' => 'Fax number', - 'Feature Name' => 'Feature Name', - 'Feature information' => 'Feature information', - 'Feature title' => 'Feature title', - 'Feature value' => 'Feature value', - 'Feature value for this product' => 'Feature value for this product', - 'Feature values' => 'Feature values', - 'Features' => 'Features', - 'File' => 'File', - 'File names' => 'File names', - 'First Name' => 'First Name', - 'First name' => 'First name', - 'First orders' => 'First orders', - 'FirstName' => 'FirstName', - 'Firstname' => 'Firstname', - 'Folder created on %date_create. Last modification: %date_change' => 'Folder created on %date_create. Last modification: %date_change', - 'Folder title' => 'Folder title', - 'Folders' => 'Folders', - 'Folders in %fold' => 'Folders in %fold', - 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.' => 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.', - 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).' => 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).', - 'From' => 'From', - 'Front-office templates' => 'Front-office templates', - 'General' => 'General', - 'General configuration' => 'General configuration', - 'General description' => 'General description', - 'Go to administration home' => 'Go to administration home', - 'H:i:s' => 'H:i:s', - 'HTML version of this message' => 'HTML version of this message', - 'Home' => 'Home', - 'Host' => 'Host', - 'Host :' => 'Host :', - 'ID' => 'ID', - 'IP Addresses' => 'IP Addresses', - 'ISO 4217 Code' => 'ISO 4217 Code', - 'ISO 4217 code' => 'ISO 4217 code', - 'ISO 639 Code' => 'ISO 639 Code', - 'ISO Code' => 'ISO Code', - 'If a translation is missing or incomplete :' => 'If a translation is missing or incomplete :', - 'If yes, redirections through Redirect::exec() will be displayed as links' => 'If yes, redirections through Redirect::exec() will be displayed as links', - 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.' => 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.', - 'Image' => 'Image', - 'Image information' => 'Image information', - 'Images' => 'Images', - 'Impossible to change default country. Please contact your administrator or try later' => 'Impossible to change default country. Please contact your administrator or try later', - 'Impossible to change default languages. Please contact your administrator or try later' => 'Impossible to change default languages. Please contact your administrator or try later', - 'In order to manges your shop taxes you can manage' => 'In order to manges your shop taxes you can manage', - 'In page' => 'In page', - 'In pages:' => 'In pages:', - 'Install a new module' => 'Install a new module', - 'Invoice and Delivery' => 'Invoice and Delivery', - 'Invoice date' => 'Invoice date', - 'Invoice informations' => 'Invoice information', - 'Invoice reference' => 'Invoice reference', - 'Is available on special offers' => 'Is available on special offers', - 'Is cumulative' => 'Is cumulative', - 'Is disabled' => 'Is disabled', - 'Is enabled' => 'Is enabled', - 'Is removing postage' => 'Is removing postage', - 'Is unlimited' => 'Is unlimited', - 'Keep the most important part of your description in the first 150-160 characters.' => 'Keep the most important part of your description in the first 150-160 characters.', - 'Kg' => 'Kg', - 'Label' => 'Label', - 'Language name' => 'Language name', - 'Language title' => 'Language title', - 'Languages' => 'Languages', - 'Languages & URLs' => 'Languages & URLs', - 'Languages management' => 'Languages management', - 'Last Name' => 'Last Name', - 'Last name' => 'Last name', - 'Last order amount' => 'Last order amount', - 'LastName' => 'LastName', - 'Lastname' => 'Lastname', - 'Latest version available' => 'Latest version available', - 'Leave empty to keep current password' => 'Leave empty to keep current password', - 'Lire la suite' => 'Lire la suite', - 'Loading Thelia lastest news...' => 'Loading Thelia lastest news...', - 'Locale' => 'Locale', - 'Log lines format' => 'Log lines format', - 'Log lines header format. You may use the following variables: ' => 'Log lines header format. You may use the following variables: ', - 'Login' => 'Login', - 'Logout' => 'Logout', - 'Long description :' => 'Long description :', - 'Mailing system' => 'Mailing system', - 'Mailing template name' => 'Mailing template name', - 'Mailing template purpose' => 'Mailing template purpose', - 'Mailing templates' => 'Mailing templates', - 'Make sure it uses keywords found within the page itself.' => 'Make sure it uses keywords found within the page itself.', - 'Make sure that your title is clear, and contains many of the keywords within the page itself.' => 'Make sure that your title is clear, and contains many of the keywords within the page itself.', - 'Manage module rights' => 'Manage module rights', - 'Manage resource rights' => 'Manage resource rights', - 'Manage taxes' => 'Manage taxes', - 'Manage the tax rule taxes appliance order' => 'Manage the tax rule taxes appliance order', - 'Max usage :' => 'Max usage :', - 'May be cumulative' => 'May be cumulative', - 'Message created on %date_create. Last modification: %date_change' => 'Message created on %date_create. Last modification: %date_change', - 'Message level' => 'Message level', - 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ' => 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ', - 'Module' => 'Module', - 'Module access rights' => 'Module access rights', - 'Module created on %date_create. Last modification: %date_change' => 'Module created on %date_create. Last modification: %date_change', - 'Modules' => 'Modules', - 'More information about ISO 4217' => 'More information about ISO 4217', - 'NONE' => 'NONE', - 'Name' => 'Name', - 'New' => 'New', - 'New customers' => 'New customers', - 'News' => 'News', - 'No' => 'No', - 'No Folders found' => 'No Folders found', - 'No area defined with this id' => 'No area defined with this id', - 'No available content in this folder' => 'No available content in this folder', - 'No available product in this category' => 'No available product in this category', - 'No available value for this attribute' => 'No available value for this attribute', - 'No categories found' => 'No categories found', - 'No country has been created yet. Click the + button to create one.' => 'No country has been created yet. Click the + button to create one.', - 'No currency has been created yet. Click the + button to create one.' => 'No currency has been created yet. Click the + button to create one.', - 'No folders found' => 'No folders found', - 'No mailing template has been created yet. Click the + button to create one.' => 'No mailing template has been created yet. Click the + button to create one.', - 'No product attribute has been created yet. Click the + button to create one.' => 'No product attribute has been created yet. Click the + button to create one.', - 'No product feature has been created yet. Click the + button to create one.' => 'No product feature has been created yet. Click the + button to create one.', - 'No product template has been created yet. Click the + button to create one.' => 'No product template has been created yet. Click the + button to create one.', - 'No value has been created yet. Click the + button to create one.' => 'No value has been created yet. Click the + button to create one.', - 'N° ISO' => 'N° ISO', - 'OK' => 'OK', - 'Offline products' => 'Offline products', - 'Online' => 'Online', - 'Online products' => 'Online products', - 'Oops! An Error Occurred' => 'Oops! An Error Occurred', - 'Order #' => 'Order #', - 'Order %ref' => 'Order %ref', - 'Order n°' => 'Order n°', - 'Order status:' => 'Order status:', - 'Ordered products' => 'Ordered products', - 'Orders' => 'Orders', - 'Originating file line number ' => 'Originating file line number ', - 'Originating file name' => 'Originating file name', - 'Originating function name ' => 'Originating function name ', - 'Other addresses' => 'Other addresses', - 'Overall sales' => 'Overall sales', - 'PDF templates' => 'PDF templates', - 'PDF | Invoice' => 'PDF | Invoice', - 'PDF | Purchase order' => 'PDF | Purchase order', - 'Page not found' => 'Page not found', - 'Parameters' => 'Parameters', - 'Password' => 'Password', - 'Password :' => 'Password :', - 'Payment information' => 'Payment information', - 'Payment module' => 'Payment module', - 'Payment modules' => 'Payment modules', - 'Period' => 'Period', - 'Phone' => 'Phone', - 'Phone number' => 'Phone number', - 'Please retry' => 'Please retry', - 'Please save your Coupon in oder to affect it some conditions' => 'Please save your Coupon in oder to affect it some conditions', - 'Please select a condition category' => 'Please select a condition category', - 'Please select a coupon type' => 'Please select a coupon type', - 'Please select another condition' => 'Please select another condition', - 'Please select items to translate' => 'Please select items to translate', - 'Please select the B.O. template to translate' => 'Please select the B.O. template to translate', - 'Please select the E-mail template to translate' => 'Please select the E-mail template to translate', - 'Please select the F.O. template to translate' => 'Please select the F.O. template to translate', - 'Please select the PDF template to translate' => 'Please select the PDF template to translate', - 'Please select the module to translate' => 'Please select the module to translate', - 'Please wait, loading' => 'Please wait, loading', - 'Port' => 'Port', - 'Port :' => 'Port :', - 'Position' => 'Position', - 'Post Scriptum' => 'Post Scriptum', - 'Postage' => 'Postage', - 'Postscriptum' => 'Postscriptum', - 'Preview' => 'Preview', - 'Preview category page' => 'Preview category page', - 'Preview folder page' => 'Preview folder page', - 'Preview product page' => 'Preview product page', - 'Previous month sales' => 'Previous month sales', - 'Previous year sales' => 'Previous year sales', - 'Price' => 'Price', - 'Price excl. taxes' => 'Price excl. taxes', - 'Price incl. taxes' => 'Price incl. taxes', - 'Price
w/ taxes (%currency)' => 'Price
w/ taxes (%currency)', - 'Price
w/o taxes (%currency)' => 'Price
w/o taxes (%currency)', - 'Pricing' => 'Pricing', - 'Product' => 'Product', - 'Product Attributes' => 'Product Attributes', - 'Product EAN Code' => 'Product EAN Code', - 'Product Features' => 'Product Features', - 'Product accessories' => 'Product accessories', - 'Product attributes' => 'Product attributes', - 'Product catalog configuration' => 'Product catalog configuration', - 'Product created on %date_create. Last modification: %date_change' => 'Product created on %date_create. Last modification: %date_change', - 'Product features' => 'Product features', - 'Product price' => 'Product price', - 'Product price including taxes' => 'Product price including taxes', - 'Product tax price' => 'Product tax price', - 'Product templates' => 'Product templates', - 'Product title' => 'Product title', - 'Product weight' => 'Product weight', - 'Products' => 'Products', - 'Products in %cat' => 'Products in %cat', - 'Profil' => 'Profile', - 'Profile' => 'Profile', - 'Profile code' => 'Profile code', - 'Profile created on %date_create. Last modification: %date_change' => 'Profile created on %date_create. Last modification: %date_change', - 'Profiles' => 'Profiles', - 'Promotion' => 'Promotion', - 'Published by OpenStudio' => 'Published by OpenStudio', - 'Purpose' => 'Purpose', - 'Quantity' => 'Quantity', - 'Quickly create combinations using the combination builder' => 'Quickly create combinations using the combination builder', - 'Rate' => 'Rate', - 'Rate from Euro' => 'Rate from Euro', - 'Rate in €' => 'Rate in €', - 'Read the documentation of this module' => 'Read the documentation of this module', - 'Reference' => 'Reference', - 'Registration date' => 'Registration date', - 'Related content' => 'Related content', - 'Remove an accessory' => 'Remove an accessory', - 'Remove associated folder' => 'Remove associated folder', - 'Remove attribute' => 'Remove attribute', - 'Remove country' => 'Remove country', - 'Remove feature' => 'Remove feature', - 'Remove from all product templates' => 'Remove from all product templates', - 'Remove from category' => 'Remove from category', - 'Remove related content' => 'Remove related content', - 'Remove selected values' => 'Remove selected values', - 'Remove the product from this category' => 'Remove the product from this category', - 'Remove this attribute from all product templates' => 'Remove this attribute from all product templates', - 'Remove this feature from all product templates' => 'Remove this feature from all product templates', - 'Remove zone' => 'Remove zone', - 'Resource' => 'Resource', - 'Resource access rights' => 'Resource access rights', - 'Resources' => 'Resources', - 'Rewritten URL' => 'Rewritten URL', - 'Rights' => 'Rights', - 'SEO' => 'SEO', - 'Sale' => 'Sale', - 'Sale price incl. taxes' => 'Sale price incl. taxes', - 'Sale price
w/ taxes (%currency)' => 'Sale price
w/ taxes (%currency)', - 'Sale price
w/o taxes (%currency)' => 'Sale price
w/o taxes (%currency)', - 'Sales' => 'Sales', - 'Sales excluding shipping' => 'Sales excluding shipping', - 'Sales statistics' => 'Sales statistics', - 'Save' => 'Save', - 'Save and close' => 'Save and close', - 'Save chages' => 'Save chages', - 'Save changes' => 'Save changes', - 'Save this address' => 'Save this address', - 'Save this condition' => 'Save this condition', - 'Save your modifications' => 'Save your modifications', - 'Search' => 'Search', - 'Select a category and click (+) to add it to the additional category list' => 'Select a category and click (+) to add it to the additional category list', - 'Select a category to get its products' => 'Select a category to get its products', - 'Select a category...' => 'Select a category...', - 'Select a content and click (+) to add it to this category' => 'Select a content and click (+) to add it to this category', - 'Select a content and click (+) to add it to this product' => 'Select a content and click (+) to add it to this product', - 'Select a folder and click (+) to add it to the additional folder list' => 'Select a folder and click (+) to add it to the additional folder list', - 'Select a folder content...' => 'Select a folder content...', - 'Select a folder to get its content' => 'Select a folder to get its content', - 'Select a folder...' => 'Select a folder...', - 'Select a product and click (+) to add it as an accessory' => 'Select a product and click (+) to add it as an accessory', - 'Select a product...' => 'Select a product...', - 'Select a tax tule' => 'Select a tax tule', - 'Select a value click (+) to add it to the combination' => 'Select a value click (+) to add it to the combination', - 'Select an attribute and click (+) to add it to this template' => 'Select an attribute and click (+) to add it to this template', - 'Select an attribute and click (+) to view available values' => 'Select an attribute and click (+) to view available values', - 'Select an attribute value...' => 'Select an attribute value...', - 'Select an attribute...' => 'Select an attribute...', - 'Select an feature and click (+) to add it to this template' => 'Select an feature and click (+) to add it to this template', - 'Select an feature...' => 'Select an feature...', - 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.' => 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.', - 'Select here the tax applicable to this product' => 'Select here the tax applicable to this product', - 'Select the E-mail template you want to translate' => 'Select the E-mail template you want to translate', - 'Select the PDF template you want to translate' => 'Select the PDF template you want to translate', - 'Select the back-office template you want to translate' => 'Select the back-office template you want to translate', - 'Select the front-office template you want to translate' => 'Select the front-office template you want to translate', - 'Select the module you want to translate' => 'Select the module you want to translate', - 'Select which items you want to translate' => 'Select which items you want to translate', - 'Send a mail to this customer' => 'Send a mail to this customer', - 'Send files' => 'Send files', - 'Sequential number of log line' => 'Sequential number of log line', - 'Set as default tax rule' => 'Set as default tax rule', - 'Shipping configuration' => 'Shipping configuration', - 'Shipping configuration name' => 'Shipping configuration name', - 'Shipping zones' => 'Shipping zones', - 'Shop' => 'Shop', - 'Shop Informations' => 'Shop Information', - 'Short conclusion' => 'Short conclusion', - 'Short description' => 'Short description', - 'Short description :' => 'Short description :', - 'Show logs' => 'Show logs', - 'Some of your translations are not saved. Continue anyway ?' => 'Some of your translations are not saved. Continue anyway ?', - 'Sorry, attribute ID=%id was not found.' => 'Sorry, attribute ID=%id was not found.', - 'Sorry, country ID=%id was not found.' => 'Sorry, country ID=%id was not found.', - 'Sorry, currency ID=%id was not found.' => 'Sorry, currency ID=%id was not found.', - 'Sorry, customer ID=%id was not found.' => 'Sorry, customer ID=%id was not found.', - 'Sorry, document ID=%id was not found.' => 'Sorry, document ID=%id was not found.', - 'Sorry, feature ID=%id was not found.' => 'Sorry, feature ID=%id was not found.', - 'Sorry, image ID=%id was not found.' => 'Sorry, image ID=%id was not found.', - 'Sorry, message ID=%id was not found.' => 'Sorry, message ID=%id was not found.', - 'Sorry, template ID=%id was not found.' => 'Sorry, template ID=%id was not found.', - 'Sorry, variable ID=%id was not found.' => 'Sorry, variable ID=%id was not found.', - 'Source IP' => 'Source IP', - 'Source IP :' => 'Source IP :', - 'Status' => 'Status', - 'Stock' => 'Stock', - 'Store' => 'Store', - 'Store Business Identification Number (SIRET, etc).' => 'Store Business Identification Number (SIRET, etc).', - 'Store address' => 'Store address', - 'Store configuration' => 'Store configuration', - 'Street address' => 'Street address', - 'Subject' => 'Subject', - 'Superadministrator' => 'Superadministrator', - 'Symbol' => 'Symbol', - 'System Logs' => 'System Logs', - 'System Logs configuration' => 'System Logs configuration', - 'System logs' => 'System logs', - 'System parameters' => 'System parameters', - 'System variables' => 'System variables', - 'Tax' => 'Tax', - 'Tax created on %date_create. Last modification: %date_change' => 'Tax created on %date_create. Last modification: %date_change', - 'Tax rule created on %date_create. Last modification: %date_change' => 'Tax rule created on %date_create. Last modification: %date_change', - 'Tax rule taxes will be update for the following countries :' => 'Tax rule taxes will be update for the following countries :', - 'Tax rules' => 'Tax rules', - 'Tax rules are combination of different taxes.' => 'Tax rules are combination of different taxes.', - 'Taxed total' => 'Taxed total', - 'Taxes' => 'Taxes', - 'Taxes define the amount of money which is added to a bought product.' => 'Taxes define the amount of money which is added to a bought product.', - 'Taxes rules' => 'Taxes rules', - 'Template name' => 'Template name', - 'Template title' => 'Template title', - 'Templates' => 'Templates', - 'Text version of this message' => 'Text version of this message', - 'The HTML TITLE element is the most important element on your web page.' => 'The HTML TITLE element is the most important element on your web page.', - 'The default pricing is used when no combination is defined.' => 'The default pricing is used when no combination is defined.', - 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.' => 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.', - 'The detailed description.' => 'The detailed description.', - 'The mailing template in HTML format.' => 'The mailing template in HTML format.', - 'The mailing template in text-only format.' => 'The mailing template in text-only format.', - 'The page you\'ve requested was not found. Please check the page address, and try again.' => 'The page you\'ve requested was not found. Please check the page address, and try again.', - 'The rate from Euro (Price in Euro * rate = Price in this currency)' => 'The rate from Euro (Price in Euro * rate = Price in this currency)', - 'The server returned a "404 Not Found"' => 'The server returned a "404 Not Found"', - 'The symbol, such as $, £, €...' => 'The symbol, such as $, £, €...', - 'The syntax used is identical to the PHP date() function' => 'The syntax used is identical to the PHP date() function', - 'Thelia Back Office' => 'Thelia Back Office', - 'Thelia Languages' => 'Thelia Languages', - 'Thelia Mailing System' => 'Thelia Mailing System', - 'Thelia Mailing Templates' => 'Thelia Mailing Templates', - 'Thelia Product Attributes' => 'Thelia Product Attributes', - 'Thelia Product Features' => 'Thelia Product Features', - 'Thelia Product Templates' => 'Thelia Product Templates', - 'Thelia Shipping configuration' => 'Thelia Shipping configuration', - 'Thelia Shipping zones' => 'Thelia Shipping zones', - 'Thelia System Variables' => 'Thelia System Variables', - 'Thelia configuration' => 'Thelia configuration', - 'Thelia contributions' => 'Thelia contributions', - 'Thelia core' => 'Thelia core', - 'Thelia informations' => 'Thelia information', - 'Thelia mailing templates' => 'Thelia mailing templates', - 'Thelia product attributes' => 'Thelia product attributes', - 'Thelia product features' => 'Thelia product features', - 'Thelia product templates' => 'Thelia product templates', - 'Thelia support forum' => 'Thelia support forum', - 'Thelia system variables' => 'Thelia system variables', - 'Thelia, the open source e-commerce solution' => 'Thelia, the open source e-commerce solution', - 'There is currently no active module here.' => 'There is currently no active module here.', - 'There is no documents attached to this %type.' => 'There is no documents attached to this %type.', - 'There is no images attached to this %type.' => 'There is no images attached to this %type.', - 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.' => 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.', - 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.' => 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.', - 'This category contains no contents' => 'This category contains no contents', - 'This category doesn\'t contains any products. To add a new product, click the + button above.' => 'This category doesn\'t contains any products. To add a new product, click the + button above.', - 'This category has no sub-categories.' => 'This category has no sub-categories.', - 'This category has no sub-categories. To create a new one, click the + button above.' => 'This category has no sub-categories. To create a new one, click the + button above.', - 'This coupon is disabled, you can enable at the bottom of this form.' => 'This coupon is disabled, you can enable at the bottom of this form.', - 'This customer has not defined any delivery address' => 'This customer has not defined any delivery address', - 'This folder doesn\'t contains any contents. To add a new content, click the + button above.' => 'This folder doesn\'t contains any contents. To add a new content, click the + button above.', - 'This folder has no sub-folders.' => 'This folder has no sub-folders.', - 'This folder has no sub-folders. To create a new one, click the + button above.' => 'This folder has no sub-folders. To create a new one, click the + button above.', - 'This is the message purpose, such as \'Order confirmation\'.' => 'This is the message purpose, such as \'Order confirmation\'.', - 'This is the subject of the e-mail, such as \'Your order is confirmed\'.' => 'This is the subject of the e-mail, such as \'Your order is confirmed\'.', - 'This mailing template could not be changed.' => 'This mailing template could not be changed.', - 'This month' => 'This month', - 'This product contains no accessories' => 'This product contains no accessories', - 'This product contains no contents' => 'This product contains no contents', - 'This product doesn\'t belong to any additional category.' => 'This product doesn\'t belong to any additional category.', - 'This product doesn\'t belong to any additional folder.' => 'This product doesn\'t belong to any additional folder.', - 'This product template does not contains any features' => 'This product template does not contains any features', - 'This template contains no attributes' => 'This template contains no attributes', - 'This template contains no features' => 'This template contains no features', - 'This the unique name of this message. Do not change this value unless you understand what you do.' => 'This the unique name of this message. Do not change this value unless you understand what you do.', - 'This variable could not be changed.' => 'This variable could not be changed.', - 'This year' => 'This year', - 'Timeout' => 'Timeout', - 'Timeout :' => 'Timeout :', - 'Title' => 'Title', - 'Title :' => 'Title :', - 'To' => 'To', - 'To create a new content, select an existing folder, or create a new one.' => 'To create a new content, select an existing folder, or create a new one.', - 'To create a new product, select an existing category, or create a new one.' => 'To create a new product, select an existing category, or create a new one.', - 'To remove a value from the combination, select it and click "remove"' => 'To remove a value from the combination, select it and click "remove"', - 'Today' => 'Today', - 'Top level' => 'Top level', - 'Top level Contents' => 'Top level Contents', - 'Top level Products' => 'Top level Products', - 'Top level categories' => 'Top level categories', - 'Top level folders' => 'Top level folders', - 'Total' => 'Total', - 'Total including discount' => 'Total including discount', - 'Total without discount' => 'Total without discount', - 'Transaction reference' => 'Transaction reference', - 'Translation' => 'Translation', - 'Translations' => 'Translation', - 'Type :' => 'Type :', - 'Unit taxed price' => 'Unit taxed price', - 'Unit. price' => 'Unit. price', - 'Unlimited' => 'Unlimited', - 'Update' => 'Update', - 'Update an administrator' => 'Update an administrator', - 'Update coupon' => 'Update coupon', - 'Update rates' => 'Update rates', - 'Update tax rule taxes' => 'Update tax rule taxes', - 'Update this image' => 'Update this image', - 'Usage left' => 'Usage left', - 'Use Ctrl+click to select more than one value. You can also clear selected values.' => 'Use Ctrl+click to select more than one value. You can also clear selected values.', - 'Use HTML message defined below' => 'Use HTML message defined below', - 'Use Text message defined below' => 'Use Text message defined below', - 'Use address by default' => 'Use address by default', - 'Use default layout' => 'Use default layout', - 'Use the keyword phrase in your URL.' => 'Use the keyword phrase in your URL.', - 'Use this address by default' => 'Use this address by default', - 'Used in your store front' => 'Used in your store front', - 'Username' => 'Username', - 'Username :' => 'Username :', - 'Using a domain or subdomain for each language' => 'Using a domain or subdomain for each language', - 'Value' => 'Value', - 'Variable created on %date_create. Last modification: %date_change' => 'Variable created on %date_create. Last modification: %date_change', - 'Variable name' => 'Variable name', - 'Variable purpose' => 'Variable purpose', - 'Variable value' => 'Variable value', - 'Version %ver' => 'Version %ver', - 'View' => 'View', - 'View only missing translations' => 'View only missing translations', - 'View shop' => 'View shop', - 'View site' => 'View site', - 'Visibility' => 'Visibility', - 'Warning' => 'Warning', - 'Weight
(Kg)' => 'Weight
(Kg)', - 'Welcome' => 'Welcome', - 'Will be available on special offers' => 'Will be available on special offers', - 'Will remove postage' => 'Will remove postage', - 'Won\'t be available on special offers' => 'Won\'t be available on special offers', - 'Won\'t remove postage' => 'Won\'t remove postage', - 'Yes' => 'Yes', - 'Yesterday sales' => 'Yesterday sales', - 'You can attach here some content to this category' => 'You can attach here some content to this category', - 'You can attach here some content to this product' => 'You can attach here some content to this product', - 'You can attach this product to more categories in the details tab.' => 'You can attach this product to more categories in the details tab.', - 'You can change the default category (%title) in the "General" tab.' => 'You can change the default category (%title) in the "General" tab.', - 'You can change the default folder (%title) in the "General" tab.' => 'You can change the default folder (%title) in the "General" tab.', - 'You can\'t delete this administrator' => 'You can\'t delete this administrator', - 'You can\'t delete this profile' => 'You can\'t delete this profile', - 'You don\'t need to use commas or other punctuations.' => 'You don\'t need to use commas or other punctuations.', - 'Your current IP address is %ip' => 'Your current IP address is %ip', - 'Zip code' => 'Zip code', - 'Zones' => 'Zones', - 'activate' => 'activate', - 'activate %title module' => 'activate %title module', - 'activation' => 'activation', - 'and' => 'and', - 'classic modules' => 'classic modules', - 'code' => 'code', - 'company' => 'company', - 'customer ref' => 'customer ref', - 'd-m-Y' => 'd-m-Y', - 'date form' => 'date form', - 'date in yyyy-mm-dd format' => 'date in yyyy-mm-dd format', - 'days left' => 'days left', - 'deactivate' => 'deactivate', - 'deactivation' => 'deactivation', - 'en_US' => 'en_US', - 'firstname & lastname' => 'firstname & lastname', - 'hour in hh:mm:ss format' => 'hour in hh:mm:ss format', - 'last order' => 'last order', - 'long description' => 'long description', - 'max usage' => 'max usage', - 'order amount' => 'order amount', - 'orders for this customer' => 'orders for this customer', - 'short description' => 'short description', - 'tax rules' => 'tax rules', - 'taxes' => 'taxes', - 'time form' => 'time form', - 'title' => 'title', - 'tracking reference' => 'tracking reference', - 'uncheck all' => 'uncheck all', - 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.' => 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.', - 'yyyy-mm-dd' => 'yyyy-mm-dd', -); + of change the translation file by hand.' => 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration of change the translation file by hand.', + 'Congratulations, all text is now translated !' => 'Congratulations, all text is now translated !', + 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.' => 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.', + 'A content could be attached to more than one folder. Select here the additional folders for this content.' => 'A content could be attached to more than one folder. Select here the additional folders for this content.', + 'A product could be attached to more than one category. Select here the additional categories for this product.' => 'A product could be attached to more than one category. Select here the additional categories for this product.', + 'A short description, used when a summary or an introduction is required' => 'A short description, used when a summary or an introduction is required', + 'A short post-description information' => 'A short post-description information', + 'Aborted orders' => 'Aborted orders', + 'Accessory title' => 'Accessory title', + 'Action' => 'Action', + 'Actions' => 'Actions', + 'Activate this log destination' => 'Activate this log destination', + 'Add' => 'Add', + 'Add a new Customer' => 'Add a new Customer', + 'Add a new address' => 'Add a new address', + 'Add a new category' => 'Add a new category', + 'Add a new combination' => 'Add a new combination', + 'Add a new content' => 'Add a new content', + 'Add a new country' => 'Add a new country', + 'Add a new currency' => 'Add a new currency', + 'Add a new folder' => 'Add a new folder', + 'Add a new language' => 'Add a new language', + 'Add a new mailing template' => 'Add a new mailing template', + 'Add a new product' => 'Add a new product', + 'Add a new product attribute' => 'Add a new product attribute', + 'Add a new product feature' => 'Add a new product feature', + 'Add a new product template' => 'Add a new product template', + 'Add a new shipping configuration' => 'Add a new shipping configuration', + 'Add a new variable' => 'Add a new variable', + 'Add tax to this group' => 'Add tax to this group', + 'Add this attribute to all product templates' => 'Add this attribute to all product templates', + 'Add this country' => 'Add this country', + 'Add this feature to all product templates' => 'Add this feature to all product templates', + 'Add to all product templates' => 'Add to all product templates', + 'Additional Folders' => 'Additional Folders', + 'Additional address' => 'Additional address', + 'Additional categories' => 'Additional categories', + 'Address' => 'Address', + 'Administration logs' => 'Administration logs', + 'Administration profiles' => 'Administration profiles', + 'Administrators' => 'Administrators', + 'All orders' => 'All orders', + 'Alpha code 2' => 'Alpha code 2', + 'Alpha code 3' => 'Alpha code 3', + 'Amount' => 'Amount', + 'An error occured' => 'An error occured', + 'And' => 'And', + 'Application field' => 'Application field', + 'Apply' => 'Apply', + 'Associations' => 'Associations', + 'Attribute' => 'Attribute', + 'Attribute Combinations' => 'Attribute Combinations', + 'Attribute Name' => 'Attribute Name', + 'Attribute information' => 'Attribute information', + 'Attribute title' => 'Attribute title', + 'Attribute values' => 'Attribute values', + 'Attributes' => 'Attributes', + 'Attributes & Features' => 'Attributes & Features', + 'Auth Mode' => 'Auth Mode', + 'Auth Mode :' => 'Auth Mode :', + 'Average cart' => 'Average cart', + 'Back' => 'Back', + 'Back-office home' => 'Back-office home', + 'Back-office templates' => 'Back-office templates', + 'Back-office users' => 'Back-office users', + 'Browse files' => 'Browse files', + 'Browse this category' => 'Browse this category', + 'Browse this folder' => 'Browse this folder', + 'Can\'t be cumulative' => 'Can\'t be cumulative', + 'Can\'t load documents, please refresh this page.' => 'Can\'t load documents, please refresh this page.', + 'Can\'t load images, please refresh this page.' => 'Can\'t load images, please refresh this page.', + 'Can\'t reorder documents, please refresh this page.' => 'Can\'t reorder documents, please refresh this page.', + 'Can\'t reorder images, please refresh this page.' => 'Can\'t reorder images, please refresh this page.', + 'Cancel' => 'Cancel', + 'Cancel changes and revert to original value' => 'Cancel changes and revert to original value', + 'Cancel this order' => 'Cancel this order', + 'Cart - Prices in %currency' => 'Cart - Prices in %currency', + 'Catalog' => 'Catalog', + 'Categories' => 'Categories', + 'Categories in %cat' => 'Categories in %cat', + 'Category created on %date_create. Last modification: %date_change' => 'Category created on %date_create. Last modification: %date_change', + 'Category title' => 'Category title', + 'Cellular phone' => 'Cellular phone', + 'Cellular phone number' => 'Cellular phone number', + 'Change this administrator' => 'Change this administrator', + 'Change this attribute' => 'Change this attribute', + 'Change this country' => 'Change this country', + 'Change this currency' => 'Change this currency', + 'Change this feature' => 'Change this feature', + 'Change this language' => 'Change this language', + 'Change this mailing template' => 'Change this mailing template', + 'Change this product attribute' => 'Change this product attribute', + 'Change this product feature' => 'Change this product feature', + 'Change this product template' => 'Change this product template', + 'Change this profile' => 'Change this profile', + 'Change this shipping configuration' => 'Change this shipping configuration', + 'Change this shipping zone' => 'Change this shipping zone', + 'Change this tax' => 'Change this tax', + 'Change this tax rule' => 'Change this tax rule', + 'Change this template' => 'Change this template', + 'Change this variable' => 'Change this variable', + 'Chapo' => 'Chapo', + 'Check this box if you want to add this attributes to all product templates' => 'Check this box if you want to add this attributes to all product templates', + 'Check this box if you want to add this features to all product templates' => 'Check this box if you want to add this features to all product templates', + 'Choose a country' => 'Choose a country', + 'City' => 'City', + 'Classic modules' => 'Classic modules', + 'Click here' => 'Click here', + 'Close' => 'Close', + 'Close administation session' => 'Close administration session', + 'Code' => 'Code', + 'Code :' => 'Code :', + 'Combination EAN Code' => 'Combination EAN Code', + 'Combination builder' => 'Combination builder', + 'Combination reference' => 'Combination reference', + 'Company' => 'Company', + 'Condition\'s category :' => 'Condition\'s category :', + 'Conditions' => 'Conditions', + 'Configuration' => 'Configuration', + 'Configuration mailing system' => 'Configuration mailing system', + 'Configure' => 'Configure', + 'Configure this module' => 'Configure this module', + 'Confirm' => 'Confirm', + 'Confirm changes' => 'Confirm changes', + 'Confirmation' => 'Confirmation', + 'Content title' => 'Content title', + 'Contents in %fold' => 'Contents in %fold', + 'Copy source text in input field' => 'Copy source text in input field', + 'Countries' => 'Countries', + 'Countries that have the same tax rule' => 'Countries that have the same tax rule', + 'Country' => 'Country', + 'Country description' => 'Country description', + 'Country short description' => 'Country short description', + 'Country title' => 'Country title', + 'Coupon' => 'Coupon', + 'Coupon code' => 'Coupon code', + 'Coupons' => 'Coupons', + 'Coupons : ' => 'Coupons : ', + 'Create' => 'Create', + 'Create a customer address' => 'Create a customer address', + 'Create a new administrator' => 'Create a new administrator', + 'Create a new attribute' => 'Create a new attribute', + 'Create a new attribute value' => 'Create a new attribute value', + 'Create a new category' => 'Create a new category', + 'Create a new combination' => 'Create a new combination', + 'Create a new content' => 'Create a new content', + 'Create a new country' => 'Create a new country', + 'Create a new coupon' => 'Create a new coupon', + 'Create a new currency' => 'Create a new currency', + 'Create a new customer' => 'Create a new customer', + 'Create a new feature' => 'Create a new feature', + 'Create a new feature value' => 'Create a new feature value', + 'Create a new folder' => 'Create a new folder', + 'Create a new language' => 'Create a new language', + 'Create a new mailing template' => 'Create a new mailing template', + 'Create a new product' => 'Create a new product', + 'Create a new product template' => 'Create a new product template', + 'Create a new profile' => 'Create a new profile', + 'Create a new shipping configuration' => 'Create a new shipping configuration', + 'Create a new tax' => 'Create a new tax', + 'Create a new tax rule' => 'Create a new tax rule', + 'Create a new variable' => 'Create a new variable', + 'Create combinations' => 'Create combinations', + 'Create coupon' => 'Create coupon', + 'Create this address' => 'Create this address', + 'Create this attribute' => 'Create this attribute', + 'Create this category' => 'Create this category', + 'Create this combination' => 'Create this combination', + 'Create this content' => 'Create this content', + 'Create this country' => 'Create this country', + 'Create this currency' => 'Create this currency', + 'Create this customer' => 'Create this customer', + 'Create this feature' => 'Create this feature', + 'Create this folder' => 'Create this folder', + 'Create this language' => 'Create this language', + 'Create this mailing template' => 'Create this mailing template', + 'Create this product' => 'Create this product', + 'Create this product template' => 'Create this product template', + 'Create this shipping configuration' => 'Create this shipping configuration', + 'Create this value' => 'Create this value', + 'Create this variable' => 'Create this variable', + 'Currencies' => 'Currencies', + 'Currency ISO 4217 Code' => 'Currency ISO 4217 Code', + 'Currency name' => 'Currency name', + 'Currency rate' => 'Currency rate', + 'Currency symbol' => 'Currency symbol', + 'Current product template' => 'Current product template', + 'Current quantity' => 'Current quantity', + 'Current version' => 'Current version', + 'Customer' => 'Customer', + 'Customer informations' => 'Customer information', + 'Customers' => 'Customers', + 'Customers list' => 'Customers list', + 'Cutomer Name' => 'Cutomer Name', + 'Dashboard' => 'Dashboard', + 'Date & Hour' => 'Date & Hour', + 'Date of last order' => 'Date of last order', + 'Days before expiration' => 'Days before expiration', + 'Deactivate %title module' => 'Deactivate %title module', + 'Default' => 'Default', + 'Default address' => 'Default address', + 'Define here this product\'s accessories' => 'Define here this product\'s accessories', + 'Delete' => 'Delete', + 'Delete a combination' => 'Delete a combination', + 'Delete a module' => 'Delete a module', + 'Delete a variable' => 'Delete a variable', + 'Delete address' => 'Delete address', + 'Delete administrator' => 'Delete administrator', + 'Delete also module data' => 'Delete also module data', + 'Delete an order' => 'Delete an order', + 'Delete attribute' => 'Delete attribute', + 'Delete attribute value' => 'Delete attribute value', + 'Delete category' => 'Delete category', + 'Delete content' => 'Delete content', + 'Delete country' => 'Delete country', + 'Delete currency' => 'Delete currency', + 'Delete customer' => 'Delete customer', + 'Delete feature' => 'Delete feature', + 'Delete feature value' => 'Delete feature value', + 'Delete folder' => 'Delete folder', + 'Delete language' => 'Delete language', + 'Delete mailing template' => 'Delete mailing template', + 'Delete product' => 'Delete product', + 'Delete profile' => 'Delete profile', + 'Delete shipping configuration' => 'Delete shipping configuration', + 'Delete tax' => 'Delete tax', + 'Delete tax rule' => 'Delete tax rule', + 'Delete template' => 'Delete template', + 'Delete this accessory' => 'Delete this accessory', + 'Delete this administrator' => 'Delete this administrator', + 'Delete this attribute' => 'Delete this attribute', + 'Delete this category and all its contents' => 'Delete this category and all its contents', + 'Delete this combination' => 'Delete this combination', + 'Delete this content' => 'Delete this content', + 'Delete this country' => 'Delete this country', + 'Delete this currency' => 'Delete this currency', + 'Delete this customer and all his orders' => 'Delete this customer and all his orders', + 'Delete this feature' => 'Delete this feature', + 'Delete this folder and all its contents' => 'Delete this folder and all its contents', + 'Delete this language' => 'Delete this language', + 'Delete this mailing template' => 'Delete this mailing template', + 'Delete this module' => 'Delete this module', + 'Delete this product' => 'Delete this product', + 'Delete this product attribute' => 'Delete this product attribute', + 'Delete this product feature' => 'Delete this product feature', + 'Delete this product template' => 'Delete this product template', + 'Delete this profile' => 'Delete this profile', + 'Delete this shipping configuration' => 'Delete this shipping configuration', + 'Delete this tax' => 'Delete this tax', + 'Delete this tax rule' => 'Delete this tax rule', + 'Delete this value' => 'Delete this value', + 'Delete this variable' => 'Delete this variable', + 'Delete this zone' => 'Delete this zone', + 'Delivery address' => 'Delivery address', + 'Delivery module' => 'Delivery module', + 'Delivery modules' => 'Delivery modules', + 'Description' => 'Description', + 'Destinations' => 'Destinations', + 'Details' => 'Details', + 'Disabled coupons' => 'Disabled coupons', + 'Discount' => 'Discount', + 'Do not use a product template' => 'Do not use a product template', + 'Do you really want to add this attribute to all product templates ?' => 'Do you really want to add this attribute to all product templates ?', + 'Do you really want to add this feature to all product templates ?' => 'Do you really want to add this feature to all product templates ?', + 'Do you really want to cancel this order ?' => 'Do you really want to cancel this order ?', + 'Do you really want to delete this address ?' => 'Do you really want to delete this address ?', + 'Do you really want to delete this administrator ?' => 'Do you really want to delete this administrator ?', + 'Do you really want to delete this attribute ? It will be removed from all product templates.' => 'Do you really want to delete this attribute ? It will be removed from all product templates.', + 'Do you really want to delete this attribute value ?' => 'Do you really want to delete this attribute value ?', + 'Do you really want to delete this category and all its content ?' => 'Do you really want to delete this category and all its content ?', + 'Do you really want to delete this combination ?' => 'Do you really want to delete this combination ?', + 'Do you really want to delete this content ?' => 'Do you really want to delete this content ?', + 'Do you really want to delete this country ?' => 'Do you really want to delete this country ?', + 'Do you really want to delete this currency ?' => 'Do you really want to delete this currency ?', + 'Do you really want to delete this customer ?' => 'Do you really want to delete this customer ?', + 'Do you really want to delete this element ?' => 'Do you really want to delete this element ?', + 'Do you really want to delete this feature ? It will be removed from all product templates.' => 'Do you really want to delete this feature ? It will be removed from all product templates.', + 'Do you really want to delete this feature value ?' => 'Do you really want to delete this feature value ?', + 'Do you really want to delete this folder and all its content ?' => 'Do you really want to delete this folder and all its content ?', + 'Do you really want to delete this language ?' => 'Do you really want to delete this language ?', + 'Do you really want to delete this mailing template ?' => 'Do you really want to delete this mailing template ?', + 'Do you really want to delete this module ?' => 'Do you really want to delete this module ?', + 'Do you really want to delete this product ?' => 'Do you really want to delete this product ?', + 'Do you really want to delete this profile ?' => 'Do you really want to delete this profile ?', + 'Do you really want to delete this shipping configuration ?' => 'Do you really want to delete this shipping configuration ?', + 'Do you really want to delete this tax ?' => 'Do you really want to delete this tax ?', + 'Do you really want to delete this tax rule ?' => 'Do you really want to delete this tax rule ?', + 'Do you really want to delete this template ? It will be removed from all products.' => 'Do you really want to delete this template ? It will be removed from all products.', + 'Do you really want to delete this variable ?' => 'Do you really want to delete this variable ?', + 'Do you really want to enable this element ?' => 'Do you really want to enable this element ?', + 'Do you really want to remove the content from this folder ?' => 'Do you really want to remove the content from this folder ?', + 'Do you really want to remove the product from this category ?' => 'Do you really want to remove the product from this category ?', + 'Do you really want to remove this accessory from the product ?' => 'Do you really want to remove this accessory from the product ?', + 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.' => 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.', + 'Do you really want to remove this attribute from the template ?' => 'Do you really want to remove this attribute from the template ?', + 'Do you really want to remove this country ?' => 'Do you really want to remove this country ?', + 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.' => 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.', + 'Do you really want to remove this feature from the template ?' => 'Do you really want to remove this feature from the template ?', + 'Do you really want to remove this related content ?' => 'Do you really want to remove this related content ?', + 'Do you really want to remove this related content from the product ?' => 'Do you really want to remove this related content from the product ?', + 'Do you really want to remove this zone ?' => 'Do you really want to remove this zone ?', + 'Do you really want to set this coupon available to everyone ?' => 'Do you really want to set this coupon available to everyone ?', + 'Do you really want to use this address by default ?' => 'Do you really want to use this address by default ?', + 'Document' => 'Document', + 'Document informations' => 'Document information', + 'Documents' => 'Documents', + 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.' => 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.', + 'Download invoice as PDF' => 'Download invoice as PDF', + 'Download purchase order as PDF' => 'Download purchase order as PDF', + 'Drop files to upload' => 'Drop files to upload', + 'Drop tax here to create a tax group' => 'Drop tax here to create a tax group', + 'Drop tax here to delete from group' => 'Drop tax here to delete from group', + 'E-mail templates' => 'E-mail templates', + 'EAN Code' => 'EAN Code', + 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.' => 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.', + 'Edit' => 'Edit', + 'Edit %title' => 'Edit %title', + 'Edit a country' => 'Edit a country', + 'Edit a currency' => 'Edit a currency', + 'Edit a customer' => 'Edit a customer', + 'Edit a customer address' => 'Edit a customer address', + 'Edit a document' => 'Edit a document', + 'Edit a feature' => 'Edit a feature', + 'Edit a language' => 'Edit a language', + 'Edit a mailing template' => 'Edit a mailing template', + 'Edit a module' => 'Edit a module', + 'Edit a profile' => 'Edit a profile', + 'Edit a shipping configuration' => 'Edit a shipping configuration', + 'Edit a shipping zone' => 'Edit a shipping zone', + 'Edit a system variable' => 'Edit a system variable', + 'Edit a tax' => 'Edit a tax', + 'Edit a tax rule' => 'Edit a tax rule', + 'Edit a template' => 'Edit a template', + 'Edit an attribute' => 'Edit an attribute', + 'Edit an image' => 'Edit an image', + 'Edit an order' => 'Edit an order', + 'Edit attribute "%name"' => 'Edit attribute "%name"', + 'Edit category' => 'Edit category', + 'Edit category %title' => 'Edit category %title', + 'Edit content' => 'Edit content', + 'Edit content %title' => 'Edit content %title', + 'Edit country "%name"' => 'Edit country "%name"', + 'Edit currency "%name"' => 'Edit currency "%name"', + 'Edit customer %firstname %lastname' => 'Edit customer %firstname %lastname', + 'Edit delivery address' => 'Edit delivery address', + 'Edit document "%name"' => 'Edit document "%name"', + 'Edit feature "%name"' => 'Edit feature "%name"', + 'Edit folder' => 'Edit folder', + 'Edit folder %title' => 'Edit folder %title', + 'Edit image "%name"' => 'Edit image "%name"', + 'Edit information in %lng' => 'Edit information in %lng', + 'Edit invoice address' => 'Edit invoice address', + 'Edit mailing template "%name"' => 'Edit mailing template "%name"', + 'Edit next category' => 'Edit next category', + 'Edit next content' => 'Edit next content', + 'Edit next folder' => 'Edit next folder', + 'Edit next product' => 'Edit next product', + 'Edit order address' => 'Edit order address', + 'Edit previous category' => 'Edit previous category', + 'Edit previous content' => 'Edit previous content', + 'Edit previous folder' => 'Edit previous folder', + 'Edit previous product' => 'Edit previous product', + 'Edit prices in %curr' => 'Edit prices in %curr', + 'Edit product' => 'Edit product', + 'Edit product %title' => 'Edit product %title', + 'Edit shipping configuration %title' => 'Edit shipping configuration %title', + 'Edit shipping zone %title' => 'Edit shipping zone %title', + 'Edit tax rule taxes' => 'Edit tax rule taxes', + 'Edit template "%name"' => 'Edit template "%name"', + 'Edit this address' => 'Edit this address', + 'Edit this category' => 'Edit this category', + 'Edit this content' => 'Edit this content', + 'Edit this customer' => 'Edit this customer', + 'Edit this folder' => 'Edit this folder', + 'Edit this module' => 'Edit this module', + 'Edit this order' => 'Edit this order', + 'Edit this product' => 'Edit this product', + 'Edit variable %name' => 'Edit variable %name', + 'Editing %cat' => 'Editing %cat', + 'Editing %fold' => 'Editing %fold', + 'Editing %title' => 'Editing %title', + 'Editing attribute "%name"' => 'Editing attribute "%name"', + 'Editing country "%name"' => 'Editing country "%name"', + 'Editing currency "%name"' => 'Editing currency "%name"', + 'Editing customer "%name"' => 'Editing customer "%name"', + 'Editing document "%name"' => 'Editing document "%name"', + 'Editing feature "%name"' => 'Editing feature "%name"', + 'Editing image "%name"' => 'Editing image "%name"', + 'Editing mailing template "%name"' => 'Editing mailing template "%name"', + 'Editing module' => 'Editing module', + 'Editing profile' => 'Editing profile', + 'Editing shipping configuration "%name"' => 'Editing shipping configuration "%name"', + 'Editing shipping zone "%name"' => 'Editing shipping zone "%name"', + 'Editing tax' => 'Editing tax', + 'Editing tax rule' => 'Editing tax rule', + 'Editing template "%name"' => 'Editing template "%name"', + 'Editing variable "%name"' => 'Editing variable "%name"', + 'Email address' => 'Email address', + 'Email used when you send an email to your customers (Order confirmations, etc).' => 'Email used when you send an email to your customers (Order confirmations, etc).', + 'Enable remote SMTP use : ' => 'Enable remote SMTP use : ', + 'Enable/Disable' => 'Enable/Disable', + 'Enabled coupons' => 'Enabled coupons', + 'Encryption' => 'Encryption', + 'Encryption :' => 'Encryption :', + 'Enter here all possible attribute values.' => 'Enter here all possible attribute values.', + 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.' => 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.', + 'Enter here the attribute name in the default language (%language_name)' => 'Enter here the attribute name in the default language (%language_name)', + 'Enter here the category name in the default language (%title)' => 'Enter here the category name in the default language (%title)', + 'Enter here the content name in the default language (%title)' => 'Enter here the content name in the default language (%title)', + 'Enter here the currency name in the default language (%title)' => 'Enter here the currency name in the default language (%title)', + 'Enter here the feature name in the default language (%title)' => 'Enter here the feature name in the default language (%title)', + 'Enter here the feature value as free text' => 'Enter here the feature value as free text', + 'Enter here the folder name in the default language (%title)' => 'Enter here the folder name in the default language (%title)', + 'Enter here the mailing template purpose in the default language (%title)' => 'Enter here the mailing template purpose in the default language (%title)', + 'Enter here the product name in the default language (%title)' => 'Enter here the product name in the default language (%title)', + 'Enter here the product price in the default currency (%title)' => 'Enter here the product price in the default currency (%title)', + 'Enter here the product reference' => 'Enter here the product reference', + 'Enter here the product tax price in the default currency (%title)' => 'Enter here the product tax price in the default currency (%title)', + 'Enter here the product weight, in Kilogrammes' => 'Enter here the product weight, in Kilogrammes', + 'Enter here the template name in the default language (%title)' => 'Enter here the template name in the default language (%title)', + 'Enter here the value in the current edit language (%language_name)' => 'Enter here the value in the current edit language (%language_name)', + 'Enter here the value in the current edit language (%title)' => 'Enter here the value in the current edit language (%title)', + 'Enter new accessory position' => 'Enter new accessory position', + 'Enter new attribute position' => 'Enter new attribute position', + 'Enter new category position' => 'Enter new category position', + 'Enter new content position' => 'Enter new content position', + 'Enter new currency position' => 'Enter new currency position', + 'Enter new feature position' => 'Enter new feature position', + 'Enter new folder position' => 'Enter new folder position', + 'Enter new module position' => 'Enter new module position', + 'Enter new product position' => 'Enter new product position', + 'Enter new value position' => 'Enter new value position', + 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses' => 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses', + 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.' => 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.', + 'Error' => 'Error', + 'Example :' => 'Example :', + 'Existing combinations will be deleted. Do you want to continue ?' => 'Existing combinations will be deleted. Do you want to continue ?', + 'Expiration date' => 'Expiration date', + 'Expiration date :' => 'Expiration date :', + 'Failed to get converted prices. Please try again.' => 'Failed to get converted prices. Please try again.', + 'Failed to get prices. Please try again.' => 'Failed to get prices. Please try again.', + 'Fax number' => 'Fax number', + 'Feature Name' => 'Feature Name', + 'Feature information' => 'Feature information', + 'Feature title' => 'Feature title', + 'Feature value' => 'Feature value', + 'Feature value for this product' => 'Feature value for this product', + 'Feature values' => 'Feature values', + 'Features' => 'Features', + 'File' => 'File', + 'File names' => 'File names', + 'First Name' => 'First Name', + 'First name' => 'First name', + 'First orders' => 'First orders', + 'FirstName' => 'FirstName', + 'Firstname' => 'Firstname', + 'Folder created on %date_create. Last modification: %date_change' => 'Folder created on %date_create. Last modification: %date_change', + 'Folder title' => 'Folder title', + 'Folders' => 'Folders', + 'Folders in %fold' => 'Folders in %fold', + 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.' => 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.', + 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).' => 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).', + 'From' => 'From', + 'Front-office templates' => 'Front-office templates', + 'General' => 'General', + 'General configuration' => 'General configuration', + 'General description' => 'General description', + 'Go to administration home' => 'Go to administration home', + 'H:i:s' => 'H:i:s', + 'HTML version of this message' => 'HTML version of this message', + 'Home' => 'Home', + 'Host' => 'Host', + 'Host :' => 'Host :', + 'ID' => 'ID', + 'IP Addresses' => 'IP Addresses', + 'ISO 4217 Code' => 'ISO 4217 Code', + 'ISO 4217 code' => 'ISO 4217 code', + 'ISO 639 Code' => 'ISO 639 Code', + 'ISO Code' => 'ISO Code', + 'If a translation is missing or incomplete :' => 'If a translation is missing or incomplete :', + 'If yes, redirections through Redirect::exec() will be displayed as links' => 'If yes, redirections through Redirect::exec() will be displayed as links', + 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.' => 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.', + 'Image' => 'Image', + 'Image information' => 'Image information', + 'Images' => 'Images', + 'Impossible to change default country. Please contact your administrator or try later' => 'Impossible to change default country. Please contact your administrator or try later', + 'Impossible to change default languages. Please contact your administrator or try later' => 'Impossible to change default languages. Please contact your administrator or try later', + 'In order to manges your shop taxes you can manage' => 'In order to manges your shop taxes you can manage', + 'In page' => 'In page', + 'In pages:' => 'In pages:', + 'Install a new module' => 'Install a new module', + 'Invoice and Delivery' => 'Invoice and Delivery', + 'Invoice date' => 'Invoice date', + 'Invoice informations' => 'Invoice information', + 'Invoice reference' => 'Invoice reference', + 'Is available on special offers' => 'Is available on special offers', + 'Is cumulative' => 'Is cumulative', + 'Is disabled' => 'Is disabled', + 'Is enabled' => 'Is enabled', + 'Is removing postage' => 'Is removing postage', + 'Is unlimited' => 'Is unlimited', + 'Keep the most important part of your description in the first 150-160 characters.' => 'Keep the most important part of your description in the first 150-160 characters.', + 'Kg' => 'Kg', + 'Label' => 'Label', + 'Language name' => 'Language name', + 'Language title' => 'Language title', + 'Languages' => 'Languages', + 'Languages & URLs' => 'Languages & URLs', + 'Languages management' => 'Languages management', + 'Last Name' => 'Last Name', + 'Last name' => 'Last name', + 'Last order amount' => 'Last order amount', + 'LastName' => 'LastName', + 'Lastname' => 'Lastname', + 'Latest version available' => 'Latest version available', + 'Leave empty to keep current password' => 'Leave empty to keep current password', + 'Lire la suite' => 'Lire la suite', + 'Loading Thelia lastest news...' => 'Loading Thelia lastest news...', + 'Locale' => 'Locale', + 'Log lines format' => 'Log lines format', + 'Log lines header format. You may use the following variables: ' => 'Log lines header format. You may use the following variables: ', + 'Login' => 'Login', + 'Logout' => 'Logout', + 'Long description :' => 'Long description :', + 'Mailing system' => 'Mailing system', + 'Mailing template name' => 'Mailing template name', + 'Mailing template purpose' => 'Mailing template purpose', + 'Mailing templates' => 'Mailing templates', + 'Make sure it uses keywords found within the page itself.' => 'Make sure it uses keywords found within the page itself.', + 'Make sure that your title is clear, and contains many of the keywords within the page itself.' => 'Make sure that your title is clear, and contains many of the keywords within the page itself.', + 'Manage module rights' => 'Manage module rights', + 'Manage resource rights' => 'Manage resource rights', + 'Manage taxes' => 'Manage taxes', + 'Manage the tax rule taxes appliance order' => 'Manage the tax rule taxes appliance order', + 'Max usage :' => 'Max usage :', + 'May be cumulative' => 'May be cumulative', + 'Message created on %date_create. Last modification: %date_change' => 'Message created on %date_create. Last modification: %date_change', + 'Message level' => 'Message level', + 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ' => 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ', + 'Module' => 'Module', + 'Module access rights' => 'Module access rights', + 'Module created on %date_create. Last modification: %date_change' => 'Module created on %date_create. Last modification: %date_change', + 'Modules' => 'Modules', + 'More information about ISO 4217' => 'More information about ISO 4217', + 'NONE' => 'NONE', + 'Name' => 'Name', + 'New' => 'New', + 'New customers' => 'New customers', + 'News' => 'News', + 'No' => 'No', + 'No Folders found' => 'No Folders found', + 'No area defined with this id' => 'No area defined with this id', + 'No available content in this folder' => 'No available content in this folder', + 'No available product in this category' => 'No available product in this category', + 'No available value for this attribute' => 'No available value for this attribute', + 'No categories found' => 'No categories found', + 'No country has been created yet. Click the + button to create one.' => 'No country has been created yet. Click the + button to create one.', + 'No currency has been created yet. Click the + button to create one.' => 'No currency has been created yet. Click the + button to create one.', + 'No folders found' => 'No folders found', + 'No mailing template has been created yet. Click the + button to create one.' => 'No mailing template has been created yet. Click the + button to create one.', + 'No product attribute has been created yet. Click the + button to create one.' => 'No product attribute has been created yet. Click the + button to create one.', + 'No product feature has been created yet. Click the + button to create one.' => 'No product feature has been created yet. Click the + button to create one.', + 'No product template has been created yet. Click the + button to create one.' => 'No product template has been created yet. Click the + button to create one.', + 'No value has been created yet. Click the + button to create one.' => 'No value has been created yet. Click the + button to create one.', + 'N° ISO' => 'N° ISO', + 'OK' => 'OK', + 'Offline products' => 'Offline products', + 'Online' => 'Online', + 'Online products' => 'Online products', + 'Oops! An Error Occurred' => 'Oops! An Error Occurred', + 'Order #' => 'Order #', + 'Order %ref' => 'Order %ref', + 'Order n°' => 'Order n°', + 'Order status:' => 'Order status:', + 'Ordered products' => 'Ordered products', + 'Orders' => 'Orders', + 'Originating file line number ' => 'Originating file line number ', + 'Originating file name' => 'Originating file name', + 'Originating function name ' => 'Originating function name ', + 'Other addresses' => 'Other addresses', + 'Overall sales' => 'Overall sales', + 'PDF templates' => 'PDF templates', + 'PDF | Invoice' => 'PDF | Invoice', + 'PDF | Purchase order' => 'PDF | Purchase order', + 'Page not found' => 'Page not found', + 'Parameters' => 'Parameters', + 'Password' => 'Password', + 'Password :' => 'Password :', + 'Payment information' => 'Payment information', + 'Payment module' => 'Payment module', + 'Payment modules' => 'Payment modules', + 'Period' => 'Period', + 'Phone' => 'Phone', + 'Phone number' => 'Phone number', + 'Please retry' => 'Please retry', + 'Please save your Coupon in oder to affect it some conditions' => 'Please save your Coupon in oder to affect it some conditions', + 'Please select a condition category' => 'Please select a condition category', + 'Please select a coupon type' => 'Please select a coupon type', + 'Please select another condition' => 'Please select another condition', + 'Please select items to translate' => 'Please select items to translate', + 'Please select the B.O. template to translate' => 'Please select the B.O. template to translate', + 'Please select the E-mail template to translate' => 'Please select the E-mail template to translate', + 'Please select the F.O. template to translate' => 'Please select the F.O. template to translate', + 'Please select the PDF template to translate' => 'Please select the PDF template to translate', + 'Please select the module to translate' => 'Please select the module to translate', + 'Please wait, loading' => 'Please wait, loading', + 'Port' => 'Port', + 'Port :' => 'Port :', + 'Position' => 'Position', + 'Post Scriptum' => 'Post Scriptum', + 'Postage' => 'Postage', + 'Postscriptum' => 'Postscriptum', + 'Preview' => 'Preview', + 'Preview category page' => 'Preview category page', + 'Preview folder page' => 'Preview folder page', + 'Preview product page' => 'Preview product page', + 'Previous month sales' => 'Previous month sales', + 'Previous year sales' => 'Previous year sales', + 'Price' => 'Price', + 'Price excl. taxes' => 'Price excl. taxes', + 'Price incl. taxes' => 'Price incl. taxes', + 'Price
w/ taxes (%currency)' => 'Price
w/ taxes (%currency)', + 'Price
w/o taxes (%currency)' => 'Price
w/o taxes (%currency)', + 'Pricing' => 'Pricing', + 'Product' => 'Product', + 'Product Attributes' => 'Product Attributes', + 'Product EAN Code' => 'Product EAN Code', + 'Product Features' => 'Product Features', + 'Product accessories' => 'Product accessories', + 'Product attributes' => 'Product attributes', + 'Product catalog configuration' => 'Product catalog configuration', + 'Product created on %date_create. Last modification: %date_change' => 'Product created on %date_create. Last modification: %date_change', + 'Product features' => 'Product features', + 'Product price' => 'Product price', + 'Product price including taxes' => 'Product price including taxes', + 'Product tax price' => 'Product tax price', + 'Product templates' => 'Product templates', + 'Product title' => 'Product title', + 'Product weight' => 'Product weight', + 'Products' => 'Products', + 'Products in %cat' => 'Products in %cat', + 'Profil' => 'Profile', + 'Profile' => 'Profile', + 'Profile code' => 'Profile code', + 'Profile created on %date_create. Last modification: %date_change' => 'Profile created on %date_create. Last modification: %date_change', + 'Profiles' => 'Profiles', + 'Promotion' => 'Promotion', + 'Published by OpenStudio' => 'Published by OpenStudio', + 'Purpose' => 'Purpose', + 'Quantity' => 'Quantity', + 'Quickly create combinations using the combination builder' => 'Quickly create combinations using the combination builder', + 'Rate' => 'Rate', + 'Rate from Euro' => 'Rate from Euro', + 'Rate in €' => 'Rate in €', + 'Read the documentation of this module' => 'Read the documentation of this module', + 'Reference' => 'Reference', + 'Registration date' => 'Registration date', + 'Related content' => 'Related content', + 'Remove an accessory' => 'Remove an accessory', + 'Remove associated folder' => 'Remove associated folder', + 'Remove attribute' => 'Remove attribute', + 'Remove country' => 'Remove country', + 'Remove feature' => 'Remove feature', + 'Remove from all product templates' => 'Remove from all product templates', + 'Remove from category' => 'Remove from category', + 'Remove related content' => 'Remove related content', + 'Remove selected values' => 'Remove selected values', + 'Remove the product from this category' => 'Remove the product from this category', + 'Remove this attribute from all product templates' => 'Remove this attribute from all product templates', + 'Remove this feature from all product templates' => 'Remove this feature from all product templates', + 'Remove zone' => 'Remove zone', + 'Resource' => 'Resource', + 'Resource access rights' => 'Resource access rights', + 'Resources' => 'Resources', + 'Rewritten URL' => 'Rewritten URL', + 'Rights' => 'Rights', + 'SEO' => 'SEO', + 'Sale' => 'Sale', + 'Sale price incl. taxes' => 'Sale price incl. taxes', + 'Sale price
w/ taxes (%currency)' => 'Sale price
w/ taxes (%currency)', + 'Sale price
w/o taxes (%currency)' => 'Sale price
w/o taxes (%currency)', + 'Sales' => 'Sales', + 'Sales excluding shipping' => 'Sales excluding shipping', + 'Sales statistics' => 'Sales statistics', + 'Save' => 'Save', + 'Save and close' => 'Save and close', + 'Save chages' => 'Save chages', + 'Save changes' => 'Save changes', + 'Save this address' => 'Save this address', + 'Save this condition' => 'Save this condition', + 'Save your modifications' => 'Save your modifications', + 'Search' => 'Search', + 'Select a category and click (+) to add it to the additional category list' => 'Select a category and click (+) to add it to the additional category list', + 'Select a category to get its products' => 'Select a category to get its products', + 'Select a category...' => 'Select a category...', + 'Select a content and click (+) to add it to this category' => 'Select a content and click (+) to add it to this category', + 'Select a content and click (+) to add it to this product' => 'Select a content and click (+) to add it to this product', + 'Select a folder and click (+) to add it to the additional folder list' => 'Select a folder and click (+) to add it to the additional folder list', + 'Select a folder content...' => 'Select a folder content...', + 'Select a folder to get its content' => 'Select a folder to get its content', + 'Select a folder...' => 'Select a folder...', + 'Select a product and click (+) to add it as an accessory' => 'Select a product and click (+) to add it as an accessory', + 'Select a product...' => 'Select a product...', + 'Select a tax tule' => 'Select a tax tule', + 'Select a value click (+) to add it to the combination' => 'Select a value click (+) to add it to the combination', + 'Select an attribute and click (+) to add it to this template' => 'Select an attribute and click (+) to add it to this template', + 'Select an attribute and click (+) to view available values' => 'Select an attribute and click (+) to view available values', + 'Select an attribute value...' => 'Select an attribute value...', + 'Select an attribute...' => 'Select an attribute...', + 'Select an feature and click (+) to add it to this template' => 'Select an feature and click (+) to add it to this template', + 'Select an feature...' => 'Select an feature...', + 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.' => 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.', + 'Select here the tax applicable to this product' => 'Select here the tax applicable to this product', + 'Select the E-mail template you want to translate' => 'Select the E-mail template you want to translate', + 'Select the PDF template you want to translate' => 'Select the PDF template you want to translate', + 'Select the back-office template you want to translate' => 'Select the back-office template you want to translate', + 'Select the front-office template you want to translate' => 'Select the front-office template you want to translate', + 'Select the module you want to translate' => 'Select the module you want to translate', + 'Select which items you want to translate' => 'Select which items you want to translate', + 'Send a mail to this customer' => 'Send a mail to this customer', + 'Send files' => 'Send files', + 'Sequential number of log line' => 'Sequential number of log line', + 'Set as default tax rule' => 'Set as default tax rule', + 'Shipping configuration' => 'Shipping configuration', + 'Shipping configuration name' => 'Shipping configuration name', + 'Shipping zones' => 'Shipping zones', + 'Shop' => 'Shop', + 'Shop Informations' => 'Shop Information', + 'Short conclusion' => 'Short conclusion', + 'Short description' => 'Short description', + 'Short description :' => 'Short description :', + 'Show logs' => 'Show logs', + 'Some of your translations are not saved. Continue anyway ?' => 'Some of your translations are not saved. Continue anyway ?', + 'Sorry, attribute ID=%id was not found.' => 'Sorry, attribute ID=%id was not found.', + 'Sorry, country ID=%id was not found.' => 'Sorry, country ID=%id was not found.', + 'Sorry, currency ID=%id was not found.' => 'Sorry, currency ID=%id was not found.', + 'Sorry, customer ID=%id was not found.' => 'Sorry, customer ID=%id was not found.', + 'Sorry, document ID=%id was not found.' => 'Sorry, document ID=%id was not found.', + 'Sorry, feature ID=%id was not found.' => 'Sorry, feature ID=%id was not found.', + 'Sorry, image ID=%id was not found.' => 'Sorry, image ID=%id was not found.', + 'Sorry, message ID=%id was not found.' => 'Sorry, message ID=%id was not found.', + 'Sorry, template ID=%id was not found.' => 'Sorry, template ID=%id was not found.', + 'Sorry, variable ID=%id was not found.' => 'Sorry, variable ID=%id was not found.', + 'Source IP' => 'Source IP', + 'Source IP :' => 'Source IP :', + 'Stats on %month/%year' => 'Stats on %month/%year', + 'Status' => 'Status', + 'Stock' => 'Stock', + 'Store' => 'Store', + 'Store Business Identification Number (SIRET, etc).' => 'Store Business Identification Number (SIRET, etc).', + 'Store address' => 'Store address', + 'Store configuration' => 'Store configuration', + 'Street address' => 'Street address', + 'Subject' => 'Subject', + 'Superadministrator' => 'Superadministrator', + 'Symbol' => 'Symbol', + 'System Logs' => 'System Logs', + 'System Logs configuration' => 'System Logs configuration', + 'System logs' => 'System logs', + 'System parameters' => 'System parameters', + 'System variables' => 'System variables', + 'Tax' => 'Tax', + 'Tax created on %date_create. Last modification: %date_change' => 'Tax created on %date_create. Last modification: %date_change', + 'Tax rule created on %date_create. Last modification: %date_change' => 'Tax rule created on %date_create. Last modification: %date_change', + 'Tax rule taxes will be update for the following countries :' => 'Tax rule taxes will be update for the following countries :', + 'Tax rules' => 'Tax rules', + 'Tax rules are combination of different taxes.' => 'Tax rules are combination of different taxes.', + 'Taxed total' => 'Taxed total', + 'Taxes' => 'Taxes', + 'Taxes define the amount of money which is added to a bought product.' => 'Taxes define the amount of money which is added to a bought product.', + 'Taxes rules' => 'Taxes rules', + 'Template name' => 'Template name', + 'Template title' => 'Template title', + 'Templates' => 'Templates', + 'Text version of this message' => 'Text version of this message', + 'The HTML TITLE element is the most important element on your web page.' => 'The HTML TITLE element is the most important element on your web page.', + 'The default pricing is used when no combination is defined.' => 'The default pricing is used when no combination is defined.', + 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.' => 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.', + 'The detailed description.' => 'The detailed description.', + 'The mailing template in HTML format.' => 'The mailing template in HTML format.', + 'The mailing template in text-only format.' => 'The mailing template in text-only format.', + 'The page you\'ve requested was not found. Please check the page address, and try again.' => 'The page you\'ve requested was not found. Please check the page address, and try again.', + 'The rate from Euro (Price in Euro * rate = Price in this currency)' => 'The rate from Euro (Price in Euro * rate = Price in this currency)', + 'The server returned a "404 Not Found"' => 'The server returned a "404 Not Found"', + 'The symbol, such as $, £, €...' => 'The symbol, such as $, £, €...', + 'The syntax used is identical to the PHP date() function' => 'The syntax used is identical to the PHP date() function', + 'Thelia Back Office' => 'Thelia Back Office', + 'Thelia Languages' => 'Thelia Languages', + 'Thelia Mailing System' => 'Thelia Mailing System', + 'Thelia Mailing Templates' => 'Thelia Mailing Templates', + 'Thelia Product Attributes' => 'Thelia Product Attributes', + 'Thelia Product Features' => 'Thelia Product Features', + 'Thelia Product Templates' => 'Thelia Product Templates', + 'Thelia Shipping configuration' => 'Thelia Shipping configuration', + 'Thelia Shipping zones' => 'Thelia Shipping zones', + 'Thelia System Variables' => 'Thelia System Variables', + 'Thelia configuration' => 'Thelia configuration', + 'Thelia contributions' => 'Thelia contributions', + 'Thelia core' => 'Thelia core', + 'Thelia informations' => 'Thelia information', + 'Thelia mailing templates' => 'Thelia mailing templates', + 'Thelia product attributes' => 'Thelia product attributes', + 'Thelia product features' => 'Thelia product features', + 'Thelia product templates' => 'Thelia product templates', + 'Thelia support forum' => 'Thelia support forum', + 'Thelia system variables' => 'Thelia system variables', + 'Thelia, the open source e-commerce solution' => 'Thelia, the open source e-commerce solution', + 'There is currently no active module here.' => 'There is currently no active module here.', + 'There is no documents attached to this %type.' => 'There is no documents attached to this %type.', + 'There is no images attached to this %type.' => 'There is no images attached to this %type.', + 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.' => 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.', + 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.' => 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.', + 'This category contains no contents' => 'This category contains no contents', + 'This category doesn\'t contains any products. To add a new product, click the + button above.' => 'This category doesn\'t contains any products. To add a new product, click the + button above.', + 'This category has no sub-categories.' => 'This category has no sub-categories.', + 'This category has no sub-categories. To create a new one, click the + button above.' => 'This category has no sub-categories. To create a new one, click the + button above.', + 'This coupon is disabled, you can enable at the bottom of this form.' => 'This coupon is disabled, you can enable at the bottom of this form.', + 'This customer has not defined any delivery address' => 'This customer has not defined any delivery address', + 'This folder doesn\'t contains any contents. To add a new content, click the + button above.' => 'This folder doesn\'t contains any contents. To add a new content, click the + button above.', + 'This folder has no sub-folders.' => 'This folder has no sub-folders.', + 'This folder has no sub-folders. To create a new one, click the + button above.' => 'This folder has no sub-folders. To create a new one, click the + button above.', + 'This is the message purpose, such as \'Order confirmation\'.' => 'This is the message purpose, such as \'Order confirmation\'.', + 'This is the subject of the e-mail, such as \'Your order is confirmed\'.' => 'This is the subject of the e-mail, such as \'Your order is confirmed\'.', + 'This mailing template could not be changed.' => 'This mailing template could not be changed.', + 'This month' => 'This month', + 'This product contains no accessories' => 'This product contains no accessories', + 'This product contains no contents' => 'This product contains no contents', + 'This product doesn\'t belong to any additional category.' => 'This product doesn\'t belong to any additional category.', + 'This product doesn\'t belong to any additional folder.' => 'This product doesn\'t belong to any additional folder.', + 'This product template does not contains any features' => 'This product template does not contains any features', + 'This template contains no attributes' => 'This template contains no attributes', + 'This template contains no features' => 'This template contains no features', + 'This the unique name of this message. Do not change this value unless you understand what you do.' => 'This the unique name of this message. Do not change this value unless you understand what you do.', + 'This variable could not be changed.' => 'This variable could not be changed.', + 'This year' => 'This year', + 'Timeout' => 'Timeout', + 'Timeout :' => 'Timeout :', + 'Title' => 'Title', + 'Title :' => 'Title :', + 'To' => 'To', + 'To create a new content, select an existing folder, or create a new one.' => 'To create a new content, select an existing folder, or create a new one.', + 'To create a new product, select an existing category, or create a new one.' => 'To create a new product, select an existing category, or create a new one.', + 'To remove a value from the combination, select it and click "remove"' => 'To remove a value from the combination, select it and click "remove"', + 'Today' => 'Today', + 'Top level' => 'Top level', + 'Top level Contents' => 'Top level Contents', + 'Top level Products' => 'Top level Products', + 'Top level categories' => 'Top level categories', + 'Top level folders' => 'Top level folders', + 'Total' => 'Total', + 'Total including discount' => 'Total including discount', + 'Total without discount' => 'Total without discount', + 'Transaction reference' => 'Transaction reference', + 'Translation' => 'Translation', + 'Translations' => 'Translation', + 'Type :' => 'Type :', + 'Unit taxed price' => 'Unit taxed price', + 'Unit. price' => 'Unit. price', + 'Unlimited' => 'Unlimited', + 'Update' => 'Update', + 'Update an administrator' => 'Update an administrator', + 'Update coupon' => 'Update coupon', + 'Update rates' => 'Update rates', + 'Update tax rule taxes' => 'Update tax rule taxes', + 'Update this image' => 'Update this image', + 'Usage left' => 'Usage left', + 'Use Ctrl+click to select more than one value. You can also clear selected values.' => 'Use Ctrl+click to select more than one value. You can also clear selected values.', + 'Use HTML message defined below' => 'Use HTML message defined below', + 'Use Text message defined below' => 'Use Text message defined below', + 'Use address by default' => 'Use address by default', + 'Use default layout' => 'Use default layout', + 'Use the keyword phrase in your URL.' => 'Use the keyword phrase in your URL.', + 'Use this address by default' => 'Use this address by default', + 'Used in your store front' => 'Used in your store front', + 'Username' => 'Username', + 'Username :' => 'Username :', + 'Using a domain or subdomain for each language' => 'Using a domain or subdomain for each language', + 'Value' => 'Value', + 'Variable created on %date_create. Last modification: %date_change' => 'Variable created on %date_create. Last modification: %date_change', + 'Variable name' => 'Variable name', + 'Variable purpose' => 'Variable purpose', + 'Variable value' => 'Variable value', + 'Version %ver' => 'Version %ver', + 'View' => 'View', + 'View only missing translations' => 'View only missing translations', + 'View shop' => 'View shop', + 'View site' => 'View site', + 'Visibility' => 'Visibility', + 'Warning' => 'Warning', + 'Weight
(Kg)' => 'Weight
(Kg)', + 'Welcome' => 'Welcome', + 'Will be available on special offers' => 'Will be available on special offers', + 'Will remove postage' => 'Will remove postage', + 'Won\'t be available on special offers' => 'Won\'t be available on special offers', + 'Won\'t remove postage' => 'Won\'t remove postage', + 'Yes' => 'Yes', + 'Yesterday sales' => 'Yesterday sales', + 'You can attach here some content to this category' => 'You can attach here some content to this category', + 'You can attach here some content to this product' => 'You can attach here some content to this product', + 'You can attach this product to more categories in the details tab.' => 'You can attach this product to more categories in the details tab.', + 'You can change the default category (%title) in the "General" tab.' => 'You can change the default category (%title) in the "General" tab.', + 'You can change the default folder (%title) in the "General" tab.' => 'You can change the default folder (%title) in the "General" tab.', + 'You can\'t delete this administrator' => 'You can\'t delete this administrator', + 'You can\'t delete this profile' => 'You can\'t delete this profile', + 'You don\'t need to use commas or other punctuations.' => 'You don\'t need to use commas or other punctuations.', + 'Your current IP address is %ip' => 'Your current IP address is %ip', + 'Zip code' => 'Zip code', + 'Zones' => 'Zones', + 'activate' => 'activate', + 'activate %title module' => 'activate %title module', + 'activation' => 'activation', + 'and' => 'and', + 'classic modules' => 'classic modules', + 'code' => 'code', + 'company' => 'company', + 'customer ref' => 'customer ref', + 'd-m-Y' => 'd-m-Y', + 'date form' => 'date form', + 'date in yyyy-mm-dd format' => 'date in yyyy-mm-dd format', + 'days left' => 'days left', + 'deactivate' => 'deactivate', + 'deactivation' => 'deactivation', + 'en_US' => 'en_US', + 'firstname & lastname' => 'firstname & lastname', + 'hour in hh:mm:ss format' => 'hour in hh:mm:ss format', + 'last order' => 'last order', + 'long description' => 'long description', + 'max usage' => 'max usage', + 'order amount' => 'order amount', + 'orders for this customer' => 'orders for this customer', + 'short description' => 'short description', + 'tax rules' => 'tax rules', + 'taxes' => 'taxes', + 'time form' => 'time form', + 'title' => 'title', + 'tracking reference' => 'tracking reference', + 'uncheck all' => 'uncheck all', + 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.' => 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.', + 'yyyy-mm-dd' => 'yyyy-mm-dd', +); From d3323bd9ab4bd78ffb20aad5ef7e11785bb49182 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 11:54:22 +0100 Subject: [PATCH 07/10] Add translation to jQPlot title --- templates/backOffice/default/I18n/fr_FR.php | 1893 ++++++++++--------- 1 file changed, 947 insertions(+), 946 deletions(-) diff --git a/templates/backOffice/default/I18n/fr_FR.php b/templates/backOffice/default/I18n/fr_FR.php index 28a13e336..078683a43 100644 --- a/templates/backOffice/default/I18n/fr_FR.php +++ b/templates/backOffice/default/I18n/fr_FR.php @@ -1,948 +1,949 @@ - '(défaut)', - '© Thelia 2013' => '© Thelia 2013', - '(edit)' => '(modification)', - 'Check the list of ISO 639-1 codes' => 'Consulter la liste des codes ISO 639-1', - '0 combinations' => '0 combinaisons', + '(défaut)', + '© Thelia 2013' => '© Thelia 2013', + '(edit)' => '(modification)', + 'Check the list of ISO 639-1 codes' => 'Consulter la liste des codes ISO 639-1', + '0 combinations' => '0 combinaisons', 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration - of change the translation file by hand.' => 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration of change the translation file by hand.', - 'Congratulations, all text is now translated !' => 'Félicitations, Toute la traduction a été effectué', - 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.' => 'Aucun texte à traduire. C\'est probablement normal. Si ce n\'est pas le cas vérifiez que vous utilisez bien la fonction Smarty "intl" ou bien le translator Translator::trans dans un fichier php', - 'A content could be attached to more than one folder. Select here the additional folders for this content.' => 'Un contenu peut être rattaché à plusieurs dossiers. Sélectionnez ici les dossiers dans lesquels ce contenu apparaîtra', - 'A product could be attached to more than one category. Select here the additional categories for this product.' => 'Un produit peut être associé à plusieurs rubriques. Sélectionner les rubrique pour lesquels le produit sera associé', - 'A short description, used when a summary or an introduction is required' => 'Une courte description, utilisée lorsqu\'un résumé ou une introduction est requise', - 'A short post-description information' => 'champs d\'information complémentaire', - 'Aborted orders' => 'Paniers abandonnés', - 'Accessory title' => 'Titre de l\'accessoire', - 'Action' => 'Action', - 'Actions' => 'Actions', - 'Activate this log destination' => 'Activer cette destination', - 'Add' => 'Ajouter', - 'Add a new Customer' => 'Ajouter un client', - 'Add a new address' => 'Ajouter une nouvelle adresse', - 'Add a new category' => 'Ajouter une catégorie', - 'Add a new combination' => 'Ajouter une nouvelle combinaison', - 'Add a new content' => 'Ajouter un nouveau contenu', - 'Add a new country' => 'Ajouter un nouveau pays', - 'Add a new currency' => 'Ajouter une nouvelle devise', - 'Add a new folder' => 'Ajouter un nouveau dossier', - 'Add a new language' => 'Ajouter une nouvelle langue', - 'Add a new mailing template' => 'Ajouter un nouveau template de mailing', - 'Add a new product' => 'Ajouter un nouveau produit', - 'Add a new product attribute' => 'Ajouter une nouvelle déclinaison produit', - 'Add a new product feature' => 'Ajouter une nouvelle caractéristique produit', - 'Add a new product template' => 'Ajouter un nouveau template produit', - 'Add a new shipping configuration' => 'Ajouter une nouvelle configuration de livraison', - 'Add a new variable' => 'Ajouter une nouvelle variable', - 'Add tax to this group' => 'Ajouter une taxe à ce groupe', - 'Add this attribute to all product templates' => 'Ajouter cette déclinaison à tous les templates produit', - 'Add this country' => 'Ajouter ce pays', - 'Add this feature to all product templates' => 'Ajouter cette caractéristique à tous les templates produit', - 'Add to all product templates' => 'Ajouter à tous les templates produit', - 'Additional Folders' => 'Dossiers associés', - 'Additional address' => 'Adresse complémentaire', - 'Additional categories' => 'Rubriques supplémentaires', - 'Address' => 'Adresse', - 'Administration logs' => 'Journal des logs', - 'Administration profiles' => 'Gestion des administrateurs', - 'Administrators' => 'Administrateurs', - 'All orders' => 'Toutes les commandes', - 'Alpha code 2' => 'Code alpha 2', - 'Alpha code 3' => 'Code alpha 3', - 'Amount' => 'Montant', - 'An error occured' => 'Une erreur est survenue', - 'And' => 'Et', - 'Application field' => 'Champs d\'application', - 'Apply' => 'Appliquer', - 'Associations' => 'Associations', - 'Attribute' => 'Déclinaison', - 'Attribute Combinations' => 'Combinaison de déclinaisons', - 'Attribute Name' => 'Nom de la déclinaison', - 'Attribute information' => 'Information sur la déclinaison', - 'Attribute title' => 'Titre de la déclinaison', - 'Attribute values' => 'Valeurs de la déclinaison', - 'Attributes' => 'Déclinaisons', - 'Attributes & Features' => 'Déclinaisons & caractéristiques', - 'Auth Mode' => 'Mode d\'authentification', - 'Auth Mode :' => 'Mode d\'authentification :', - 'Average cart' => 'Panier moyen', - 'Back' => 'Retour', - 'Back-office home' => 'Accueil administration', - 'Back-office templates' => 'templates Back-office', - 'Back-office users' => 'Utilisateur du B.O', - 'Browse files' => 'Parcourir les fichiers', - 'Browse this category' => 'Parcourir cette catégorie', - 'Browse this folder' => 'Parcourir ce dossier', - 'Can\'t be cumulative' => 'Ne peut pas se cumuler', - 'Can\'t load documents, please refresh this page.' => 'Impossible de charger les documents. Rechargez la page', - 'Can\'t load images, please refresh this page.' => 'Impossible de charger l\'image. Rechargez la page', - 'Can\'t reorder documents, please refresh this page.' => 'Impossible de trier les documents. Rechargez la page', - 'Can\'t reorder images, please refresh this page.' => 'Impossible de trier les images. Rechargez la page', - 'Cancel' => 'Annuler', - 'Cancel changes and revert to original value' => 'Annuler les modifications et revenir à la version antérieure', - 'Cancel this order' => 'Annuler cette commande', - 'Cart - Prices in %currency' => 'Panier - prix en %currency', - 'Catalog' => 'Catalogue', - 'Categories' => 'Rubriques', - 'Categories in %cat' => 'Rubrique dans %cat', - 'Category created on %date_create. Last modification: %date_change' => 'Rubrique créée le %date_create. Dernière modification le %date_change', - 'Category title' => 'Titre de la rubrique', - 'Cellular phone' => 'téléphone portable', - 'Cellular phone number' => 'Numéro de portable', - 'Change this administrator' => 'Modifier cet administrateur', - 'Change this attribute' => 'Modifier cette déclinaison', - 'Change this country' => 'Modifier ce pays', - 'Change this currency' => 'Modifier cette devise', - 'Change this feature' => 'Modifier cette caractéristique', - 'Change this language' => 'Modifier cette langue', - 'Change this mailing template' => 'Modifier ce template de mailing', - 'Change this product attribute' => 'Modifier cette déclinaison produit', - 'Change this product feature' => 'Modifier cette caractéristique produit', - 'Change this product template' => 'Modifier ce template produit', - 'Change this profile' => 'Changer ce profil', - 'Change this shipping configuration' => 'Modifier cette configuration de livraison', - 'Change this shipping zone' => 'Modifier cette zone de livraison', - 'Change this tax' => 'Modifier cette taxe', - 'Change this tax rule' => 'Modifier cette règle de taxe', - 'Change this template' => 'Modifier ce template', - 'Change this variable' => 'Modifier cette variable', - 'Chapo' => 'Chapeau', - 'Check this box if you want to add this attributes to all product templates' => 'Cochez cette case si vous voulez ajouter cette déclinaison à tous les templates produits', - 'Check this box if you want to add this features to all product templates' => 'Cochez cette case si voulez ajouter cette caractéristique à tous les templates produit.', - 'Choose a country' => 'Choisissez un pays', - 'City' => 'Ville', - 'Classic modules' => 'Modules classic', - 'Click here' => 'Cliquez ici', - 'Close' => 'Fermer', - 'Close administation session' => 'Quitter l\'interface d\'administration', - 'Code' => 'Code', - 'Code :' => 'Code : ', - 'Combination EAN Code' => 'Combinaison de code EAN', - 'Combination builder' => 'générateur de combinaison', - 'Combination reference' => 'Référence de la combinaison', - 'Company' => 'Entreprise', - 'Condition\'s category :' => 'Rubrique de la condition', - 'Conditions' => 'Conditions', - 'Configuration' => 'Configuration', - 'Configuration mailing system' => 'Configuration du système de mailing', - 'Configure' => 'Configurer', - 'Configure this module' => 'Configuration', - 'Confirm' => 'Confirmer', - 'Confirm changes' => 'Valider les modifications', - 'Confirmation' => 'Confirmation', - 'Content title' => 'Titre du contenu', - 'Contents in %fold' => 'Contenus dans %fold', - 'Copy source text in input field' => 'Copier la source dans le champs de traduction', - 'Countries' => 'Pays', - 'Countries that have the same tax rule' => 'Pays qui ont les même règles de taxe', - 'Country' => 'Pays', - 'Country description' => 'Description du pays', - 'Country short description' => 'Courte description du pays', - 'Country title' => 'Titre du pays', - 'Coupon' => 'Code promo', - 'Coupon code' => 'Code promo', - 'Coupons' => 'Codes Promo', - 'Coupons : ' => 'Codes promo : ', - 'Create' => 'Créer', - 'Create a customer address' => 'Créer une adresse', - 'Create a new administrator' => 'Créer un nouvel administrateur', - 'Create a new attribute' => 'Créer une nouvelle déclinaison', - 'Create a new attribute value' => 'Créer une nouvelle valeur de déclinaison', - 'Create a new category' => 'Créer une nouvelle rubrique', - 'Create a new combination' => 'Créer une nouvelle combinaison', - 'Create a new content' => 'Créer un nouveau contenu', - 'Create a new country' => 'Créer un nouveau pays', - 'Create a new coupon' => 'Créer un nouveau code promo', - 'Create a new currency' => 'Créer une nouvelle devise', - 'Create a new customer' => 'Ajouter un nouveau client', - 'Create a new feature' => 'Créer une nouvelle caractéristique', - 'Create a new feature value' => 'Créer une nouvelle valeur de caractéristique', - 'Create a new folder' => 'Créer un nouveau dossier', - 'Create a new language' => 'Créer une nouvelle langue', - 'Create a new mailing template' => 'Créer un nouveau template de mailing', - 'Create a new product' => 'Créer un nouveau produit', - 'Create a new product template' => 'Créer un nouveau template produit', - 'Create a new profile' => 'Créer un nouveau profil', - 'Create a new shipping configuration' => 'Créer une nouvelle configuration de livraison', - 'Create a new tax' => 'Créer une nouvelle taxe', - 'Create a new tax rule' => 'Créer une nouvelle règle de taxe', - 'Create a new variable' => 'Créer une nouvelle variable', - 'Create combinations' => 'Créer des combinaisons', - 'Create coupon' => 'Créer un code promo', - 'Create this address' => 'Créer cette adresse', - 'Create this attribute' => 'Créer cette déclinaison', - 'Create this category' => 'Créer cette rubrique', - 'Create this combination' => 'Créer cette combinaison', - 'Create this content' => 'Créer ce contenu', - 'Create this country' => 'Créer ce pays', - 'Create this currency' => 'Créer cette devise', - 'Create this customer' => 'Ajouter ce client', - 'Create this feature' => 'Créer cette caractéristique', - 'Create this folder' => 'Créer ce dossier', - 'Create this language' => 'Créer cette langue', - 'Create this mailing template' => 'Créer ce template de mailing', - 'Create this product' => 'Créer ce produit', - 'Create this product template' => 'Créer ce template produit', - 'Create this shipping configuration' => 'Créer cette nouvelle configuration de livraison', - 'Create this value' => 'Créer cette valeur', - 'Create this variable' => 'Ajouter cette variable', - 'Currencies' => 'Devises', - 'Currency ISO 4217 Code' => 'Code ISO 4217 de la devise', - 'Currency name' => 'Nom de la devise', - 'Currency rate' => 'Taux de la devise', - 'Currency symbol' => 'Symbole de la devise', - 'Current product template' => 'Gabarit de produit actuel', - 'Current quantity' => 'Quantité actuelle', - 'Current version' => 'Version en cours', - 'Customer' => 'Client', - 'Customer informations' => 'Informations client', - 'Customers' => 'Clients', - 'Customers list' => 'Liste des clients', - 'Cutomer Name' => 'Nom du client', - 'Dashboard' => 'Tableau de bord', - 'Date & Hour' => 'Date et heure', - 'Date of last order' => 'Date de la dernière commande', - 'Days before expiration' => 'Jours restants avant expiration', - 'Deactivate %title module' => 'Désactiver le module %title', - 'Default' => 'Défaut', - 'Default address' => 'Adresse par défaut', - 'Define here this product\'s accessories' => 'Choisir ici les accessoires pour ce produit', - 'Delete' => 'Supprimer', - 'Delete a combination' => 'Supprimer une combinaison', - 'Delete a module' => 'Supprimer un module', - 'Delete a variable' => 'Supprimer une variable', - 'Delete address' => 'Supprimer cette adresse', - 'Delete administrator' => 'Supprimer un administrateur', - 'Delete also module data' => 'Supprimer aussi les données de ce module', - 'Delete an order' => 'Supprimer une commande', - 'Delete attribute' => 'Supprimer cette déclinaison', - 'Delete attribute value' => 'Supprimer une valeur de déclinaison', - 'Delete category' => 'Supprimer cette rubrique', - 'Delete content' => 'Supprimer le contenu', - 'Delete country' => 'Supprimer le pays', - 'Delete currency' => 'Supprimer cette devise', - 'Delete customer' => 'Supprimer ce client', - 'Delete feature' => 'Supprimer cette caractéristique', - 'Delete feature value' => 'Supprimer la valeur de la caractéristique', - 'Delete folder' => 'Supprimer ce dossier', - 'Delete language' => 'Supprimer cette langue', - 'Delete mailing template' => 'Supprimer ce template de mailing', - 'Delete product' => 'Supprimer ce produit', - 'Delete profile' => 'Supprimer le profil', - 'Delete shipping configuration' => 'Supprimer cette configuration de livraison', - 'Delete tax' => 'Supprimer la taxe', - 'Delete tax rule' => 'Supprimer cette règle de taxe', - 'Delete template' => 'Supprimer ce template produit', - 'Delete this accessory' => 'Supprimer cet accessoire', - 'Delete this administrator' => 'Supprimer cet administrateur', - 'Delete this attribute' => 'supprimer cette déclinaison', - 'Delete this category and all its contents' => 'Supprimer cette rubrique et tout ce qu\'elle contient ?', - 'Delete this combination' => 'Supprimer cette combinaison', - 'Delete this content' => 'Supprimer ce contenu', - 'Delete this country' => 'Supprimer ce pays', - 'Delete this currency' => 'Supprimer cette devise', - 'Delete this customer and all his orders' => 'Supprimer ce client et toutes ses commandes', - 'Delete this feature' => 'Supprimer cette caractéristique', - 'Delete this folder and all its contents' => 'Supprimer ce dossier et tout ses contenus', - 'Delete this language' => 'Supprimer cette langue', - 'Delete this mailing template' => 'Supprimer ce template de mailing', - 'Delete this module' => 'Supprimer ce module', - 'Delete this product' => 'Supprimer ce produit', - 'Delete this product attribute' => 'Supprimer cette déclinaison produit', - 'Delete this product feature' => 'Supprimer cette caractéristique produit', - 'Delete this product template' => 'Supprimer ce template produit', - 'Delete this profile' => 'Supprimer ce profil', - 'Delete this shipping configuration' => 'Supprimer cette configuration de livraison', - 'Delete this tax' => 'Supprimer cette taxe', - 'Delete this tax rule' => 'Supprimer cette règle de taxe', - 'Delete this value' => 'Supprimer cette valeur', - 'Delete this variable' => 'Supprimer cette variable', - 'Delete this zone' => 'Supprimer cette zone', - 'Delivery address' => 'Adresse de livraison', - 'Delivery module' => 'Module de livraison', - 'Delivery modules' => 'Modules de livraison', - 'Description' => 'Description', - 'Destinations' => 'Destinations', - 'Details' => 'Détails', - 'Disabled coupons' => 'Codes promo désactivés', - 'Discount' => 'Remise', - 'Do not use a product template' => 'Ne pas utiliser de gabarit', - 'Do you really want to add this attribute to all product templates ?' => 'Voulez-vous vraiment ajouter cette déclinaison de tous les templates produit ?', - 'Do you really want to add this feature to all product templates ?' => 'Voulez-vous vraiment ajouter cette caractéristique à tous les templates produit ?', - 'Do you really want to cancel this order ?' => 'Voulez-vous vraiment supprimer cette commande ?', - 'Do you really want to delete this address ?' => 'Voulez-vous vraiment supprimer cette adresse ?', - 'Do you really want to delete this administrator ?' => 'Confirmez-vous la suppression de cet administrateur ?', - 'Do you really want to delete this attribute ? It will be removed from all product templates.' => 'Voulez-vous vraiment supprimer cette déclinaison ? Elle sera supprimée de tous les templates produit.', - 'Do you really want to delete this attribute value ?' => 'Voulez-vous vraiment supprimer cette déclinaison ?', - 'Do you really want to delete this category and all its content ?' => 'Voulez-vous vraiment supprimer cette rubrique et tout ce qu\'elle contient ?', - 'Do you really want to delete this combination ?' => 'Voulez-vous vraiment supprimer cette combinaison ?', - 'Do you really want to delete this content ?' => 'Voulez-vous vraiment supprimer ce contenu ?', - 'Do you really want to delete this country ?' => 'Voulez-vous vraiment supprimer ce pays ?', - 'Do you really want to delete this currency ?' => 'Voulez-vous vraiment supprimer cette devise ?', - 'Do you really want to delete this customer ?' => 'Voulez-vous supprimer ce client ?', - 'Do you really want to delete this element ?' => 'Voulez-vous vraiment supprimer cet élément ?', - 'Do you really want to delete this feature ? It will be removed from all product templates.' => 'Voulez-vous vraiment supprimer cette caractéristique ? Elle sera supprimée de tous les templates produit', - 'Do you really want to delete this feature value ?' => 'Voulez-vous vraiment supprimer cette valeur de caractéristique ?', - 'Do you really want to delete this folder and all its content ?' => 'Voulez-vous vraiment supprimer ce dossier et tous ses contenus ?', - 'Do you really want to delete this language ?' => 'Voulez-vous vraiment supprimer cette langue ?', - 'Do you really want to delete this mailing template ?' => 'Voulez-vous vraiment supprimer ce template de mailing ?', - 'Do you really want to delete this module ?' => 'Voulez-vous vraiment supprimer ce module ?', - 'Do you really want to delete this product ?' => 'Voulez-vous vraiment supprimer ce produit ?', - 'Do you really want to delete this profile ?' => 'Voulez-vous vraiment supprimer ce profil ?', - 'Do you really want to delete this shipping configuration ?' => 'Voulez-vous vraiment supprimer cette configuration de livraison ?', - 'Do you really want to delete this tax ?' => 'Voulez-vous vraiment supprimer cette taxe ?', - 'Do you really want to delete this tax rule ?' => 'Voulez-vous vraiment supprimer cette règle de taxe ?', - 'Do you really want to delete this template ? It will be removed from all products.' => 'Voulez-vous vraiment supprimer ce template ? Il sera supprimé de tous les produits.', - 'Do you really want to delete this variable ?' => 'Voulez-vous vraiment supprimer cette variable ?', - 'Do you really want to enable this element ?' => 'Voulez-vous vraiment activer cet élément ?', - 'Do you really want to remove the content from this folder ?' => 'Voulez-vous vraiment enlever le contenu de ce dossier ?', - 'Do you really want to remove the product from this category ?' => 'êtes-vous sur de vouloir enlever le produit de cette rubrique', - 'Do you really want to remove this accessory from the product ?' => 'êtes-vous sur de vouloir supprimer cet accessoire ?', - 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.' => 'Voulez-vous vraiment supprimer cette déclinaison de tous les templates produits ? Vous allez perdre toutes les informations produit liées à cette déclinaison.', - 'Do you really want to remove this attribute from the template ?' => 'êtes-vous sur de vouloir retirer cette déclinaison de ce template', - 'Do you really want to remove this country ?' => 'Voulez-vous vraiment enlever ce pays ?', - 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.' => 'Voulez-vous vraiment enlever cette caractéristique de tous les templates produit ? Vous allez perdre toutes les informations des produits liées à cette caractéristique.', - 'Do you really want to remove this feature from the template ?' => 'Voulez-vous vraiment supprimer cette caractéristique de ce template ?', - 'Do you really want to remove this related content ?' => 'Voulez-vous vraiment supprimer ce contenu lié ?', - 'Do you really want to remove this related content from the product ?' => 'êtes-vous sur de vouloir supprimer ce contenu associé ?', - 'Do you really want to remove this zone ?' => 'Voulez-vous vraiment supprimer cette zone ?', - 'Do you really want to set this coupon available to everyone ?' => 'êtes-vous sur de vouloir rendre ce code promo disponible à tout le monde ?', - 'Do you really want to use this address by default ?' => 'Voulez-vous vraiment utiliser cette adresse comme adresse par défaut ?', - 'Document' => 'Document', - 'Document informations' => 'Informations du document', - 'Documents' => 'Documents', - 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.' => 'Ne répétez pas sans cesse les même mots-clés dans une ligne. Préférez utiliser des expressions de mots-clés', - 'Download invoice as PDF' => 'Télécharger la facture au format PDF', - 'Download purchase order as PDF' => 'Télécharger le bon de commande au format PDF', - 'Drop files to upload' => 'Déposez des fichiers à envoyer', - 'Drop tax here to create a tax group' => 'Déposer une taxe ici afin de créer un groupe de taxe', - 'Drop tax here to delete from group' => 'Déposer une taxe ici afin de la supprimer du groupe', - 'E-mail templates' => 'templates E-mail', - 'EAN Code' => 'Code EAN', - 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.' => 'L\'écotaxe est une taxe qui ajoute un montant défini (grâce à une caractéristique produit) au prix du produit.', - 'Edit' => 'Editer', - 'Edit %title' => 'Modifier %title', - 'Edit a country' => 'Modifier un pays', - 'Edit a currency' => 'Modifier une devise', - 'Edit a customer' => 'Éditer un client', - 'Edit a customer address' => 'Modifier une adresse', - 'Edit a document' => 'Modifier un document', - 'Edit a feature' => 'Modifier une caractéristique', - 'Edit a language' => 'Modifier une langue', - 'Edit a mailing template' => 'Modifier un template de mailing', - 'Edit a module' => 'Modifier un module', - 'Edit a profile' => 'Modifier le profil', - 'Edit a shipping configuration' => 'Modifier une configuration de livraison', - 'Edit a shipping zone' => 'Modifier la zone de livraison', - 'Edit a system variable' => 'Modifier une variable système', - 'Edit a tax' => 'Modifier une taxe', - 'Edit a tax rule' => 'Modifier une règle de taxe', - 'Edit a template' => 'Modifier un template', - 'Edit an attribute' => 'Modifier une déclinaison', - 'Edit an image' => 'Modifier une image', - 'Edit an order' => 'Editer une commande', - 'Edit attribute "%name"' => 'Modifier la déclinaison "%name"', - 'Edit category' => 'Editer la rubrique', - 'Edit category %title' => 'Modifier la rubrique %title', - 'Edit content' => 'Modifier le contenu', - 'Edit content %title' => 'Modifier le contenu %title', - 'Edit country "%name"' => 'Modifier le pays "%name"', - 'Edit currency "%name"' => 'Modifier la devise "%name"', - 'Edit customer %firstname %lastname' => 'Modification du client %firstname %lastname ', - 'Edit delivery address' => 'Editer l\'adresse de livraison', - 'Edit document "%name"' => 'Modifier le document "%name"', - 'Edit feature "%name"' => 'modifier la caractéristique "%name"', - 'Edit folder' => 'Modifier le dossier', - 'Edit folder %title' => 'Modifier le dossier %title', - 'Edit image "%name"' => 'Modifier l\'image "%name"', - 'Edit information in %lng' => 'Modifier les informations en %lng', - 'Edit invoice address' => 'Editer l\'adresse de facturation', - 'Edit mailing template "%name"' => 'Modifier le template de mail "%name"', - 'Edit next category' => 'Modifier la rubrique suivante', - 'Edit next content' => 'Modifier le contenu suivant', - 'Edit next folder' => 'Modifier le dossier suivant', - 'Edit next product' => 'Modifier le produit suivant', - 'Edit order address' => 'Editer l\'adresse de commande', - 'Edit previous category' => 'Modifier la rubrique précédente', - 'Edit previous content' => 'Modifier le contenu précédent', - 'Edit previous folder' => 'Modifier le dossier précédent', - 'Edit previous product' => 'Modifier le produit précédent', - 'Edit prices in %curr' => 'Modifier les prix en %curr', - 'Edit product' => 'Modifier le produit', - 'Edit product %title' => 'Modifier le produit %title', - 'Edit shipping configuration %title' => 'Modifier la configuration de livraison %title', - 'Edit shipping zone %title' => 'Modifier la zone de livraison %title', - 'Edit tax rule taxes' => 'Modifier les taxes de la règle de taxe', - 'Edit template "%name"' => 'Modifier le template "%name"', - 'Edit this address' => 'Editer cette adresse', - 'Edit this category' => 'Editer cette rubrique', - 'Edit this content' => 'Modifier ce contenu', - 'Edit this customer' => 'Modifier ce client', - 'Edit this folder' => 'Modifier ce dossier', - 'Edit this module' => 'Modifier ce module', - 'Edit this order' => 'Editer cette commande', - 'Edit this product' => 'Modifier ce produit', - 'Edit variable %name' => 'Modifier la variable %name', - 'Editing %cat' => 'Edition de %cat', - 'Editing %fold' => 'Modification de %fold', - 'Editing %title' => 'En cours de modification de %title', - 'Editing attribute "%name"' => 'En cours de modification de la déclinaison "%name"', - 'Editing country "%name"' => 'En cours de modification du pays "%name"', - 'Editing currency "%name"' => 'En cours de modification de la devise "%name"', - 'Editing customer "%name"' => 'Edition du client "%name"', - 'Editing document "%name"' => 'Modification du document "%name"', - 'Editing feature "%name"' => 'En cours de modification de la caractéristique "%name"', - 'Editing image "%name"' => 'Modification de l\'image "%name"', - 'Editing mailing template "%name"' => 'En cours de modification du template de mailing "%name"', - 'Editing module' => 'Module en cours de modification', - 'Editing profile' => 'Modification du profil', - 'Editing shipping configuration "%name"' => 'En cours de modification de la configuration de livraison "%name"', - 'Editing shipping zone "%name"' => 'En cours de modification de la zone de livraison "%name"', - 'Editing tax' => 'En cours de modification de la taxe', - 'Editing tax rule' => 'En cours de modification de la règle de taxe', - 'Editing template "%name"' => 'Modification du template "%name"', - 'Editing variable "%name"' => 'Modification de la variable "%name" ', - 'Email address' => 'Adresse e-mail', - 'Email used when you send an email to your customers (Order confirmations, etc).' => 'adresse email utilisé pour envoyer les mails à vos clients', - 'Enable remote SMTP use : ' => 'Activer l\'utilisation d\'un serveur SMTP distant:', - 'Enable/Disable' => 'Activer/Désactiver', - 'Enabled coupons' => 'Codes promo disponibles', - 'Encryption' => 'Chiffrement', - 'Encryption :' => 'Chiffrement :', - 'Enter here all possible attribute values.' => 'Entrez ici toutes les valeurs de déclinaison possible.', - 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.' => 'Entrez ici toutes les caractéristiques possibles. Afin d\'avoir un texte libre dans le formulaire du produit, n\'ajoutez aucune valeur.', - 'Enter here the attribute name in the default language (%language_name)' => 'Entrez ici le nom de la déclinaison dans la langue par défaut (%language_name)', - 'Enter here the category name in the default language (%title)' => 'Entrer ici le nom de la rubrique dans la langue par défaut (%title)', - 'Enter here the content name in the default language (%title)' => 'Entrez ici le nom du contenu dans la langue par défaut (%title)', - 'Enter here the currency name in the default language (%title)' => 'Renseigner le nom de la devise dans la langue par défaut (%title)', - 'Enter here the feature name in the default language (%title)' => 'Renseigner le nom de la caractéristique dans la langue par défaut (%title)', - 'Enter here the feature value as free text' => 'Indiquez ici la valeur de la caractéristique', - 'Enter here the folder name in the default language (%title)' => 'Entrez ici le nom du dossier dans la langue par défaut (%title)', - 'Enter here the mailing template purpose in the default language (%title)' => 'Renseigner l\'objet du mail dans la langue par défaut (%title)', - 'Enter here the product name in the default language (%title)' => 'Entrez ici le nom du produit dans la langue par défaut (%title)', - 'Enter here the product price in the default currency (%title)' => 'entrez ici le prix du produit dans la langue par défaut (%title)', - 'Enter here the product reference' => 'Entrez ici la nouvelle référence produit', - 'Enter here the product tax price in the default currency (%title)' => 'Renseignez le prox TTC dans la devise par défaut (%title)', - 'Enter here the product weight, in Kilogrammes' => 'Entrez ici le poids du produit, en Kilogrammes', - 'Enter here the template name in the default language (%title)' => 'Renseignez le nom du template dans la langue par défaut (%title)', - 'Enter here the value in the current edit language (%language_name)' => 'Rensignez la valeur dans la langue d\'édition actuelle (%language_name)', - 'Enter here the value in the current edit language (%title)' => 'Entrez la valeur dans la langue d\'édition courante (%title)', - 'Enter new accessory position' => 'Renseigner la nouvelle position pour cet accessoire', - 'Enter new attribute position' => 'Modifier la position de la déclinaison', - 'Enter new category position' => 'Classement de la catégorie', - 'Enter new content position' => 'Modifier la position du contenu', - 'Enter new currency position' => 'Modifier la position de la devise', - 'Enter new feature position' => 'Modifier la position de la caractéristique', - 'Enter new folder position' => 'Modifier la position du dossier', - 'Enter new module position' => 'Renseigner la nouvelle position pour ce module', - 'Enter new product position' => 'Classement du produit', - 'Enter new value position' => 'Entrez une nouvelle position', - 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses' => 'Entrer une ou plusieurs adresse IP (V4) séparés pas des ";". Laisser vide pour afficher les logs pour toutes les adresses IP', - 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.' => 'entrer un ou plusieurs nom de fichiers, séparés par des ";". Utiliser "!" avant le nom d\'un fichier pour l\'exclure. Utiliser "*" pour activer les logs sur tous les fichiers', - 'Error' => 'Erreur', - 'Example :' => 'Exemple :', - 'Existing combinations will be deleted. Do you want to continue ?' => 'Les combinaisons existantes seront supprimées. Voulez-vous continuer ?', - 'Expiration date' => 'Date de fin de validité', - 'Expiration date :' => 'Date de fin de validité : ', - 'Failed to get converted prices. Please try again.' => 'Erreur lors de la récupération des prix convertis. Veuillez réessayer.', - 'Failed to get prices. Please try again.' => 'Erreur lors de la récupération des prix. Veuillez réessayer.', - 'Fax number' => 'Numéro de fax', - 'Feature Name' => 'Nom de la caractéristique', - 'Feature information' => 'Informations sur la caractéristique', - 'Feature title' => 'Titre de la caractéristique', - 'Feature value' => 'Valeur de la caractéristique', - 'Feature value for this product' => 'Valeur de la caractéristique pour ce produit', - 'Feature values' => 'Valeurs de la caractéristique', - 'Features' => 'Caractéristiques', - 'File' => 'Fichier', - 'File names' => 'Nom du fichier', - 'First Name' => 'Prénom', - 'First name' => 'Prénom', - 'First orders' => 'Premières commandes', - 'FirstName' => 'Prénom', - 'Firstname' => 'Prénom', - 'Folder created on %date_create. Last modification: %date_change' => 'Dossier créé le %date_create. Dernière modification le %date_change', - 'Folder title' => 'Titre du dossier', - 'Folders' => 'Dossiers', - 'Folders in %fold' => 'Dossier dans %fold', - 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.' => 'La TVA française de 20% est une taxe qui ajoute 20% au prix du produit.', - 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).' => 'La TVA française de 20% avec écotaxe est l\'application de l\'écotaxe (sur le prix du produit) puis l\'application de la taxe de20% (sur le prix du produit + le montant écotaxe).', - 'From' => 'De', - 'Front-office templates' => 'templates Front-office', - 'General' => 'Général', - 'General configuration' => 'Configuration générale', - 'General description' => 'Description générale', - 'Go to administration home' => 'Aller à l\'accueil de l\'interface d\'administration', - 'H:i:s' => 'H:i:s', - 'HTML version of this message' => 'Version HTML du message', - 'Home' => 'Accueil', - 'Host' => 'Nom de l\'hôte', - 'Host :' => 'Host', - 'ID' => 'ID', - 'IP Addresses' => 'Adresse IP', - 'ISO 4217 Code' => 'Code ISO 4217', - 'ISO 4217 code' => 'Code ISO 4217', - 'ISO 639 Code' => 'Code ISO 639', - 'ISO Code' => 'Code ISO', - 'If a translation is missing or incomplete :' => 'Si une traduction est manquante ou incomplète :', - 'If yes, redirections through Redirect::exec() will be displayed as links' => 'Si oui, les redirections générés pas Redirect::exec seront affichés par des liens', - 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.' => 'La chaîne semble contient une variable smarty ($). Si c\'est le cas elle ne peut pas être traduite correctement', - 'Image' => 'Image', - 'Image information' => 'Information de l\'image', - 'Images' => 'Images', - 'Impossible to change default country. Please contact your administrator or try later' => 'Impossible de modifier le pays par défaut. Veuillez contacter votre administrateur ou réessayer plus tard', - 'Impossible to change default languages. Please contact your administrator or try later' => 'Impossible de modifier la langue par défaut. Veuillez contacter votre administrateur ou essayer plus tard', - 'In order to manges your shop taxes you can manage' => 'Pour pouvoir gérer les taxes de votre magasin vous pouvez gérer', - 'In page' => 'Dans la page', - 'In pages:' => 'Dans les pages : ', - 'Install a new module' => 'Installer un nouveau module', - 'Invoice and Delivery' => 'Livraison et facturation', - 'Invoice date' => 'Date de facturation', - 'Invoice informations' => 'Informations de facturation', - 'Invoice reference' => 'Facture ref', - 'Is available on special offers' => 'Est valide sur les offres promotionnelles', - 'Is cumulative' => 'Est cumulable', - 'Is disabled' => 'désactivé', - 'Is enabled' => 'Est activé', - 'Is removing postage' => 'Offre les frais de port', - 'Is unlimited' => 'Est illimité', - 'Keep the most important part of your description in the first 150-160 characters.' => 'Votre description ne devrait pas dépasser 150 à 160 caractères', - 'Kg' => 'Kg', - 'Label' => 'Libellé', - 'Language name' => 'Nom de la langue', - 'Language title' => 'Titre de la langue', - 'Languages' => 'Langues', - 'Languages & URLs' => 'Langues et URLs', - 'Languages management' => 'Gestion des langues', - 'Last Name' => 'Nom', - 'Last name' => 'Nom', - 'Last order amount' => 'Montant de la dernière commande', - 'LastName' => 'Nom', - 'Lastname' => 'Nom', - 'Latest version available' => 'Dernière version disponible', - 'Leave empty to keep current password' => 'Laisser ce champ vide pour ne pas modifier le mot de passe', - 'Lire la suite' => 'Lire la suite', - 'Loading Thelia lastest news...' => 'Chargement des dernières information Thelia...', - 'Locale' => 'Paramètre régional', - 'Log lines format' => 'Format d\'une ligne de log', - 'Log lines header format. You may use the following variables: ' => 'Format d\'une ligne de log. Vous pouvez utiliser ces variables : ', - 'Login' => 'Connexion', - 'Logout' => 'Se déconnecter', - 'Long description :' => 'Description longue', - 'Mailing system' => 'Envoi des e-mails', - 'Mailing template name' => 'Nom du template de mailing', - 'Mailing template purpose' => 'Objectif du template de mailing', - 'Mailing templates' => 'Template e-mail', - 'Make sure it uses keywords found within the page itself.' => 'Assurez vous d\'utiliser des mots-clés présents dans la page courante', - 'Make sure that your title is clear, and contains many of the keywords within the page itself.' => 'Assurez-vous d\'avoir un titre clair et qui contient les mots-clés correspondant à la page en cours', - 'Manage module rights' => 'Gestion des droits pour les modules', - 'Manage resource rights' => 'Gestion de droits pour les ressources', - 'Manage taxes' => 'Gérer les taxes', - 'Manage the tax rule taxes appliance order' => 'Gérer les règles de taxe et leur ordre d\'application', - 'Max usage :' => 'Utilisations max : ', - 'May be cumulative' => 'Peut être cumulé', - 'Message created on %date_create. Last modification: %date_change' => 'Message créé le %date_create. Dernière modification le %date_change', - 'Message level' => 'Message level', - 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ' => 'Les messages avec un niveau d\'erreur supérieur ou égal à celui sélectionné seront rajoutés dans les logs', - 'Module' => 'Module', - 'Module access rights' => 'Droits d\'accès pour les modules', - 'Module created on %date_create. Last modification: %date_change' => 'Module crée le %date_create. Dernière modification le %date_change', - 'Modules' => 'Modules', - 'More information about ISO 4217' => 'Plus d\'information à propos de l\'ISO 4217', - 'NONE' => 'AUCUN', - 'Name' => 'Nom', - 'New' => 'Nouveau', - 'New customers' => 'Nouveaux clients', - 'News' => 'Actualités', - 'No' => 'Non', - 'No Folders found' => 'Aucun dossier trouvé', - 'No area defined with this id' => 'Pas de zone définie avec cette id', - 'No available content in this folder' => 'Ce dossier n\'a pas de contenu', - 'No available product in this category' => 'Aucun produit disponible dans cette rubrique', - 'No available value for this attribute' => 'Aucune valeur disponible pour cette déclinaison', - 'No categories found' => 'Aucune rubrique trouvée', - 'No country has been created yet. Click the + button to create one.' => 'Aucun pays n\'a encore été créé. Cliquez sur le bouton + pour en créer un', - 'No currency has been created yet. Click the + button to create one.' => 'Aucune devise n\'a encore été crée. Cliquez sur le bouton + pour en créer une.', - 'No folders found' => 'Aucun dossier n\'a été trouvé.', - 'No mailing template has been created yet. Click the + button to create one.' => 'Aucun template de mailing n\'a encore été créé. Cliquez sur le bouton + pour en ajouter un.', - 'No product attribute has been created yet. Click the + button to create one.' => 'Aucune déclinaison produit n\'a encore été créée. Cliquez sur le bouton + pour en créer une.', - 'No product feature has been created yet. Click the + button to create one.' => 'Aucune caractéristique produit n\'a encore été ajoutée. Cliquez sur le bouton + pour en créer une.', - 'No product template has been created yet. Click the + button to create one.' => 'Aucun template produit n\'a encore été créé. Cliquez sur le bouton + pour en créer une.', - 'No value has been created yet. Click the + button to create one.' => 'Aucune valeur n\'a encore été crée. Cliquez sur le bouton + pour en créer une.', - 'N° ISO' => 'N° ISO', - 'OK' => 'OK', - 'Offline products' => 'Produits hors ligne', - 'Online' => 'En ligne', - 'Online products' => 'Produits en ligne', - 'Oops! An Error Occurred' => 'Oops ! Une erreur est survenue', - 'Order #' => 'Commande #', - 'Order %ref' => 'Commande %ref', - 'Order n°' => 'Commande n°', - 'Order status:' => 'Statut de la commande : ', - 'Ordered products' => 'Produits commandés', - 'Orders' => 'Commandes', - 'Originating file line number ' => 'Originating file line number ', - 'Originating file name' => 'Originating file name', - 'Originating function name ' => 'Originating function name ', - 'Other addresses' => 'Autres adresses', - 'Overall sales' => 'Total des ventes', - 'PDF templates' => 'templates PDF', - 'PDF | Invoice' => 'Facture PDF', - 'PDF | Purchase order' => 'Bon de commande PDF', - 'Page not found' => 'Page non trouvée', - 'Parameters' => 'Paramètres', - 'Password' => 'Mot de passe', - 'Password :' => 'Mot de passe : ', - 'Payment information' => 'Informations de paiement', - 'Payment module' => 'Module de paiement', - 'Payment modules' => 'Modules de payment', - 'Period' => 'Période', - 'Phone' => 'Téléphone', - 'Phone number' => 'Numéro de téléphone', - 'Please retry' => 'Merci de réessayer', - 'Please save your Coupon in oder to affect it some conditions' => 'Veuillez sauvegarder votre code promo afin de pouvoir lui affecter des conditions', - 'Please select a condition category' => 'Merci d\'entrer le type de condition', - 'Please select a coupon type' => 'Merci d\'entrer le type de code', - 'Please select another condition' => 'Merci de sélectionner une autre condition', - 'Please select items to translate' => 'Veuillez sélectionner un élément', - 'Please select the B.O. template to translate' => 'Sélectionnez le template back-office que vous souhaitez traduire', - 'Please select the E-mail template to translate' => 'Sélectionnez le template de mail à traduire', - 'Please select the F.O. template to translate' => 'Sélectionnez le template front-office que vous souhaitez traduire', - 'Please select the PDF template to translate' => 'Sélectionnez le template PDF à traduire', - 'Please select the module to translate' => 'Sélectionnez le module à traduire', - 'Please wait, loading' => 'Chargement, veuillez patienter', - 'Port' => 'Port', - 'Port :' => 'Port : ', - 'Position' => 'Position', - 'Post Scriptum' => 'Post-scriptum', - 'Postage' => 'Frais de livraison', - 'Postscriptum' => 'Post-scriptum', - 'Preview' => 'Prévisualisation', - 'Preview category page' => 'Aperçu de la page rubrique', - 'Preview folder page' => 'Aperçu de la page dossier', - 'Preview product page' => 'Aperçu de la page produit', - 'Previous month sales' => 'Ventes du mois précédent', - 'Previous year sales' => 'Ventes de l\année précédente', - 'Price' => 'Prix', - 'Price excl. taxes' => 'Prix taxes exclues', - 'Price incl. taxes' => 'Prix TTC', - 'Price
w/ taxes (%currency)' => 'Prix
avec taxes (%currency)', - 'Price
w/o taxes (%currency)' => 'Prix
sans taxes (%currency)', - 'Pricing' => 'défintion des prix', - 'Product' => 'Produit', - 'Product Attributes' => 'Déclinaisons du produit', - 'Product EAN Code' => 'Code EAN du produit', - 'Product Features' => 'Caractéristiques du produit', - 'Product accessories' => 'Accessoires', - 'Product attributes' => 'Déclinaisons produit', - 'Product catalog configuration' => 'Configuration du catalogue produit', - 'Product created on %date_create. Last modification: %date_change' => 'Produit créé le %date_create. Dernière modification le %date_change', - 'Product features' => 'Caractéristiques produit', - 'Product price' => 'Prix du produit', - 'Product price including taxes' => 'Prix du produit taxes incluses', - 'Product tax price' => 'prix TTC', - 'Product templates' => 'Template produit', - 'Product title' => 'Titre du produit', - 'Product weight' => 'Poids du produit', - 'Products' => 'Produits', - 'Products in %cat' => 'Produits dans %cat', - 'Profil' => 'Profil', - 'Profile' => 'Profil', - 'Profile code' => 'Code du profil', - 'Profile created on %date_create. Last modification: %date_change' => 'Profil crée le %date_create. Dernière modification le %date_change ', - 'Profiles' => 'Profils', - 'Promotion' => 'Promo', - 'Published by OpenStudio' => 'Développé par OpenStudio', - 'Purpose' => 'Objet', - 'Quickly create combinations using the combination builder' => 'Créer rapidement une combinaison via le générateur de combinaison', - 'Rate' => 'Taux', - 'Rate from Euro' => 'Taux à partir de l\'Euro', - 'Rate in €' => 'Taux en €', - 'Read the documentation of this module' => 'Lire la documentation de ce module', - 'Reference' => 'Référence', - 'Registration date' => 'Date d\'enregistrement', - 'Related content' => 'Contenu associé', - 'Remove an accessory' => 'Supprimer l\'accessoire', - 'Remove associated folder' => 'Enlever le dossier associé', - 'Remove attribute' => 'Supprimer la déclinaison', - 'Remove country' => 'Enlever ce pays', - 'Remove feature' => 'Enlever la caractéristique', - 'Remove from all product templates' => 'Enlever de tous les templates produit', - 'Remove from category' => 'Supprimer de la rubrique', - 'Remove related content' => 'Enlever les contenus liés', - 'Remove selected values' => 'Enlever les valeur sélectionnées', - 'Remove the product from this category' => 'Enlever ce produit de cette rubrique', - 'Remove this attribute from all product templates' => 'Enlever cette déclinaison de tous les template produit', - 'Remove this feature from all product templates' => 'Enlever cette caractéristique de tous les templates produit', - 'Remove zone' => 'Supprimer la zone', - 'Resource' => 'Ressource', - 'Resource access rights' => 'Droits d\'accès pour les ressources', - 'Resources' => 'Ressources', - 'Rewritten URL' => 'URL réécrites', - 'Rights' => 'Droits', - 'SEO' => 'SEO', - 'Sale' => 'En promo', - 'Sale price incl. taxes' => 'Prix promo TTC', - 'Sale price
w/ taxes (%currency)' => 'Prix promo
HT (%currency)', - 'Sale price
w/o taxes (%currency)' => 'Prix promo
TTC (%currency)', - 'Sales' => 'Ventes', - 'Sales excluding shipping' => 'Ventes hors frais de port', - 'Sales statistics' => 'Statistiques de vente', - 'Save' => ' Enregistrer', - 'Save and close' => 'Enregistrer et fermer', - 'Save chages' => 'Enregistrer les modifications', - 'Save changes' => 'Enregistrer les modifications', - 'Save this address' => 'Sauvegarder cette adresse', - 'Save this condition' => 'Enregistrer cette condition', - 'Save your modifications' => 'Enregistrer les modifications', - 'Search' => 'Recherche', - 'Select a category and click (+) to add it to the additional category list' => 'Sélectionner une rubrique et cliquez sur (+) pour la rajouter dans la liste des rubrique associées', - 'Select a category to get its products' => 'Sélectionner une rubrique pour avoir les produits qu\'elle contient', - 'Select a category...' => 'Sélectionner une rubrique...', - 'Select a content and click (+) to add it to this category' => 'Selectionnez un contenu et cliquez sur (+) pour l\'ajouter à cette rubrique', - 'Select a content and click (+) to add it to this product' => 'Sélectionner un contenu et cliquer sur (+) pour l\'associer au produit', - 'Select a folder and click (+) to add it to the additional folder list' => 'Sélectionnez un dossier et cliquez sur (+) afin de l\'ajouter à la liste des dossiers aditionnels', - 'Select a folder content...' => 'Choisissez un dossier de contenu...', - 'Select a folder to get its content' => 'Choisissez un dossier de contenu pour lister ses contenus', - 'Select a folder...' => 'Choisissez un dossier de contenu...', - 'Select a product and click (+) to add it as an accessory' => 'Sélectionner un produit et cliquer sur (+) pour l\'ajouter en tant qu\'accessoire', - 'Select a product...' => 'Sélectionner un produit...', - 'Select a tax tule' => 'Sélectionnez une règle de taxes', - 'Select a value click (+) to add it to the combination' => 'Sélectionnez une valeur et cliquez sur (+) pour l\'ajouter à la combinaison', - 'Select an attribute and click (+) to add it to this template' => 'Sélectionner une déclinaison et cliquer sur (+) pour l\'ajouter à ce template', - 'Select an attribute and click (+) to view available values' => 'Sélectionnez une déclinaison et cliquez sur (+) pour voir les valeurs disponibles', - 'Select an attribute value...' => 'Sélectionnez une valeur de déclinaison...', - 'Select an attribute...' => 'Sélectionnez une déclinaison...', - 'Select an feature and click (+) to add it to this template' => 'Selectionnez une caractéristique et cliquez sur (+) pour l\'ajouter à ce template', - 'Select an feature...' => 'Sélectionnez une caractéristique...', - 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.' => 'Sélectionnez les valeurs de déclinaison à combiner. Vous pouvez entrer une valeur par défaut pour certains champs des combinaisons générées.', - 'Select here the tax applicable to this product' => 'Sélectionnez ici la taxe applicable sur ce produit', - 'Select the E-mail template you want to translate' => 'Sélectionnez le template de mail à traduire', - 'Select the PDF template you want to translate' => 'Sélectionnez le template PDF à traduire', - 'Select the back-office template you want to translate' => 'Sélectionnez le template back-office que vous souhaitez traduire', - 'Select the front-office template you want to translate' => 'Sélectionnez le template front-office que vous souhaitez traduire', - 'Select the module you want to translate' => 'Sélectionnez le module à traduire', - 'Select which items you want to translate' => 'Sélectionnez l\'élément que vous souhaitez traduire', - 'Send a mail to this customer' => 'Contacter ce client par mail', - 'Send files' => 'Envoyer des fichiers', - 'Sequential number of log line' => 'Sequential number of log line', - 'Set as default tax rule' => 'Configurer en tant que règle par défaut', - 'Shipping configuration' => 'Configuration du transport', - 'Shipping configuration name' => 'Nom de la configuration de livraison', - 'Shipping zones' => 'Zones de livraison', - 'Shop' => 'Boutique', - 'Shop Informations' => 'Informations sur la boutique', - 'Short conclusion' => 'Courte conclusion', - 'Short description' => 'Description courte', - 'Short description :' => 'Description courte : ', - 'Show logs' => 'Voir les logs', - 'Some of your translations are not saved. Continue anyway ?' => 'Certaines des traductions ne sont pas sauvegardées. Souhaitez-vous continuer ?', - 'Sorry, attribute ID=%id was not found.' => 'Désolé, la déclinaison ID=%id n\'a pas été trouvé', - 'Sorry, country ID=%id was not found.' => 'Désolé, le pays ID=%id n\'a pas été trouvé', - 'Sorry, currency ID=%id was not found.' => 'Désolé, le devise ID=%id n\'a pas été trouvé', - 'Sorry, customer ID=%id was not found.' => 'Désolé, le client ID=%id n\'a pas été trouvé', - 'Sorry, document ID=%id was not found.' => 'Désolé, le document ID=%id n\'a pas été trouvé', - 'Sorry, feature ID=%id was not found.' => 'Désolé, la caractéristique ID=%id n\'a pas été trouvé', - 'Sorry, image ID=%id was not found.' => 'Désolé, l\'image ID=%id n\'a pas été trouvé', - 'Sorry, message ID=%id was not found.' => 'Désolé, le message ID=%id n\'a pas été trouvé', - 'Sorry, template ID=%id was not found.' => 'Désolé, le template ID=%id n\'a pas été trouvé', - 'Sorry, variable ID=%id was not found.' => 'Désolé, la variable ID=%id n\'a pas été trouvé', - 'Source IP' => 'IP source', - 'Source IP :' => 'IP source : ', - 'Status' => 'Etat', - 'Stock' => 'Stock', - 'Store' => 'Information boutique', - 'Store Business Identification Number (SIRET, etc).' => 'identifiant de la boutique (SIRET, etc)', - 'Store address' => 'Adresse de la boutique', - 'Store configuration' => 'Configuration de la boutique', - 'Street address' => 'Adresse', - 'Subject' => 'Sujet', - 'Superadministrator' => 'Super-administrateur', - 'Symbol' => 'Symbole', - 'System Logs' => 'Gestion des logs', - 'System Logs configuration' => 'Configuration des logs', - 'System logs' => 'Gestion des logs', - 'System parameters' => 'Paramètres système ', - 'System variables' => 'Gestion des variables', - 'Tax' => 'Taxes', - 'Tax created on %date_create. Last modification: %date_change' => 'Taxe créée le %date_create. Dernière modification: %date_change', - 'Tax rule created on %date_create. Last modification: %date_change' => 'Règle de taxe créée le %date_create. Dernière modification le %date_change', - 'Tax rule taxes will be update for the following countries :' => 'Les règles de taxe seront modifiées pour les pays suivants :', - 'Tax rules' => 'Règles de taxes', - 'Tax rules are combination of different taxes.' => 'Les règles de taxe sont une combinaison de différentes taxes.', - 'Taxed total' => 'Montant total des taxes', - 'Taxes' => 'Taxes', - 'Taxes define the amount of money which is added to a bought product.' => 'Les taxes correspondent au montant ajouté au prix HT d\'un produit acheté', - 'Taxes rules' => 'Règles de taxes', - 'Template name' => 'Nom du template', - 'Template title' => 'Titre du template', - 'Templates' => 'Templates', - 'Text version of this message' => 'Version texte du message', - 'The HTML TITLE element is the most important element on your web page.' => 'L\'élément HTML TITLE est le plus important dans votre page', - 'The default pricing is used when no combination is defined.' => 'Le prix pas défaut est utilisez lorsqu\'aucune combinaison n\'est utilisé', - 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.' => 'Les destinations permettent d\'afficher, stocker ou bien envoyer les logs. Vous pouvez en sélectionner zéro, un ou plusieurs dans la liste ci-dessous', - 'The detailed description.' => 'La description détaillée.', - 'The mailing template in HTML format.' => 'Le template de mailing au format HTML', - 'The mailing template in text-only format.' => 'Le template de mailing en format text-only.', - 'The page you\'ve requested was not found. Please check the page address, and try again.' => 'La page désirée n\'existe pas. Merci de vérifier votre adresse et réessayer', - 'The rate from Euro (Price in Euro * rate = Price in this currency)' => 'Le taux à partir de l\'Euro (Prix en Euro * taux = Prix dans la devise)', - 'The server returned a "404 Not Found"' => 'Le serveur a retourné une erreur "404 Not Found"', - 'The symbol, such as $, £, €...' => 'Symbole tel que $, £, €', - 'The syntax used is identical to the PHP date() function' => 'La syntaxe utilisé est la même que la fonction date() de PHP', - 'Thelia Back Office' => 'Panel d\'administration de Thelia', - 'Thelia Languages' => 'Langue Thelia', - 'Thelia Mailing System' => 'Configuration des envois de mails', - 'Thelia Mailing Templates' => 'Template de Mailing Thelia', - 'Thelia Product Attributes' => 'Déclinaisons du produit Thelia', - 'Thelia Product Features' => 'Caractéristiques produit de Thelia', - 'Thelia Product Templates' => 'Templates produit Thelia', - 'Thelia Shipping configuration' => 'Configuration des livraisons Thelia', - 'Thelia Shipping zones' => 'Zone de livraison de Thelia', - 'Thelia System Variables' => 'Variables Thelia', - 'Thelia configuration' => 'Configuration thelia', - 'Thelia contributions' => 'Contributions de Thelia', - 'Thelia core' => 'Coeur de Thelia', - 'Thelia informations' => 'Informations Thelia', - 'Thelia mailing templates' => 'Template de mailing Thelia', - 'Thelia product attributes' => 'Déclinaisons du produit Thelia', - 'Thelia product features' => 'caractéristiques produit de Thelia', - 'Thelia product templates' => 'templates produit Thelia', - 'Thelia support forum' => 'Forum de Thelia', - 'Thelia system variables' => 'Variables Thelia', - 'Thelia, the open source e-commerce solution' => 'Thelia, la solution e-commerce libre', - 'There is currently no active module here.' => 'Il n\'y a aucun module actif ici', - 'There is no documents attached to this %type.' => 'Il n\'y a aucun document lié à ce %type.', - 'There is no images attached to this %type.' => 'Il n\'y a pas d\'image liée à ce %type.', - 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.' => 'Cet administrateur est lié avec un ou plusieurs autres administrateurs. Supprimez ou modifiez ces administrateurs d\'abord.', - 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.' => 'Il y a des administrateurs liés à ce profil. Veuillez les modifier/supprimer avant de supprimer ce profil.', - 'This category contains no contents' => 'Cette rubrique n\'a aucun contenu', - 'This category doesn\'t contains any products. To add a new product, click the + button above.' => 'Cette rubrique n\'a aucun produit. Pour créer un nouveau produit, cliquer sur le bouton + ci-dessus. ', - 'This category has no sub-categories.' => 'Cette rubrique n\'a pas de sous-rubrique.', - 'This category has no sub-categories. To create a new one, click the + button above.' => 'Cette rubrique n\'a pas de sous-rubrique. Pour en créer une nouvelle, cliquez sur le bouton + ci-dessus.', - 'This coupon is disabled, you can enable at the bottom of this form.' => 'Le code promo est désactivé. Vous pouvez l\'activer au début de ce formulaire', - 'This customer has not defined any delivery address' => 'Ce client n\'a pas saisi aucune adresse de livraison', - 'This folder doesn\'t contains any contents. To add a new content, click the + button above.' => 'Ce dossier n\'a aucun contenu. Pour ajouter un nouveau contenu, cliquez sur le bouton + ci-dessus.', - 'This folder has no sub-folders.' => 'Ce dossier n\'a pas de sous-dossiers.', - 'This folder has no sub-folders. To create a new one, click the + button above.' => 'Ce dossier n\'a pas de sous-dossiers. Afin de créer un nouveau, cliquez sur le bouton + ci-dessus.', - 'This is the message purpose, such as \'Order confirmation\'.' => 'Titre du message (ex : confirmation de commande)', - 'This is the subject of the e-mail, such as \'Your order is confirmed\'.' => 'Sujet du message (ex : votre commande est validée)', - 'This mailing template could not be changed.' => 'Le template de mailing ne peut pas être changé', - 'This month' => 'Ce mois', - 'This product contains no accessories' => 'Ce produit n\'a aucun accessoire', - 'This product contains no contents' => 'Ce produit n\'a aucun contenu associé', - 'This product doesn\'t belong to any additional category.' => 'Ce produit n\'est associé à aucune rubrique supplémentaire', - 'This product doesn\'t belong to any additional folder.' => 'Ce produit n\'appartient à aucun dossier addoitionnel', - 'This product template does not contains any features' => 'Ce gabarit de produit ne comporte aucune caractéristique', - 'This template contains no attributes' => 'Ce template n\'a pas de déclinaison', - 'This template contains no features' => 'Ce template ne contient aucune caractéristique', - 'This the unique name of this message. Do not change this value unless you understand what you do.' => 'Ceci est le nom unique du message. Ne le modifiez que si vous savez ce que vous faîtes', - 'This variable could not be changed.' => 'Cette variable ne peut pas être modifié', - 'This year' => 'Cette année', - 'Timeout' => 'Délai d\'attente expiré', - 'Timeout :' => 'Délai d\'attente expiré : ', - 'Title' => 'Titre', - 'Title :' => 'Titre : ', - 'To' => 'A', - 'To create a new content, select an existing folder, or create a new one.' => 'Pour créer un nouveau contenu, sélectionnez un dossier existant ou créez en un nouveau', - 'To create a new product, select an existing category, or create a new one.' => 'Pour créer un nouveau produit, veuillez sélectionner une rubrique existante ou en créer une nouvelle', - 'To remove a value from the combination, select it and click "remove"' => 'Afin de supprimer une valeur de la combinaison, sélectionnez la et cliquez sur "Enlever"', - 'Today' => 'Aujourd\'hui', - 'Top level' => 'Niveau 1', - 'Top level Contents' => 'Contenus de niveau 1', - 'Top level Products' => 'Produits mis en avant', - 'Top level categories' => 'Rubriques de niveau 1', - 'Top level folders' => 'Dossiers de niveau 1', - 'Total' => 'Total', - 'Total including discount' => 'Total avec remise', - 'Total without discount' => 'Montant total hors remises', - 'Transaction reference' => 'Référence de la transaction', - 'Translation' => 'Traductions', - 'Translations' => 'Traductions', - 'Type :' => 'Type : ', - 'Unit taxed price' => 'Prix unitaire TTC', - 'Unit. price' => 'Prix unitaire', - 'Unlimited' => 'Illimité', - 'Update' => 'Mettre à jour', - 'Update an administrator' => 'Mettre à jour cet administrateur', - 'Update coupon' => 'Mettre à jour le code', - 'Update rates' => 'Mettre à jour les taux', - 'Update tax rule taxes' => 'Mettre à jour les taxes de la règle de taxe', - 'Update this image' => 'Modifier cette image', - 'Usage left' => 'Utilisation restante', - 'Use Ctrl+click to select more than one value. You can also clear selected values.' => 'Utilisez Ctrl+clic pour choisir plus d\'une valeur. Vous pouvez aussi tout désélectionner.', - 'Use HTML message defined below' => 'Utiliser le message HTML définie ci-dessous', - 'Use Text message defined below' => 'Utiliser la version texte définie ci-dessous', - 'Use address by default' => 'Utiliser comme adresse par défaut', - 'Use default layout' => 'Utiliser le layout par défaut', - 'Use the keyword phrase in your URL.' => 'Utilisez des mots clés dans votre url', - 'Use this address by default' => 'Utiliser cette adresse par défaut', - 'Used in your store front' => 'Utilisé dans le front de votre boutique', - 'Username' => 'Nom d\'utilisateur', - 'Username :' => 'Nom d\'utilisateur : ', - 'Using a domain or subdomain for each language' => 'utiliser un domaine ou un sous domaine pour chaque langue', - 'Value' => 'Valeur', - 'Variable created on %date_create. Last modification: %date_change' => 'Variable créée le %date_create. Dernière modification: %date_change', - 'Variable name' => 'Nom de la variable', - 'Variable purpose' => 'Objet de la variable', - 'Variable value' => 'Valeur de la variable', - 'Version %ver' => 'Version %ver', - 'View' => 'Voir', - 'View only missing translations' => 'N\'afficher que les traductions manquantes', - 'View shop' => 'Voir la boutique', - 'View site' => 'Voir le site', - 'Visibility' => 'Visibilité', - 'Warning' => 'Attention', - 'Weight
(Kg)' => 'Poids
(Kg)', - 'Welcome' => 'Bienvenue', - 'Will be available on special offers' => 'Sera disponible pour les produits en promotion', - 'Will remove postage' => 'Supprimera les frais de port', - 'Won\'t be available on special offers' => 'N\'est pas disponible pour les offres spéciales', - 'Won\'t remove postage' => 'Ne supprimera pas les frais de port', - 'Yes' => 'Oui', - 'Yesterday sales' => 'Ventes de la veille', - 'You can attach here some content to this category' => 'Vous pouvez lier ici des contenus à cette rubrique', - 'You can attach here some content to this product' => 'Vous pouvez associer des contenus avec ce produit', - 'You can attach this product to more categories in the details tab.' => 'Vous pouvez lier ce produit à plusieurs rubriques dans l\'onglet détail.', - 'You can change the default category (%title) in the "General" tab.' => 'Vous pouvez changer la catégorie par défaut (%title) dans l\'onglet "Général"', - 'You can change the default folder (%title) in the "General" tab.' => 'Vous pouvez modifier le dossier par défaut (%title) dans l\'onglet "Général".', - 'You can\'t delete this administrator' => 'Vous ne pouvez pas supprimer cet administrateur', - 'You can\'t delete this profile' => 'Vous ne pouvez pas supprimer ce profil', - 'You don\'t need to use commas or other punctuations.' => 'Vous n\'avez pas besoin d\'utiliser de virgules ou d\'autres signes de ponctuation', - 'Your current IP address is %ip' => 'Votre adresse IP est %ip', - 'Zip code' => 'Code postal', - 'Zones' => 'Zones', - 'activate' => 'activer', - 'activate %title module' => 'Activez le module %title', - 'activation' => 'Activation', - 'and' => 'et', - 'classic modules' => 'Modules classiques', - 'code' => 'code', - 'company' => 'entreprise', - 'customer ref' => 'ref client', - 'd-m-Y' => 'd-m-Y', - 'date form' => 'formulaire de date', - 'date in yyyy-mm-dd format' => 'date in yyyy-mm-dd format', - 'days left' => 'jours restants', - 'deactivate' => 'désactiver', - 'deactivation' => 'désactivation', - 'en_US' => 'en_US', - 'firstname & lastname' => 'Prénom & nom', - 'hour in hh:mm:ss format' => 'hour in hh:mm:ss format', - 'last order' => 'Dernière commande', - 'long description' => 'description longue', - 'max usage' => 'utilisations max', - 'order amount' => 'Montant de la commande', - 'orders for this customer' => 'commandes pour ce client', - 'short description' => 'description court', - 'tax rules' => 'règles de taxe', - 'taxes' => 'taxes', - 'time form' => 'formulaire de temps', - 'title' => 'titre', - 'tracking reference' => 'Reference Tracking', - 'uncheck all' => 'tout décocher', - 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.' => 'vous pouvez combiner des taxes en règles de taxe et choisir si elle sont appliquées l\'une après l\'autre ou en même temps: cela permet d\'appliquer des taxes sur un produit déjà taxé ou non.', - 'yyyy-mm-dd' => 'yyyy-mm-dd', -); + of change the translation file by hand.' => 'Cannot translate all fields. According to your PHP configuration, forms cannot contains more than %current_max_input_vars input fields, but at least %required_max_input_vars are required. Please change the value of max_input_vars in your PHP configuration of change the translation file by hand.', + 'Congratulations, all text is now translated !' => 'Félicitations, Toute la traduction a été effectué', + 'Did not found any text to translate. It\'s probably normal. If not, please be sure to use Smarty\'s "intl" function in templates, or the Translator::trans() method in PHP files.' => 'Aucun texte à traduire. C\'est probablement normal. Si ce n\'est pas le cas vérifiez que vous utilisez bien la fonction Smarty "intl" ou bien le translator Translator::trans dans un fichier php', + 'A content could be attached to more than one folder. Select here the additional folders for this content.' => 'Un contenu peut être rattaché à plusieurs dossiers. Sélectionnez ici les dossiers dans lesquels ce contenu apparaîtra', + 'A product could be attached to more than one category. Select here the additional categories for this product.' => 'Un produit peut être associé à plusieurs rubriques. Sélectionner les rubrique pour lesquels le produit sera associé', + 'A short description, used when a summary or an introduction is required' => 'Une courte description, utilisée lorsqu\'un résumé ou une introduction est requise', + 'A short post-description information' => 'champs d\'information complémentaire', + 'Aborted orders' => 'Paniers abandonnés', + 'Accessory title' => 'Titre de l\'accessoire', + 'Action' => 'Action', + 'Actions' => 'Actions', + 'Activate this log destination' => 'Activer cette destination', + 'Add' => 'Ajouter', + 'Add a new Customer' => 'Ajouter un client', + 'Add a new address' => 'Ajouter une nouvelle adresse', + 'Add a new category' => 'Ajouter une catégorie', + 'Add a new combination' => 'Ajouter une nouvelle combinaison', + 'Add a new content' => 'Ajouter un nouveau contenu', + 'Add a new country' => 'Ajouter un nouveau pays', + 'Add a new currency' => 'Ajouter une nouvelle devise', + 'Add a new folder' => 'Ajouter un nouveau dossier', + 'Add a new language' => 'Ajouter une nouvelle langue', + 'Add a new mailing template' => 'Ajouter un nouveau template de mailing', + 'Add a new product' => 'Ajouter un nouveau produit', + 'Add a new product attribute' => 'Ajouter une nouvelle déclinaison produit', + 'Add a new product feature' => 'Ajouter une nouvelle caractéristique produit', + 'Add a new product template' => 'Ajouter un nouveau template produit', + 'Add a new shipping configuration' => 'Ajouter une nouvelle configuration de livraison', + 'Add a new variable' => 'Ajouter une nouvelle variable', + 'Add tax to this group' => 'Ajouter une taxe à ce groupe', + 'Add this attribute to all product templates' => 'Ajouter cette déclinaison à tous les templates produit', + 'Add this country' => 'Ajouter ce pays', + 'Add this feature to all product templates' => 'Ajouter cette caractéristique à tous les templates produit', + 'Add to all product templates' => 'Ajouter à tous les templates produit', + 'Additional Folders' => 'Dossiers associés', + 'Additional address' => 'Adresse complémentaire', + 'Additional categories' => 'Rubriques supplémentaires', + 'Address' => 'Adresse', + 'Administration logs' => 'Journal des logs', + 'Administration profiles' => 'Gestion des administrateurs', + 'Administrators' => 'Administrateurs', + 'All orders' => 'Toutes les commandes', + 'Alpha code 2' => 'Code alpha 2', + 'Alpha code 3' => 'Code alpha 3', + 'Amount' => 'Montant', + 'An error occured' => 'Une erreur est survenue', + 'And' => 'Et', + 'Application field' => 'Champs d\'application', + 'Apply' => 'Appliquer', + 'Associations' => 'Associations', + 'Attribute' => 'Déclinaison', + 'Attribute Combinations' => 'Combinaison de déclinaisons', + 'Attribute Name' => 'Nom de la déclinaison', + 'Attribute information' => 'Information sur la déclinaison', + 'Attribute title' => 'Titre de la déclinaison', + 'Attribute values' => 'Valeurs de la déclinaison', + 'Attributes' => 'Déclinaisons', + 'Attributes & Features' => 'Déclinaisons & caractéristiques', + 'Auth Mode' => 'Mode d\'authentification', + 'Auth Mode :' => 'Mode d\'authentification :', + 'Average cart' => 'Panier moyen', + 'Back' => 'Retour', + 'Back-office home' => 'Accueil administration', + 'Back-office templates' => 'templates Back-office', + 'Back-office users' => 'Utilisateur du B.O', + 'Browse files' => 'Parcourir les fichiers', + 'Browse this category' => 'Parcourir cette catégorie', + 'Browse this folder' => 'Parcourir ce dossier', + 'Can\'t be cumulative' => 'Ne peut pas se cumuler', + 'Can\'t load documents, please refresh this page.' => 'Impossible de charger les documents. Rechargez la page', + 'Can\'t load images, please refresh this page.' => 'Impossible de charger l\'image. Rechargez la page', + 'Can\'t reorder documents, please refresh this page.' => 'Impossible de trier les documents. Rechargez la page', + 'Can\'t reorder images, please refresh this page.' => 'Impossible de trier les images. Rechargez la page', + 'Cancel' => 'Annuler', + 'Cancel changes and revert to original value' => 'Annuler les modifications et revenir à la version antérieure', + 'Cancel this order' => 'Annuler cette commande', + 'Cart - Prices in %currency' => 'Panier - prix en %currency', + 'Catalog' => 'Catalogue', + 'Categories' => 'Rubriques', + 'Categories in %cat' => 'Rubrique dans %cat', + 'Category created on %date_create. Last modification: %date_change' => 'Rubrique créée le %date_create. Dernière modification le %date_change', + 'Category title' => 'Titre de la rubrique', + 'Cellular phone' => 'téléphone portable', + 'Cellular phone number' => 'Numéro de portable', + 'Change this administrator' => 'Modifier cet administrateur', + 'Change this attribute' => 'Modifier cette déclinaison', + 'Change this country' => 'Modifier ce pays', + 'Change this currency' => 'Modifier cette devise', + 'Change this feature' => 'Modifier cette caractéristique', + 'Change this language' => 'Modifier cette langue', + 'Change this mailing template' => 'Modifier ce template de mailing', + 'Change this product attribute' => 'Modifier cette déclinaison produit', + 'Change this product feature' => 'Modifier cette caractéristique produit', + 'Change this product template' => 'Modifier ce template produit', + 'Change this profile' => 'Changer ce profil', + 'Change this shipping configuration' => 'Modifier cette configuration de livraison', + 'Change this shipping zone' => 'Modifier cette zone de livraison', + 'Change this tax' => 'Modifier cette taxe', + 'Change this tax rule' => 'Modifier cette règle de taxe', + 'Change this template' => 'Modifier ce template', + 'Change this variable' => 'Modifier cette variable', + 'Chapo' => 'Chapeau', + 'Check this box if you want to add this attributes to all product templates' => 'Cochez cette case si vous voulez ajouter cette déclinaison à tous les templates produits', + 'Check this box if you want to add this features to all product templates' => 'Cochez cette case si voulez ajouter cette caractéristique à tous les templates produit.', + 'Choose a country' => 'Choisissez un pays', + 'City' => 'Ville', + 'Classic modules' => 'Modules classic', + 'Click here' => 'Cliquez ici', + 'Close' => 'Fermer', + 'Close administation session' => 'Quitter l\'interface d\'administration', + 'Code' => 'Code', + 'Code :' => 'Code : ', + 'Combination EAN Code' => 'Combinaison de code EAN', + 'Combination builder' => 'générateur de combinaison', + 'Combination reference' => 'Référence de la combinaison', + 'Company' => 'Entreprise', + 'Condition\'s category :' => 'Rubrique de la condition', + 'Conditions' => 'Conditions', + 'Configuration' => 'Configuration', + 'Configuration mailing system' => 'Configuration du système de mailing', + 'Configure' => 'Configurer', + 'Configure this module' => 'Configuration', + 'Confirm' => 'Confirmer', + 'Confirm changes' => 'Valider les modifications', + 'Confirmation' => 'Confirmation', + 'Content title' => 'Titre du contenu', + 'Contents in %fold' => 'Contenus dans %fold', + 'Copy source text in input field' => 'Copier la source dans le champs de traduction', + 'Countries' => 'Pays', + 'Countries that have the same tax rule' => 'Pays qui ont les même règles de taxe', + 'Country' => 'Pays', + 'Country description' => 'Description du pays', + 'Country short description' => 'Courte description du pays', + 'Country title' => 'Titre du pays', + 'Coupon' => 'Code promo', + 'Coupon code' => 'Code promo', + 'Coupons' => 'Codes Promo', + 'Coupons : ' => 'Codes promo : ', + 'Create' => 'Créer', + 'Create a customer address' => 'Créer une adresse', + 'Create a new administrator' => 'Créer un nouvel administrateur', + 'Create a new attribute' => 'Créer une nouvelle déclinaison', + 'Create a new attribute value' => 'Créer une nouvelle valeur de déclinaison', + 'Create a new category' => 'Créer une nouvelle rubrique', + 'Create a new combination' => 'Créer une nouvelle combinaison', + 'Create a new content' => 'Créer un nouveau contenu', + 'Create a new country' => 'Créer un nouveau pays', + 'Create a new coupon' => 'Créer un nouveau code promo', + 'Create a new currency' => 'Créer une nouvelle devise', + 'Create a new customer' => 'Ajouter un nouveau client', + 'Create a new feature' => 'Créer une nouvelle caractéristique', + 'Create a new feature value' => 'Créer une nouvelle valeur de caractéristique', + 'Create a new folder' => 'Créer un nouveau dossier', + 'Create a new language' => 'Créer une nouvelle langue', + 'Create a new mailing template' => 'Créer un nouveau template de mailing', + 'Create a new product' => 'Créer un nouveau produit', + 'Create a new product template' => 'Créer un nouveau template produit', + 'Create a new profile' => 'Créer un nouveau profil', + 'Create a new shipping configuration' => 'Créer une nouvelle configuration de livraison', + 'Create a new tax' => 'Créer une nouvelle taxe', + 'Create a new tax rule' => 'Créer une nouvelle règle de taxe', + 'Create a new variable' => 'Créer une nouvelle variable', + 'Create combinations' => 'Créer des combinaisons', + 'Create coupon' => 'Créer un code promo', + 'Create this address' => 'Créer cette adresse', + 'Create this attribute' => 'Créer cette déclinaison', + 'Create this category' => 'Créer cette rubrique', + 'Create this combination' => 'Créer cette combinaison', + 'Create this content' => 'Créer ce contenu', + 'Create this country' => 'Créer ce pays', + 'Create this currency' => 'Créer cette devise', + 'Create this customer' => 'Ajouter ce client', + 'Create this feature' => 'Créer cette caractéristique', + 'Create this folder' => 'Créer ce dossier', + 'Create this language' => 'Créer cette langue', + 'Create this mailing template' => 'Créer ce template de mailing', + 'Create this product' => 'Créer ce produit', + 'Create this product template' => 'Créer ce template produit', + 'Create this shipping configuration' => 'Créer cette nouvelle configuration de livraison', + 'Create this value' => 'Créer cette valeur', + 'Create this variable' => 'Ajouter cette variable', + 'Currencies' => 'Devises', + 'Currency ISO 4217 Code' => 'Code ISO 4217 de la devise', + 'Currency name' => 'Nom de la devise', + 'Currency rate' => 'Taux de la devise', + 'Currency symbol' => 'Symbole de la devise', + 'Current product template' => 'Gabarit de produit actuel', + 'Current quantity' => 'Quantité actuelle', + 'Current version' => 'Version en cours', + 'Customer' => 'Client', + 'Customer informations' => 'Informations client', + 'Customers' => 'Clients', + 'Customers list' => 'Liste des clients', + 'Cutomer Name' => 'Nom du client', + 'Dashboard' => 'Tableau de bord', + 'Date & Hour' => 'Date et heure', + 'Date of last order' => 'Date de la dernière commande', + 'Days before expiration' => 'Jours restants avant expiration', + 'Deactivate %title module' => 'Désactiver le module %title', + 'Default' => 'Défaut', + 'Default address' => 'Adresse par défaut', + 'Define here this product\'s accessories' => 'Choisir ici les accessoires pour ce produit', + 'Delete' => 'Supprimer', + 'Delete a combination' => 'Supprimer une combinaison', + 'Delete a module' => 'Supprimer un module', + 'Delete a variable' => 'Supprimer une variable', + 'Delete address' => 'Supprimer cette adresse', + 'Delete administrator' => 'Supprimer un administrateur', + 'Delete also module data' => 'Supprimer aussi les données de ce module', + 'Delete an order' => 'Supprimer une commande', + 'Delete attribute' => 'Supprimer cette déclinaison', + 'Delete attribute value' => 'Supprimer une valeur de déclinaison', + 'Delete category' => 'Supprimer cette rubrique', + 'Delete content' => 'Supprimer le contenu', + 'Delete country' => 'Supprimer le pays', + 'Delete currency' => 'Supprimer cette devise', + 'Delete customer' => 'Supprimer ce client', + 'Delete feature' => 'Supprimer cette caractéristique', + 'Delete feature value' => 'Supprimer la valeur de la caractéristique', + 'Delete folder' => 'Supprimer ce dossier', + 'Delete language' => 'Supprimer cette langue', + 'Delete mailing template' => 'Supprimer ce template de mailing', + 'Delete product' => 'Supprimer ce produit', + 'Delete profile' => 'Supprimer le profil', + 'Delete shipping configuration' => 'Supprimer cette configuration de livraison', + 'Delete tax' => 'Supprimer la taxe', + 'Delete tax rule' => 'Supprimer cette règle de taxe', + 'Delete template' => 'Supprimer ce template produit', + 'Delete this accessory' => 'Supprimer cet accessoire', + 'Delete this administrator' => 'Supprimer cet administrateur', + 'Delete this attribute' => 'supprimer cette déclinaison', + 'Delete this category and all its contents' => 'Supprimer cette rubrique et tout ce qu\'elle contient ?', + 'Delete this combination' => 'Supprimer cette combinaison', + 'Delete this content' => 'Supprimer ce contenu', + 'Delete this country' => 'Supprimer ce pays', + 'Delete this currency' => 'Supprimer cette devise', + 'Delete this customer and all his orders' => 'Supprimer ce client et toutes ses commandes', + 'Delete this feature' => 'Supprimer cette caractéristique', + 'Delete this folder and all its contents' => 'Supprimer ce dossier et tout ses contenus', + 'Delete this language' => 'Supprimer cette langue', + 'Delete this mailing template' => 'Supprimer ce template de mailing', + 'Delete this module' => 'Supprimer ce module', + 'Delete this product' => 'Supprimer ce produit', + 'Delete this product attribute' => 'Supprimer cette déclinaison produit', + 'Delete this product feature' => 'Supprimer cette caractéristique produit', + 'Delete this product template' => 'Supprimer ce template produit', + 'Delete this profile' => 'Supprimer ce profil', + 'Delete this shipping configuration' => 'Supprimer cette configuration de livraison', + 'Delete this tax' => 'Supprimer cette taxe', + 'Delete this tax rule' => 'Supprimer cette règle de taxe', + 'Delete this value' => 'Supprimer cette valeur', + 'Delete this variable' => 'Supprimer cette variable', + 'Delete this zone' => 'Supprimer cette zone', + 'Delivery address' => 'Adresse de livraison', + 'Delivery module' => 'Module de livraison', + 'Delivery modules' => 'Modules de livraison', + 'Description' => 'Description', + 'Destinations' => 'Destinations', + 'Details' => 'Détails', + 'Disabled coupons' => 'Codes promo désactivés', + 'Discount' => 'Remise', + 'Do not use a product template' => 'Ne pas utiliser de gabarit', + 'Do you really want to add this attribute to all product templates ?' => 'Voulez-vous vraiment ajouter cette déclinaison de tous les templates produit ?', + 'Do you really want to add this feature to all product templates ?' => 'Voulez-vous vraiment ajouter cette caractéristique à tous les templates produit ?', + 'Do you really want to cancel this order ?' => 'Voulez-vous vraiment supprimer cette commande ?', + 'Do you really want to delete this address ?' => 'Voulez-vous vraiment supprimer cette adresse ?', + 'Do you really want to delete this administrator ?' => 'Confirmez-vous la suppression de cet administrateur ?', + 'Do you really want to delete this attribute ? It will be removed from all product templates.' => 'Voulez-vous vraiment supprimer cette déclinaison ? Elle sera supprimée de tous les templates produit.', + 'Do you really want to delete this attribute value ?' => 'Voulez-vous vraiment supprimer cette déclinaison ?', + 'Do you really want to delete this category and all its content ?' => 'Voulez-vous vraiment supprimer cette rubrique et tout ce qu\'elle contient ?', + 'Do you really want to delete this combination ?' => 'Voulez-vous vraiment supprimer cette combinaison ?', + 'Do you really want to delete this content ?' => 'Voulez-vous vraiment supprimer ce contenu ?', + 'Do you really want to delete this country ?' => 'Voulez-vous vraiment supprimer ce pays ?', + 'Do you really want to delete this currency ?' => 'Voulez-vous vraiment supprimer cette devise ?', + 'Do you really want to delete this customer ?' => 'Voulez-vous supprimer ce client ?', + 'Do you really want to delete this element ?' => 'Voulez-vous vraiment supprimer cet élément ?', + 'Do you really want to delete this feature ? It will be removed from all product templates.' => 'Voulez-vous vraiment supprimer cette caractéristique ? Elle sera supprimée de tous les templates produit', + 'Do you really want to delete this feature value ?' => 'Voulez-vous vraiment supprimer cette valeur de caractéristique ?', + 'Do you really want to delete this folder and all its content ?' => 'Voulez-vous vraiment supprimer ce dossier et tous ses contenus ?', + 'Do you really want to delete this language ?' => 'Voulez-vous vraiment supprimer cette langue ?', + 'Do you really want to delete this mailing template ?' => 'Voulez-vous vraiment supprimer ce template de mailing ?', + 'Do you really want to delete this module ?' => 'Voulez-vous vraiment supprimer ce module ?', + 'Do you really want to delete this product ?' => 'Voulez-vous vraiment supprimer ce produit ?', + 'Do you really want to delete this profile ?' => 'Voulez-vous vraiment supprimer ce profil ?', + 'Do you really want to delete this shipping configuration ?' => 'Voulez-vous vraiment supprimer cette configuration de livraison ?', + 'Do you really want to delete this tax ?' => 'Voulez-vous vraiment supprimer cette taxe ?', + 'Do you really want to delete this tax rule ?' => 'Voulez-vous vraiment supprimer cette règle de taxe ?', + 'Do you really want to delete this template ? It will be removed from all products.' => 'Voulez-vous vraiment supprimer ce template ? Il sera supprimé de tous les produits.', + 'Do you really want to delete this variable ?' => 'Voulez-vous vraiment supprimer cette variable ?', + 'Do you really want to enable this element ?' => 'Voulez-vous vraiment activer cet élément ?', + 'Do you really want to remove the content from this folder ?' => 'Voulez-vous vraiment enlever le contenu de ce dossier ?', + 'Do you really want to remove the product from this category ?' => 'êtes-vous sur de vouloir enlever le produit de cette rubrique', + 'Do you really want to remove this accessory from the product ?' => 'êtes-vous sur de vouloir supprimer cet accessoire ?', + 'Do you really want to remove this attribute from all product templates ? You\'ll loose all product related data for this attribute.' => 'Voulez-vous vraiment supprimer cette déclinaison de tous les templates produits ? Vous allez perdre toutes les informations produit liées à cette déclinaison.', + 'Do you really want to remove this attribute from the template ?' => 'êtes-vous sur de vouloir retirer cette déclinaison de ce template', + 'Do you really want to remove this country ?' => 'Voulez-vous vraiment enlever ce pays ?', + 'Do you really want to remove this feature from all product templates ? You\'ll loose all product related data for this feature.' => 'Voulez-vous vraiment enlever cette caractéristique de tous les templates produit ? Vous allez perdre toutes les informations des produits liées à cette caractéristique.', + 'Do you really want to remove this feature from the template ?' => 'Voulez-vous vraiment supprimer cette caractéristique de ce template ?', + 'Do you really want to remove this related content ?' => 'Voulez-vous vraiment supprimer ce contenu lié ?', + 'Do you really want to remove this related content from the product ?' => 'êtes-vous sur de vouloir supprimer ce contenu associé ?', + 'Do you really want to remove this zone ?' => 'Voulez-vous vraiment supprimer cette zone ?', + 'Do you really want to set this coupon available to everyone ?' => 'êtes-vous sur de vouloir rendre ce code promo disponible à tout le monde ?', + 'Do you really want to use this address by default ?' => 'Voulez-vous vraiment utiliser cette adresse comme adresse par défaut ?', + 'Document' => 'Document', + 'Document informations' => 'Informations du document', + 'Documents' => 'Documents', + 'Don\'t repeat keywords over and over in a row. Rather, put in keyword phrases.' => 'Ne répétez pas sans cesse les même mots-clés dans une ligne. Préférez utiliser des expressions de mots-clés', + 'Download invoice as PDF' => 'Télécharger la facture au format PDF', + 'Download purchase order as PDF' => 'Télécharger le bon de commande au format PDF', + 'Drop files to upload' => 'Déposez des fichiers à envoyer', + 'Drop tax here to create a tax group' => 'Déposer une taxe ici afin de créer un groupe de taxe', + 'Drop tax here to delete from group' => 'Déposer une taxe ici afin de la supprimer du groupe', + 'E-mail templates' => 'templates E-mail', + 'EAN Code' => 'Code EAN', + 'Ecotax is a tax wich add a defined amount (throug a product feature) to the product price.' => 'L\'écotaxe est une taxe qui ajoute un montant défini (grâce à une caractéristique produit) au prix du produit.', + 'Edit' => 'Editer', + 'Edit %title' => 'Modifier %title', + 'Edit a country' => 'Modifier un pays', + 'Edit a currency' => 'Modifier une devise', + 'Edit a customer' => 'Éditer un client', + 'Edit a customer address' => 'Modifier une adresse', + 'Edit a document' => 'Modifier un document', + 'Edit a feature' => 'Modifier une caractéristique', + 'Edit a language' => 'Modifier une langue', + 'Edit a mailing template' => 'Modifier un template de mailing', + 'Edit a module' => 'Modifier un module', + 'Edit a profile' => 'Modifier le profil', + 'Edit a shipping configuration' => 'Modifier une configuration de livraison', + 'Edit a shipping zone' => 'Modifier la zone de livraison', + 'Edit a system variable' => 'Modifier une variable système', + 'Edit a tax' => 'Modifier une taxe', + 'Edit a tax rule' => 'Modifier une règle de taxe', + 'Edit a template' => 'Modifier un template', + 'Edit an attribute' => 'Modifier une déclinaison', + 'Edit an image' => 'Modifier une image', + 'Edit an order' => 'Editer une commande', + 'Edit attribute "%name"' => 'Modifier la déclinaison "%name"', + 'Edit category' => 'Editer la rubrique', + 'Edit category %title' => 'Modifier la rubrique %title', + 'Edit content' => 'Modifier le contenu', + 'Edit content %title' => 'Modifier le contenu %title', + 'Edit country "%name"' => 'Modifier le pays "%name"', + 'Edit currency "%name"' => 'Modifier la devise "%name"', + 'Edit customer %firstname %lastname' => 'Modification du client %firstname %lastname ', + 'Edit delivery address' => 'Editer l\'adresse de livraison', + 'Edit document "%name"' => 'Modifier le document "%name"', + 'Edit feature "%name"' => 'modifier la caractéristique "%name"', + 'Edit folder' => 'Modifier le dossier', + 'Edit folder %title' => 'Modifier le dossier %title', + 'Edit image "%name"' => 'Modifier l\'image "%name"', + 'Edit information in %lng' => 'Modifier les informations en %lng', + 'Edit invoice address' => 'Editer l\'adresse de facturation', + 'Edit mailing template "%name"' => 'Modifier le template de mail "%name"', + 'Edit next category' => 'Modifier la rubrique suivante', + 'Edit next content' => 'Modifier le contenu suivant', + 'Edit next folder' => 'Modifier le dossier suivant', + 'Edit next product' => 'Modifier le produit suivant', + 'Edit order address' => 'Editer l\'adresse de commande', + 'Edit previous category' => 'Modifier la rubrique précédente', + 'Edit previous content' => 'Modifier le contenu précédent', + 'Edit previous folder' => 'Modifier le dossier précédent', + 'Edit previous product' => 'Modifier le produit précédent', + 'Edit prices in %curr' => 'Modifier les prix en %curr', + 'Edit product' => 'Modifier le produit', + 'Edit product %title' => 'Modifier le produit %title', + 'Edit shipping configuration %title' => 'Modifier la configuration de livraison %title', + 'Edit shipping zone %title' => 'Modifier la zone de livraison %title', + 'Edit tax rule taxes' => 'Modifier les taxes de la règle de taxe', + 'Edit template "%name"' => 'Modifier le template "%name"', + 'Edit this address' => 'Editer cette adresse', + 'Edit this category' => 'Editer cette rubrique', + 'Edit this content' => 'Modifier ce contenu', + 'Edit this customer' => 'Modifier ce client', + 'Edit this folder' => 'Modifier ce dossier', + 'Edit this module' => 'Modifier ce module', + 'Edit this order' => 'Editer cette commande', + 'Edit this product' => 'Modifier ce produit', + 'Edit variable %name' => 'Modifier la variable %name', + 'Editing %cat' => 'Edition de %cat', + 'Editing %fold' => 'Modification de %fold', + 'Editing %title' => 'En cours de modification de %title', + 'Editing attribute "%name"' => 'En cours de modification de la déclinaison "%name"', + 'Editing country "%name"' => 'En cours de modification du pays "%name"', + 'Editing currency "%name"' => 'En cours de modification de la devise "%name"', + 'Editing customer "%name"' => 'Edition du client "%name"', + 'Editing document "%name"' => 'Modification du document "%name"', + 'Editing feature "%name"' => 'En cours de modification de la caractéristique "%name"', + 'Editing image "%name"' => 'Modification de l\'image "%name"', + 'Editing mailing template "%name"' => 'En cours de modification du template de mailing "%name"', + 'Editing module' => 'Module en cours de modification', + 'Editing profile' => 'Modification du profil', + 'Editing shipping configuration "%name"' => 'En cours de modification de la configuration de livraison "%name"', + 'Editing shipping zone "%name"' => 'En cours de modification de la zone de livraison "%name"', + 'Editing tax' => 'En cours de modification de la taxe', + 'Editing tax rule' => 'En cours de modification de la règle de taxe', + 'Editing template "%name"' => 'Modification du template "%name"', + 'Editing variable "%name"' => 'Modification de la variable "%name" ', + 'Email address' => 'Adresse e-mail', + 'Email used when you send an email to your customers (Order confirmations, etc).' => 'adresse email utilisé pour envoyer les mails à vos clients', + 'Enable remote SMTP use : ' => 'Activer l\'utilisation d\'un serveur SMTP distant:', + 'Enable/Disable' => 'Activer/Désactiver', + 'Enabled coupons' => 'Codes promo disponibles', + 'Encryption' => 'Chiffrement', + 'Encryption :' => 'Chiffrement :', + 'Enter here all possible attribute values.' => 'Entrez ici toutes les valeurs de déclinaison possible.', + 'Enter here all possible feature values. To get a free text feature in product forms, don\'t add any value.' => 'Entrez ici toutes les caractéristiques possibles. Afin d\'avoir un texte libre dans le formulaire du produit, n\'ajoutez aucune valeur.', + 'Enter here the attribute name in the default language (%language_name)' => 'Entrez ici le nom de la déclinaison dans la langue par défaut (%language_name)', + 'Enter here the category name in the default language (%title)' => 'Entrer ici le nom de la rubrique dans la langue par défaut (%title)', + 'Enter here the content name in the default language (%title)' => 'Entrez ici le nom du contenu dans la langue par défaut (%title)', + 'Enter here the currency name in the default language (%title)' => 'Renseigner le nom de la devise dans la langue par défaut (%title)', + 'Enter here the feature name in the default language (%title)' => 'Renseigner le nom de la caractéristique dans la langue par défaut (%title)', + 'Enter here the feature value as free text' => 'Indiquez ici la valeur de la caractéristique', + 'Enter here the folder name in the default language (%title)' => 'Entrez ici le nom du dossier dans la langue par défaut (%title)', + 'Enter here the mailing template purpose in the default language (%title)' => 'Renseigner l\'objet du mail dans la langue par défaut (%title)', + 'Enter here the product name in the default language (%title)' => 'Entrez ici le nom du produit dans la langue par défaut (%title)', + 'Enter here the product price in the default currency (%title)' => 'entrez ici le prix du produit dans la langue par défaut (%title)', + 'Enter here the product reference' => 'Entrez ici la nouvelle référence produit', + 'Enter here the product tax price in the default currency (%title)' => 'Renseignez le prox TTC dans la devise par défaut (%title)', + 'Enter here the product weight, in Kilogrammes' => 'Entrez ici le poids du produit, en Kilogrammes', + 'Enter here the template name in the default language (%title)' => 'Renseignez le nom du template dans la langue par défaut (%title)', + 'Enter here the value in the current edit language (%language_name)' => 'Rensignez la valeur dans la langue d\'édition actuelle (%language_name)', + 'Enter here the value in the current edit language (%title)' => 'Entrez la valeur dans la langue d\'édition courante (%title)', + 'Enter new accessory position' => 'Renseigner la nouvelle position pour cet accessoire', + 'Enter new attribute position' => 'Modifier la position de la déclinaison', + 'Enter new category position' => 'Classement de la catégorie', + 'Enter new content position' => 'Modifier la position du contenu', + 'Enter new currency position' => 'Modifier la position de la devise', + 'Enter new feature position' => 'Modifier la position de la caractéristique', + 'Enter new folder position' => 'Modifier la position du dossier', + 'Enter new module position' => 'Renseigner la nouvelle position pour ce module', + 'Enter new product position' => 'Classement du produit', + 'Enter new value position' => 'Entrez une nouvelle position', + 'Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses' => 'Entrer une ou plusieurs adresse IP (V4) séparés pas des ";". Laisser vide pour afficher les logs pour toutes les adresses IP', + 'Enter one or more file names without path separated by ";". Use "!" before a file name to exclude it. Use "*" to activate logs for all files.' => 'entrer un ou plusieurs nom de fichiers, séparés par des ";". Utiliser "!" avant le nom d\'un fichier pour l\'exclure. Utiliser "*" pour activer les logs sur tous les fichiers', + 'Error' => 'Erreur', + 'Example :' => 'Exemple :', + 'Existing combinations will be deleted. Do you want to continue ?' => 'Les combinaisons existantes seront supprimées. Voulez-vous continuer ?', + 'Expiration date' => 'Date de fin de validité', + 'Expiration date :' => 'Date de fin de validité : ', + 'Failed to get converted prices. Please try again.' => 'Erreur lors de la récupération des prix convertis. Veuillez réessayer.', + 'Failed to get prices. Please try again.' => 'Erreur lors de la récupération des prix. Veuillez réessayer.', + 'Fax number' => 'Numéro de fax', + 'Feature Name' => 'Nom de la caractéristique', + 'Feature information' => 'Informations sur la caractéristique', + 'Feature title' => 'Titre de la caractéristique', + 'Feature value' => 'Valeur de la caractéristique', + 'Feature value for this product' => 'Valeur de la caractéristique pour ce produit', + 'Feature values' => 'Valeurs de la caractéristique', + 'Features' => 'Caractéristiques', + 'File' => 'Fichier', + 'File names' => 'Nom du fichier', + 'First Name' => 'Prénom', + 'First name' => 'Prénom', + 'First orders' => 'Premières commandes', + 'FirstName' => 'Prénom', + 'Firstname' => 'Prénom', + 'Folder created on %date_create. Last modification: %date_change' => 'Dossier créé le %date_create. Dernière modification le %date_change', + 'Folder title' => 'Titre du dossier', + 'Folders' => 'Dossiers', + 'Folders in %fold' => 'Dossier dans %fold', + 'French 19.6% VAT is a tax which add a 19.6% tax to the product price.' => 'La TVA française de 20% est une taxe qui ajoute 20% au prix du produit.', + 'French 19.6% VAT with ecotax is the applicance of the ecotax (on the product price) then the applicance of the 19.6% tax (on the product price + the ecotax amount).' => 'La TVA française de 20% avec écotaxe est l\'application de l\'écotaxe (sur le prix du produit) puis l\'application de la taxe de20% (sur le prix du produit + le montant écotaxe).', + 'From' => 'De', + 'Front-office templates' => 'templates Front-office', + 'General' => 'Général', + 'General configuration' => 'Configuration générale', + 'General description' => 'Description générale', + 'Go to administration home' => 'Aller à l\'accueil de l\'interface d\'administration', + 'H:i:s' => 'H:i:s', + 'HTML version of this message' => 'Version HTML du message', + 'Home' => 'Accueil', + 'Host' => 'Nom de l\'hôte', + 'Host :' => 'Host', + 'ID' => 'ID', + 'IP Addresses' => 'Adresse IP', + 'ISO 4217 Code' => 'Code ISO 4217', + 'ISO 4217 code' => 'Code ISO 4217', + 'ISO 639 Code' => 'Code ISO 639', + 'ISO Code' => 'Code ISO', + 'If a translation is missing or incomplete :' => 'Si une traduction est manquante ou incomplète :', + 'If yes, redirections through Redirect::exec() will be displayed as links' => 'Si oui, les redirections générés pas Redirect::exec seront affichés par des liens', + 'Il seems that this string contains a Smarty variable ($). If \'s the case, it cannot be transleted properly.' => 'La chaîne semble contient une variable smarty ($). Si c\'est le cas elle ne peut pas être traduite correctement', + 'Image' => 'Image', + 'Image information' => 'Information de l\'image', + 'Images' => 'Images', + 'Impossible to change default country. Please contact your administrator or try later' => 'Impossible de modifier le pays par défaut. Veuillez contacter votre administrateur ou réessayer plus tard', + 'Impossible to change default languages. Please contact your administrator or try later' => 'Impossible de modifier la langue par défaut. Veuillez contacter votre administrateur ou essayer plus tard', + 'In order to manges your shop taxes you can manage' => 'Pour pouvoir gérer les taxes de votre magasin vous pouvez gérer', + 'In page' => 'Dans la page', + 'In pages:' => 'Dans les pages : ', + 'Install a new module' => 'Installer un nouveau module', + 'Invoice and Delivery' => 'Livraison et facturation', + 'Invoice date' => 'Date de facturation', + 'Invoice informations' => 'Informations de facturation', + 'Invoice reference' => 'Facture ref', + 'Is available on special offers' => 'Est valide sur les offres promotionnelles', + 'Is cumulative' => 'Est cumulable', + 'Is disabled' => 'désactivé', + 'Is enabled' => 'Est activé', + 'Is removing postage' => 'Offre les frais de port', + 'Is unlimited' => 'Est illimité', + 'Keep the most important part of your description in the first 150-160 characters.' => 'Votre description ne devrait pas dépasser 150 à 160 caractères', + 'Kg' => 'Kg', + 'Label' => 'Libellé', + 'Language name' => 'Nom de la langue', + 'Language title' => 'Titre de la langue', + 'Languages' => 'Langues', + 'Languages & URLs' => 'Langues et URLs', + 'Languages management' => 'Gestion des langues', + 'Last Name' => 'Nom', + 'Last name' => 'Nom', + 'Last order amount' => 'Montant de la dernière commande', + 'LastName' => 'Nom', + 'Lastname' => 'Nom', + 'Latest version available' => 'Dernière version disponible', + 'Leave empty to keep current password' => 'Laisser ce champ vide pour ne pas modifier le mot de passe', + 'Lire la suite' => 'Lire la suite', + 'Loading Thelia lastest news...' => 'Chargement des dernières information Thelia...', + 'Locale' => 'Paramètre régional', + 'Log lines format' => 'Format d\'une ligne de log', + 'Log lines header format. You may use the following variables: ' => 'Format d\'une ligne de log. Vous pouvez utiliser ces variables : ', + 'Login' => 'Connexion', + 'Logout' => 'Se déconnecter', + 'Long description :' => 'Description longue', + 'Mailing system' => 'Envoi des e-mails', + 'Mailing template name' => 'Nom du template de mailing', + 'Mailing template purpose' => 'Objectif du template de mailing', + 'Mailing templates' => 'Template e-mail', + 'Make sure it uses keywords found within the page itself.' => 'Assurez vous d\'utiliser des mots-clés présents dans la page courante', + 'Make sure that your title is clear, and contains many of the keywords within the page itself.' => 'Assurez-vous d\'avoir un titre clair et qui contient les mots-clés correspondant à la page en cours', + 'Manage module rights' => 'Gestion des droits pour les modules', + 'Manage resource rights' => 'Gestion de droits pour les ressources', + 'Manage taxes' => 'Gérer les taxes', + 'Manage the tax rule taxes appliance order' => 'Gérer les règles de taxe et leur ordre d\'application', + 'Max usage :' => 'Utilisations max : ', + 'May be cumulative' => 'Peut être cumulé', + 'Message created on %date_create. Last modification: %date_change' => 'Message créé le %date_create. Dernière modification le %date_change', + 'Message level' => 'Message level', + 'Messages which have a level greater or equal to the selected level will be added to the log destinations. ' => 'Les messages avec un niveau d\'erreur supérieur ou égal à celui sélectionné seront rajoutés dans les logs', + 'Module' => 'Module', + 'Module access rights' => 'Droits d\'accès pour les modules', + 'Module created on %date_create. Last modification: %date_change' => 'Module crée le %date_create. Dernière modification le %date_change', + 'Modules' => 'Modules', + 'More information about ISO 4217' => 'Plus d\'information à propos de l\'ISO 4217', + 'NONE' => 'AUCUN', + 'Name' => 'Nom', + 'New' => 'Nouveau', + 'New customers' => 'Nouveaux clients', + 'News' => 'Actualités', + 'No' => 'Non', + 'No Folders found' => 'Aucun dossier trouvé', + 'No area defined with this id' => 'Pas de zone définie avec cette id', + 'No available content in this folder' => 'Ce dossier n\'a pas de contenu', + 'No available product in this category' => 'Aucun produit disponible dans cette rubrique', + 'No available value for this attribute' => 'Aucune valeur disponible pour cette déclinaison', + 'No categories found' => 'Aucune rubrique trouvée', + 'No country has been created yet. Click the + button to create one.' => 'Aucun pays n\'a encore été créé. Cliquez sur le bouton + pour en créer un', + 'No currency has been created yet. Click the + button to create one.' => 'Aucune devise n\'a encore été crée. Cliquez sur le bouton + pour en créer une.', + 'No folders found' => 'Aucun dossier n\'a été trouvé.', + 'No mailing template has been created yet. Click the + button to create one.' => 'Aucun template de mailing n\'a encore été créé. Cliquez sur le bouton + pour en ajouter un.', + 'No product attribute has been created yet. Click the + button to create one.' => 'Aucune déclinaison produit n\'a encore été créée. Cliquez sur le bouton + pour en créer une.', + 'No product feature has been created yet. Click the + button to create one.' => 'Aucune caractéristique produit n\'a encore été ajoutée. Cliquez sur le bouton + pour en créer une.', + 'No product template has been created yet. Click the + button to create one.' => 'Aucun template produit n\'a encore été créé. Cliquez sur le bouton + pour en créer une.', + 'No value has been created yet. Click the + button to create one.' => 'Aucune valeur n\'a encore été crée. Cliquez sur le bouton + pour en créer une.', + 'N° ISO' => 'N° ISO', + 'OK' => 'OK', + 'Offline products' => 'Produits hors ligne', + 'Online' => 'En ligne', + 'Online products' => 'Produits en ligne', + 'Oops! An Error Occurred' => 'Oops ! Une erreur est survenue', + 'Order #' => 'Commande #', + 'Order %ref' => 'Commande %ref', + 'Order n°' => 'Commande n°', + 'Order status:' => 'Statut de la commande : ', + 'Ordered products' => 'Produits commandés', + 'Orders' => 'Commandes', + 'Originating file line number ' => 'Originating file line number ', + 'Originating file name' => 'Originating file name', + 'Originating function name ' => 'Originating function name ', + 'Other addresses' => 'Autres adresses', + 'Overall sales' => 'Total des ventes', + 'PDF templates' => 'templates PDF', + 'PDF | Invoice' => 'Facture PDF', + 'PDF | Purchase order' => 'Bon de commande PDF', + 'Page not found' => 'Page non trouvée', + 'Parameters' => 'Paramètres', + 'Password' => 'Mot de passe', + 'Password :' => 'Mot de passe : ', + 'Payment information' => 'Informations de paiement', + 'Payment module' => 'Module de paiement', + 'Payment modules' => 'Modules de payment', + 'Period' => 'Période', + 'Phone' => 'Téléphone', + 'Phone number' => 'Numéro de téléphone', + 'Please retry' => 'Merci de réessayer', + 'Please save your Coupon in oder to affect it some conditions' => 'Veuillez sauvegarder votre code promo afin de pouvoir lui affecter des conditions', + 'Please select a condition category' => 'Merci d\'entrer le type de condition', + 'Please select a coupon type' => 'Merci d\'entrer le type de code', + 'Please select another condition' => 'Merci de sélectionner une autre condition', + 'Please select items to translate' => 'Veuillez sélectionner un élément', + 'Please select the B.O. template to translate' => 'Sélectionnez le template back-office que vous souhaitez traduire', + 'Please select the E-mail template to translate' => 'Sélectionnez le template de mail à traduire', + 'Please select the F.O. template to translate' => 'Sélectionnez le template front-office que vous souhaitez traduire', + 'Please select the PDF template to translate' => 'Sélectionnez le template PDF à traduire', + 'Please select the module to translate' => 'Sélectionnez le module à traduire', + 'Please wait, loading' => 'Chargement, veuillez patienter', + 'Port' => 'Port', + 'Port :' => 'Port : ', + 'Position' => 'Position', + 'Post Scriptum' => 'Post-scriptum', + 'Postage' => 'Frais de livraison', + 'Postscriptum' => 'Post-scriptum', + 'Preview' => 'Prévisualisation', + 'Preview category page' => 'Aperçu de la page rubrique', + 'Preview folder page' => 'Aperçu de la page dossier', + 'Preview product page' => 'Aperçu de la page produit', + 'Previous month sales' => 'Ventes du mois précédent', + 'Previous year sales' => 'Ventes de l\année précédente', + 'Price' => 'Prix', + 'Price excl. taxes' => 'Prix taxes exclues', + 'Price incl. taxes' => 'Prix TTC', + 'Price
w/ taxes (%currency)' => 'Prix
avec taxes (%currency)', + 'Price
w/o taxes (%currency)' => 'Prix
sans taxes (%currency)', + 'Pricing' => 'défintion des prix', + 'Product' => 'Produit', + 'Product Attributes' => 'Déclinaisons du produit', + 'Product EAN Code' => 'Code EAN du produit', + 'Product Features' => 'Caractéristiques du produit', + 'Product accessories' => 'Accessoires', + 'Product attributes' => 'Déclinaisons produit', + 'Product catalog configuration' => 'Configuration du catalogue produit', + 'Product created on %date_create. Last modification: %date_change' => 'Produit créé le %date_create. Dernière modification le %date_change', + 'Product features' => 'Caractéristiques produit', + 'Product price' => 'Prix du produit', + 'Product price including taxes' => 'Prix du produit taxes incluses', + 'Product tax price' => 'prix TTC', + 'Product templates' => 'Template produit', + 'Product title' => 'Titre du produit', + 'Product weight' => 'Poids du produit', + 'Products' => 'Produits', + 'Products in %cat' => 'Produits dans %cat', + 'Profil' => 'Profil', + 'Profile' => 'Profil', + 'Profile code' => 'Code du profil', + 'Profile created on %date_create. Last modification: %date_change' => 'Profil crée le %date_create. Dernière modification le %date_change ', + 'Profiles' => 'Profils', + 'Promotion' => 'Promo', + 'Published by OpenStudio' => 'Développé par OpenStudio', + 'Purpose' => 'Objet', + 'Quickly create combinations using the combination builder' => 'Créer rapidement une combinaison via le générateur de combinaison', + 'Rate' => 'Taux', + 'Rate from Euro' => 'Taux à partir de l\'Euro', + 'Rate in €' => 'Taux en €', + 'Read the documentation of this module' => 'Lire la documentation de ce module', + 'Reference' => 'Référence', + 'Registration date' => 'Date d\'enregistrement', + 'Related content' => 'Contenu associé', + 'Remove an accessory' => 'Supprimer l\'accessoire', + 'Remove associated folder' => 'Enlever le dossier associé', + 'Remove attribute' => 'Supprimer la déclinaison', + 'Remove country' => 'Enlever ce pays', + 'Remove feature' => 'Enlever la caractéristique', + 'Remove from all product templates' => 'Enlever de tous les templates produit', + 'Remove from category' => 'Supprimer de la rubrique', + 'Remove related content' => 'Enlever les contenus liés', + 'Remove selected values' => 'Enlever les valeur sélectionnées', + 'Remove the product from this category' => 'Enlever ce produit de cette rubrique', + 'Remove this attribute from all product templates' => 'Enlever cette déclinaison de tous les template produit', + 'Remove this feature from all product templates' => 'Enlever cette caractéristique de tous les templates produit', + 'Remove zone' => 'Supprimer la zone', + 'Resource' => 'Ressource', + 'Resource access rights' => 'Droits d\'accès pour les ressources', + 'Resources' => 'Ressources', + 'Rewritten URL' => 'URL réécrites', + 'Rights' => 'Droits', + 'SEO' => 'SEO', + 'Sale' => 'En promo', + 'Sale price incl. taxes' => 'Prix promo TTC', + 'Sale price
w/ taxes (%currency)' => 'Prix promo
HT (%currency)', + 'Sale price
w/o taxes (%currency)' => 'Prix promo
TTC (%currency)', + 'Sales' => 'Ventes', + 'Sales excluding shipping' => 'Ventes hors frais de port', + 'Sales statistics' => 'Statistiques de vente', + 'Save' => ' Enregistrer', + 'Save and close' => 'Enregistrer et fermer', + 'Save chages' => 'Enregistrer les modifications', + 'Save changes' => 'Enregistrer les modifications', + 'Save this address' => 'Sauvegarder cette adresse', + 'Save this condition' => 'Enregistrer cette condition', + 'Save your modifications' => 'Enregistrer les modifications', + 'Search' => 'Recherche', + 'Select a category and click (+) to add it to the additional category list' => 'Sélectionner une rubrique et cliquez sur (+) pour la rajouter dans la liste des rubrique associées', + 'Select a category to get its products' => 'Sélectionner une rubrique pour avoir les produits qu\'elle contient', + 'Select a category...' => 'Sélectionner une rubrique...', + 'Select a content and click (+) to add it to this category' => 'Selectionnez un contenu et cliquez sur (+) pour l\'ajouter à cette rubrique', + 'Select a content and click (+) to add it to this product' => 'Sélectionner un contenu et cliquer sur (+) pour l\'associer au produit', + 'Select a folder and click (+) to add it to the additional folder list' => 'Sélectionnez un dossier et cliquez sur (+) afin de l\'ajouter à la liste des dossiers aditionnels', + 'Select a folder content...' => 'Choisissez un dossier de contenu...', + 'Select a folder to get its content' => 'Choisissez un dossier de contenu pour lister ses contenus', + 'Select a folder...' => 'Choisissez un dossier de contenu...', + 'Select a product and click (+) to add it as an accessory' => 'Sélectionner un produit et cliquer sur (+) pour l\'ajouter en tant qu\'accessoire', + 'Select a product...' => 'Sélectionner un produit...', + 'Select a tax tule' => 'Sélectionnez une règle de taxes', + 'Select a value click (+) to add it to the combination' => 'Sélectionnez une valeur et cliquez sur (+) pour l\'ajouter à la combinaison', + 'Select an attribute and click (+) to add it to this template' => 'Sélectionner une déclinaison et cliquer sur (+) pour l\'ajouter à ce template', + 'Select an attribute and click (+) to view available values' => 'Sélectionnez une déclinaison et cliquez sur (+) pour voir les valeurs disponibles', + 'Select an attribute value...' => 'Sélectionnez une valeur de déclinaison...', + 'Select an attribute...' => 'Sélectionnez une déclinaison...', + 'Select an feature and click (+) to add it to this template' => 'Selectionnez une caractéristique et cliquez sur (+) pour l\'ajouter à ce template', + 'Select an feature...' => 'Sélectionnez une caractéristique...', + 'Select attribute values to combine. You may enter a default value for some of the fields of the generated combinations.' => 'Sélectionnez les valeurs de déclinaison à combiner. Vous pouvez entrer une valeur par défaut pour certains champs des combinaisons générées.', + 'Select here the tax applicable to this product' => 'Sélectionnez ici la taxe applicable sur ce produit', + 'Select the E-mail template you want to translate' => 'Sélectionnez le template de mail à traduire', + 'Select the PDF template you want to translate' => 'Sélectionnez le template PDF à traduire', + 'Select the back-office template you want to translate' => 'Sélectionnez le template back-office que vous souhaitez traduire', + 'Select the front-office template you want to translate' => 'Sélectionnez le template front-office que vous souhaitez traduire', + 'Select the module you want to translate' => 'Sélectionnez le module à traduire', + 'Select which items you want to translate' => 'Sélectionnez l\'élément que vous souhaitez traduire', + 'Send a mail to this customer' => 'Contacter ce client par mail', + 'Send files' => 'Envoyer des fichiers', + 'Sequential number of log line' => 'Sequential number of log line', + 'Set as default tax rule' => 'Configurer en tant que règle par défaut', + 'Shipping configuration' => 'Configuration du transport', + 'Shipping configuration name' => 'Nom de la configuration de livraison', + 'Shipping zones' => 'Zones de livraison', + 'Shop' => 'Boutique', + 'Shop Informations' => 'Informations sur la boutique', + 'Short conclusion' => 'Courte conclusion', + 'Short description' => 'Description courte', + 'Short description :' => 'Description courte : ', + 'Show logs' => 'Voir les logs', + 'Some of your translations are not saved. Continue anyway ?' => 'Certaines des traductions ne sont pas sauvegardées. Souhaitez-vous continuer ?', + 'Sorry, attribute ID=%id was not found.' => 'Désolé, la déclinaison ID=%id n\'a pas été trouvé', + 'Sorry, country ID=%id was not found.' => 'Désolé, le pays ID=%id n\'a pas été trouvé', + 'Sorry, currency ID=%id was not found.' => 'Désolé, le devise ID=%id n\'a pas été trouvé', + 'Sorry, customer ID=%id was not found.' => 'Désolé, le client ID=%id n\'a pas été trouvé', + 'Sorry, document ID=%id was not found.' => 'Désolé, le document ID=%id n\'a pas été trouvé', + 'Sorry, feature ID=%id was not found.' => 'Désolé, la caractéristique ID=%id n\'a pas été trouvé', + 'Sorry, image ID=%id was not found.' => 'Désolé, l\'image ID=%id n\'a pas été trouvé', + 'Sorry, message ID=%id was not found.' => 'Désolé, le message ID=%id n\'a pas été trouvé', + 'Sorry, template ID=%id was not found.' => 'Désolé, le template ID=%id n\'a pas été trouvé', + 'Sorry, variable ID=%id was not found.' => 'Désolé, la variable ID=%id n\'a pas été trouvé', + 'Source IP' => 'IP source', + 'Source IP :' => 'IP source : ', + 'Stats on %month/%year' => 'Statistiques du %month/%year', + 'Status' => 'Etat', + 'Stock' => 'Stock', + 'Store' => 'Information boutique', + 'Store Business Identification Number (SIRET, etc).' => 'identifiant de la boutique (SIRET, etc)', + 'Store address' => 'Adresse de la boutique', + 'Store configuration' => 'Configuration de la boutique', + 'Street address' => 'Adresse', + 'Subject' => 'Sujet', + 'Superadministrator' => 'Super-administrateur', + 'Symbol' => 'Symbole', + 'System Logs' => 'Gestion des logs', + 'System Logs configuration' => 'Configuration des logs', + 'System logs' => 'Gestion des logs', + 'System parameters' => 'Paramètres système ', + 'System variables' => 'Gestion des variables', + 'Tax' => 'Taxes', + 'Tax created on %date_create. Last modification: %date_change' => 'Taxe créée le %date_create. Dernière modification: %date_change', + 'Tax rule created on %date_create. Last modification: %date_change' => 'Règle de taxe créée le %date_create. Dernière modification le %date_change', + 'Tax rule taxes will be update for the following countries :' => 'Les règles de taxe seront modifiées pour les pays suivants :', + 'Tax rules' => 'Règles de taxes', + 'Tax rules are combination of different taxes.' => 'Les règles de taxe sont une combinaison de différentes taxes.', + 'Taxed total' => 'Montant total des taxes', + 'Taxes' => 'Taxes', + 'Taxes define the amount of money which is added to a bought product.' => 'Les taxes correspondent au montant ajouté au prix HT d\'un produit acheté', + 'Taxes rules' => 'Règles de taxes', + 'Template name' => 'Nom du template', + 'Template title' => 'Titre du template', + 'Templates' => 'Templates', + 'Text version of this message' => 'Version texte du message', + 'The HTML TITLE element is the most important element on your web page.' => 'L\'élément HTML TITLE est le plus important dans votre page', + 'The default pricing is used when no combination is defined.' => 'Le prix pas défaut est utilisez lorsqu\'aucune combinaison n\'est utilisé', + 'The destinations processes logs to display, store or send them. You can select and configure zero, one or more destinations below.' => 'Les destinations permettent d\'afficher, stocker ou bien envoyer les logs. Vous pouvez en sélectionner zéro, un ou plusieurs dans la liste ci-dessous', + 'The detailed description.' => 'La description détaillée.', + 'The mailing template in HTML format.' => 'Le template de mailing au format HTML', + 'The mailing template in text-only format.' => 'Le template de mailing en format text-only.', + 'The page you\'ve requested was not found. Please check the page address, and try again.' => 'La page désirée n\'existe pas. Merci de vérifier votre adresse et réessayer', + 'The rate from Euro (Price in Euro * rate = Price in this currency)' => 'Le taux à partir de l\'Euro (Prix en Euro * taux = Prix dans la devise)', + 'The server returned a "404 Not Found"' => 'Le serveur a retourné une erreur "404 Not Found"', + 'The symbol, such as $, £, €...' => 'Symbole tel que $, £, €', + 'The syntax used is identical to the PHP date() function' => 'La syntaxe utilisé est la même que la fonction date() de PHP', + 'Thelia Back Office' => 'Panel d\'administration de Thelia', + 'Thelia Languages' => 'Langue Thelia', + 'Thelia Mailing System' => 'Configuration des envois de mails', + 'Thelia Mailing Templates' => 'Template de Mailing Thelia', + 'Thelia Product Attributes' => 'Déclinaisons du produit Thelia', + 'Thelia Product Features' => 'Caractéristiques produit de Thelia', + 'Thelia Product Templates' => 'Templates produit Thelia', + 'Thelia Shipping configuration' => 'Configuration des livraisons Thelia', + 'Thelia Shipping zones' => 'Zone de livraison de Thelia', + 'Thelia System Variables' => 'Variables Thelia', + 'Thelia configuration' => 'Configuration thelia', + 'Thelia contributions' => 'Contributions de Thelia', + 'Thelia core' => 'Coeur de Thelia', + 'Thelia informations' => 'Informations Thelia', + 'Thelia mailing templates' => 'Template de mailing Thelia', + 'Thelia product attributes' => 'Déclinaisons du produit Thelia', + 'Thelia product features' => 'caractéristiques produit de Thelia', + 'Thelia product templates' => 'templates produit Thelia', + 'Thelia support forum' => 'Forum de Thelia', + 'Thelia system variables' => 'Variables Thelia', + 'Thelia, the open source e-commerce solution' => 'Thelia, la solution e-commerce libre', + 'There is currently no active module here.' => 'Il n\'y a aucun module actif ici', + 'There is no documents attached to this %type.' => 'Il n\'y a aucun document lié à ce %type.', + 'There is no images attached to this %type.' => 'Il n\'y a pas d\'image liée à ce %type.', + 'They are some administrator which are linked to this administrator. Please edit/remove them before deleting this administrator.' => 'Cet administrateur est lié avec un ou plusieurs autres administrateurs. Supprimez ou modifiez ces administrateurs d\'abord.', + 'They are some administrator which are linked to this profile. Please edit/remove them before deleting this profile.' => 'Il y a des administrateurs liés à ce profil. Veuillez les modifier/supprimer avant de supprimer ce profil.', + 'This category contains no contents' => 'Cette rubrique n\'a aucun contenu', + 'This category doesn\'t contains any products. To add a new product, click the + button above.' => 'Cette rubrique n\'a aucun produit. Pour créer un nouveau produit, cliquer sur le bouton + ci-dessus. ', + 'This category has no sub-categories.' => 'Cette rubrique n\'a pas de sous-rubrique.', + 'This category has no sub-categories. To create a new one, click the + button above.' => 'Cette rubrique n\'a pas de sous-rubrique. Pour en créer une nouvelle, cliquez sur le bouton + ci-dessus.', + 'This coupon is disabled, you can enable at the bottom of this form.' => 'Le code promo est désactivé. Vous pouvez l\'activer au début de ce formulaire', + 'This customer has not defined any delivery address' => 'Ce client n\'a pas saisi aucune adresse de livraison', + 'This folder doesn\'t contains any contents. To add a new content, click the + button above.' => 'Ce dossier n\'a aucun contenu. Pour ajouter un nouveau contenu, cliquez sur le bouton + ci-dessus.', + 'This folder has no sub-folders.' => 'Ce dossier n\'a pas de sous-dossiers.', + 'This folder has no sub-folders. To create a new one, click the + button above.' => 'Ce dossier n\'a pas de sous-dossiers. Afin de créer un nouveau, cliquez sur le bouton + ci-dessus.', + 'This is the message purpose, such as \'Order confirmation\'.' => 'Titre du message (ex : confirmation de commande)', + 'This is the subject of the e-mail, such as \'Your order is confirmed\'.' => 'Sujet du message (ex : votre commande est validée)', + 'This mailing template could not be changed.' => 'Le template de mailing ne peut pas être changé', + 'This month' => 'Ce mois', + 'This product contains no accessories' => 'Ce produit n\'a aucun accessoire', + 'This product contains no contents' => 'Ce produit n\'a aucun contenu associé', + 'This product doesn\'t belong to any additional category.' => 'Ce produit n\'est associé à aucune rubrique supplémentaire', + 'This product doesn\'t belong to any additional folder.' => 'Ce produit n\'appartient à aucun dossier addoitionnel', + 'This product template does not contains any features' => 'Ce gabarit de produit ne comporte aucune caractéristique', + 'This template contains no attributes' => 'Ce template n\'a pas de déclinaison', + 'This template contains no features' => 'Ce template ne contient aucune caractéristique', + 'This the unique name of this message. Do not change this value unless you understand what you do.' => 'Ceci est le nom unique du message. Ne le modifiez que si vous savez ce que vous faîtes', + 'This variable could not be changed.' => 'Cette variable ne peut pas être modifié', + 'This year' => 'Cette année', + 'Timeout' => 'Délai d\'attente expiré', + 'Timeout :' => 'Délai d\'attente expiré : ', + 'Title' => 'Titre', + 'Title :' => 'Titre : ', + 'To' => 'A', + 'To create a new content, select an existing folder, or create a new one.' => 'Pour créer un nouveau contenu, sélectionnez un dossier existant ou créez en un nouveau', + 'To create a new product, select an existing category, or create a new one.' => 'Pour créer un nouveau produit, veuillez sélectionner une rubrique existante ou en créer une nouvelle', + 'To remove a value from the combination, select it and click "remove"' => 'Afin de supprimer une valeur de la combinaison, sélectionnez la et cliquez sur "Enlever"', + 'Today' => 'Aujourd\'hui', + 'Top level' => 'Niveau 1', + 'Top level Contents' => 'Contenus de niveau 1', + 'Top level Products' => 'Produits mis en avant', + 'Top level categories' => 'Rubriques de niveau 1', + 'Top level folders' => 'Dossiers de niveau 1', + 'Total' => 'Total', + 'Total including discount' => 'Total avec remise', + 'Total without discount' => 'Montant total hors remises', + 'Transaction reference' => 'Référence de la transaction', + 'Translation' => 'Traductions', + 'Translations' => 'Traductions', + 'Type :' => 'Type : ', + 'Unit taxed price' => 'Prix unitaire TTC', + 'Unit. price' => 'Prix unitaire', + 'Unlimited' => 'Illimité', + 'Update' => 'Mettre à jour', + 'Update an administrator' => 'Mettre à jour cet administrateur', + 'Update coupon' => 'Mettre à jour le code', + 'Update rates' => 'Mettre à jour les taux', + 'Update tax rule taxes' => 'Mettre à jour les taxes de la règle de taxe', + 'Update this image' => 'Modifier cette image', + 'Usage left' => 'Utilisation restante', + 'Use Ctrl+click to select more than one value. You can also clear selected values.' => 'Utilisez Ctrl+clic pour choisir plus d\'une valeur. Vous pouvez aussi tout désélectionner.', + 'Use HTML message defined below' => 'Utiliser le message HTML définie ci-dessous', + 'Use Text message defined below' => 'Utiliser la version texte définie ci-dessous', + 'Use address by default' => 'Utiliser comme adresse par défaut', + 'Use default layout' => 'Utiliser le layout par défaut', + 'Use the keyword phrase in your URL.' => 'Utilisez des mots clés dans votre url', + 'Use this address by default' => 'Utiliser cette adresse par défaut', + 'Used in your store front' => 'Utilisé dans le front de votre boutique', + 'Username' => 'Nom d\'utilisateur', + 'Username :' => 'Nom d\'utilisateur : ', + 'Using a domain or subdomain for each language' => 'utiliser un domaine ou un sous domaine pour chaque langue', + 'Value' => 'Valeur', + 'Variable created on %date_create. Last modification: %date_change' => 'Variable créée le %date_create. Dernière modification: %date_change', + 'Variable name' => 'Nom de la variable', + 'Variable purpose' => 'Objet de la variable', + 'Variable value' => 'Valeur de la variable', + 'Version %ver' => 'Version %ver', + 'View' => 'Voir', + 'View only missing translations' => 'N\'afficher que les traductions manquantes', + 'View shop' => 'Voir la boutique', + 'View site' => 'Voir le site', + 'Visibility' => 'Visibilité', + 'Warning' => 'Attention', + 'Weight
(Kg)' => 'Poids
(Kg)', + 'Welcome' => 'Bienvenue', + 'Will be available on special offers' => 'Sera disponible pour les produits en promotion', + 'Will remove postage' => 'Supprimera les frais de port', + 'Won\'t be available on special offers' => 'N\'est pas disponible pour les offres spéciales', + 'Won\'t remove postage' => 'Ne supprimera pas les frais de port', + 'Yes' => 'Oui', + 'Yesterday sales' => 'Ventes de la veille', + 'You can attach here some content to this category' => 'Vous pouvez lier ici des contenus à cette rubrique', + 'You can attach here some content to this product' => 'Vous pouvez associer des contenus avec ce produit', + 'You can attach this product to more categories in the details tab.' => 'Vous pouvez lier ce produit à plusieurs rubriques dans l\'onglet détail.', + 'You can change the default category (%title) in the "General" tab.' => 'Vous pouvez changer la catégorie par défaut (%title) dans l\'onglet "Général"', + 'You can change the default folder (%title) in the "General" tab.' => 'Vous pouvez modifier le dossier par défaut (%title) dans l\'onglet "Général".', + 'You can\'t delete this administrator' => 'Vous ne pouvez pas supprimer cet administrateur', + 'You can\'t delete this profile' => 'Vous ne pouvez pas supprimer ce profil', + 'You don\'t need to use commas or other punctuations.' => 'Vous n\'avez pas besoin d\'utiliser de virgules ou d\'autres signes de ponctuation', + 'Your current IP address is %ip' => 'Votre adresse IP est %ip', + 'Zip code' => 'Code postal', + 'Zones' => 'Zones', + 'activate' => 'activer', + 'activate %title module' => 'Activez le module %title', + 'activation' => 'Activation', + 'and' => 'et', + 'classic modules' => 'Modules classiques', + 'code' => 'code', + 'company' => 'entreprise', + 'customer ref' => 'ref client', + 'd-m-Y' => 'd-m-Y', + 'date form' => 'formulaire de date', + 'date in yyyy-mm-dd format' => 'date in yyyy-mm-dd format', + 'days left' => 'jours restants', + 'deactivate' => 'désactiver', + 'deactivation' => 'désactivation', + 'en_US' => 'en_US', + 'firstname & lastname' => 'Prénom & nom', + 'hour in hh:mm:ss format' => 'hour in hh:mm:ss format', + 'last order' => 'Dernière commande', + 'long description' => 'description longue', + 'max usage' => 'utilisations max', + 'order amount' => 'Montant de la commande', + 'orders for this customer' => 'commandes pour ce client', + 'short description' => 'description court', + 'tax rules' => 'règles de taxe', + 'taxes' => 'taxes', + 'time form' => 'formulaire de temps', + 'title' => 'titre', + 'tracking reference' => 'Reference Tracking', + 'uncheck all' => 'tout décocher', + 'you can combine taxes in tax rules and chose if they are applied one after the other or at the same time : it allows to apply taxes on an already taxed price or not.' => 'vous pouvez combiner des taxes en règles de taxe et choisir si elle sont appliquées l\'une après l\'autre ou en même temps: cela permet d\'appliquer des taxes sur un produit déjà taxé ou non.', + 'yyyy-mm-dd' => 'yyyy-mm-dd', +); From d1e91e889da3ff6e9b85f41603d1e1abe5c491c1 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 14:23:01 +0100 Subject: [PATCH 08/10] fix syntax error --- core/lib/Thelia/Controller/Admin/AbstractCrudController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php index 1021d4283..bb88493cf 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractCrudController.php @@ -335,7 +335,7 @@ abstract class AbstractCrudController extends BaseAdminController $error_msg = $ex->getMessage(); } - if (false !=== $error_msg) { + if (false !== $error_msg) { $this->setupFormErrorContext( $this->getTranslator()->trans("%obj creation", array('%obj' => $this->objectName)), $error_msg, @@ -437,7 +437,7 @@ abstract class AbstractCrudController extends BaseAdminController $error_msg = $ex->getMessage();*/ } - if (false !=== $error_msg) { + if (false !== $error_msg) { // At this point, the form has errors, and should be redisplayed. $this->setupFormErrorContext( $this->getTranslator()->trans("%obj modification", array('%obj' => $this->objectName)), From e54349c5c52b9e838e5ea0c4a845d9edc791f4b4 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Fri, 21 Mar 2014 14:23:27 +0100 Subject: [PATCH 09/10] fix syntax error --- core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php index 2735ce176..1d6cb06d5 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php @@ -222,7 +222,7 @@ abstract class AbstractSeoCrudController extends AbstractCrudController $this->getParserContext()->addForm($changeForm); } - if (false !=== $error_msg) { + if (false !== $error_msg) { $this->setupFormErrorContext( $this->getTranslator()->trans("%obj SEO modification", array('%obj' => $this->objectName)), $error_msg, From 446c2e5438741932b6af47878df66afbf9627594 Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Mon, 24 Mar 2014 16:47:37 +0100 Subject: [PATCH 10/10] Improved module generation command --- .../lib/Thelia/Command/BaseModuleGenerate.php | 4 +++ .../Thelia/Command/ModuleGenerateCommand.php | 22 +++++++++++++ .../Command/Skeleton/Module/I18n/en_US.php | 4 +++ .../Command/Skeleton/Module/I18n/fr_FR.php | 4 +++ .../Command/Skeleton/Module/routing.xml | 31 +++++++++++++++++++ 5 files changed, 65 insertions(+) create mode 100644 core/lib/Thelia/Command/Skeleton/Module/I18n/en_US.php create mode 100644 core/lib/Thelia/Command/Skeleton/Module/I18n/fr_FR.php create mode 100644 core/lib/Thelia/Command/Skeleton/Module/routing.xml diff --git a/core/lib/Thelia/Command/BaseModuleGenerate.php b/core/lib/Thelia/Command/BaseModuleGenerate.php index b3286c874..10c0f9398 100644 --- a/core/lib/Thelia/Command/BaseModuleGenerate.php +++ b/core/lib/Thelia/Command/BaseModuleGenerate.php @@ -42,6 +42,10 @@ abstract class BaseModuleGenerate extends ContainerAwareCommand 'Config', 'Model', 'Loop', + 'Command', + 'Controller', + 'EventListeners', + 'I18n', 'AdminIncludes', 'templates', ); diff --git a/core/lib/Thelia/Command/ModuleGenerateCommand.php b/core/lib/Thelia/Command/ModuleGenerateCommand.php index 8a610b991..058d071c1 100644 --- a/core/lib/Thelia/Command/ModuleGenerateCommand.php +++ b/core/lib/Thelia/Command/ModuleGenerateCommand.php @@ -88,6 +88,7 @@ class ModuleGenerateCommand extends BaseModuleGenerate try { $skeletonDir = str_replace("/", DIRECTORY_SEPARATOR, THELIA_ROOT . "/core/lib/Thelia/Command/Skeleton/Module/"); + // config.xml file $fs->copy($skeletonDir . "config.xml", $this->moduleDirectory . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.xml"); $moduleContent = file_get_contents($skeletonDir . "module.xml"); @@ -97,6 +98,7 @@ class ModuleGenerateCommand extends BaseModuleGenerate file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . "Config". DIRECTORY_SEPARATOR . "module.xml", $moduleContent); + // PHP Class template $classContent = file_get_contents($skeletonDir . "Class.php.template"); $classContent = str_replace("%%CLASSNAME%%", $this->module, $classContent); @@ -104,11 +106,31 @@ class ModuleGenerateCommand extends BaseModuleGenerate file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . $this->module.".php", $classContent); + // schema.xml file $schemaContent = file_get_contents($skeletonDir . "schema.xml"); $schemaContent = str_replace("%%NAMESPACE%%", $this->module, $schemaContent); file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . "Config". DIRECTORY_SEPARATOR . "schema.xml", $schemaContent); + + // routing.xml file + $routingContent = file_get_contents($skeletonDir . "routing.xml"); + + $routingContent = str_replace("%%NAMESPACE%%", $this->module, $routingContent); + $routingContent = str_replace("%%CLASSNAME_LOWER%%", strtolower($this->module), $routingContent); + + file_put_contents($this->moduleDirectory . DIRECTORY_SEPARATOR . "Config". DIRECTORY_SEPARATOR . "routing.xml", $routingContent); + + // I18n sample files + $fs->copy( + $skeletonDir . DIRECTORY_SEPARATOR . "I18n" . DIRECTORY_SEPARATOR . "fr_FR.php", + $this->moduleDirectory . DIRECTORY_SEPARATOR . "I18n" . DIRECTORY_SEPARATOR . "fr_FR.php" + ); + + $fs->copy( + $skeletonDir . DIRECTORY_SEPARATOR . "I18n" . DIRECTORY_SEPARATOR . "en_US.php", + $this->moduleDirectory . DIRECTORY_SEPARATOR . "I18n" . DIRECTORY_SEPARATOR . "en_US.php" + ); } catch (\Exception $ex) { $fs->remove($this->moduleDirectory); diff --git a/core/lib/Thelia/Command/Skeleton/Module/I18n/en_US.php b/core/lib/Thelia/Command/Skeleton/Module/I18n/en_US.php new file mode 100644 index 000000000..f32e11983 --- /dev/null +++ b/core/lib/Thelia/Command/Skeleton/Module/I18n/en_US.php @@ -0,0 +1,4 @@ + 'The displayed english string', +); \ No newline at end of file diff --git a/core/lib/Thelia/Command/Skeleton/Module/I18n/fr_FR.php b/core/lib/Thelia/Command/Skeleton/Module/I18n/fr_FR.php new file mode 100644 index 000000000..fd88a21eb --- /dev/null +++ b/core/lib/Thelia/Command/Skeleton/Module/I18n/fr_FR.php @@ -0,0 +1,4 @@ + 'La traduction française de la chaine', +); \ No newline at end of file diff --git a/core/lib/Thelia/Command/Skeleton/Module/routing.xml b/core/lib/Thelia/Command/Skeleton/Module/routing.xml new file mode 100644 index 000000000..22d919792 --- /dev/null +++ b/core/lib/Thelia/Command/Skeleton/Module/routing.xml @@ -0,0 +1,31 @@ + + + + + + +