// Merge -> revision 9352

This commit is contained in:
rMalie
2011-10-14 08:20:54 +00:00
parent 85937793ec
commit d79fcf00fb
332 changed files with 6104 additions and 2643 deletions

View File

@@ -98,12 +98,12 @@ if (Tools::isSubmit('Submit'))
die(Tools::displayError());
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.$iso.'" lang="'.$iso.'">
<meta http-equiv="Refresh" content="0;URL='.Tools::safeOutput($url, true).'">
<meta http-equiv="Refresh" content="0;URL='.str_replace('&amp;', '&', Tools::safeOutput($url, true)).'">
<head>
<script language="javascript" type="text/javascript">
window.location.replace("'.Tools::safeOutput($url, true).'");
window.location.replace("'.str_replace('&amp;', '&', Tools::safeOutput($url, true)).'");
</script>
<div style="text-align:center; margin-top:250px;"><a href="'.Tools::safeOutput($url, true).'">'.translate('Click here to launch Administration panel').'</a></div>
<div style="text-align:center; margin-top:250px;"><a href="'.str_replace('&amp;', '&', Tools::safeOutput($url, true)).'">'.translate('Click here to launch Administration panel').'</a></div>
</head>
</html>';
exit ;

View File

@@ -547,7 +547,7 @@ class LanguageCore extends ObjectModel
public static function getIdByIso($iso_code)
{
if (!Validate::isLanguageIsoCode($iso_code))
die(Tools::displayError('Fatal error : iso code is not correct : ').$iso_code);
die(Tools::displayError('Fatal error: ISO code is not correct').' '.$iso_code);
return Db::getInstance()->getValue('SELECT `id_lang` FROM `'._DB_PREFIX_.'lang` WHERE `iso_code` = \''.pSQL(strtolower($iso_code)).'\'');
}
@@ -555,7 +555,7 @@ class LanguageCore extends ObjectModel
public static function getLanguageCodeByIso($iso_code)
{
if (!Validate::isLanguageIsoCode($iso_code))
die(Tools::displayError('Fatal error : iso code is not correct : ').$iso_code);
die(Tools::displayError('Fatal error: ISO code is not correct').' '.$iso_code);
return Db::getInstance()->getValue('SELECT `language_code` FROM `'._DB_PREFIX_.'lang` WHERE `iso_code` = \''.pSQL(strtolower($iso_code)).'\'');
}

View File

@@ -453,7 +453,7 @@ abstract class PaymentModuleCore extends Module
$fileAttachment = NULL;
if (Validate::isEmail($customer->email))
Mail::Send((int)$order->id_lang, 'order_conf', Mail::l('Order confirmation', $order->id_lang), $data, $customer->email, $customer->firstname.' '.$customer->lastname, NULL, NULL, $fileAttachment);
Mail::Send((int)$order->id_lang, 'order_conf', Mail::l('Order confirmation', (int)$order->id_lang), $data, $customer->email, $customer->firstname.' '.$customer->lastname, NULL, NULL, $fileAttachment);
}
$this->currentOrder = (int)$order->id;
return true;

View File

@@ -1939,7 +1939,7 @@ FileETag INode MTime Size
if (!is_array($apacheModuleList))
$apacheModuleList = apache_get_modules();
// we need strpos (example can be evasive20
// we need strpos (example, evasive can be evasive20)
foreach ($apacheModuleList as $module)
{
if (strpos($module, $name)!==false)
@@ -1955,7 +1955,7 @@ FileETag INode MTime Size
phpinfo(INFO_MODULES);
$phpinfo = ob_get_contents();
ob_end_clean();
if (strpos($phpinfo, $module) !== false)
if (strpos($phpinfo, $name) !== false)
return true;
}

View File

@@ -289,7 +289,7 @@ class ValidateCore
*/
public static function isMessage($message)
{
return preg_match('/^([^<>{}]|<br \/>)*$/i', $message);
return !preg_match('/[<>{}]/i', $message);
}
/**

View File

@@ -125,6 +125,8 @@ define('_PS_CACHEFS_DIRECTORY_', _PS_ROOT_DIR_.'/cache/cachefs/');
define('_PS_GEOLOCATION_NO_CATALOG_', 0);
define('_PS_GEOLOCATION_NO_ORDER_', 1);
define('MIN_PASSWD_LENGTH', 8);
if (!defined('_PS_CACHE_ENABLED_'))
define('_PS_CACHE_ENABLED_', 0);

View File

@@ -25,8 +25,6 @@
* International Registered Trademark & Property of PrestaShop SA
*/
define('MIN_PASSWD_LENGTH', 8);
class PasswordControllerCore extends FrontController
{
public $php_self = 'password';
@@ -70,7 +68,7 @@ class PasswordControllerCore extends FrontController
}
else if (($token = Tools::getValue('token')) && ($id_customer = (int)(Tools::getValue('id_customer'))))
{
$email = Db::getInstance()->getValue('SELECT `email` FROM '._DB_PREFIX_.'customer c WHERE c.`secure_key` = "'.pSQL($token).'" AND c.id_customer='.(int)($id_customer));
$email = Db::getInstance()->getValue('SELECT `email` FROM '._DB_PREFIX_.'customer c WHERE c.`secure_key` = \''.pSQL($token).'\' AND c.id_customer='.(int)$id_customer);
if ($email)
{
$customer = new Customer();
@@ -79,7 +77,7 @@ class PasswordControllerCore extends FrontController
Tools::redirect('index.php?controller=authentication&error_regen_pwd');
else
{
$customer->passwd = Tools::encrypt($password = Tools::passwdGen((int)(MIN_PASSWD_LENGTH)));
$customer->passwd = Tools::encrypt($password = Tools::passwdGen(MIN_PASSWD_LENGTH));
$customer->last_passwd_gen = date('Y-m-d H:i:s', time());
if ($customer->update())
{

View File

@@ -24,7 +24,6 @@ International Registred Trademark & Property of PrestaShop SA
Release Notes for PrestaShop 1.5
--------------------------------
####################################
<<<<<<< .working
# v1.5.0.0 - 7536 (2011-07-06) #
####################################
@@ -36,7 +35,456 @@ Release Notes for PrestaShop 1.5
####################################
=======
# v1.4.5.1 - 9352 (2011-10-14) #
####################################
Added Features:
[+] FO : CC-87 - Possibility to restrict countries in FO by those delivered by active carriers
[+] FO : add SEO link on layer navigation module
[+] BO : #PSCFI-3094 - now AdminTranslations also check PDF overriding
[+] BO : Upgrader new function to check prestashop files versions
[+] BO : added sample csv file for import //thanks to tony ;)
[+] MO : autoupgrade - Added some infos (changelog, display download link)
[+] MO : new module autoupgrade, to replace native tab. Standalone version.
Improved/changed features:
[*] Project : BugFix #PSCFI-3539 - the Language class now implements 2 new properties : date_format_full and date_format_lite. Date formats are not hard coded anymore!
[*] Project : Fixed Bug #PSCFI-3100, 'description', and 'short_description' are now processed after the foreach loop.
[*] Installer : Added missing translated texts
[*] Installer : Removed the "PRIMARY KEY `name`" on db.sql to have the SQL documention compatibility.
[*] Installer : Removed the "PRIMARY KEY `name`" on db.sql to have the SQL documention compatibility.
[*] Installer : Removed the "PRIMARY KEY `name`" on db.sql to have the SQL documention compatibility.
[*] Installer : Removed the "PRIMARY KEY `name`" on db.sql to have the SQL documention compatibility.
[*] Installer : gridextjs deprecated module is now moved relatively to _PS_ROOT_DIR_ or _PS_MODULE_DIR_ if exists
[*] Installer : include, include_once, require replaced by require_once
[*] FO : #PSCFI-2505 - The title of Categories and Manufacturers pages now includes the page number
[*] FO : Added a new benefits related to the customer account creation
[*] FO : Added several tests for the Guest tracking section (e-mail validity, required fields...)
[*] FO : CC-93 - Review of the compare product system. Remove center tag
[*] FO : Clean code in class Cart, in shipping calculation
[*] FO : Improved English wording for the Guest tracking section
[*] FO : Updated French translations
[*] FO : layered - update URL SEO pagination
[*] BO : "Send test mail" now return the error message instead of just telling you that something went wrong
[*] BO : #PSCFI-2509 - You can know import and update products based on their references
[*] BO : #PSCFI-2902 - Added url to update currency rates via crontab
[*] BO : #PSCFI-3098 - Renaming admin folder is false sense of security
[*] BO : #PSCFI-3098 - Renaming admin folder is false sense of security
[*] BO : CC-48 - Possibility to delete "pages not found" on the current search period
[*] BO : Check customized image in AdminCarts->displayCustomizedDatas() - #PSCFI-3572
[*] BO : Debug is now easier in hook backOfficeTop
[*] BO : Default product short description max length is now 800 (instead of 400)
[*] BO : Fixed PSCFI-3223, removed superfluous parameters in links on AdminModules
[*] BO : Improvment #PSCFI-2796 - It is now possible to set the maximum size of product short description
[*] BO : Remove warning in robots.txt #PSCFI-2846
[*] BO : SQL queries
[*] BO : Updated French translations
[*] BO : XB-1 - Limitation for the preference "maximum size of attachment files"
[*] BO : You can now use 8 decimals for the longitude/latitude in the Store locator
[*] BO : added md5, changelog and desc data in Upgrader class
[*] BO : it is now possible to move images to the new filesystem when unused demo images are present
[*] BO : new entity in versions.xml - autoupgrade_module
[*] BO : now a modules file can be ignored by the AdminTranslations tab if speficied in it
[*] BO : on loading of modules (AdminModule), we check the memory usage in order to prevent php error message
[*] BO : quantity highlighted in the order details when greater than 1
[*] BO : removing tab AdminUpgrade from 1.4.4.0/1.4.4.1, changing to module autoupgrade
[*] BO : small improvement in Upgrader class
[*] BO : when adding new AdminTab, cache is now refreshed in Tab::add() method
[*] BO : you can now search a customer by its IP address in the backend
[*] BO : you can now search a product by its attribute reference in the backend
[*] Classes : Use default image quality if no quality setting can be found
[*] CORE : Updated PEAR XML_Feed_Parser library (v1.0.2 to v1.0.4)
[*] Core : Now force_compile (Smarty) is set to false by default, even on SVN
[*] MO : Block layered - Add backward / forward navigation
[*] MO : Block layered - Add french translation
[*] MO : Block layered - Add meta title & url personalisation for attributes and features values
[*] MO : Block layered - Add meta title & url personalisation for attributes groups and features
[*] MO : Block layered - Hide filters if nothing to select on it.
[*] MO : Block layered - Prevent Bug when product-count.tpl do not exists
[*] MO : Block layered - Re-index attributes after saving product - Re-write indexUrl() - Normalization - Add comments
[*] MO : Block layered - Remode pagination title with "page" and re-use "(2)", because it's not possible to translate easily the word "page" (no $this->l())
[*] MO : Block layered - Remove unused variable
[*] MO : BlockLayered - Adding price filter // /!\ Caution : this module is not finalised - some functions are in developpement and do not work
[*] MO : Blocklayered - Slide to the top of the page on loading new product page
[*] MO : BugFix #PSCFI-3281 - Hipay now uses the language code instead of the iso code if it is available
[*] MO : Fix and improvment Module eBay (1.2.4)
[*] MO : Fix and improvment Module eBay (1.2.5) + modules translations
[*] MO : Fixed Bug #PSCFI-3074, Writing distinct images product on sitemap (gsitemap)
[*] MO : Improvment on XML generation Module Treepodia 1.4
[*] MO : Module Authorize.net (1.2.2) - a warning now appears when cURL is not enabled
[*] MO : Module UPS (1.2.2), USPS (1.2.1), Fedex (1.2.4), Canada Post (0.5) work with Shipping Estimator module now (Bug Fixed #PSCFI-2976 and #PSCFI-3586)
[*] MO : Module eBay (1.3) now display warning alert during uninstall + set recyclable and gift to 0 when create a cart
[*] MO : Module eBay (1.3.1) - optimization and variable description_short available in eBay template
[*] MO : Module eBay 1.2
[*] MO : Module eBay 1.2.2
[*] MO : Module eBay now delete cart when order can not be created (1.2.6)
[*] MO : Performance improvements for layered navigation module
[*] MO : Product Comment - Bug on product comparison page // Vars undefined
[*] MO : Review of the productcomments module - Part1
[*] MO : autoupgrade - improved ergonomy, thanks a lot to Samy Rabih (from o2sources.com) for his feedback
[*] MO : autoupgrade - Improved Upgrader class from module
[*] MO : mailalerts, add translation for your@mail.com
[*] MO : mailalerts, add translation for your@mail.com
[*] PDF : Free text on the invoice
[*] LO : CA.xml currency's name
[*] LO : Canada - Currency name + symbol
[*] LO : Canada taxes
Fixed bugs:
[-] PROJECT : Bug #PSCFI-3563 Fixed - currency conversion was not made on product Additionnal Shipping Cost
[-] PROJECT : Class Tools - Adding default time out in Tools::file_get_content
[-] PROJECT : Class Validate updated
[-] Installer : English language is back
[-] Installer : fixed bug #PSCFI-2958 - Step 4 in installation fails on allow_url_fopen warning
[-] Installer : fixed position in Tools subtabs
[-] FO : #PSCFI-2702 - Fixed problem with ajax on ssl page with a domain from non-ssl domain
[-] FO : #PSCFI-2702 - Fixed problem with ajax on ssl page with a domain from non-ssl domain
[-] FO : #PSCFI-3000 - SSL enabled redirect loop for admin login V1.4.3
[-] FO : #PSCFI-3111 - remove literal
[-] FO : #PSCFI-3184 - Unable to reorder if order contains customized products
[-] FO : #PSCFI-3201 - Can't install by Vietnam lang
[-] FO : #PSCFI-3215 - ProductDownload -> delete() function dosn't return value !
[-] FO : #PSCFI-3218 - The lowest shipping cost carrier is not selected by default
[-] FO : #PSCFI-PSCFI-3234 - Guest tracking and friendly-url
[-] FO : Added spaces surrounding the minimal quantity to buy on the product page
[-] FO : Bug Fixed #PSCFI-3005 - Unitialized variable cart_quantity
[-] FO : Bug Fixed #PSCFI-3193 - Rounding of product prices on percent discount
[-] FO : BugFix #PSCFI-2677 - Combinations of products in the Layered navigation block appear as "unavailable"
[-] FO : BugFix #PSCFI-2790 - Manufacturer page CSS bug in Internet Explorer 6
[-] FO : BugFix #PSCFI-2790 - Problems with IE6 and manufacturer
[-] FO : BugFix #PSCFI-2802 - Layered navigation block lock ajax cart adding
[-] FO : BugFix #PSCFI-2811 - Automatically redirect to Canonical url enable every time evant if "Automatically redirect to Canonical url" is at "no"
[-] FO : BugFix #PSCFI-2871 - "Notify me when available" should not appear when stock management is disabled
[-] FO : BugFix #PSCFI-2871 - "Notify me when available" should not appear when stock management is disabled
[-] FO : BugFix #PSCFI-2961 - On changing iso code, move translation language
[-] FO : BugFix #PSCFI-2961 - On changing iso code, move translation language
[-] FO : BugFix #PSCFI-2961 - On changing iso code, move translation language
[-] FO : BugFix #PSCFI-2993 - mails french language reply_msg.txt is empty
[-] FO : BugFix #PSCFI-3184 - Unable to reorder if order contains customized products
[-] FO : BugFix #PSCFI-3231 - Dont ask shipping address if there is only virtual product
[-] FO : BugFix #PSCFI-3413 - Voucher (Discount) kept while invalid in the order
[-] FO : BugFix #PSCFI-3438 - Carrier list is not checked after updating shopping cart at OPC
[-] FO : BugFix #PSCFI-3468 - Bad customizations found in Cart::getProducts
[-] FO : BugFix PSCFI-3425 - Product override not working as expected
[-] FO : Deleted an extraneous slash for the path of blockstore.css
[-] FO : Display tax label turned off for USA
[-] FO : Fix some code standards
[-] FO : Fixed #PSCFI-2494 - Now when you logout and are redirected to home page, its no more https.
[-] FO : Fixed #PSCFI-2791 - Address (Line 2) field is hidden in Instant Checkout
[-] FO : Fixed #PSCFI-2914 - when a category has a name starting with a number, rewriteRules now works properly
[-] FO : Fixed #PSCFI-3714 - now pagination is correct when changing default products per page
[-] FO : Fixed a bug w/ legend on product cover image (product page)
[-] FO : Fixed bug #PSCFI-2864 - State is hardcoded after country
[-] FO : Fixed bug #PSCFI-3639 - Pagination error in search.php when called from 404.php
[-] FO : Fixed bug PSCFI-3125 - Guest Order Tracking not working
[-] FO : Fixed bug PSCFI-3286 - After order no customer or owner email sent
[-] FO : Fixed bug PSCFI-3404 - Invalid Token on Address Modify
[-] FO : Fixed bug PSCFI-3549 - Product attribute desc. were incomplete in order conf. e-mail
[-] FO : PSCFI-3655 - canonical redirection now only works with GET method, not POST (in order to avoid losing data)
[-] FO : Proof-reading of English translation (Full)
[-] FO : Proof-reading of Spanish translation for the Front Office
[-] FO : added the suffix "Core" to the class name "CompareProduct"
[-] FO : fix bug
[-] FO : fix bug where a logged guest who then logs in as a customer had an incorrect cart secure key
[-] FO : fixed bug #PSCFI-3054 - One page checkout and createAccountTop Hook
[-] FO : fixed bug #PSCFI-3402 - Bug in order-opc.js
[-] FO : fixed bug #PSCFI-3476 - Canceling Loading icon after Ajax errors
[-] FO : fixed bug on live edit when no module on page
[-] FO : fixed bug where the wrong carrier is selected when refreshing carriers in OPC
[-] FO : fixed bug with wrong link for guest tracking after making an order as guest
[-] FO : no more "back" button when the previous page is the same as the current one
[-] FO : now logo link use Link class in header.tpl
[-] FO : now order detail controller can be called directly
[-] FO : removed duplicated rewriterules
[-] BO : #PSCFI-2642 - HTML format problem in module referral program
[-] BO : #PSCFI-2902 - Fixed wrong URL
[-] BO : #PSCFI-2922 - Fixed bugs in GroupReduction. Now, group_reduction and product_group_reduction tables are now populated/cleaned properly (CRUD Products/Category).
[-] BO : #PSCFI-2922 - Fixed bugs in GroupReduction. Products added in product_group_reduction are now based on the id_default_category. If a group is deleted, tables are now purged correctly.
[-] BO : #PSCFI-2963 - Fixed 'display_stores'.
[-] BO : #PSCFI-3022 - If layer navigation module is on, than comparator checkbox is hidden on product list.
[-] BO : #PSCFI-3022 - If layer navigation module is on, than comparator checkbox is hidden on product list.
[-] BO : #PSCFI-3034 - Return to home after use link ...en/content/category/1-home (blockcms)
[-] BO : #PSCFI-3034 - Return to home after use link ...en/content/category/1-home (blockcms)
[-] BO : #PSCFI-3044 - Search idexing dont work properly
[-] BO : #PSCFI-3071 - Memcached class bad SQL statement to add a server
[-] BO : #PSCFI-3129 - No big differences between editable selects and inputs editable
[-] BO : #PSCFI-3129 - No big differences between editable selects and inputs editable
[-] BO : #PSCFI-3133 - Remove unused variables
[-] BO : #PSCFI-3154 - Product comparison regression: "There is no product in the comparator"
[-] BO : #PSCFI-3163 - Using non-static method as static
[-] BO : #PSCFI-3166 - Manufacturer ajax error: parsererror
[-] BO : #PSCFI-3179 - Fixed wrong cast for coordinates
[-] BO : #PSCFI-3198 - Limit check theme to directory (avoid .htaccess/preview.jpg)
[-] BO : #PSCFI-3362 - coding style/security
[-] BO : #PSCFI-3362 - fixed wrong coding style
[-] BO : #PSCFI-3362 - level_depth is now correctly updated
[-] BO : #PSCFI-3389 - Change NOW() by date('Y-M-d H:i:s')
[-] BO : AdminUpgrade now checks if function apache_get_modules exists.
[-] BO : AdminUpgrade small fix
[-] BO : Bug Fixed #PSCFI-3453 - States of one country in different zone = unable to save tax rules
[-] BO : Bug Fixed #PSCFI-3652 - Can't set specific priority
[-] BO : BugFix #PSCFI-2802 - Layered navigation block does not appear on front office
[-] BO : BugFix #PSCFI-2863 - Update provider by import csv can flush the existing data
[-] BO : BugFix #PSCFI-2863 - Update provider by import csv can flush the existing data
[-] BO : BugFix #PSCFI-2863 - Update provider by import csv can flush the existing data
[-] BO : BugFix #PSCFI-2863 - Update provider by import csv can flush the existing data
[-] BO : BugFix #PSCFI-2877 - Wrong text in admin/tabs/AdminImport.php
[-] BO : BugFix #PSCFI-2877 - Wrong text in admin/tabs/AdminImport.php
[-] BO : BugFix #PSCFI-2892 - Problems with htmlentities and currency
[-] BO : BugFix #PSCFI-2893 - Product::getProductsProperties must check input value to avoid warnings.
[-] BO : BugFix #PSCFI-2898 + #PSCFI-2872 - Problem in a CSS
[-] BO : BugFix #PSCFI-2898 - Send to a friend, remove unuseful code
[-] BO : BugFix #PSCFI-2936 - Can't filter to installed modules to configure mailalert
[-] BO : BugFix #PSCFI-3029 - AdminAddresses
[-] BO : BugFix #PSCFI-3618 - Wrong default group for the cusomers with default group = deleted group
[-] BO : BugFix - JS selectedCat not defined in category tree
[-] BO : BugFix - remove an undefinned function
[-] BO : Bugfix #PSCFI-2438 - On using ajax, we never redirect to an other URL
[-] BO : Bugfix #PSCFI-2821 - Remove a french sentence
[-] BO : Bugfix #PSCFI-2826 - Paypal template missing code
[-] BO : Bugfix #PSCFI-2838 - Problem with friendly URL
[-] BO : Check if js is present
[-] BO : Counties - Fixed broken Query (County filter)
[-] BO : Deleted some debug related to "mailalerts" module in the "Modules" tab
[-] BO : Fixed #PSCFI-2501 - now missing spaces between parameters is not so important anymore when parsing files for translations
[-] BO : Fixed #PSCFI-2805 - Searching by name on AdminStore panel generate SQL error
[-] BO : Fixed #PSCFI-3030
[-] BO : Fixed #PSCFI-3439 - eval() call, thanks a lot to Alexandre Segura for this fix/improvement
[-] BO : Fixed Bug #PSCFI-3013, Add the upgrader permission line on sql installation script and remove warning on Employes tab if a permission does not exist.
[-] BO : Fixed a bug related to cart customized products in AdminCarts.php
[-] BO : Fixed bug #PSCFI-2809 - Typo in mails
[-] BO : Fixed bug #PSCFI-2822 - Submenu display problem when too many tabs
[-] BO : Fixed bug #PSCFI-2875 - Parenthesis missing
[-] BO : Fixed bug #PSCFI-3565 - Error "Bad size" while deleting an acessory from the product tab
[-] BO : Fixed bug #PSCFI-3592 - Forbid to disable the default carrier
[-] BO : Fixed bug PSCFI-2807 - Missing Log_alert e-mail templates in translations export
[-] BO : Fixed bug PSCFI-3378 - Kiribati island isn't located in Europe
[-] BO : Fixed bug PSCFI-3547 - Fatal Error on AdminOrder sorting (on "date_add" key)
[-] BO : Fixed bug PSCFI-3658 - Can't delete store image
[-] BO : Fixed bug when duplicating products
[-] BO : Fixed bugs in AdminTranslations : regex for subjectMail, correct error message
[-] BO : Fixed some code standards
[-] BO : Import - #PSCFI-2766 : Fixed wrong productCategories
[-] BO : Product Downloadable - Not possible to save a product downloadable if no expiration date
[-] BO : Proof-reading of English translation (from AdminAccess.php to AdminImages.php)
[-] BO : Proof-reading of English translation (from AdminImages.php to AdminInvoices.php)
[-] BO : Proof-reading of English translation (from AdminInvoices.php to the last file)
[-] BO : Proof-reading of Spanish translation for the Back Office
[-] BO : bug fix: Group Reduction in category that is not an integer or a percentage
[-] BO : error message "The following module(s) were not installed successfully" can now be translated
[-] BO : fix bug #PSCFI-2814 - If we add a new product in "this category" ==> result always Home in product
[-] BO : fix issue on attribute names with \n and \r characters
[-] BO : fixed bug #PSCFI-1935 - Function Category::getCategories stop respond in shop with many categories (100k and more)
[-] BO : fixed bug #PSCFI-2933 - Searchcron don't work like it should.
[-] BO : fixed bug #PSCFI-2967 - /lang-en/ instead of /en/ in robots.txt file
[-] BO : fixed bug #PSCFI-3009 - If we add a new subcategory in "this category" ==> result always in Home and not in "this category"
[-] BO : fixed bug #PSCFI-3491 - Import combinations with images: duplicate images
[-] BO : fixed bug #PSCFI-3566 - When space in url of image, im,age will not appear via csv import.
[-] BO : fixed bug #PSCFI-3577 - The categorie tree is not displayed correctly
[-] BO : fixed bug #PSCFI-3581 - Welcome video in back-office keeps appearing
[-] BO : fixed bug #PSCFI-3704 - Post install delete *.txt files prompt is unnecessary
[-] BO : fixed bug #PSCFI-3704 - Post install delete *.txt files prompt is unnecessary //bis
[-] BO : fixed bug #PSCFI-3712 - Order history cache shared between orders
[-] BO : fixed bug #PSCFI-3728 - Module ImporterOsc - importing product combination
[-] BO : fixed bug on adminAttributesGroups, now you can delete texture
[-] BO : fixed bug on creation of address
[-] BO : fixed bug when add new root category, id_parent was not home
[-] BO : fixed little issue in treeview for categories
[-] BO : if db is corrupted in tab.position, new Tab object will have a correct position
[-] BO : modules_list.xml is now uploaded by ajax, back-office will not be slowed by this external call
[-] BO : product indexation does not exhaust memory anymore when you have a (really) big catalog
[-] BO : removed fsockopen(www.prestashop.com) before the button "add module from addons"
[-] Classes : fix bug #PSCFI-3294 - storing accented words in search index cause problems => store words without accents
[-] Classes : fixed bug #PSCFI-2934 - wrong description for all languages when using a voucher and creating a new one + missing infos on customer e-mail.
[-] Classes : fixed bug #PSCFI-3123 - Possible SQL error in Product::idIsOnCategoryId
[-] Classes : fixed bug #PSCFI-3162 - Not all previous data was deleted when importing combinations.
[-] Classes : fixed bug in ObjectModel when instanciate new object with incorrect id_lang
[-] Classes : replace define for getCarriers filter by const var in Carrier class
[-] Classes : update error message
[-] Core : Added "@" to stream_context_create() calls to prevent from PHP notices
[-] Core : Added missing text templates for 4 e-mails in Spanish
[-] Core : Fixed bug #PSCFI-3638 - New tax rate in Italy (21% instead of 20%)
[-] Core : Fixed bug - You can now use 6 decimals for your shipping cost instead of 2
[-] Core : Fixed bug PSCFI-3447 - Out of stock status was applied even if stock management was disabled
[-] Core : Fixed bug PSCFI-3480 - Error w/ cache if permissions are not valid
[-] Core : Fixed bug PSCFI-3503 - Sometimes HTTP_HOST was empty
[-] Core : Fixed bug PSCFI-3538 - PNG logo was rejected for Invoices
[-] Core : Fixed bug PSCFI-3605 - Deleted dead code in Search.php
[-] Core : Proof-reading of English translation for Errors and E-mails subjects
[-] Core : Proof-reading of Spanish translation for the Errors
[-] MO : #PSCFI-2973 - Fixed wrong emailType in bestCustomer()
[-] MO : #PSCFI-2976 - ShippingEstimation (carriercompare) Error messages are more explicit
[-] MO : #PSCFI-3025 - 'Powered By' option is now saved correctly
[-] MO : #PSCFI-3039 - Birthdaypresent coupons id_currency are now set to id_default_currency
[-] MO : #PSCFI-3067 - Fixed number of friends sponsored
[-] MO : #PSCFI-3067 Fixed line break missing
[-] MO : #PSCFI-3244 Ogone, Add and update configuration screenshots
[-] MO : Authorize.net (1.2.1) and Treepodia (1.6.1) - retrocompatibility issue with PrestaShop 1.4.4 or less
[-] MO : AutoUpgrade - Disallow upgrade if "Autoupgrade allowed" is false
[-] MO : Block layered - Add where clause in "features" SQL request to filter by id_feature
[-] MO : Block layered - Bug JS when ajaxCart is disable
[-] MO : Block layered - Bug in pagination
[-] MO : Block layered - Bug with filter attribute
[-] MO : Block layered - BugFix : Be sure there is no other conditions than the three defined
[-] MO : Block layered - BugFix : Table *_lang must be renamed without this prefix
[-] MO : Block layered - BugFix filter remove link do not work
[-] MO : Block layered - BugFix with navigation history
[-] MO : Block layered - BugFix with pagination and title
[-] MO : Block layered - Clean js url (anchor)
[-] MO : Block layered - Duplicate "UL" on ajax reloading
[-] MO : Block layered - Installation failed with big amount of products (duplicate key problem)
[-] MO : Block layered - Installation with version under PS 1.4.5 musn't work
[-] MO : Block layered - Lock indexation durring instalation process if too many products
[-] MO : Block layered - Protect JS string by add slashes
[-] MO : Block layered - add addslashes and fix error javascript
[-] MO : Blocklayered - BugFix - Category tree
[-] MO : Blocklayered - FixBug with filter active
[-] MO : Blocklayered: Fix some problem with price and tax
[-] MO : Bug Fix #PSCFI-3213 - CashOnDelivery - retrocompatibility PrestaShop 1.4.3 or less
[-] MO : Bug Fixed #PSCFI-3193 in productscategory: Rounding of product prices not correct with reduction percent
[-] MO : Bug fixed #PSCFI-2291 - eBay fix on hook new order
[-] MO : Bug fixed #PSCFI-2804, Authorize.net test mode has been repaired
[-] MO : Bug fixed #PSCFI-2920 - USPS, UPS, Fedex and Canada Post, minimal weight
[-] MO : Bug fixed #PSCFI-3001 and #PSCFI-3002, PayPal refund has been fixed
[-] MO : Bug fixed #PSCFI-3479 - UPS Module (1.2.1)
[-] MO : Bug fixed on PayPal (rounding issue with tax system)
[-] MO : Bug fixed on fedex (1.2.2) - module was not returning any carrier when there was a soap exception
[-] MO : Bug fixed on fedex (1.2.3) - module was not returning any carrier when there was a fedex warning
[-] MO : BugFix #PSCFI-2898 - SentoaFriend module doesn't translate its text changing the flags from FO
[-] MO : BugFix #PSCFI-2909 - CSS attribute repeated twice
[-] MO : BugFix #PSCFI-3694 - Blocklayered: issue after modifying a filter
[-] MO : BugFix Block Layered navigation - Template BO category selector
[-] MO : BugFix in module blocklayered - Bug with feature count
[-] MO : BugFix in module blocklayered - Problemes with filters
[-] MO : BugFix in module blocklayered - add "no products" warning, don't show block layered if there is no filters to show
[-] MO : CashTicket, Fix an included tpl file
[-] MO : CashTicket. configuration verify if an existing certficate exist and add error messages
[-] MO : Dibs - Add french subscribtion link
[-] MO : Dibs - retrocompatibility PrestaShop 1.4.3 or less
[-] MO : First fix of block layered
[-] MO : Fix CashTicket, Authorize.net, Ogone, PaySafeCard and Gcheckout - retrocompatibility PrestaShop 1.4.3 or less
[-] MO : Fix Module PayPal - Preactivation warning is now retrieved in AdminHome
[-] MO : Fix Module Paypal (1.8.2) for invalid order state error
[-] MO : Fix Module USPS (1.2) #PSCFI-3189 + Some ergonomy improvments, thx to Jeff :)
[-] MO : Fix Module eBay (1.2.8) : get attribute details when import and order
[-] MO : Fix Module eBay (1.2.9) : sometimes eBay send back name longer than 32 char
[-] MO : Fix Module eBay 1.2 (retro compatibility)
[-] MO : Fix Module eBay 1.2 - Module can now retrieve order details by sku or custom label
[-] MO : Fix Module eBay 1.2 - Now handle case where there is no quantity available when importing orders
[-] MO : Fix Module eBay 1.2 - Now remove from eBay product when quantity is 0
[-] MO : Fix Mondial Relay - retrocompatibility Smarty 2 (Thx Theo ;)
[-] MO : Fix MoneyBookers - retrocompatibility PrestaShop 1.4.3 or less
[-] MO : Fix PaySafeCard - Fatal error, wrong class called
[-] MO : Fix Treepodia for retrocompatibility PrestaShop 1.3
[-] MO : Fix a SQL syntaxe error (missing "`" at the end of table name).
[-] MO : Fix installer (preactivation country)
[-] MO : Fix on Module Fedex (1.2)
[-] MO : Fix on Module Trusted Shop (1.3.1)
[-] MO : Fix on module PayPal (2.8.1) - Shop logo was not sent to PayPal Integration Evolution
[-] MO : Fix on module eBay (1.2.3)
[-] MO : Fix on module eKomi (1.1) - Display flag was always setting to off in back office
[-] MO : Fix potential bug on carts for module Ogone
[-] MO : Fix style issue for personalized theme
[-] MO : Fix style issue mondialrelay
[-] MO : Fixed a PHP comment typo / include missing (Layered navigation module)
[-] MO : Fixed bug #PSCFI-2849 - Subject Line Mailalerts new_order email is not translated
[-] MO : Fixed bug #PSCFI-2996 - Update list of online visitors works (statslive).
[-] MO : Fixed bug #PSCFI-3620 - Incorrect voucher e-mail to sponsored for %
[-] MO : Fixed bug PSCFI-2899 - {rating_url} was missing in German e-mail template
[-] MO : Fixed bug PSCFI-3210 - Fatal error (Order -> conversion_rate is empty) during OsC import
[-] MO : Fixed bug PSCFI-3416 - Fatal error in blockrss module when rss feed is malformed
[-] MO : Fixed bug PSCFI-3449 - Replaced PAYPAL_MODE_DEBUG by PAYPAL_DEBUG_MODE
[-] MO : Fixed bug PSCFI-3532 - Send To Friend module - Issues w/ product name
[-] MO : Fixed bug PSCFI-3580 - The bookmark link wasn't displayed in Google Chrome
[-] MO : Fixed code standards on layered navigation module
[-] MO : Fixed several bugs and code standards on the layered navigation module
[-] MO : Fixed several bugs on the layered navigation module
[-] MO : Module Moneybookers (1.6.1) - Small fixes
[-] MO : Module Shipping Estimator (1.1) : Bug Fixed #PSCFI-3586
[-] MO : Module eBay (1.3.1) - fix on PS 1.3 (problem with pictures and server cache)
[-] MO : Module fedex has been fixed (beta link was in the wsdl)
[-] MO : MondialRelay : Fix the display of the fetched relay points
[-] MO : MondialRelay : Recode of the checkout Process
[-] MO : MondialRelay, Fix accent problem during the checkout process and add translation
[-] MO : MondialRelay, Fix bqSQL compatibility
[-] MO : MondialRelay, Fix bug when changing information about a shipping, Fix French translation
[-] MO : MondialRelay, Fix phone validation and language destination during the generating tickers process
[-] MO : MondialRelay, Fix unselected relay point for the checkout process
[-] MO : MondialRelay, Handle error when address is incorrect durint the fetched relay point process. Review config style.
[-] MO : MondialRelay, add comment to a better understanding of the ('body').prepend
[-] MO : MondialRelay, delete console.log :)
[-] MO : MondialRelay, rewrite code for PrestaShop 1.3 to keep compatibility using jQuery
[-] MO : MondialRelay, skip the zipcode checking when the format isn't set
[-] MO : Mondialrelay, Fix an added Gmap element into a undeclared id block for some PrestaShop version.
[-] MO : Mondialrelay, add translation fields
[-] MO : Mondialrelay, fix missing iconv function
[-] MO : Moneybookers, text and url into the config
[-] MO : Ogone fix - class_exists with autoload was making trouble on PrestaShop.1.3
[-] MO : PaySafeCard, Fix conflict with PrepaidServices when cashticket is loaded too, add new errors message and configuration remember correctly the configuration set by an user
[-] MO : PaysafeCard, hide password
[-] MO : Prevent from a PHP warning in productcomments
[-] MO : Remove Tm4b module
[-] MO : Retrocompatibility 1.3 on modules keeping security check
[-] MO : Treepodia, retrocompatibility to PrestaShop 1.3
[-] MO : autoupgrade - Fixed #PSCFI-3702 - english expressions fix
[-] MO : autoupgrade - fixed bug when restoring, thanks to Broceliande
[-] MO : autoupgrade : Fixed bug when upgrading database. Thanks a lots to Atch and Nommam- for betatesting
[-] MO : blocklanguages - Fixed method call
[-] MO : eBay (1.2.1) fix - module was making duplicate order and address customer
[-] MO : fix autoupgrade install when 1.4.4.0
[-] MO : fix issue on followup module, subjects of mail are not translated
[-] MO : fixed bug #PSCFI-2940 - Oscommerce import - TECHNICAL ERROR Details: Fatal error (Customer -> passwd =
[-] MO : fixed bug #PSCFI-2997 - duplicates manufacturers when delete is checked
[-] MO : fixed bug #PSCFI-3090 - in gsitemap.xml, product lines are duplicated
[-] MO : fixed bug #PSCFI-3253 - Cannot set time limit in safe mode in themeinstallator.php
[-] MO : fixed bug #PSCFI-3255 - productscategory generates link to product with ID=0
[-] MO : fixed bug #PSCFI-3300 - So colissimo : when customer change delivery mode
[-] MO : fixed bug with module dateofdelivery not taking into account additional time for out of stock products
[-] MO : fixed extra if/else condition in editorial module, thanks to Atch
[-] MO : fixed gift bug when socolissimo is selected
[-] MO : fixed small bug in shopImport
[-] MO : moneybookers remove an incorrect char in a sentence
[-] MO : referralProgram - Fixed 'undefined offsets' because of selected of languages
[-] MO : shopimporter : patch to correct a mistake naming column in the database
[-] MO : shopimporter : fix error encodage
[-] MO : shopimpoter fix bug currency
[-] MO : socolissimo is now compatible with One page checkout
[-] MO : statssearch couldn't save searches anymore (mysql syntax error)
[-] MO : unused variable removed in google analytics module
[-] WS : Fixed PSCFI-3393
[-] WS : Fixed bug PSCFI-3506 - id_employee was missing in setCurrentState() method
[-] PDF : Bug Fixed #PSCFI-2208 - Incorrect PDF for not taxed groups
[-] PDF : Bug Fixed #PSCFI-3124 - Wrong details on order slip
[-] PDF : Bug Fixed #PSCFI-3254 - US States abreviations are incorrect
[-] PDF : Free text utf8ized
[-] TR : Typo on "United States"
[-] LO : UK taxe not associated to UK tax rules (related to #PSCFI-3266 & #PSCFI-3164)
####################################
# v1.4.4.1 - NONE (2011-08-25) #
####################################
@@ -45,7 +493,6 @@ Release Notes for PrestaShop 1.5
[-] Security: security fix on AdminHome file
####################################
>>>>>>> .merge-right.r8206
# v1.4.4.0 - 7803 (2011-07-28) #
####################################

View File

@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
NAME: Prestashop 1.4.4.1
VERSION: 1.4.4.1
NAME: Prestashop 1.4.5.1
VERSION: 1.4.5.1
VORBEREITUNG
===========

View File

@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
NAME: Prestashop 1.4.4.1
VERSION: 1.4.4.1
NAME: Prestashop 1.4.5.1
VERSION: 1.4.5.1
PREPARATION
===========
@@ -31,8 +31,7 @@ To install PrestaShop, you need a remote web server or on your computer (MAMP),
You'll need access to phpMyAdmin to create a database and to indicate the information in the database in the installer.
If you do not host and unable to create your store, we offer a turnkey store, which lets you create your online store in less than 10 minutes without any technical knowledge.
We invite you to visit:
http://www.prestabox.com/
We invite you to visit: http://www.prestabox.com/
INSTALLATION
============
@@ -43,28 +42,23 @@ If you have any PHP error, perhaps you don't have PHP5 or you need to activate i
Please go to our forum to find pre-installation settings (PHP 5, htaccess) for certain hosting services (1&1, Free, Lycos, OVH, Infomaniak, Amen, GoDaddy, etc).
English webhost specifics settings :
http://www.prestashop.com/forums/viewthread/2946/installation_configuration___upgrade/preinstallation_settings_php_5_htaccess_for_certain_hosting_services
http://www.prestashop.com/forums/topic/2946-pre-installation-settings-php-5-htaccess-for-certain-hosting-services/
If you don't find any solution to launch installer, please post on our forum :
http://www.prestashop.com/forums/viewforum/7/installation_configuration___upgrade
http://www.prestashop.com/forums/forum/7-installing-prestashop/
There are always solutions for your issues ;-)
DOCUMENTATION
=============
For any extra documentation (how-to), please read our wiki :
http://www.prestashop.com/wiki/
For any extra documentation (how-to), please read our Online documentation :
http://doc.prestashop.com/dashboard.action
FORUMS
======
You can also discute, help and contribute with PrestaShop community on our forums :
You can also discuss, help and contribute with PrestaShop community on our forums :
http://www.prestashop.com/forums/
Thanks for downloading and using PrestaShop e-commerce open-source solution !
==========================
= The PrestaTeam' =
= www.PrestaShop.com =
==========================
Thanks for downloading and using PrestaShop e-commerce Open-source solution !

View File

@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
NAME: Prestashop 1.4.4.1
VERSION: 1.4.4.1
NAME: Prestashop 1.4.5.1
VERSION: 1.4.5.1
PREPARACI<EFBFBD>N
===========

View File

@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
NAME: Prestashop 1.4.4.1
VERSION: 1.4.4.1
NAME: Prestashop 1.4.5.1
VERSION: 1.4.5.1
PREPARATION
===========

View File

@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
NAME: Prestashop 1.4.4.1
VERSION: 1.4.4.1
NAME: Prestashop 1.4.5.1
VERSION: 1.4.5.1
PREPARAZIONE
===========

View File

@@ -558,13 +558,15 @@ function verifyMail()
if (ret.getAttribute("result") == "ok")
{
$("#mailResultCheck").addClass("okBlock").removeClass("errorBlock").removeClass('infosBlock').html(mailSended);
$('#mailResultCheck').addClass("okBlock").removeClass("errorBlock").removeClass('infosBlock').html(mailSended+' '+$('#testEmail').val());
$('#mailResultCheck').css('margin-top', '10px');
mailIsOk = true;
}
else
{
mailIsOk = false;
$("#mailResultCheck").addClass("errorBlock").removeClass("okBlock").removeClass('infosBlock').html(txtError[26]);
$('#mailResultCheck').css('margin-top', '10px');
}
}
}

View File

@@ -113,6 +113,7 @@ if ($lm->getIncludeTradFilename())
<meta http-equiv="Cache" content="no store" />
<meta http-equiv="Expires" content="-1" />
<meta name="robots" content="noindex" />
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
<title><?php echo sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?></title>
<link rel="stylesheet" type="text/css" media="all" href="view.css"/>
<script type="text/javascript" src="<?php echo PS_BASE_URI ?>js/jquery/jquery-1.4.4.min.js"></script>
@@ -129,12 +130,12 @@ if ($lm->getIncludeTradFilename())
//localWords
var Step1Title = "<?php echo sprintf(lang('Welcome to the PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step2title = "<?php echo lang('System Compatibility').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step3title = "<?php echo lang('System Configuration').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step3title = "<?php echo lang('Database Configuration').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step4title = "<?php echo lang('Shop Configuration').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step5title = "<?php echo lang('Ready, set, go!').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step6title = "<?php echo lang('Disclaimer').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step7title = "<?php echo lang('System Compatibility').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step8title = "<?php echo lang('Errors while updating...').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step8title = "<?php echo lang('Error(s) while updating...').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var step9title = "<?php echo lang('Ready, set, go!').' - '.sprintf(lang('PrestaShop %s Installer'), INSTALL_VERSION); ?>";
var txtNext = "<?php echo lang('Next')?>"
var txtDbLoginEmpty = "<?php echo lang('Please set a database login'); ?>";
@@ -150,7 +151,7 @@ if ($lm->getIncludeTradFilename())
var txtDbCreated = "<?php echo lang('Database is created!'); ?>";
var testMsg = "<?php echo lang('This is a test message, your server is now available to send email'); ?>";
var testSubject = "<?php echo lang('Test message - Prestashop'); ?>";
var mailSended = "<?php echo lang('An email has been sent!'); ?>";
var mailSended = "<?php echo lang('A test e-mail has been sent to'); ?>";
var mailSubject = "<?php echo lang('Congratulation, your online shop is now ready!'); ?>";
var txtTabUpdater1 = "<?php echo lang('Welcome'); ?>";
var txtTabUpdater2 = "<?php echo lang('Disclaimer'); ?>";
@@ -158,24 +159,24 @@ if ($lm->getIncludeTradFilename())
var txtTabUpdater4 = "<?php echo lang('Update is complete!'); ?>";
var txtTabInstaller1 = "<?php echo lang('Welcome'); ?>";
var txtTabInstaller2 = "<?php echo lang('Verify system compatibility'); ?>";
var txtTabInstaller3 = "<?php echo lang('System Configuration'); ?>";
var txtTabInstaller3 = "<?php echo lang('Database Configuration'); ?>";
var txtTabInstaller4 = "<?php echo lang('Shop Configuration'); ?>";
var txtTabInstaller5 = "<?php echo lang('Installation is complete!'); ?>";
var txtConfigIsOk = "<?php echo lang('Your configuration is valid, click next to continue!'); ?>";
var txtConfigIsOk = "<?php echo lang('Your configuration is valid, click \"Next\" to continue!'); ?>";
var txtConfigIsNotOk = "<?php echo lang('Your configuration is invalid. Please fix the issues below:'); ?>";
var txtError = new Array();
txtError[0] = "<?php echo lang('Required field'); ?>";
txtError[1] = "<?php echo lang('Too long!'); ?>";
txtError[1] = "<?php echo lang('Too long'); ?>";
txtError[2] = "<?php echo lang('Fields are different!'); ?>";
txtError[3] = "<?php echo lang('This email adress is wrong!'); ?>";
txtError[4] = "<?php echo lang('Impossible to send the email!'); ?>";
txtError[5] = "<?php echo lang('Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'); ?>";
txtError[3] = "<?php echo lang('This e-mail address is invalid!'); ?>";
txtError[4] = "<?php echo lang('Cannot send the email!'); ?>";
txtError[5] = "<?php echo lang('Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, otherwise please create a file named settings.inc.php in config directory.'); ?>";
txtError[6] = "<?php echo lang('Can\'t write settings file, please create a file named settings.inc.php in config directory.'); ?>";
txtError[7] = "<?php echo lang('Impossible to upload the file!'); ?>";
txtError[7] = "<?php echo lang('Cannot upload the file!'); ?>";
txtError[8] = "<?php echo lang('Your database connection settings are not valid. Please check your server, name, login and prefix.'); ?>";
txtError[9] = "<?php echo lang('Impossible to read the content of a MySQL content file.'); ?>";
txtError[10] = "<?php echo lang('Impossible the access the a MySQL content file.'); ?>";
txtError[9] = "<?php echo lang('Cannot read the content of a MySQL data file.'); ?>";
txtError[10] = "<?php echo lang('Cannot access the a MySQL data file.'); ?>";
txtError[11] = "<?php echo lang('Error while inserting data in the database:'); ?>";
txtError[12] = "<?php echo lang('The password is incorrect (alphanumeric string at least 8 characters).'); ?>";
txtError[14] = "<?php echo lang('A Prestashop database already exists, please drop it or change the prefix.'); ?>";
@@ -183,13 +184,13 @@ if ($lm->getIncludeTradFilename())
txtError[16] = "<?php echo lang('This is not a valid image file.'); ?>";
txtError[17] = "<?php echo lang('Error while creating the /config/settings.inc.php file.'); ?>";
txtError[18] = "<?php echo lang('Error:'); ?>";
txtError[19] = "<?php echo lang('This PrestaShop database already exists. Please revalidate your authentication informations to the database.'); ?>";
txtError[19] = "<?php echo lang('This PrestaShop database already exists. Please revalidate your authentication information to the database.'); ?>";
txtError[22] = "<?php echo lang('An error occurred while resizing the picture.'); ?>";
txtError[23] = "<?php echo lang('Database connection is available!'); ?>";
txtError[24] = "<?php echo lang('Database Server is available but database is not found'); ?>";
txtError[25] = "<?php echo lang('Database Server is not found. Please verify the login, password and server fields.'); ?>";
txtError[24] = "<?php echo lang('Database server is available but database was not found'); ?>";
txtError[25] = "<?php echo lang('Database server was not found. Please verify the login, password and server fields.'); ?>";
txtError[26] = "<?php echo lang('An error occurred while sending email, please verify your parameters.'); ?>";
txtError[37] = "<?php echo lang('Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'); ?>";
txtError[37] = "<?php echo lang('Cannot write the image /img/logo.jpg. If this image already exists, please delete it.'); ?>";
txtError[38] = "<?php echo lang('The uploaded file exceeds the upload_max_filesize directive in php.ini'); ?>";
txtError[39] = "<?php echo lang('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'); ?>";
txtError[40] = "<?php echo lang('The uploaded file was only partially uploaded'); ?>";
@@ -197,11 +198,11 @@ if ($lm->getIncludeTradFilename())
txtError[42] = "<?php echo lang('Missing a temporary folder'); ?>";
txtError[43] = "<?php echo lang('Failed to write file to disk'); ?>";
txtError[44] = "<?php echo lang('File upload stopped by extension'); ?>";
txtError[45] = "<?php echo lang('Cannot convert your database\'s data to utf-8.'); ?>";
txtError[45] = "<?php echo lang('Cannot convert your database\'s data to UTF-8.'); ?>";
txtError[46] = "<?php echo lang('Invalid shop name'); ?>";
txtError[47] = "<?php echo lang('Your firstname contains some invalid characters'); ?>";
txtError[48] = "<?php echo lang('Your lastname contains some invalid characters'); ?>";
txtError[49] = "<?php echo lang('Your database server does not support the utf-8 charset.'); ?>";
txtError[49] = "<?php echo lang('Your database server does not support the UTF-8 charset.'); ?>";
txtError[50] = "<?php echo lang('Your MySQL server doesn\'t support this engine, please use another one like MyISAM'); ?>";
txtError[51] = "<?php echo lang('The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'); ?>";
txtError[52] = "<?php echo lang('Invalid catalog mode'); ?>";
@@ -255,13 +256,13 @@ if ($lm->getIncludeTradFilename())
<body>
<div id="noJavaScript">
<?php echo lang('This application need you to activate Javascript to correctly work.'); ?>
<?php echo lang('This application needs you to activate Javascript to correctly work.'); ?>
</div>
<div id="container">
<div id="header" class="clearfix">
<ul id="headerLinks">
<li class="lnk_forum"><a href="http://www.prestashop.com/forums/" target="_blank"><?php echo lang('Forum'); ?></a></li>
<li class="lnk_forum"><a href="http://www.prestashop.com/forums/" target="_blank"><?php echo lang('Forums'); ?></a></li>
<li class="lnk_blog last"><a href="http://www.prestashop.com/blog/"><?php echo lang('Blog'); ?></a></li>
<?php if ((isset($_GET['language']) AND $_GET['language'] == 1) OR $lm->getIsoCodeSelectedLang() == 'fr'): ?>
<li id="phone_block" class="last">
@@ -295,7 +296,7 @@ if ($lm->getIncludeTradFilename())
<div class="content">
<p class="title"><?php echo lang('Need help?'); ?></p>
<p class="title_down"><?php echo lang('All tips and advice about PrestaShop'); ?></p>
<p class="title_down"><?php echo lang('PrestaShop tips and advice'); ?></p>
</div>
</div><!-- /end help -->
</div><!-- /end leftpannel -->
@@ -318,18 +319,18 @@ if ($lm->getIncludeTradFilename())
<h2 id="welcome-title"><?php echo lang('Welcome to the PrestaShop '.INSTALL_VERSION.' Installer.'); ?></h2>
<script type="text/javascript">$('#welcome-title').html(Step1Title);</script>
<p><?php echo lang('Please allow 5-15 minutes to complete the installation process.')?></p>
<p><?php echo lang('The PrestaShop Installer will do most of the work in just a few clicks.')?><br /><?php echo lang('However, you must know how to do the following manually:')?></p>
<p><?php echo lang('Please allow 10-15 minutes to complete the installation process.')?></p>
<p><?php echo lang('The PrestaShop Installer will do most of the work for you in just a few clicks.')?><br /><br />
<?php echo lang('However, you must know how to do the following:')?></p>
<ul>
<li><?php echo lang('Set permissions on folders & subfolders using Terminal or an FTP client')?></li>
<li><?php echo lang('Access and configure PHP 5.0+ on your hosting server')?></li>
<li><?php echo lang('Back up your database and all application files (update only)')?></li>
<li><?php echo lang('Set permissions on folders & subfolders using an FTP client')?></li>
<li><?php echo lang('Create a MySQL database using phpMyAdmin (or by asking your hosting provider)')?></li>
</ul>
<p>
<?php echo lang('For more information, please consult our') ?> <a href="http://www.prestashop.com/wiki/Getting_Started/"><?php echo lang('online documentation') ?></a>.
<?php echo lang('For more information, please consult our') ?> <a href="http://doc.prestashop.com/display/PS14/Getting+Started"><?php echo lang('online documentation') ?></a>.
</p>
<h2><?php echo lang('Choose the installer language:')?></h2>
<h2><?php echo lang('Choose your prefered language for the installation:')?></h2>
<form id="formSetInstallerLanguage" action="<?php $_SERVER['REQUEST_URI']; ?>" method="get">
<ul id="langList" style="line-height: 20px;">
<?php foreach ($lm->getAvailableLangs() AS $lang): ?>
@@ -344,15 +345,21 @@ if ($lm->getIncludeTradFilename())
</form>
<h3 class="no-margin"><?php echo lang('Did you know?'); ?></h3>
<p>
<?php echo lang('Prestashop and community offers over 40 different languages for free download on'); ?> <a href="http://www.prestashop.com" target="_blank">http://www.prestashop.com</a>
<?php
$isoForLink = (in_array($lm->getIsoCodeSelectedLang(), array('fr', 'it', 'de', 'en', 'es')) ? $lm->getIsoCodeSelectedLang() : 'en');
echo lang('Prestashop and its community offers over 40 different languages for free download at');
?><br /><a href="http://www.prestashop.com/<?php echo $isoForLink; ?>/downloads/#lang_pack" target="_blank">http://www.prestashop.com/<?php echo $isoForLink; ?>/downloads/#lang_pack</a>
</p>
<h2><?php echo lang('Installation method')?></h2>
<h2><?php echo lang('What do you want to do?')?></h2>
<form id="formSetMethod" action="<?php $_SERVER['REQUEST_URI']; ?>" method="post">
<p><input <?php echo (!($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion)) ? 'checked="checked"' : '' ?> type="radio" value="install" name="typeInstall" id="typeInstallInstall"/><label for="typeInstallInstall"><?php echo lang('Installation : complete install of the PrestaShop Solution')?></label></p>
<p <?php echo ($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion) ? '' : 'class="disabled"'; ?>><input <?php echo ($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion) ? 'checked="checked"' : 'disabled="disabled"'; ?> type="radio" value="upgrade" name="typeInstall" id="typeInstallUpgrade"/><label <?php echo ($oldversion === false) ? 'class="disabled"' : ''; ?> for="typeInstallUpgrade"><?php echo lang('Upgrade: get the latest stable version!')?> <?php echo ($oldversion === false) ? lang('(no old version detected)') : ("(".( ($tooOld) ? lang('the already installed version detected is too old, no more update available') : ($installOfOldVersion ? lang('the already installed version detected is too recent, no update available') : lang('installed version detected').' : '.$oldversion )).")") ?></label></p>
<p><input <?php echo (!($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion)) ? 'checked="checked"' : '' ?> type="radio" value="install" name="typeInstall" id="typeInstallInstall" style="vertical-align: middle;" /> <label for="typeInstallInstall"><?php echo lang('I want to').' <b>'.lang('install').'</b> '.lang('a new online shop with PrestaShop'); ?></label></p>
<p style="font-style: italic;"><?php echo lang('- or -'); ?></p>
<p <?php echo ($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion) ? '' : 'class="disabled"'; ?>><input <?php echo ($oldversion AND !$tooOld AND !$sameVersions AND !$installOfOldVersion) ? 'checked="checked"' : 'disabled="disabled"'; ?> type="radio" value="upgrade" name="typeInstall" id="typeInstallUpgrade" style="vertical-align: middle;" /> <label <?php echo ($oldversion === false) ? 'class="disabled"' : ''; ?> for="typeInstallUpgrade"><?php echo lang('I want to').' <b>'.lang('update').'</b> '.lang('my existing PrestaShop to a newer version'); ?> <?php echo ($oldversion === false) ? lang('(No previous version detected)') : ("(".(($tooOld) ? lang('Your current version is too old, updates are possible only from version').' '.MINIMUM_VERSION_TO_UPDATE.' '.lang('and higher') : ($installOfOldVersion ? lang('Your current version is already up-to-date') : lang('Currently installed version detected:').' <b>v'.$oldversion.'</b>')).")") ?></label></p>
</form>
<h2><?php echo lang('Licenses Agreement')?></h2>
<h2><?php echo lang('License Agreement')?></h2>
<div style="height:200px; border:1px solid #ccc; margin-bottom:8px; padding:5px; background:#fff; overflow: auto; overflow-x:hidden; overflow-y:scroll;">
<strong><?php echo lang('PrestaShop core is released under the OSL 3.0 while PrestaShop modules and themes are released under the AFL 3.0.')?></strong>
<h3>Core: Open Software License ("OSL") v. 3.0</h3>
@@ -416,7 +423,7 @@ if ($lm->getIncludeTradFilename())
<div class="sheet clearfix" id="sheet_require">
<div class="contentTitle">
<h1><?php echo lang('System and permissions')?></h1>
<h1><?php echo lang('System Compatibility')?></h1>
<ul id="stepList_2" class="stepList clearfix">
<li class="ok">Etape 1</li>
@@ -427,21 +434,21 @@ if ($lm->getIncludeTradFilename())
</ul>
</div>
<h2><?php echo lang('Required set-up. Please verify the following checklist items are true.')?></h2>
<h2><?php echo lang('Required set-up. Please verify the following checklist items:')?></h2>
<p>
<?php echo lang('If you have any questions, please visit our '); ?>
<a href="http://www.prestashop.com/wiki/Getting_Started/ " target="_blank"><?php echo lang('Documentation Wiki'); ?></a>
<a href="http://doc.prestashop.com/display/PS14/Getting+Started " target="_blank"><?php echo lang('Online documentation'); ?></a>
<?php echo lang('and/or'); ?>
<a href="http://www.prestashop.com/forums/" target="_blank"><?php echo lang('Community Forum'); ?></a><?php echo lang('.'); ?>
</p>
<h3 id="resultConfig"></h3>
<ul id="required">
<li class="title"><?php echo lang('PHP parameters:')?></li>
<li class="title"><?php echo lang('PHP settings (for assistance, ask your hosting provider):')?></li>
<li class="required first"><?php echo lang('PHP 5.0 or later installed')?></li>
<li class="required"><?php echo lang('File upload allowed')?></li>
<li class="required"><?php echo lang('Create new files and folders allowed')?></li>
<li class="required"><?php echo lang('Creation of new files and folders allowed')?></li>
<li class="required"><?php echo lang('GD Library installed')?></li>
<li class="required"><?php echo lang('MySQL support is on')?></li>
<li class="title"><?php echo lang('Write permissions on files and folders:')?></li>
@@ -460,9 +467,9 @@ if ($lm->getIncludeTradFilename())
<li class="required">/download</li>
</ul>
<h3><?php echo lang('Optional set-up')?></h3>
<h3 style="padding-bottom: 0;"><?php echo lang('Optional set-up')?></h3>
<ul id="optional">
<li class="title"><?php echo lang('PHP parameters:')?></li>
<li class="title"><?php echo lang('PHP settings (for assistance, ask your hosting provider):')?></li>
<li class="optional"><?php echo lang('Open external URLs allowed')?></li>
<li class="optional"><?php echo lang('PHP register global option is off (recommended)')?></li>
<li class="optional"><?php echo lang('GZIP compression is on (recommended)')?></li>
@@ -471,10 +478,8 @@ if ($lm->getIncludeTradFilename())
<li class="optional"><?php echo lang('Dom extension loaded')?></li>
</ul>
<h3 style="display:none;" id="resultConfigHelper"><?php echo lang('If you do not know how to fix these issues, use turnkey solution PrestaBox at');?> <a href="http://www.prestabox.com">http://www.prestabox.com</a></h3>
<p><input class="button" value="<?php echo lang('Refresh these settings')?>" type="button" id="req_bt_refresh"/></p>
<p><input class="button" value="<?php echo lang('Check my settings again')?>" type="button" id="req_bt_refresh"/><br /><br /></p>
</div>
<div class="sheet clearfix" id="sheet_db">
<div class="contentTitle">
<h1><?php echo lang('Database configuration')?></h1>
@@ -489,8 +494,8 @@ if ($lm->getIncludeTradFilename())
</div>
<div id="dbPart">
<h2><?php echo lang('Configure your database by filling out the following fields:')?></h2>
<p><?php echo lang('You have to create a database, help available in readme_en.txt'); ?></p>
<h2 style="padding-bottom: 0;"><?php echo lang('Configure your database by filling out the following fields:')?></h2>
<p style="padding: 10px 0 0 0;"><?php echo lang('Please create a MySQL database and then verify your settings below. If you need assistance, please ask your hosting provider for this information.'); ?></p>
<form id="formCheckSQL" class="aligned" action="<?php $_SERVER['REQUEST_URI']; ?>" onsubmit="verifyDbAccess(); return false;" method="post">
<p class="first" style="margin-top: 15px;">
<label for="dbServer"><?php echo lang('Server:')?> </label>
@@ -501,11 +506,11 @@ if ($lm->getIncludeTradFilename())
<input size="10" class="text" type="text" id="dbName" value="prestashop"/>
</p>
<p>
<label for="dbLogin"><?php echo lang('Login:')?> </label>
<label for="dbLogin"><?php echo lang('Database login:')?> </label>
<input class="text" size="10" type="text" id="dbLogin" value="root"/>
</p>
<p>
<label for="dbPassword"><?php echo lang('Password:')?> </label>
<label for="dbPassword"><?php echo lang('Database password:')?> </label>
<input class="text" autocomplete="off" size="10" type="password" id="dbPassword"/>
</p>
<p>
@@ -519,8 +524,8 @@ if ($lm->getIncludeTradFilename())
<label for="db_prefix"><?php echo lang('Tables prefix:')?></label>
<input class="text" type="text" id="db_prefix" value="ps_"/>
</p>
<p class="aligned">
<input id="btTestDB" class="button" type="submit" value="<?php echo lang('Verify now!')?>"/>
<p class="aligned" style="background: none;">
<input id="btTestDB" class="button" type="submit" value="<?php echo lang('Verify my database settings')?>"/>
</p>
<p id="dbResultCheck" style="display:none;"></p>
</form>
@@ -529,20 +534,21 @@ if ($lm->getIncludeTradFilename())
<div id="dbTableParam">
<form action="#" method="post" onsubmit="createDB(); return false;">
<h2><?php echo lang('Installation type')?></h2>
<p id="dbModeSetter" style="line-height: 20px;">
<input value="lite" type="radio" name="db_mode" id="db_mode_simple" style="vertical-align: middle;" /> <label for="db_mode_simple"><?php echo lang('Simple mode: Basic installation')?> <span><?php echo lang('(FREE)'); ?></span></label><br />
<input value="full" type="radio" name="db_mode" checked="checked" id="db_mode_complet" style="vertical-align: middle;" /> <label for="db_mode_complet"><?php echo lang('Full mode: includes').' <b>'.lang('100+ additional modules').'</b> '.lang('and demo products'); ?> <span><?php echo lang('(FREE too!)'); ?></span></label>
<p id="dbModeSetter" style="line-height: 20px; padding-bottom: 0;">
<input value="lite" type="radio" name="db_mode" id="db_mode_simple" style="vertical-align: middle;" /> <label for="db_mode_simple"><?php echo lang('Lite mode: Basic installation')?> <span><?php echo lang('(FREE)'); ?></span></label><br />
<span style="font-style: italic;"><?php echo lang('- or -'); ?></span><br />
<input value="full" type="radio" name="db_mode" checked="checked" id="db_mode_complet" style="vertical-align: middle;" /> <label for="db_mode_complet"><?php echo lang('Full mode: includes core modules,').' <b>'.lang('100+ additional modules').'</b> '.lang('and demo products'); ?> <span><?php echo lang('(FREE)'); ?></span></label>
</p>
</form>
<p id="dbCreateResultCheck"></p>
</div>
<div id="mailPart">
<h2><?php echo lang('E-mail delivery set-up')?></h2>
<h2><?php echo lang('E-mail configuration')?></h2>
<p id="configsmtp">
<input type="checkbox" id="set_stmp" style="vertical-align: middle;" /><label for="set_stmp"><?php echo lang('Configure SMTP manually (advanced users only)'); ?></label><br/>
<span class="userInfos"><?php echo lang('By default, the PHP \'mail()\' function is used'); ?></span>
<span class="userInfos"><?php echo lang('By default, the PHP \'mail()\' function is used (recommended)'); ?></span>
</p>
<div id="mailSMTPParam">
@@ -577,11 +583,10 @@ if ($lm->getIncludeTradFilename())
</form>
</div>
<p>
<p style="padding-bottom: 0;">
<input class="text" id="testEmail" type="text" size="15" value="<?php echo lang('enter@your.email'); ?>" /> &nbsp;
<input id="btVerifyMail" class="button" type="submit" value="<?php echo lang('Send me a test email!'); ?>" />
</p>
<p id="mailResultCheck"></p>
</div>
</div>
@@ -601,7 +606,7 @@ if ($lm->getIncludeTradFilename())
</div>
<div id="infosShopBlock">
<h2><?php echo lang('Merchant info'); ?></h2>
<h2><?php echo lang('Shop settings and merchant account information'); ?></h2>
<div class="field">
<label for="infosShop" class="aligned"><?php echo lang('Shop name:'); ?> </label>
<span class="contentinput">
@@ -632,12 +637,12 @@ if ($lm->getIncludeTradFilename())
<option value="16"><?php echo lang('Mobile and Telecom'); ?></option>
<option value="17"><?php echo lang('Services'); ?></option>
<option value="18"><?php echo lang('Shoes and accessories'); ?></option>
<option value="19"><?php echo lang('Sport and Entertainment'); ?></option>
<option value="19"><?php echo lang('Sports and Entertainment'); ?></option>
<option value="20"><?php echo lang('Travel'); ?></option>
<option value="0"><?php echo lang('Other activity...'); ?></option>
</select>
</span>
<p class="userInfos aligned"><?php echo lang('This information isn\'t required, it will be used for statistical purposes. This information doesn\'t change anything in your store.'); ?></p>
<p class="userInfos aligned"><?php echo lang('This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.'); ?></p>
</div>
<div class="field">
<label for="infosCountry" class="aligned"><?php echo lang('Default country:'); ?></label>
@@ -649,7 +654,7 @@ if ($lm->getIncludeTradFilename())
<span id="resultInfosCountry" class="result aligned"></span>
</div>
<div class="field">
<label for="infosTimezone" class="aligned"><?php echo lang('Shop\'s timezone:'); ?></label>
<label for="infosTimezone" class="aligned"><?php echo lang('Shop timezone:'); ?></label>
<span class="contentinput">
<select name="infosTimezone" id="infosTimezone">
<option disabled="disabled"><?php echo lang('-- Select your timezone --'); ?></option>
@@ -658,11 +663,11 @@ if ($lm->getIncludeTradFilename())
<span id="resultInfosTimezone" class="result aligned"></span>
</div>
<div class="field">
<label for="infosLogo" class="aligned logo"><?php echo lang('Shop logo'); ?> : </label>
<label for="infosLogo" class="aligned logo"><?php echo lang('Shop logo:'); ?></label>
<span class="contentinput">
<p id="alignedLogo"><img id="uploadedImage" src="<?php echo PS_BASE_URI ?>img/logo.jpg" alt="Logo" /></p>
</span>
<p class="userInfos aligned"><?php echo lang('recommended dimensions: 230px X 75px'); ?></p>
<p class="userInfos aligned"><?php echo lang('Recommended dimensions:') ?><br />230px x 75px</p>
<span id="inputFileLogo" class="contentinput">
<input type="file" onchange="uploadLogo()" name="fileToUpload" id="fileToUpload"/>
@@ -670,14 +675,14 @@ if ($lm->getIncludeTradFilename())
<span id="resultInfosLogo" class="result"></span>
</div>
<div class="field">
<label for="catalogMode" class="aligned"><?php echo lang('Catalog mode:'); ?></label>
<label for="catalogMode" class="aligned"><?php echo lang('Catalog mode only:'); ?></label>
<span class="contentinput">
<input type="radio" name="catalogMode" id="catalogMode_1" value="1" />
<label for="catalogMode_1" class="radiolabel"><?php echo lang('Yes'); ?></label>&nbsp; &nbsp;
<input type="radio" name="catalogMode" id="catalogMode_0" value="0" checked="checked"/>
<label for="catalogMode_0" class="radiolabel"><?php echo lang('No'); ?></label>
</span>
<p class="userInfos aligned"><?php echo lang('If you activate this feature, all purchase features will be disabled. You can activate this feature later in your back office'); ?></p>
<p class="userInfos aligned"><?php echo lang('If you activate this feature, all purchasing will be disabled. However, you will be able to enable purchasing later in your Back Office.'); ?></p>
</div>
<div class="field">
@@ -718,17 +723,14 @@ if ($lm->getIncludeTradFilename())
</span>
<span id="resultInfosPasswordRepeat" class="result aligned"></span>
</div>
<div class="field" id="contentInfosNotification">
<span class="contentinput">
<input type="checkbox" id="infosNotification" class="aligned" style="vertical-align: middle;" /><label for="infosNotification"><?php echo lang('Receive notifications by e-mail'); ?></label><br/>
<input type="checkbox" id="infosNotification" class="aligned" style="vertical-align: middle;" /> <label for="infosNotification"><?php echo lang('Receive this information by e-mail'); ?></label><br/>
<span id="resultInfosNotification" class="result aligned"></span>
</span>
<p class="userInfos aligned"><?php echo lang('If you check this box and your mail configuration is wrong, your installation might be blocked. If so, please uncheck the box to go to the next step.'); ?></p>
<p class="userInfos aligned"><?php echo lang('Warning: If you check this box and your e-mail configuration is incorrect, you might not be able to continue the installation.'); ?></p>
</div>
</div>
<div id="benefitsBlock" style="display: none;">
<!-- Partner Modules -->
<?php
@@ -971,8 +973,8 @@ if ($lm->getIncludeTradFilename())
<div class="clearfix">
<h2><?php echo lang('Your installation is finished!'); ?></h2>
<p><?php echo lang('You have just installed and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'); ?></p>
<p><?php echo lang('Here are your shop information. You can modify them once logged in.'); ?></p>
<p><?php echo lang('You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'); ?></p>
<p><?php echo lang('Here is your shop information. You can modify it once you are logged in.'); ?></p>
<table cellpadding="0" cellspacing="0" border="0" id="resultInstall" width="620">
<tr class="odd">
<td width="220" class="label"><?php echo lang('Shop name:'); ?></td>
@@ -992,18 +994,18 @@ if ($lm->getIncludeTradFilename())
</tr>
</table>
<h3 class="infosBlock"><?php echo lang('WARNING: For more security, you must delete the \'install\' folder.'); ?></h3>
<h3 class="infosBlock"><?php echo lang('WARNING: For security purposes, you must delete the "install" folder.'); ?></h3>
<div id="boBlock" class="blockInfoEnd clearfix">
<img src="img/visu_boBlock.png" />
<h3><?php echo lang('Back Office'); ?></h3>
<p class="description"><?php echo lang('Manage your store with your back office. Manage your orders and customers, add modules, change your theme, etc...'); ?></p>
<p class="description"><?php echo lang('Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.'); ?></p>
<a href="../admin" id="access" class="BO" target="_blank"><span><?php echo lang('Manage your store'); ?></span></a>
</div>
<div id="foBlock" class="blockInfoEnd last clearfix">
<img src="img/visu_foBlock.png" />
<h3><?php echo lang('Front Office'); ?></h3>
<p class="description"><?php echo lang('Find your store as your future customers will see!'); ?></p>
<p class="description"><?php echo lang('Discover your store as your future customers will see it!'); ?></p>
<a href="../" id="access" class="FO" target="_blank"><span><?php echo lang('Discover your store'); ?></span></a>
</div>
@@ -1032,7 +1034,7 @@ if ($lm->getIncludeTradFilename())
</div>
<h2><?php echo lang('Warning: a manual backup is HIGHLY recommended before continuing!'); ?></h2>
<p><?php echo lang('Please backup the database and application files.'); ?></p>
<p><?php echo lang('When your files and database are saving in an other support, please certify that your shop is really backed up.'); ?><br /><br /></p>
<p><?php echo lang('When your backup is complete, please confirm that it is fully functional.'); ?><br /><br /></p>
<div id="versionWarning" style="font-weight: bold; background-color: #ffdeb7; color: #000; padding: 10px; border: 1px solid #999; margin-top: 10px; margin-bottom: 10px; display: none">
<p><img src="../img/admin/warning.gif" alt="" style="vertical-align: middle;" /> <span></span></p>
@@ -1076,10 +1078,10 @@ if ($lm->getIncludeTradFilename())
<div id="nonNativeModules" style="font-weight: bold; background-color: #ffdeb7; color: #000; padding: 10px; border: 1px solid #999; margin-top: 10px;">
<p><img src="../img/admin/warning.gif" alt="" style="vertical-align: middle;" /> <?php echo lang('It\'s dangerous to keep non-native modules activated during the update. If you really want to take this risk, uncheck the following box.'); ?></p>
<p><?php echo lang('You will be able to manually reactivate them in your back-office, once the update process has succeeded.'); ?></p>
<p><?php echo lang('You will be able to manually reactivate them in your Back Office once the update process has succeeded.'); ?></p>
<input id="customModuleDesactivation" type="checkbox" checked="checked" value="1" name="customModuleDesactivation" />
<label for="customModuleDesactivation">
<?php echo lang('Ok, please desactivate the following modules, I will reactivate them later:'); ?>
<?php echo lang('Ok, please deactivate the following modules, I will reactivate them later:'); ?>
</label>
<ul id="nonNativeModulesLi">
@@ -1096,11 +1098,11 @@ if ($lm->getIncludeTradFilename())
echo '<h2>'.lang('Theme compatibility').'</h2>';
echo '<p>'.lang('Before updating, you need to check that your theme is compatible with version').' <b>'.INSTALL_VERSION.'</b> '.lang('of PrestaShop.').'</p>
<p><b>'.lang('In this aim, use our').'</b> <a target="_blank" href="http://validator.prestashop.com?version='.INSTALL_VERSION.'" title="'.lang('Link to the validator').'"><b>'.lang('Online Theme Validator').'</b></a>.'.'</p>';
<p><b>'.lang('To do this, use our').'</b> <a target="_blank" href="http://validator.prestashop.com?version='.INSTALL_VERSION.'" title="'.lang('Link to the validator').'"><b>'.lang('Online Theme Validator').'</b></a>.'.'</p>';
echo '<p>'.lang('If your theme is not valid, you may experience some problems in your front-office aspect, but don\'t panic ! To solve this, you can make it compatible by correcting the validators errors or by using a theme compatible with ').' '.INSTALL_VERSION.' '.lang('version').'.</p>';
echo '<h2>'.lang('Let\'s go!').'</h2>
<p>'.lang('Click on the "Next" button to start the upgrade, this can take several minutes,').' <u style="font-weight: bold; text-decoration: underline;">'.lang('do not close the window and be patient.').'</u></p>';
<p>'.lang('Click on the "Next" button to start the upgrade, this can take several minutes,').' <u style="font-weight: bold; text-decoration: underline;">'.lang('please be patient and do not close this window.').'</u></p>';
echo '<h2>'.lang('Details about this upgrade').' (v'.INSTALL_VERSION.')</h2>
<p>'.
lang('Thank you, you will be able to continue the upgrade process by clicking on the "Next" button.').'<br /><br />'.
@@ -1159,7 +1161,7 @@ if ($lm->getIncludeTradFilename())
<i style="font-size: 11px;">'.lang('Depending on your server and the size of your shop').'</i></p>';
if ($majorReleases > 1)
echo '<p style="margin-top: 8px;"><b>'.lang('You did not update your shop for a while,').' '.(int)$majorReleases.' '.lang('stable releases have been made available since.').'</b> '.lang('This is not a problem however the update may take several minutes, try to update your shop more frequently.').'</p>';
echo '<p style="margin-top: 8px;"><b>'.lang('You have not updated your shop in a while,').' '.(int)$majorReleases.' '.lang('stable releases have been made available since.').'</b> '.lang('This is not a problem however the update may take several minutes, try to update your shop more frequently.').'</p>';
}
else
echo '<p>'.lang('No files to process, this might be an error.').'</p>';
@@ -1182,7 +1184,7 @@ if ($lm->getIncludeTradFilename())
echo '
<br />
<h2>'.lang('Hosting parameters').'</h2>
<p>'.lang('PrestaShop tries to automatically set the best settings for your server in order the update to be successful.').'</p>
<p>'.lang('PrestaShop tries to automatically set the best settings for your server in order for the update to be successful.').'</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<th>'.lang('PHP parameter').'</th>
@@ -1205,7 +1207,7 @@ if ($lm->getIncludeTradFilename())
if ($color == '#D9F2D0')
echo '<img src="../img/admin/ok.gif" alt="" style="vertical-align: absmiddle;" /> '.lang('All your settings seem to be OK, go for it!');
elseif ($color == '#FFDEB7')
echo '<img src="../img/admin/warning.gif" alt="" style="vertical-align: absmiddle;" /> '.lang('Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters (max_execution_time & memory_limit).');
echo '<img src="../img/admin/warning.gif" alt="" style="vertical-align: absmiddle;" /> '.lang('Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters: "max_execution_time" and "memory_limit".');
elseif ($color == '#FAE2E3')
echo '<img src="../img/admin/error2.png" alt="" style="vertical-align: absmiddle;" /> '.lang('We strongly recommend that you inform your hosting provider to modify the settings before process to the update.');
echo '</div>';
@@ -1216,7 +1218,7 @@ if ($lm->getIncludeTradFilename())
<div class="sheet clearfix" id="sheet_require_update">
<div class="contentTitle">
<h1><?php echo lang('System and permissions')?></h1>
<h1><?php echo lang('System Compatibility')?></h1>
<ul id="stepList_7" class="stepList clearfix">
<li class="ok">Etape 1 ok</li>
@@ -1225,7 +1227,7 @@ if ($lm->getIncludeTradFilename())
<li>Etape 4</li>
</ul>
</div>
<h2><?php echo lang('Required set-up. Please verify the following checklist items are true.'); ?></h2>
<h2><?php echo lang('Required set-up. Please verify the following checklist items:'); ?></h2>
<p>
<?php echo lang('If you have any questions, please visit our '); ?>
@@ -1269,7 +1271,7 @@ if ($lm->getIncludeTradFilename())
<li class="optional"><?php echo lang('Dom extension loaded')?></li>
</ul>
<p><input class="button" value="<?php echo lang('Refresh these settings'); ?>" type="button" id="req_bt_refresh_update"/></p>
<p><input class="button" value="<?php echo lang('Check my settings again'); ?>" type="button" id="req_bt_refresh_update"/></p>
</div>
@@ -1285,17 +1287,17 @@ if ($lm->getIncludeTradFilename())
</ul>
</div>
<h3><?php echo lang('One or more errors have occurred, you can find more informations below or in the log/installation.log file.'); ?></h3>
<h3><?php echo lang('One or more errors have occurred, you can find more information below or in the log/installation.log file.'); ?></h3>
<p id="resultUpdate" class="errorBlock"></p>
<br />
<p id="detailsError" class="infosBlock"><?php echo lang('No more informations'); ?></p>
<p id="detailsError" class="infosBlock"><?php echo lang('No more information'); ?></p>
</div>
<div class="sheet clearfix" id="sheet_end_update">
<div>
<div class="contentTitle">
<h1><?php echo lang('Your update is completed!'); ?></h1>
<h1><?php echo lang('Your update is complete!'); ?></h1>
<ul id="stepList_7" class="stepList clearfix">
<li class="ok">Etape 1 ok</li>
@@ -1310,7 +1312,7 @@ if ($lm->getIncludeTradFilename())
<p class="errorBlock" id="txtErrorUpdateSQL" style="display:none;"></p>
<p style="padding-bottom: 5px;"><a href="javascript:showUpdateLog()"><?php echo lang('view the log'); ?></a></p>
<div id="updateLog"></div>
<p><?php echo lang('You have just updated and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'); ?></p>
<p><?php echo lang('You have just updated and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'); ?></p>
<?php
@@ -1326,13 +1328,13 @@ if ($lm->getIncludeTradFilename())
?>
<div class="infosBlock">
<?php echo lang('WARNING: For more security, you must delete the \'install\' folder.'); ?>
<?php echo lang('WARNING: For security purposes, you must delete the "install" folder.'); ?>
</div>
<div id="foBlock" class="blockInfoEnd clearfix">
<img src="img/visu_foBlock.png" />
<h3><?php echo lang('Front Office'); ?></h3>
<p class="description"><?php echo lang('Find your store as your future customers will see!'); ?></p>
<p class="description"><?php echo lang('Discover your store as your future customers will see it!'); ?></p>
<a href="../" id="access" class="FO" target="_blank"><span><?php echo lang('Discover your store'); ?></span></a>
</div>
</div>
@@ -1355,11 +1357,10 @@ if ($lm->getIncludeTradFilename())
</div>
<ul id="footer">
<li><a href="http://www.prestashop.com/forum/" title="<?php echo lang('Official forum'); ?>"><?php echo lang('Official forum'); ?></a> | </li>
<li><a href="http://www.prestashop.com" title="PrestaShop.com">PrestaShop.com</a> | </li>
<li><a href="http://www.prestashop.com/contact.php" title="<?php echo lang('Contact us!'); ?>"><?php echo lang('Contact us!'); ?></a> | </li>
<li>&copy; 2005-<?php echo date('Y'); ?></li>
<li><a href="http://www.prestashop.com/forums/" title="<?php echo lang('PrestaShop Forums'); ?>" target="_blank"><?php echo lang('PrestaShop Forums'); ?></a> | </li>
<li><a href="http://www.prestashop.com" title="PrestaShop.com" target="_blank">PrestaShop.com</a> | </li>
<li><a href="http://www.prestashop.com/contact.php" title="<?php echo lang('Contact us!'); ?>" target="_blank"><?php echo lang('Contact us!'); ?></a> | </li>
<li>&copy; 2007-<?php echo date('Y'); ?></li>
</ul>
</body>
</html>
</html>

View File

@@ -4,36 +4,34 @@ $_LANG['Installer'] = 'Installation';
$_LANG['Updater'] = 'Aktualisierung';
$_LANG['.'] = '.';
$_LANG['A Prestashop database already exists, please drop it or change the prefix.'] = 'Eine PrestaShop Datenbank existiert bereits mit diesem Präfix, Sie müssen sie manuell löschen oder das Präfix ändern.';
$_LANG['An email has been sent!'] = 'Eine E-Mail wurde verschickt!';
$_LANG['Access and configure PHP 5.0+ on your hosting server'] = 'Prüfen Sie, ob Ihr Provider PHP5 anbietet und/ oder aktivieren Sie es ggfs.';
$_LANG['A test e-mail has been sent to'] = 'Eine E-Mail wurde verschickt!';
$_LANG['An error occurred while resizing the picture.'] = 'Bei der Änderung des Bildmaßstabs ist ein Fehler aufgetreten.';
$_LANG['An error occurred while sending email, please verify your parameters.'] = 'Beim Senden der E-Mail ist ein Fehler aufgetreten, bitte prüfen Sie Ihre Einstellungen.';
$_LANG['Available shop languages'] = 'Verfügbare Sprachen';
$_LANG['Back'] = 'Zurück';
$_LANG['Back up your database and all application files (update only)'] = 'Speichern Sie Ihre Datenbank und Dateien (nur im Falle eines Update von PrestaShop)';
$_LANG['Please backup the database and application files.'] = 'Bevor Sie fortfahren, sollten Sie eine Sicherungskopie Ihrer Daten vornehmen. Bitte kopieren Sie alle Dateien von der Website in einen Backup-Ordner und nehmen Sie zus√§tzlich eine Sicherungskopie Ihrer Datenbank vor. Wenn Sie die versteckte Datei ".htaccess" manuell am Root Ihres Shops bearbeitet haben, achten Sie darauf, diese ebenfalls zu speichern.';
$_LANG['By default, the PHP \'mail()\' function is used'] = 'Die Funktion PHP \'mail()\' wird standardmäßig verwendet.';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'] = 'Fehler beim Erstellen der Konfigurationsdatei, wenn die Datei /config/ settings.inc.php existiert, geben Sie ihr bitte die offiziellen Schreibrechte, ansonsten erstellen Sie bitte eine Datei settings.inc.php im Konfigurationsverzeichnis (/config/)';
$_LANG['By default, the PHP \'mail()\' function is used (recommended)'] = 'Die Funktion PHP \'mail()\' wird standardmäßig verwendet.';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, otherwise please create a file named settings.inc.php in config directory.'] = 'Fehler beim Erstellen der Konfigurationsdatei, wenn die Datei /config/ settings.inc.php existiert, geben Sie ihr bitte die offiziellen Schreibrechte, ansonsten erstellen Sie bitte eine Datei settings.inc.php im Konfigurationsverzeichnis (/config/)';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Kann eine der SQL-Update-Dateien nicht finden. Bitte stellen Sie sicher, dass der Ordner /install/sql/upgrade nicht leer ist.';
$_LANG['Choose the installer language:'] = 'In welcher Sprache möchten Sie das installieren?';
$_LANG['Choose your prefered language for the installation:'] = 'In welcher Sprache möchten Sie das installieren?';
$_LANG['Community Forum'] = 'unser Community-Forum';
$_LANG['Configure SMTP manually (advanced users only)'] = 'Konfigurieren des SMTP-Sendens (nur für Experten)';
$_LANG['Configure your database by filling out the following fields:'] = 'Konfigurieren Sie Ihre Datenbank, indem Sie folgende Felder ausfüllen:';
$_LANG['Congratulation, your online shop is now ready!'] = 'Herzlichen Glückwunsch, Ihr Shop installiert!';
$_LANG['Congratulations, your online shop is now ready!'] = 'Herzlichen Glückwunsch, Ihr Shop installiert!';
$_LANG['Contact us!'] = 'Kontaktieren Sie uns!';
$_LANG['Create new files and folders allowed'] = 'Erstellen neuer Ordner und Dateien zugelassen';
$_LANG['Data integrity is not valided. Hack attempt?'] = 'Die Integrit√§t der Daten ist nicht best√§tigt.';
$_LANG['Database Server is available but database is not found'] = 'Der Datenbank-Server steht zur Verfügung, aber die Datenbank wurde nicht gefunden';
$_LANG['Database Server is not found. Please verify the login, password and server fields.'] = 'Der Datenbank-Server wurde nicht gefunden, bitte prüfen Sie Ihren Benutzernamen oder den Server-Namen.';
$_LANG['Creation of new files and folders allowed'] = 'Erstellen neuer Ordner und Dateien zugelassen';
$_LANG['Database server is available but database was not found'] = 'Der Datenbank-Server steht zur Verfügung, aber die Datenbank wurde nicht gefunden';
$_LANG['Database server was not found. Please verify the login, password and server fields.'] = 'Der Datenbank-Server wurde nicht gefunden, bitte prüfen Sie Ihren Benutzernamen oder den Server-Namen.';
$_LANG['Database configuration'] = 'Konfiguration der Datenbank';
$_LANG['Database connection is available!'] = 'Die Datenbank wurde gefunden!';
$_LANG['Database is created!'] = 'Datenbank installiert!';
$_LANG['Database name:'] = 'Name der Datenbank:';
$_LANG['Disclaimer'] = 'Warnung';
$_LANG['Documentation Wiki'] = 'Wiki-Dokumentation';
$_LANG['Online documentation'] = 'Wiki-Dokumentation';
$_LANG['E-mail:'] = 'E-Mail:';
$_LANG['E-mail address:'] = 'E-Mail-Adresse:';
$_LANG['E-mail delivery set-up'] = 'Sendeeinstellungen für E-Mails';
$_LANG['E-mail configuration'] = 'Sendeeinstellungen für E-Mails';
$_LANG['Encryption:'] = 'Verschlüsselung:';
$_LANG['Error!'] = 'Fehler!';
$_LANG['Error while creating the /config/settings.inc.php file.'] = 'Fehler beim Erstellen der Datei /config/settings.inc.php.';
@@ -41,7 +39,7 @@ $_LANG['Error while inserting content into the database'] = 'Fehler beim Einf√
$_LANG['Error while inserting data in the database:'] = 'Fehler beim Einfügen in die Datenbank:';
$_LANG['Error while loading sql upgrade file.'] = 'Fehler beim Öffnen der SQL-Datei';
$_LANG['Error:'] = 'Fehler:';
$_LANG['Errors while updating...'] = 'Fehler bei der Aktualisierung ...';
$_LANG['Error(s) while updating...'] = 'Fehler bei der Aktualisierung ...';
$_LANG['Failed to write file to disk'] = 'Kann die Datei nicht auf die Festplatte schreiben';
$_LANG['Fields are different!'] = 'Die Felder sind unterschiedlich!';
$_LANG['File upload allowed'] = 'Datei Senden erlaubt';
@@ -50,22 +48,22 @@ $_LANG['First name:'] = 'Vorname:';
$_LANG['For more information, please consult our'] = 'Weitere Informationen finden Sie auf unserer';
$_LANG['GD Library installed'] = 'GD-Bibliothek installiert';
$_LANG['GZIP compression is on (recommended)'] = 'GZIP-Kompression ist aktiviert (empfohlen)';
$_LANG['Here are your shop information. You can modify them once logged in.'] = 'Hier sind Ihre Login-Daten, Sie können sie später im Back-Office ändern.';
$_LANG['However, you must know how to do the following manually:'] = 'Nichtsdestotrotz können Sie die folgenden Aufgaben manuell durchführen:';
$_LANG['Here is your shop information. You can modify it once you are logged in.'] = 'Hier sind Ihre Login-Daten, Sie können sie später im Back-Office ändern.';
$_LANG['However, you must know how to do the following:'] = 'Nichtsdestotrotz können Sie die folgenden Aufgaben durchführen:';
$_LANG['I agree to the above terms and conditions.'] = 'Ich stimme den oben genannten Vertragsbedingungen zu.';
$_LANG['If you have any questions, please visit our '] = 'Wenn Sie je Fragen haben sollten, werfen Sie einfach einen Blick auf unsere ';
$_LANG['Impossible the access the a MySQL content file.'] = 'Kann nicht auf den Inhalt einer *.sql-Datei zugreifen.';
$_LANG['Impossible to read the content of a MySQL content file.'] = 'Kann den Inhalt einer *.sql-Datei nicht lesen.';
$_LANG['Impossible to send the email!'] = 'Kann E-Mail nicht senden!';
$_LANG['Impossible to upload the file!'] = 'Kann Datei nicht senden!';
$_LANG['Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Kann Bild /img/logo.jpg nicht schreiben. Falls es bereits existiert, löschen Sie es bitte manuell.';
$_LANG['Installation : complete install of the PrestaShop Solution'] = 'Komplette Installation von PrestaShop';
$_LANG['Cannot access the a MySQL data file.'] = 'Kann nicht auf den Inhalt einer *.sql-Datei zugreifen.';
$_LANG['Cannot read the content of a MySQL data file.'] = 'Kann den Inhalt einer *.sql-Datei nicht lesen.';
$_LANG['Cannot send the email!'] = 'Kann E-Mail nicht senden!';
$_LANG['Cannot upload the file!'] = 'Kann Datei nicht senden!';
$_LANG['Cannot write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Kann Bild /img/logo.jpg nicht schreiben. Falls es bereits existiert, löschen Sie es bitte manuell.';
$_LANG['Installation: Full installation of PrestaShop'] = 'Komplette Installation von PrestaShop';
$_LANG['Installation is complete!'] = 'Installation abgeschlossen!';
$_LANG['Installation method'] = 'Installationsmethode';
$_LANG['What do you want to do?'] = 'Installationsmethode';
$_LANG['Last name:'] = 'Name:';
$_LANG['Licenses Agreement'] = 'Lizenzvertrag';
$_LANG['License Agreement'] = 'Lizenzvertrag';
$_LANG['Login:'] = 'Benutzername:';
$_LANG['Merchant info'] = 'Informationen über den Verkäufer';
$_LANG['Shop settings and merchant account information'] = 'Informationen über den Verkäufer';
$_LANG['Missing a temporary folder'] = 'Der tempor√§re Ordner Ihrer empfangenen Dateisendungen fehlt. Bitte wenden Sie sich an Ihren Systemadministrator.';
$_LANG['MySQL support is on'] = 'Die MySQL-Unterstützung ist aktiviert';
$_LANG['Next'] = 'Weiter';
@@ -73,18 +71,17 @@ $_LANG['No error code available.'] = 'Unbekannter Fehler.';
$_LANG['No file was uploaded.'] = 'Es ist keine Datei gesandt worden';
$_LANG['No upgrade is possible.'] = 'Kein Update verfügbar';
$_LANG['None'] = 'Keine';
$_LANG['Official forum'] = 'Offizielles Forum';
$_LANG['One or more errors have occurred, you can find more informations below or in the log/installation.log file.'] = 'Ein oder mehrere Fehler sind aufgetreten';
$_LANG['PrestaShop Forums'] = 'Offizielles Forum';
$_LANG['One or more errors have occurred, you can find more information below or in the log/installation.log file.'] = 'Ein oder mehrere Fehler sind aufgetreten';
$_LANG['Open external URLs allowed'] = 'Öffnung externer URLs erlaubt';
$_LANG['Optional languages'] = 'Nicht angebotene Sprachen';
$_LANG['Optional set-up'] = 'Optionale Einstellungen';
$_LANG['PHP \'mail()\' function is available'] = 'Die Funktion PHP \'mail()\' ist verfügbar';
$_LANG['PHP \'mail()\' function is unavailable'] = 'Die Funktion PHP \'mail()\' ist nicht verfügbar';
$_LANG['PHP 5.0 or later installed'] = 'PHP 5.0 oder höher installiert';
$_LANG['PHP parameters:'] = 'PHP-Einstellungen:';
$_LANG['PHP register global option is off (recommended)'] = 'Die PHP-Option "register global" ist deaktiviert (empfohlen)';
$_LANG['Password:'] = 'Kennwort:';
$_LANG['Please allow 5-15 minutes to complete the installation process.'] = 'Der Installationsprozess dauert nur ein paar Minuten!';
$_LANG['Please allow 10-15 minutes to complete the installation process.'] = 'Der Installationsprozess dauert nur ein paar Minuten!';
$_LANG['Please set a SMTP login'] = 'Geben Sie einen SMTP-Benutzernamen ein';
$_LANG['Please set a SMTP password'] = 'Geben Sie das SMTP-Kennwort ein';
$_LANG['Please set a SMTP server name'] = 'Geben Sie einen SMTP-Server-Namen ein';
@@ -96,10 +93,10 @@ $_LANG['PrestaShop %s Installer'] = 'Installation der PrestaShop-Version %s';
$_LANG['PrestaShop is ready!'] = 'PrestaShop ist fertig!';
$_LANG['Re-type to confirm:'] = 'Best√§tigen Sie das Kennwort:';
$_LANG['Ready, set, go!'] = 'PrestaShop ist installiert!';
$_LANG['Receive notifications by e-mail'] = 'Meine Informationen per E-Mail erhalten';
$_LANG['Refresh these settings'] = 'Erneut überprüfen';
$_LANG['Receive this information by e-mail'] = 'Meine Informationen per E-Mail erhalten';
$_LANG['Check my settings again'] = 'Erneut überprüfen';
$_LANG['Required field'] = 'Pflichtfelder';
$_LANG['Required set-up. Please verify the following checklist items are true.'] = 'Bitte vergewissern Sie sich, dass jede der folgenden Einstellungen best√§tigt ist.';
$_LANG['Required set-up. Please verify the following checklist items:'] = 'Bitte vergewissern Sie sich, dass jede der folgenden Einstellungen best√§tigt ist.';
$_LANG['SMTP connection is available!'] = 'SMTP-Verbindung verfügbar!';
$_LANG['SMTP connection is unavailable'] = 'SMTP-Verbindung nicht verfügbar';
$_LANG['SMTP server:'] = 'SMTP-Server:';
@@ -107,19 +104,18 @@ $_LANG['SQL errors have occurred.'] = 'Es sind SQL-Fehler aufgetreten.';
$_LANG['Select the different languages available for your shop'] = 'W√§hlen Sie die verschiedenen Sprachen, die Ihr Shop den Kunden anbieten soll';
$_LANG['Send me a test email!'] = 'Eine Test-E-Mail an mich senden!';
$_LANG['Server:'] = 'Server:';
$_LANG['Set permissions on folders & subfolders using Terminal or an FTP client'] = 'Festlegen von Berechtigungen für Ordner und Unterordner über einen FTP-Client';
$_LANG['Set permissions on folders & subfolders using an FTP client'] = 'Festlegen von Berechtigungen für Ordner und Unterordner über einen FTP-Client';
$_LANG['Shop Configuration'] = 'Shop-Konfiguration';
$_LANG['Shop logo'] = 'Shop-Logo';
$_LANG['Shop logo:'] = 'Shop-Logo:';
$_LANG['Shop name:'] = 'Name des Shops:';
$_LANG['Shop password:'] = 'Kennwort des Shops:';
$_LANG['Shop\'s default language'] = 'Standard-Sprache';
$_LANG['Shop\'s languages'] = 'Sprache des Shops';
$_LANG['System and permissions'] = 'System und Berechtigungen';
$_LANG['System Compatibility'] = 'Systemkompatibilit√§t';
$_LANG['System Configuration'] = 'Systemkonfiguration';
$_LANG['Tables prefix:'] = 'Tabellen-Pr√§fixe:';
$_LANG['Test message - Prestashop'] = 'Installation von PrestaShop - Test des E-Mail-Servers';
$_LANG['The PrestaShop Installer will do most of the work in just a few clicks.'] = 'Der PrestaShop Installer führt die ganze Arbeit mit ein paar Klicks durch.';
$_LANG['The PrestaShop Installer will do most of the work for you in just a few clicks.'] = 'Der PrestaShop Installer führt die ganze Arbeit mit ein paar Klicks durch.';
$_LANG['The config/settings.inc.php file was not found. Did you delete or rename this file?'] = 'Die Datei config/settings.inc.php wurde nicht gefunden. Haben Sie sie gelöscht oder umbenannt?';
$_LANG['The config/defines.inc.php file was not found. Where did you move it?'] = 'Die Datei config/defines.inc.php wurde nicht gefunden. Wo ist sie?';
$_LANG['The password is incorrect (alphanumeric string at least 8 characters).'] = 'Falsches Kennwort (alpha-numerischer String aus mindestens 8 Zeichen)';
@@ -127,60 +123,59 @@ $_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified
$_LANG['The uploaded file exceeds the upload_max_filesize directive in php.ini'] = 'Die gesendete Datei überschreitet die maximal zulässige Größe.';
$_LANG['The uploaded file was only partially uploaded'] = 'Die Datei wurde teilweise gesendet.';
$_LANG['There is no older version. Did you delete or rename the config/settings.inc.php file?'] = 'Keine frühere Version erkannt. Haben Sie die Datei settings.inc.php aus dem Ordner config gelöscht oder umbenannt?';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication informations to the database.'] = 'Diese PrestaShop-Datenbank existiert schon, bitte best√§tigen Sie der Datenbank erneut Ihre Kennungen.';
$_LANG['This application need you to activate Javascript to correctly work.'] = 'JavaScript ist erforderlich, um diese Anwendung auszuführen.';
$_LANG['This email adress is wrong!'] = 'Falsche Adresse!';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication information to the database.'] = 'Diese PrestaShop-Datenbank existiert schon, bitte best√§tigen Sie der Datenbank erneut Ihre Kennungen.';
$_LANG['This application needs you to activate Javascript to correctly work.'] = 'JavaScript ist erforderlich, um diese Anwendung auszuführen.';
$_LANG['This e-mail address is invalid!'] = 'Falsche Adresse!';
$_LANG['This installer is too old.'] = 'Der Installer ist zu alt.';
$_LANG['This is a test message, your server is now available to send email'] = 'Dies ist eine Testnachricht, Ihr E-Mail-Server funktioniert korrekt.';
$_LANG['This is not a valid file name.'] = 'Dies ist kein gültiger Name.';
$_LANG['This is not a valid image file.'] = 'Dies ist kein gültiges Bild.';
$_LANG['Too long!'] = 'Zu lang!';
$_LANG['Too long'] = 'Zu lang!';
$_LANG['Unfortunately,'] = 'Leider';
$_LANG['Update is complete!'] = 'Aktualisierung beendet!';
$_LANG['Upgrade: get the latest stable version!'] = 'Aktualisierung: Installieren Sie die neueste Version von PrestaShop';
$_LANG['Verify now!'] = 'Testen der SQL-Verbindung';
$_LANG['Verify my database settings'] = 'Testen der SQL-Verbindung';
$_LANG['Verify system compatibility'] = 'Systemkompatibilit√§t';
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'VORSICHT: Aus Sicherheitsgründen löschen Sie bitte den Ordner \'/install\'.';
$_LANG['WARNING: For security purposes, you must delete the "install" folder.'] = 'VORSICHT: Aus Sicherheitsgründen löschen Sie bitte den Ordner \'/install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Vorsicht: eine manuelle Sicherung ist UNERLÄSSLICH, bevor mit der Aktualisierung der PrestaShop-Anwendung begonnen wird, um jeglichen versehentlichen Datenverlust zu verhindern';
$_LANG['Welcome'] = 'Willkommen';
$_LANG['Welcome to the PrestaShop %s Installer'] = 'Willkommen bei der Installation von PrestaShop %s';
$_LANG['When your files and database are saving in an other support, please certify that your shop is really backed up.'] = 'Sobald die Anwendungsdateien und Ihre Datenbank gesichert sind, werden wir Sie um Bestätigung bitten. Damit übernehmen Sie die gesamte Haftung eines möglichen Datenverlusts durch die Aktualisierung der PrestaShop-Anwendung.';
$_LANG['When your backup is complete, please confirm that it is fully functional.'] = 'Sobald die Anwendungsdateien und Ihre Datenbank gesichert sind, werden wir Sie um Bestätigung bitten. Damit übernehmen Sie die gesamte Haftung eines möglichen Datenverlusts durch die Aktualisierung der PrestaShop-Anwendung.';
$_LANG['Write permissions on folders (and subfolders):'] = 'Schreibberechtigung für die Ordner (und deren Unterordner):';
$_LANG['Write permissions on files and folders:'] = 'Schreibberechtigung für die Dateien und Ordner:';
$_LANG['Write permissions on folders:'] = 'Schreibberechtigung für die Ordner';
$_LANG['You already have the %s version.'] = 'Sie besitzen bereits die Version. %s';
$_LANG['You have just installed and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Sie haben gerade Ihren Online-Shop installiert und konfiguriert, wir danken Ihnen.';
$_LANG['You have just updated and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Sie haben gerade Ihren Online-Shop aktualisiert wir danken Ihnen.';
$_LANG['You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Sie haben gerade Ihren Online-Shop installiert und konfiguriert, wir danken Ihnen.';
$_LANG['You have just updated and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Sie haben gerade Ihren Online-Shop aktualisiert wir danken Ihnen.';
$_LANG['Your installation is finished!'] = 'Die Installation ist abgeschlossen!';
$_LANG['Your update is finished!'] = 'Das Update ist abgeschlossen!';
$_LANG['and/or'] = 'und / oder';
$_LANG['enter@your.email'] = 'GebenSie@Ihreemail.ein';
$_LANG['online documentation'] = 'Online-Dokumentation';
$_LANG['installed version detected'] = 'aktuelle Version erkannt';
$_LANG['recommended dimensions: 230px X 75px'] = 'Empfohlene Abmessungen: 230px x 75px';
$_LANG['Currently installed version detected:'] = 'Aktuelle Version erkannt:';
$_LANG['Recommended dimensions:'] = 'Empfohlene Abmessungen:';
$_LANG['view the log'] = 'Bericht ansehen';
$_LANG['(no old version detected)'] = '(keine alte Version erkannt)';
$_LANG['(No previous version detected)'] = '(keine alte Version erkannt)';
$_LANG['Can\'t write settings file, please create a file named settings.inc.php in config directory.'] = 'Die Settings-Datei konnte nicht geschrieben werden, erstellen Sie bitte eine Datei namens settings.inc.php in Ihrem Konfigurationsverzeichnis.';
$_LANG['Cannot convert your database\'s data to utf-8.'] = 'Kann die Daten aus Ihrer Datenbank nicht in UTF-8 zu konvertieren.';
$_LANG['Your database server does not support the utf-8 charset.'] = 'Ihr Datenbank-Server unterstützt keinen UTF-8-Zeichensatz.';
$_LANG['Cannot convert your database\'s data to UTF-8.'] = 'Kann die Daten aus Ihrer Datenbank nicht in UTF-8 zu konvertieren.';
$_LANG['Your database server does not support the UTF-8 charset.'] = 'Ihr Datenbank-Server unterstützt keinen UTF-8-Zeichensatz.';
$_LANG['Need help?'] = 'Brauchen Sie Hilfe?';
$_LANG['All tips and advice about PrestaShop'] = 'Alle Tipps und Tricks rund um PrestaShop';
$_LANG['Forum'] = 'Forum';
$_LANG['PrestaShop tips and advice'] = 'Alle Tipps und Tricks rund um PrestaShop';
$_LANG['Forums'] = 'Forum';
$_LANG['Blog'] = 'Blog';
$_LANG['Back Office'] = 'Back Office';
$_LANG['Manage your store with your back office. Manage your orders and customers, add modules, change your theme, etc...'] = 'Verwalten Sie Ihren Shop mit Ihrem Back-Office. Verwalten Sie Ihre Bestellungen und Kunden, fügen Sie Module hinzu, ändern Sie Ihr Thema, usw. ...';
$_LANG['Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.'] = 'Verwalten Sie Ihren Shop mit Ihrem Back-Office. Verwalten Sie Ihre Bestellungen und Kunden, fügen Sie Module hinzu, ändern Sie Ihr Thema, usw. ...';
$_LANG['Manage your store'] = 'Verwalten Sie Ihren Shop';
$_LANG['Front Office'] = 'Front Office';
$_LANG['Find your store as your future customers will see!'] = 'Sehen Sie, wie Ihr Shop später für Ihre Kunden aussieht!';
$_LANG['Discover your store as your future customers will see it!'] = 'Sehen Sie, wie Ihr Shop später für Ihre Kunden aussieht!';
$_LANG['Discover your store'] = 'Meinen Shop entdecken';
$_LANG['Did you know?'] = 'Wussten Sie schon?';
$_LANG['Prestashop and community offers over 40 different languages for free download on'] = 'Prestashop und seine Community bietet über 40 verschiedene Sprachen zum kostenlosen Download auf';
$_LANG['Prestashop and its community offers over 40 different languages for free download at'] = 'Prestashop und seine Community bietet über 40 verschiedene Sprachen zum kostenlosen Download auf';
$_LANG['Default country:'] = 'Standard-Land:';
$_LANG['Shop\'s timezone:'] = 'Zeitzone des Shops:';
$_LANG['Your configuration is valid, click next to continue!'] = 'Ihre Konfiguration ist gültig, <br /> klicken Sie auf Weiter zum Fortfahren!';
$_LANG['Shop timezone:'] = 'Zeitzone des Shops:';
$_LANG['Your configuration is valid, click \"Next\" to continue!'] = 'Ihre Konfiguration ist gültig, <br /> klicken Sie auf Weiter zum Fortfahren!';
$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'Ihre Konfiguration ist nicht gültig, <br /> bitte beheben Sie diese Probleme:';
$_LANG['You have to create a database, help available in readme_en.txt'] = 'Sie müssen zunächst eine Datenbank erstellen (Hilfe in der Datei readme.txt verfügbar)';
$_LANG['If you check this box and your mail configuration is wrong, your installation might be blocked. If so, please uncheck the box to go to the next step.'] = 'Diese Option kann hinderlich sein, wenn Ihre E-Mail-Konfiguration falsch ist, bitte deaktivieren Sie sie, wenn Sie nicht zum nächsten Schritt gehen können.';
$_LANG['Warning: If you check this box and your e-mail configuration is incorrect, you might not be able to continue the installation.'] = 'Diese Option kann hinderlich sein, wenn Ihre E-Mail-Konfiguration falsch ist, bitte deaktivieren Sie sie, wenn Sie nicht zum nächsten Schritt gehen können.';
$_LANG['Mcrypt is available (recommended)'] = 'Mcrypt ist verfügbar (empfohlen)';
$_LANG['Your MySQL server doesn\'t support this engine, please use another one like MyISAM'] = 'Diese Datenbank-Engine wird nicht unterstützt, bitte wählen Sie eine andere als MyISAM';
$_LANG['Adult'] = 'Erotik und Dessous';
@@ -201,34 +196,29 @@ $_LANG['Jewelry'] = 'Schmuck';
$_LANG['Mobile and Telecom'] = 'Telefonie und Kommunikation';
$_LANG['Services'] = 'Dienstleistungen';
$_LANG['Shoes and accessories'] = 'Schuhe und Accessoires';
$_LANG['Sport and Entertainment'] = 'Sport und Freizeit';
$_LANG['Sports and Entertainment'] = 'Sport und Freizeit';
$_LANG['Travel'] = 'Reise und Tourismus';
$_LANG['Main activity:'] = 'Hauptt√§tigkeit';
$_LANG['-- Please choose your main activity --'] = '- W√§hlen Sie eine T√§tigkeit --';
$_LANG['A question about PrestaShop or issues during installation or upgrade? Call us!'] = 'Eine Frage zu PrestaShop oder ein Problem bei der Installation oder beim Upgrade? Rufen Sie uns an!';
$_LANG['Invalid catalog mode'] = 'Feld Katalog-Modus ungültig';
$_LANG['Catalog mode:'] = 'Katalog-Modus:';
$_LANG['Catalog mode only:'] = 'Katalog-Modus:';
$_LANG['Yes'] = 'Ja';
$_LANG['No'] = 'Nein';
$_LANG['If you activate this feature, all purchase features will be disabled. You can activate this feature later in your back office'] = 'Wenn Sie diese Option aktivieren, werden alle Kauf-Funktionen deaktiviert. Sie können diese Option später in Ihrem Back-Office aktivieren';
$_LANG['the already installed version detected is too recent, no update available'] = 'Die bereits installierte Version, die erkannt wurde, ist neu, keine Updates verfügbar';
$_LANG['This information isn\'t required, it will be used for statistical purposes. This information doesn\'t change anything in your store.'] = 'Diese Information ist nicht erforderlich, sie wird zu statistischen Zwecken verwendet. Diese Information √§ndert nichts in Ihrem Shop.';
$_LANG['If you activate this feature, all purchasing will be disabled. However, you will be able to enable purchasing later in your Back Office.'] = 'Wenn Sie diese Option aktivieren, werden alle Kauf-Funktionen deaktiviert. Sie können diese Option später in Ihrem Back-Office aktivieren';
$_LANG['Your current version is already up-to-date'] = 'Die bereits installierte Version, die erkannt wurde, ist neu, keine Updates verfügbar';
$_LANG['This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.'] = 'Diese Information ist nicht erforderlich, sie wird zu statistischen Zwecken verwendet. Diese Information √§ndert nichts in Ihrem Shop.';
$_LANG['Invalid shop name'] = 'Ungültiger Shopname';
$_LANG['Your firstname contains some invalid characters'] = 'Ihr Vorname enthält ungültige Zeichen';
$_LANG['Your lastname contains some invalid characters'] = 'Ihr Nachname enthält ungültige Zeichen';
$_LANG['(FREE)'] = '(KOSTENLOS)';
$_LANG['(FREE too!)'] = '(ebenfalls KOSTENLOS!)';
$_LANG['Shop configuration'] = 'Shop-Konfiguration';
$_LANG['Database Engine:'] = 'Datenbank-Engine';
$_LANG['I certify that I backed up my database and application files. I assume all responsibility for any data loss or damage related to this upgrade.'] = 'Ich bestätige, dass ich meine Datenbank und meine Anwendungsdateien durch ein Backup gesichert habe. Ich übernehme die volle Verantwortung für jeglichen Datenverlust oder jegliche Datenbeschädigung, die im Zusammenhang mit diesem Upgrade stehen.';
$_LANG['The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'] = 'Die Datei /img/logo.jpg kann nicht geschrieben werden, bitte √§ndern Sie die Dateirechte mit CHMOD 755 oder CHMOD 777';
$_LANG['If you do not know how to enable it, use our turnkey solution PrestaBox at'] = 'Wenn Sie nicht wissen, wie Sie es aktivieren müssen, nutzen Sie unsere Fertiglösung PrestaBox';
$_LANG['If you do not know how to fix these issues, use turnkey solution PrestaBox at'] = 'Wenn Sie nicht wissen, wie Sie diese Themen festlegen können, nutzen Sie die Fertiglösung PrestaBox';
$_LANG['the already installed version detected is too old, no more update available'] = 'Die bereits installierte erkannte Version ist zu alt, es ist kein Update mehr verfügbar';
$_LANG['Simple mode: Basic installation'] = 'Einfacher Modus: Grundinstallation';
$_LANG['Full mode: includes'] = 'Komplettmodus: beinhaltet';
$_LANG['Lite mode: Basic installation'] = 'Einfacher Modus: Grundinstallation';
$_LANG['Full mode: includes core modules,'] = 'Komplettmodus: beinhaltet';
$_LANG['100+ additional modules'] = 'über 100 zusätzliche Module';
$_LANG['and demo products'] = 'und Demo-Produkte';
$_LANG['Installation type'] = 'Installationstyp';
@@ -248,12 +238,12 @@ $_LANG['minute'] = 'Minute';
$_LANG['seconds'] = 'Sekunden';
$_LANG['second'] = 'Sekunde';
$_LANG['Depending on your server and the size of your shop'] = 'Anhängig vom Server und der Größer Ihres Shops';
$_LANG['You did not update your shop for a while,'] = 'Sie haben Ihren Shop seit L√§ngerem nicht upgedatet,';
$_LANG['You have not updated your shop in a while,'] = 'Sie haben Ihren Shop seit L√§ngerem nicht upgedatet,';
$_LANG['stable releases have been made ÄãÄãavailable since.'] = 'wichtige Neuerungen wurden implementiert seit';
$_LANG['This is not a problem however the update may take several minutes, try to update your shop more frequently.'] = 'Das ist unwesentlich, das Upgrade kann einige Minuten dauern, versuchen Sie, Ihren Shop öfert zu updaten.';
$_LANG['No files to process, this might be an error.'] = 'Keine Dateien zum Verarbeiten, womöglich ein Fehler';
$_LANG['Hosting parameters'] = 'Hosting Eigenschaften';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order the update to be successful.'] = 'Prestashop versucht automatisch, die besten Einstellungen auf dem Server zu machen, damit das Update erfolgreich verl√§uft.';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order for the update to be successful.'] = 'Prestashop versucht automatisch, die besten Einstellungen auf dem Server zu machen, damit das Update erfolgreich verl√§uft.';
$_LANG['PHP parameter'] = 'PHP Parameter';
$_LANG['Description'] = 'Beschreibung';
$_LANG['Current value'] = 'Aktueller Wert';
@@ -262,27 +252,42 @@ $_LANG['Maximum memory allowed for the upgrade'] = 'Maximal zugelassener Speiche
$_LANG['All your settings seem to be OK, go for it!'] = 'Alle Einstellungen scheinen zu stimmen, es kann losgehen!';
$_LANG['Let\'s go!'] = 'Los!';
$_LANG['Click on the "Next" button to start the upgrade, this can take several minutes,'] = 'Klicken Sie das "Weiter"-Button um das Upgrade zu starten, es könne einige Minuten dauern.';
$_LANG['do not close the window and be patient.'] = 'bitte schließen Sie das Fenster nicht.';
$_LANG['Your update is completed!'] = 'Ihr Upgrade ist abgeschlossen!';
$_LANG['please be patient and do not close this window.'] = 'bitte schließen Sie das Fenster nicht.';
$_LANG['Your update is complete!'] = 'Ihr Upgrade ist abgeschlossen!';
$_LANG['Your shop version is now'] = 'Ihre Shopversion ist nun';
$_LANG['New features in PrestaShop v'] = 'Neue Features in Prestashop v';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters (max_execution_time & memory_limit).'] = 'Achtung, Ihre Einstellungen sind zwar korrekt, aber nicht optimal. Sollten während des Updates Probleme auftreten (Ausführungszeit, Speicherlimit usw.) kontaktieren Sie bitte Ihr Hostingunternehmen, damit diese Einstellungen angepasst werden (max_execution_time & memory_limit) ';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters: "max_execution_time" and "memory_limit".'] = 'Achtung, Ihre Einstellungen sind zwar korrekt, aber nicht optimal. Sollten während des Updates Probleme auftreten (Ausführungszeit, Speicherlimit usw.) kontaktieren Sie bitte Ihr Hostingunternehmen, damit diese Einstellungen angepasst werden (max_execution_time & memory_limit) ';
$_LANG['We strongly recommend that you inform your hosting provider to modify the settings before process to the update.'] = 'Wir empfehlen ausdrücklich, Ihren Hostingprovider zu kontaktieren, um die Einstellungen für das Update anzupassen';
$_LANG['Module compatibility'] = 'Modulkompatibilit√§t';
$_LANG['It\'s dangerous to keep non-native modules activated during the update. If you really want to take this risk, uncheck the following box.'] = 'Es wird nicht empfohlen, fremde Module w√§hrend des Updates aktiviert zu lassen. Wenn Sie trotzdem fortfahren wollen, entfernen Sie die Markierung in der Checkbox';
$_LANG['You will be able to manually reactivate them in your back-office, once the update process has succeeded.'] = 'Sie können sie später im Adminbereich aktivieren, nachdem das Update abgeschlossen ist.';
$_LANG['Ok, please desactivate the following modules, I will reactivate them later:'] = 'ok, bitte folgende Module deaktivieren (sie werden sp√§ter wieder aktiviert):';
$_LANG['You will be able to manually reactivate them in your Back Office once the update process has succeeded.'] = 'Sie können sie später im Adminbereich aktivieren, nachdem das Update abgeschlossen ist.';
$_LANG['Ok, please deactivate the following modules, I will reactivate them later:'] = 'ok, bitte folgende Module deaktivieren (sie werden sp√§ter wieder aktiviert):';
$_LANG['Theme compatibility'] = 'Themenkompatibilit√§t';
$_LANG['Before updating, you need to check that your theme is compatible with version'] = 'Um fortzufahren müssen Sie bestätigen, dass Ihr Thema mit der aktuellen Version kompatibel ist';
$_LANG['of PrestaShop.'] = 'von Prestashop';
$_LANG['Link to the validator'] = 'Link zum Validator';
$_LANG['Online Theme Validator'] = 'Online Themenvalidator';
$_LANG['If your theme is not valid, you may experience some problems in your front-office aspect, but don\'t panic ! To solve this, you can make it compatible by correcting the validators errors or by using a theme compatible with '] = 'Sollte Ihr Thema nicht kompatibel sein, könnten einige Probleme im Front-End auftreten. Sie können die Kompatibilität wieder einstellen, indem Sie im Backend Unter Einstellungen die entsprechende Einstellung treffen';
$_LANG['If your theme is invalid, you may experience some problems in your Front Office layout, but do not panic! To resolve this, you can make it compatible by fixing the validator errors or by using a theme compatible with '] = 'Sollte Ihr Thema nicht kompatibel sein, könnten einige Probleme im Front-End auftreten. Sie können die Kompatibilität wieder einstellen, indem Sie im Backend Unter Einstellungen die entsprechende Einstellung treffen';
$_LANG['version'] = 'Version';
$_LANG['In this aim, use our'] = 'Verwenden Sie dazu unseren';
$_LANG['To do this, use our'] = 'Verwenden Sie dazu unseren';
$_LANG['Additional Benefits'] = 'Exklusiv Angebot';
$_LANG['Exclusive offers dedicated to PrestaShop merchants'] = 'Exklusiv Angebot für die Verkäufer PrestaShop';
$_LANG['PHP magic quotes option is off (recommended)'] = 'Die PHP-Option "magic quotes" ist deaktiviert (empfohlen)';
$_LANG['Other activity...'] = 'Andere activiteit...';
$_LANG['Modules'] = 'Módulos';
$_LANG['Benefits'] = 'Vorteile';
$_LANG['Benefits'] = 'Vorteile';
$_LANG['Create a MySQL database using phpMyAdmin (or by asking your hosting provider)'] = '';
$_LANG['- or -'] = '';
$_LANG['I want to'] = '';
$_LANG['install'] = '';
$_LANG['a new online shop with PrestaShop'] = '';
$_LANG['update'] = '';
$_LANG['my existing PrestaShop to a newer version'] = '';
$_LANG['Your current version is too old, updates are possible only from version'] = '';
$_LANG['and higher'] = '';
$_LANG['PHP settings (for assistance, ask your hosting provider):'] = '';
$_LANG['Database Configuration'] = '';
$_LANG['Database login:'] = '';
$_LANG['Database password:'] = '';
$_LANG['Please create a MySQL database and then verify your settings below. If you need assistance, please ask your hosting provider for this information.'] = '';
$_LANG['No more information'] = '';

View File

@@ -4,232 +4,225 @@ $_LANG['Installer'] = 'Instalación';
$_LANG['Updater'] = 'Actualizatión';
$_LANG['.'] = '.';
$_LANG['A Prestashop database already exists, please drop it or change the prefix.'] = 'Ya existe una base de datos PrestaShop con este prefijo, debe eliminarla manualmente o cambiar el prefijo.';
$_LANG['An email has been sent!'] = '¬°Se ha enviado un correo electrónico!';
$_LANG['Access and configure PHP 5.0+ on your hosting server'] = 'Comprobar que su alojamiento web propone PHP5 y/o activarlo';
$_LANG['An error occurred while resizing the picture.'] = 'Se ha producido un error al cambiar el tamaño de la imagen.';
$_LANG['A test e-mail has been sent to'] = '¡Se ha enviado un correo electrónico!';
$_LANG['An error occurred while resizing the picture.'] = 'Se ha producido un error al cambiar el tamaño de la imagen.';
$_LANG['An error occurred while sending email, please verify your parameters.'] = 'Se ha producido un error al enviar el correo electrónico, gracias por verificar la configuración.';
$_LANG['Available shop languages'] = 'Elija idioma';
$_LANG['Back'] = 'Anterior';
$_LANG['Back up your database and all application files (update only)'] = 'Salvaguardar su base de datos y sus archivos (únicamente en caso de actualización de PrestaShop)';
$_LANG['Please backup the database and application files.'] = 'Antes de continuar, debe hacer una copia de sus datos. Por favor copie todos los archivos desde el sitio en una carpeta de copia de seguridad, y guarde su base de datos.';
$_LANG['By default, the PHP \'mail()\' function is used'] = 'Por defecto, se utilizará la función PHP \'mail()\'';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'] = 'Error en la creación del archivo de configuración, si el archivo /config/settings.inc.php existe, por favor dele derechos púplicos de\escritura; si no, cree un archivo settings.inc.php en el repertorio de configuración (/config/)';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Imposible encontrar uno de los archivos de puesta al d√≠a SQL. Por favor, compruebe que el archivo /install/sql/upgrade no está vac√≠o.';
$_LANG['Choose the installer language:'] = '¬øEn qu√© idioma quiere efectuar la instalación?';
$_LANG['By default, the PHP \'mail()\' function is used (recommended)'] = 'Por defecto, se utilizará la función PHP \'mail()\'';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, otherwise please create a file named settings.inc.php in config directory.'] = 'Error en la creación del archivo de configuración, si el archivo /config/settings.inc.php existe, por favor dele derechos púplicos de\escritura; si no, cree un archivo settings.inc.php en el repertorio de configuración (/config/)';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Imposible encontrar uno de los archivos de puesta al día SQL. Por favor, compruebe que el archivo /install/sql/upgrade no está vacío.';
$_LANG['Choose your prefered language for the installation:'] = '¿En qué idioma quiere realizar la instalación?';
$_LANG['Community Forum'] = 'en nuestro foro comunitario';
$_LANG['Configure SMTP manually (advanced users only)'] = 'Configurar el env√≠o SMTP (expertos únicamente)';
$_LANG['Configure your database by filling out the following fields:'] = 'Configure su base de datos rellenando los siguientes campos:';
$_LANG['Congratulation, your online shop is now ready!'] = '¬°Enhorabuena, su tienda se ha instalado!';
$_LANG['Contact us!'] = '¬°Contacte con nosotros!';
$_LANG['Create new files and folders allowed'] = 'Creación de nuevas carpetas y archivos autorizados';
$_LANG['Data integrity is not valided. Hack attempt?'] = 'La integridad de los datos no está validada.';
$_LANG['Database Server is available but database is not found'] = 'La base de datos del servidor está disponible, pero la base de datos no se ha encontrado ';
$_LANG['Database Server is not found. Please verify the login, password and server fields.'] = 'La base de datos de servidor no se ha encontrado, por favor, compruebe sus datos de acceso o el nombre de servidor.';
$_LANG['Configure SMTP manually (advanced users only)'] = 'Configurar el envío SMTP (expertos únicamente)';
$_LANG['Configure your database by filling out the following fields:'] = 'Configure su base de datos llenando los siguientes campos:';
$_LANG['Congratulations, your online shop is now ready!'] = '¡Enhorabuena, su tienda se ha instalado!';
$_LANG['Contact us!'] = '¡Contacte con nosotros!';
$_LANG['Creation of new files and folders allowed'] = 'Creación de nuevas carpetas y archivos autorizados';
$_LANG['Database server is available but database was not found'] = 'La base de datos del servidor está disponible, pero la base de datos no se ha encontrado ';
$_LANG['Database server was not found. Please verify the login, password and server fields.'] = 'La base de datos de servidor no se ha encontrado, por favor, compruebe sus datos de acceso o el nombre del servidor.';
$_LANG['Database configuration'] = 'Configuración de la base de datos';
$_LANG['Database connection is available!'] = '¬°La base de datos se ha encontrado!';
$_LANG['Database is created!'] = '¬°Base de datos instalada!';
$_LANG['Database connection is available!'] = '¡La base de datos se ha encontrado!';
$_LANG['Database is created!'] = '¡Base de datos instalada!';
$_LANG['Database name:'] = 'Nombre de la base de datos:';
$_LANG['Disclaimer'] = 'Aviso';
$_LANG['Documentation Wiki'] = 'Documentación en Wiki';
$_LANG['E-mail address:'] = 'Dirección email:';
$_LANG['E-mail delivery set-up'] = 'Parámetros de env√≠o de emails';
$_LANG['Online documentation'] = 'Documentación en Wiki';
$_LANG['E-mail address:'] = 'Dirección de email:';
$_LANG['E-mail configuration'] = 'Parámetros de envío de emails';
$_LANG['Encryption:'] = 'Encriptación:';
$_LANG['Error!'] = '¬°Falta!';
$_LANG['Error!'] = '¡Falta!';
$_LANG['Error while creating the /config/settings.inc.php file.'] = 'Error al crear el archivo /config/settings.inc.php.';
$_LANG['Error while inserting content into the database'] = 'Error al insertar en la base de datos';
$_LANG['Error while inserting data in the database:'] = 'Error al insertar en la base de datos:';
$_LANG['Error while loading sql upgrade file.'] = 'Error al abrir el archivo SQL';
$_LANG['Error:'] = 'Error :';
$_LANG['Errors while updating...'] = 'Error al actualizar ...';
$_LANG['Error(s) while updating...'] = 'Error al actualizar ...';
$_LANG['Failed to write file to disk'] = 'No se pueden escribir archivos en el disco';
$_LANG['Fields are different!'] = '¬°Los campos son diferentes!';
$_LANG['File upload allowed'] = 'Envío de archivo autorizado';
$_LANG['Fields are different!'] = '¡Los campos son diferentes!';
$_LANG['File upload allowed'] = 'Envío de archivo autorizado';
$_LANG['File upload stopped by extension'] = 'Carga de archivos interrumpido a causa de la extensión incorrecta';
$_LANG['First name:'] = 'Nombre:';
$_LANG['For more information, please consult our'] = 'Para más información, consulte nuestra';
$_LANG['GD Library installed'] = 'Librería GD instalada';
$_LANG['GD Library installed'] = 'Librería GD instalada';
$_LANG['GZIP compression is on (recommended)'] = 'La compresión GZIP está activada (aconsejable)';
$_LANG['Here are your shop information. You can modify them once logged in.'] = 'Aqu√≠ tiene sus datos de conexión, puede modificarlos posteriormente si lo desea.';
$_LANG['However, you must know how to do the following manually:'] = 'No obstante, puede efectuar las siguientes tareas manualmente:';
$_LANG['I agree to the above terms and conditions.'] = 'Estoy de acuerdo con los términos y condiciones anteriores.';
$_LANG['If you have any questions, please visit our '] = 'Si tiene alguna duda o pregunta, eche un vistazo a nuestra ';
$_LANG['Impossible the access the a MySQL content file.'] = 'No se puede acceder al contenido de un archivo *.sql.';
$_LANG['Impossible to read the content of a MySQL content file.'] = 'No se puede leer el contenido de un archivo *.sql.';
$_LANG['Impossible to send the email!'] = '¬°No se puede enviar un correo electrónico!';
$_LANG['Impossible to upload the file!'] = '¬°No se puede enviar el archivo!';
$_LANG['Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'No se puede escribir la imagen /img/logo.jpg. Si ya existe, por favor, suprímala manualmente.';
$_LANG['Installation : complete install of the PrestaShop Solution'] = 'Instalación completa de PrestaShop';
$_LANG['Installation is complete!'] = '¬°Instalación terminada! ';
$_LANG['Installation method'] = 'Modo de instalación';
$_LANG['Here is your shop information. You can modify it once you are logged in.'] = 'Aquí tiene sus datos de conexión, puede modificarlos posteriormente si lo desea.';
$_LANG['However, you must know how to do the following:'] = 'Sin embargo, tiene que saber realizar las siguientes tareas:';
$_LANG['I agree to the above terms and conditions.'] = 'Estoy de acuerdo con los términos y condiciones.';
$_LANG['If you have any questions, please visit our '] = 'Si tiene alguna duda o pregunta, echele un vistazo a nuestra ';
$_LANG['Cannot access the a MySQL data file.'] = 'No se puede acceder al contenido de un archivo *.sql.';
$_LANG['Cannot read the content of a MySQL data file.'] = 'No se puede leer el contenido de un archivo *.sql.';
$_LANG['Cannot send the email!'] = '¡No se puede enviar un correo electrónico!';
$_LANG['Cannot upload the file!'] = '¡No se puede enviar el archivo!';
$_LANG['Cannot write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'No se puede escribir la imagen /img/logo.jpg. Si ya existe, por favor, suprímala manualmente.';
$_LANG['Installation: Full installation of PrestaShop'] = 'Instalación completa de PrestaShop';
$_LANG['Installation is complete!'] = '¡Instalación terminada! ';
$_LANG['What do you want to do?'] = 'Modo de instalación';
$_LANG['Last name:'] = 'Apellido:';
$_LANG['Licenses Agreement'] = 'Contrato de Licencia';
$_LANG['License Agreement'] = 'Contrato de Licencia';
$_LANG['Login:'] = 'Nombre de usuario:';
$_LANG['Merchant info'] = 'Información sobre el vendedor';
$_LANG['Missing a temporary folder'] = 'Carece de la carpeta temporal para recibir su archivo de correo. ¬°Por favor consulte su administrador de sistema!';
$_LANG['Shop settings and merchant account information'] = 'Información sobre el vendedor';
$_LANG['Missing a temporary folder'] = 'Carece de la carpeta temporal para recibir su archivo de correo. ¡Por favor consulte su administrador de sistema!';
$_LANG['MySQL support is on'] = 'El soporte de MySQL está activado';
$_LANG['Next'] = 'Siguiente';
$_LANG['No error code available.'] = 'Error desconocido.';
$_LANG['No file was uploaded.'] = 'No se ha enviado ningún archivo';
$_LANG['No upgrade is possible.'] = 'No existe actualización';
$_LANG['None'] = 'Ninguno';
$_LANG['Official forum'] = 'Foro Oficial';
$_LANG['One or more errors have occurred, you can find more informations below or in the log/installation.log file.'] = ' Se han producido uno o más errores';
$_LANG['PrestaShop Forums'] = 'Foro Oficial';
$_LANG['One or more errors have occurred, you can find more information below or in the log/installation.log file.'] = ' Se han producido uno o más errores';
$_LANG['Open external URLs allowed'] = 'Apertura autorizada de URL externas';
$_LANG['Optional languages'] = 'Idiomas opcionales';
$_LANG['Optional set-up'] = 'Parámetros opcionales';
$_LANG['PHP \'mail()\' function is available'] = 'La función PHP \'mail()\' está disponible';
$_LANG['PHP \'mail()\' function is unavailable'] = 'La función PHP \'mail()\' no está disponible';
$_LANG['PHP 5.0 or later installed'] = 'PHP 5.0 o superior instalado';
$_LANG['PHP parameters:'] = 'Parámetros PHP:';
$_LANG['PHP register global option is off (recommended)'] = 'La opción PHP "register global" está desactivada (aconsejable)';
$_LANG['Password:'] = 'Contraseña:';
$_LANG['Please allow 5-15 minutes to complete the installation process.'] = 'El proceso de instalación tardará tan solo unos minutos.';
$_LANG['Password:'] = 'Contraseña:';
$_LANG['Please allow 10-15 minutes to complete the installation process.'] = 'El proceso de instalación tardará solo unos minutos.';
$_LANG['Please set a SMTP login'] = 'Introduzca un nombre de usuario de SMTP';
$_LANG['Please set a SMTP password'] = 'Escriba la contraseña SMTP';
$_LANG['Please set a SMTP password'] = 'Escriba la contraseña SMTP';
$_LANG['Please set a SMTP server name'] = 'Introduzca un nombre de servidor SMTP';
$_LANG['Please set a database login'] = 'Introduzca el inicio de sesión de SQL';
$_LANG['Please set a database name'] = 'Introduzca el nombre de la base de datos';
$_LANG['Please set a database server name'] = 'Introduzca el nombre del servidor de la base de datos';
$_LANG['Port:'] = 'Puerto:';
$_LANG['PrestaShop %s Installer'] = 'Instalación de PrestaShop %s';
$_LANG['PrestaShop is ready!'] = '¬°PrestaShop está listo!';
$_LANG['Re-type to confirm:'] = 'Confirmar la contraseña:';
$_LANG['Ready, set, go!'] = '¬°PrestaShop está instalado!';
$_LANG['Receive notifications by e-mail'] = 'Recibir sus datos por email';
$_LANG['Refresh these settings'] = 'Comprobar de nuevo';
$_LANG['PrestaShop is ready!'] = '¡PrestaShop está listo!';
$_LANG['Re-type to confirm:'] = 'Confirmar la contraseña:';
$_LANG['Ready, set, go!'] = '¡PrestaShop está instalado!';
$_LANG['Receive this information by e-mail'] = 'Recibe estos datos por email';
$_LANG['Check my settings again'] = 'Comprobar de nuevo';
$_LANG['Required field'] = 'Los campos obligatorios';
$_LANG['Required set-up. Please verify the following checklist items are true.'] = 'Asegúrese por favor de que cada uno de los siguientes parámetros ha sido validado.';
$_LANG['SMTP connection is available!'] = '¬°Conexión SMTP disponible!';
$_LANG['Required set-up. Please verify the following checklist items:'] = 'Asegúrese por favor de que cada uno de los siguientes parámetros ha sido validado.';
$_LANG['SMTP connection is available!'] = '¡Conexión SMTP disponible!';
$_LANG['SMTP connection is unavailable'] = 'Conexión SMTP no está disponible.';
$_LANG['SMTP server:'] = 'Servidor SMTP:';
$_LANG['SQL errors have occurred.'] = 'Han aparecido errores de SQL.';
$_LANG['Select the different languages available for your shop'] = 'Seleccione los idiomas que su tienda ofrecerá a los clientes';
$_LANG['Send me a test email!'] = '¡Envíeme un email de prueba!';
$_LANG['Send me a test email!'] = '¡Envíeme un email de prueba!';
$_LANG['Server:'] = 'Servidor:';
$_LANG['Set permissions on folders & subfolders using Terminal or an FTP client'] = 'Poner los permisos en las carpetas y subcarpetas vía un cliente FTP';
$_LANG['Shop Configuration'] = 'Configuración tienda';
$_LANG['Shop logo'] = 'Logo de la tienda';
$_LANG['Set permissions on folders & subfolders using an FTP client'] = 'Poner los permisos en las carpetas y subcarpetas vía un cliente FTP';
$_LANG['Shop Configuration'] = 'Configuración de la tienda';
$_LANG['Shop logo:'] = 'Logo de la tienda:';
$_LANG['Shop name:'] = 'Nombre de la tienda:';
$_LANG['Shop password:'] = 'Contraseña de la tienda:';
$_LANG['Shop password:'] = 'Contraseña de la tienda:';
$_LANG['Shop\'s default language'] = 'Idioma por defecto';
$_LANG['Shop\'s languages'] = 'Idiomas de la tienda';
$_LANG['System and permissions'] = 'Sistema y permisos';
$_LANG['System Compatibility'] = 'Compatibilidad del sistema';
$_LANG['System Configuration'] = 'Configuración sistema';
$_LANG['Tables prefix:'] = 'Prefijo de las tablas:';
$_LANG['Test message - Prestashop'] = 'Instalación Prestashop - Prueba del servidor de correo';
$_LANG['The PrestaShop Installer will do most of the work in just a few clicks.'] = 'El instalador de PrestaShop hará todo el trabajo en tan solo algunos clics.';
$_LANG['The config/settings.inc.php file was not found. Did you delete or rename this file?'] = 'Config/settings.inc.php no se ha encontrado. ¬øHa eliminado o cambiado de nombre?';
$_LANG['The password is incorrect (alphanumeric string at least 8 characters).'] = 'Contraseña incorrecta (alfa-cadena numérica de al menos 8 caracteres)';
$_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'El archivo enviado supera el tama√±o máximo permitido.';
$_LANG['The uploaded file exceeds the upload_max_filesize directive in php.ini'] = 'El archivo enviado supera el tama√±o máximo permitido.';
$_LANG['The PrestaShop Installer will do most of the work for you in just a few clicks.'] = 'El instalador de PrestaShop hará todo el trabajo en solo unos clics.';
$_LANG['The config/settings.inc.php file was not found. Did you delete or rename this file?'] = 'Config/settings.inc.php no se ha encontrado. ¿Ha eliminado o cambiado de nombre?';
$_LANG['The password is incorrect (alphanumeric string at least 8 characters).'] = 'Contraseña incorrecta (alfa-cadena numérica de al menos 8 caracteres)';
$_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'El archivo enviado supera el tamaño máximo permitido.';
$_LANG['The uploaded file exceeds the upload_max_filesize directive in php.ini'] = 'El archivo enviado supera el tamaño máximo permitido.';
$_LANG['The uploaded file was only partially uploaded'] = 'El archivo fue parcialmente enviado.';
$_LANG['There is no older version. Did you delete or rename the config/settings.inc.php file?'] = 'Ninguna versión anterior detectada. ¬øPuede borrar o renombrar el archivo de configuración settings.inc.php archivo?';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication informations to the database.'] = 'Esta base de datos ya existe PrestaShop, por favor, valide de nuevo sus credenciales en la base de datos.';
$_LANG['This application need you to activate Javascript to correctly work.'] = 'Se requiere JavaScript para ejecutar esta aplicación.';
$_LANG['This email adress is wrong!'] = '¬°Dirección no válida!';
$_LANG['There is no older version. Did you delete or rename the config/settings.inc.php file?'] = 'Ninguna versión anterior detectada. ¿Puede borrar o renombrar el archivo de configuración settings.inc.php archivo?';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication information to the database.'] = 'Esta base de datos ya existe PrestaShop, por favor, valide de nuevo sus credenciales en la base de datos.';
$_LANG['This application needs you to activate Javascript to correctly work.'] = 'Se requiere JavaScript para ejecutar esta aplicación.';
$_LANG['This e-mail address is invalid!'] = '¡Dirección no válida!';
$_LANG['This installer is too old.'] = 'Este instalador es demasiado viejo.';
$_LANG['This is a test message, your server is now available to send email'] = 'Este es un mensaje de prueba, el servidor de correo funciona correctamente.';
$_LANG['This is not a valid file name.'] = 'Esto no es un nombre válido.';
$_LANG['This is not a valid image file.'] = 'Esto no es una imagen válida.';
$_LANG['Too long!'] = '¬°Demasiado largo!';
$_LANG['Too long'] = '¡Demasiado largo!';
$_LANG['Unfortunately,'] = 'Desgraciadamente,';
$_LANG['Update is complete!'] = '¬°Actualización completa!';
$_LANG['Update is complete!'] = '¡Actualización completa!';
$_LANG['Upgrade: get the latest stable version!'] = 'Actualización: instale la última versión de PrestaShop';
$_LANG['Verify now!'] = '¬°Pruebe ahora!';
$_LANG['Verify my database settings'] = '¡Pruebe ahora!';
$_LANG['Verify system compatibility'] = 'Compatibilidad sistema';
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATENCION : para más seguridad, por favor suprima la carpeta \'/install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = '¬°Atención: se recomienda hacer una copia de seguridad manual antes de continuar!';
$_LANG['WARNING: For security purposes, you must delete the "install" folder.'] = 'ATENCION : para más seguridad, por favor borre la carpeta \'/install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = '¡Atención : se recomienda hacer una copia de seguridad manual antes de continuar!';
$_LANG['Welcome'] = 'Bienvenido';
$_LANG['Welcome to the PrestaShop %s Installer'] = 'Bienvenido a la instalación de PrestaShop %s';
$_LANG['When your files and database are saving in an other support, please certify that your shop is really backed up.'] = 'Una vez que los archivos de aplicación y su base de datos se hayan guardado, le pediremos que los certifique. Por lo tanto, usted asume plenamente su responsabilidad por cualquier p√©rdida de datos debido a la actualización de la aplicación PrestaShop.';
$_LANG['Write permissions on folders (and subfolders):'] = 'en escritura en las carpetas (y sus subcarpetas) :';
$_LANG['Write permissions on files and folders:'] = 'Derechos en escritura en los archivos y carpetas :';
$_LANG['When your backup is complete, please confirm that it is fully functional.'] = 'Una vez que los archivos de aplicación y su base de datos se hayan guardado, le pediremos que los certifique. Por lo tanto, usted asume plenamente su responsabilidad por cualquier pérdida de datos debido a la actualización de la aplicación PrestaShop.';
$_LANG['Write permissions on folders (and subfolders):'] = 'Permiso de escritura en las carpetas (y sus subcarpetas) :';
$_LANG['Write permissions on files and folders:'] = 'Permiso de escritura en los archivos y carpetas :';
$_LANG['Write permissions on folders:'] = 'Permiso de escritura en los archivos de';
$_LANG['You already have the %s version.'] = 'Ya está en posesión de la versión %s';
$_LANG['You have just installed and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Acaba de instalar y de configurar su tienda en línea y se lo agradecemos.';
$_LANG['You have just updated and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Deba actualizar su tienda en línea. Se lo agradecemos.';
$_LANG['Your installation is finished!'] = '¬°La instalación está terminada!';
$_LANG['You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Acaba de instalar y de configurar su tienda online y se lo agradecemos.';
$_LANG['You have just updated and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Deba actualizar su tienda online. Se lo agradecemos.';
$_LANG['Your installation is finished!'] = '¡La instalación está terminada!';
$_LANG['Your update is finished!'] = 'La actualización se ha completado';
$_LANG['and/or'] = 'y/o';
$_LANG['enter@your.email'] = 'introduzca@su.email';
$_LANG['online documentation'] = 'documentación en l√≠nea';
$_LANG['installed version detected'] = 'versión detectada actualmente';
$_LANG['recommended dimensions: 230px X 75px'] = 'Dimensiones aconsajables: 230px x 75px';
$_LANG['online documentation'] = 'documentación online';
$_LANG['Currently installed version detected:'] = 'Versión detectada actualmente :';
$_LANG['Recommended dimensions:'] = 'Dimensiones recomendadas:';
$_LANG['view the log'] = 'ver el informe';
$_LANG['(no old version detected)'] = '(no hay ninguna versión antigua detectada)';
$_LANG['(No previous version detected)'] = '(no hay ninguna versión antigua detectada)';
$_LANG['Can\'t write settings file, please create a file named settings.inc.php in config directory.'] = 'El archivo de parámetros no pudo escribirse, cree un archivo llamado settings.inc.php en su repertorio de configuración.';
$_LANG['Cannot convert your database\'s data to utf-8.'] = 'No se pueden convertir los datos de su base de datos en UTF-8.';
$_LANG['Your database server does not support the utf-8 charset.'] = 'La base de datos del servidor no es compatible con UTF-8.';
$_LANG['Need help?'] = '¬øNecesita ayuda?';
$_LANG['Forum'] = 'El foro';
$_LANG['Cannot convert your database\'s data to UTF-8.'] = 'No se pueden convertir los datos de su base de datos en UTF-8.';
$_LANG['Your database server does not support the UTF-8 charset.'] = 'La base de datos del servidor no es compatible con UTF-8.';
$_LANG['Need help?'] = '¿Necesita ayuda?';
$_LANG['Forums'] = 'El foro';
$_LANG['Blog'] = 'El blog';
$_LANG['Back Office'] = 'Back Office';
$_LANG['Manage your store with your back office. Manage your orders and customers, add modules, change your theme, etc...'] = 'Administre su tienda con su back office. Gestione pedidos y clientes, agregue módulos, cambie el tema, etc ...';
$_LANG['Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.'] = 'Administre su tienda con su back office. Maneja sus pedidos y clientes, agregue módulos, cambie su tema, etc ...';
$_LANG['Manage your store'] = 'Administre su tienda';
$_LANG['Front Office'] = 'Front Office';
$_LANG['Find your store as your future customers will see!'] = '¬°Descubra su tienda tal como la verán sus clientes!';
$_LANG['Discover your store as your future customers will see it!'] = '¡Descubra su tienda tal como la verán sus clientes!';
$_LANG['Discover your store'] = 'Descubra su tienda';
$_LANG['Did you know?'] = '¿Sabía que?';
$_LANG['Prestashop and community offers over 40 different languages for free download on'] = 'La comunidad Prestashop ofrece más de 40 idiomas diferentes para su descarga gratuita en';
$_LANG['Default country:'] = 'País por defecto:';
$_LANG['Shop\'s timezone:'] = 'Zona horaria de la tienda:';
$_LANG['Your configuration is valid, click next to continue!'] = 'Su configuración es válida, haga clic en Siguiente para continuar';
$_LANG['Did you know?'] = '¿Sabía que?';
$_LANG['Prestashop and its community offers over 40 different languages for free download at'] = 'La comunidad Prestashop ofrece más de 40 idiomas diferentes para su descarga gratuita en';
$_LANG['Default country:'] = 'País por defecto:';
$_LANG['Shop timezone:'] = 'Zona horaria de la tienda:';
$_LANG['Your configuration is valid, click \"Next\" to continue!'] = 'Su configuración es válida, haga clic en \"Siguiente\" para continuar';
$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'Su configuración no es válida,<br />gracias por corregir la configuración:';
$_LANG['You have to create a database, help available in readme_en.txt'] = 'Debe crear una base de datos, puede encontrar ayuda en el archivo readme_es.txt';
$_LANG['Discover your store'] = 'Descubra su tienda';
$_LANG['If you check this box and your mail configuration is wrong, your installation might be blocked. If so, please uncheck the box to go to the next step.'] = 'Esta opción se puede bloquear si su configuración de correo electrónico está mal, gracias a desactivarla si usted no puede moverse a la siguiente etapa.';
$_LANG['A question about PrestaShop or issues during installation or upgrade? Call us!'] = '¬øAlguna pregunta sobre PrestaShop o problemas durante su instalación o actualización? ¬°Llámenos!';
$_LANG['Warning: If you check this box and your e-mail configuration is incorrect, you might not be able to continue the installation.'] = 'Esta opción se puede bloquear si su configuración de correo electrónico está incorrecta, por favor desactivarla si usted no puede moverse a la siguiente etapa.';
$_LANG['Invalid catalog mode'] = 'Campo modo catálogo no válido';
$_LANG['Catalog mode:'] = 'Modo Catálogo:';
$_LANG['Yes'] = 'Sí';
$_LANG['Catalog mode only:'] = 'Modo Catálogo:';
$_LANG['Yes'] = 'Sí';
$_LANG['No'] = 'No';
$_LANG['If you activate this feature, all purchase features will be disabled. You can activate this feature later in your back office'] = 'Si activa esta opción, se desactivarán todas las aplicaciones de compra. Puede activar dicha opción posteriormente en el panel de administración.';
$_LANG['the already installed version detected is too recent, no update available'] = 'la versiàöâ•n instalada que se ha detectado es demasiado reciente, no hay ninguna actualizaciàöâ•n disponible';
$_LANG['If you activate this feature, all purchasing will be disabled. However, you will be able to enable purchasing later in your Back Office.'] = 'Si activa esta opción, se desactivarán todas las aplicaciones de compra. Puede activar dicha opción posteriormente en el panel de administración.';
$_LANG['Your current version is already up-to-date'] = 'la versiàöâ•n instalada que se ha detectado es demasiado reciente, no hay ninguna actualizaciàöâ•n disponible';
$_LANG['If you do not know how to enable it, use our turnkey solution PrestaBox at'] = 'Si no sabe activarla, utilice nuestra solución PrestaBox en';
$_LANG['Invalid shop name'] = 'Nombre de la tienda no válido';
$_LANG['Your firstname contains some invalid characters'] = 'Su nombre contiene caracteres no válidos';
$_LANG['Your lastname contains some invalid characters'] = 'Su apellido contiene caracteres no válidos';
$_LANG['Your MySQL server doesn\'t support this engine, please use another one like MyISAM'] = 'El soporte de este motor de base de datos no se puede soportar, elija otro como por ejemplo MyISAM';
$_LANG['The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'] = 'El archivo /img/logo.jpg no tiene derechos de escritura, por favor efectúe un CHMOD 755 o 777 en el archivo';
$_LANG['The config/defines.inc.php file was not found. Where did you move it?'] = 'El archivo config/defines.inc.php no se ha encontrado. ¬øDónde se encuentra?';
$_LANG['All tips and advice about PrestaShop'] = 'Todos los trucos y consejos sobre PrestaShop';
$_LANG['The config/defines.inc.php file was not found. Where did you move it?'] = 'El archivo config/defines.inc.php no se ha encontrado. ¿Dónde se encuentra?';
$_LANG['PrestaShop tips and advice'] = 'Todos los trucos y consejos sobre PrestaShop';
$_LANG['+33 (0)1.40.18.30.04'] = '+33 (0)1.40.18.30.04';
$_LANG['the already installed version detected is too old, no more update available'] = 'la versión instalada es demasiado antigua, no existen actualizaciones.';
$_LANG['Mcrypt is available (recommended)'] = 'Mcrypt está disponible (aconsejable)';
$_LANG['If you do not know how to fix these issues, use turnkey solution PrestaBox at'] = 'Si no puede solucionar estos problemas, utilice nuestra solución PrestaBox en';
$_LANG['Database Engine:'] = 'Tipo de base de datos:';
$_LANG['Installation type'] = 'Tipo de instalación';
$_LANG['Simple mode: Basic installation'] = 'Modo básico: instalación simplificada';
$_LANG['Lite mode: Basic installation'] = 'Modo básico: instalación simplificada';
$_LANG['(FREE)'] = '(GRATIS)';
$_LANG['Full mode: includes'] = 'Modo completo: incluido';
$_LANG['100+ additional modules'] = '100 módulos';
$_LANG['Full mode: includes core modules,'] = 'Modo completo: con';
$_LANG['100+ additional modules'] = '100 módulos includidos';
$_LANG['and demo products'] = 'y productos de demostración';
$_LANG['(FREE too!)'] = '(¬°TAMBIEN GRATIS!)';
$_LANG['Shop configuration'] = 'Configuración de la tienda';
$_LANG['Main activity:'] = 'Actividad principal';
$_LANG['-- Please choose your main activity --'] = '-- Elija una actividad --';
$_LANG['Adult'] = 'Adulto y lencería';
$_LANG['Adult'] = 'Adulto y lencería';
$_LANG['Animals and Pets'] = 'Animales';
$_LANG['Art and Culture'] = 'Cultura y ocio';
$_LANG['Babies'] = 'Artículos para bebés';
$_LANG['Babies'] = 'Artículos para bebés';
$_LANG['Beauty and Personal Care'] = 'Salud y belleza';
$_LANG['Cars'] = 'Automóvil y motos';
$_LANG['Computer Hardware and Software'] = 'Informática y programas';
$_LANG['Download'] = 'Descargas';
$_LANG['Fashion and accessories'] = 'Ropa y complementos';
$_LANG['Flowers, Gifts and Crafts'] = 'Flores y regalos';
$_LANG['Food and beverage'] = 'Alimentación y gastronom√≠a';
$_LANG['HiFi, Photo and Video'] = 'Hifi, foto y vídeo';
$_LANG['Home and Garden'] = 'Casa y jardín';
$_LANG['Home Appliances'] = 'Electrodomésticos';
$_LANG['Jewelry'] = 'Joyería';
$_LANG['Mobile and Telecom'] = 'Telefon√≠a y comunicación';
$_LANG['Food and beverage'] = 'Alimentación y gastronomía';
$_LANG['HiFi, Photo and Video'] = 'Hifi, foto y vídeo';
$_LANG['Home and Garden'] = 'Casa y jardín';
$_LANG['Home Appliances'] = 'Electrodomésticos';
$_LANG['Jewelry'] = 'Joyería';
$_LANG['Mobile and Telecom'] = 'Telefonía y comunicación';
$_LANG['Services'] = 'Servicios';
$_LANG['Shoes and accessories'] = 'Calzado y complementos';
$_LANG['Sport and Entertainment'] = 'Deporte y ocio';
$_LANG['Sports and Entertainment'] = 'Deporte y ocio';
$_LANG['Travel'] = 'Viajes y turismo';
$_LANG['This information isn\'t required, it will be used for statistical purposes. This information doesn\'t change anything in your store.'] = 'Esta información no es obligatoria, solo se utilizará para estad√≠sticas. Proporcionarla o no, no cambiará nada en su tienda.';
$_LANG['This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.'] = 'Esta información no es obligatoria, solo se utilizará para estadísticas. Proporcionarla o no, no cambiará nada en su tienda.';
$_LANG['E-mail:'] = 'Email :';
$_LANG['I certify that I backed up my database and application files. I assume all responsibility for any data loss or damage related to this upgrade.'] = 'Certifico que he efectuado una copia de seguridad de mi base de datos y de mis archivos. Asumo plenamente la responsabilidad en caso en que se pierdan los datos o se produzca un error relacionado con esta actualización.';
$_LANG['Upgrade in progress'] = 'Actualización en curso';
@@ -247,42 +240,57 @@ $_LANG['minutes'] = 'minutos';
$_LANG['minute'] = 'minuto';
$_LANG['seconds'] = 'segundos';
$_LANG['second'] = 'segundo';
$_LANG['Depending on your server and the size of your shop'] = 'En función de la potencia de su servidor y el tama√±o de su tienda...';
$_LANG['You did not update your shop for a while,'] = 'No ha actualizado su tienda desde hace algún tiempo,';
$_LANG['Depending on your server and the size of your shop'] = 'En función de la potencia de su servidor y el tamaño de su tienda...';
$_LANG['You have not updated your shop in a while,'] = 'No ha actualizado su tienda desde hace algún tiempo,';
$_LANG['stable releases have been made ÄãÄãavailable since.'] = 'hay versiones mayores a disposición desde entonces.';
$_LANG['This is not a problem however the update may take several minutes, try to update your shop more frequently.'] = 'No es un problema pero la actualización puede durar algunos minutos. Intente actualizar su tienda más a menudo.';
$_LANG['No files to process, this might be an error.'] = 'No hay ningún archivo para tratar, se trata sin duda de un error';
$_LANG['Hosting parameters'] = 'Parámetros hosting';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order the update to be successful.'] = 'PrestaShop intenta configurar por usted los parámetros de su servidor para que la actualización se efectúe de manera correcta.';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order for the update to be successful.'] = 'PrestaShop intenta configurar por usted los parámetros de su servidor para que la actualización se efectúe de manera correcta.';
$_LANG['PHP parameter'] = 'Parámetro PHP';
$_LANG['Description'] = 'Descripción';
$_LANG['Current value'] = 'Valor actual';
$_LANG['Maximum allowed time for the upgrade'] = 'Tiempo máximo autorizado para la actualización';
$_LANG['Maximum memory allowed for the upgrade'] = 'Memoria máxima autorizada para la actualización';
$_LANG['All your settings seem to be OK, go for it!'] = 'Todos los parámetros son correctos, ¬°adelante!';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters (max_execution_time & memory_limit).'] = 'Atención, los parámetros parecen correctos pero no son óptimos, si encuentra una dificultad (actualización bloqueada antes de su finalización, error de memoria...), pida a su hosting que aumente los valores de dichos parámetros (max_execution_time & memory_limit).';
$_LANG['All your settings seem to be OK, go for it!'] = 'Todos los parámetros son correctos, ¡adelante!';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters: "max_execution_time" and "memory_limit".'] = 'Atención, los parámetros parecen correctos pero no son óptimos, si encuentra una dificultad (actualización bloqueada antes de su finalización, error de memoria...), pida a su hosting que aumente los valores de dichos parámetros (max_execution_time & memory_limit).';
$_LANG['We strongly recommend that you inform your hosting provider to modify the settings before process to the update.'] = 'Le aconsejamos que avise a su hosting antes de comenzar la actualización para que modifique los parámetros PHP.';
$_LANG['Let\'s go!'] = 'El proceso ha comenzado';
$_LANG['Click on the "Next" button to start the upgrade, this can take several minutes,'] = 'Pulse en "Siguiente" para comenzar la actualización, esto puede llevar unos minutos,';
$_LANG['do not close the window and be patient.'] = 'no cierre la ventana y espere.';
$_LANG['Your update is completed!'] = 'La actualización ha concluido con √©xito';
$_LANG['please be patient and do not close this window.'] = 'no cierre la ventana y espere.';
$_LANG['Your update is complete!'] = 'La actualización ha concluido con éxito';
$_LANG['Your shop version is now'] = 'La versión de su tienda ya está';
$_LANG['New features in PrestaShop v'] = 'Nuevas aplicaciones en dans PrestaShop v';
$_LANG['Module compatibility'] = 'Compatibilidad Módulos';
$_LANG['It\'s dangerous to keep non-native modules activated during the update. If you really want to take this risk, uncheck the following box.'] = 'Se desaconseja dejar los módulos no nativos activos durante la actualización. Si realmente desea correr ese riesgo, desactive la siguiente casilla.';
$_LANG['You will be able to manually reactivate them in your back-office, once the update process has succeeded.'] = 'Despu√©s podrá reactivarlos manualmente en el back-office, una vez la actualización haya terminado.';
$_LANG['Ok, please desactivate the following modules, I will reactivate them later:'] = 'De acuerdo, desactive automáticamente los siguientes módulos, los activar√© yo mismo más tarde:';
$_LANG['You will be able to manually reactivate them in your Back Office once the update process has succeeded.'] = 'Después podrá reactivarlos manualmente en el back-office, una vez la actualización haya terminado.';
$_LANG['Ok, please deactivate the following modules, I will reactivate them later:'] = 'De acuerdo, desactive automáticamente los siguientes módulos, los activaré yo mismo más tarde:';
$_LANG['Theme compatibility'] = 'Compatibilidad del tema';
$_LANG['Before updating, you need to check that your theme is compatible with version'] = 'Antes de la actualización, debe comprobar que su tema es compatible con la versión';
$_LANG['of PrestaShop.'] = 'de PrestaShop';
$_LANG['Link to the validator'] = 'Link hacia el validador';
$_LANG['Online Theme Validator'] = 'Validador del tema en línea';
$_LANG['If your theme is not valid, you may experience some problems in your front-office aspect, but don\'t panic ! To solve this, you can make it compatible by correcting the validators errors or by using a theme compatible with '] = 'Si su tema no es válido, podr√≠a tener problemas en la página de su sitio Web, pero no se preocupe, ¬°puede hacerlo compatible corrigiendo los errores se√±alados por el validador o utilizando un tema compatible con la versión!' ;
$_LANG['Online Theme Validator'] = 'Validador del tema online';
$_LANG['If your theme is invalid, you may experience some problems in your Front Office layout, but do not panic! To resolve this, you can make it compatible by fixing the validator errors or by using a theme compatible with '] = 'Si su tema no es válido, podría tener problemas en la página de su sitio Web, pero no se preocupe, ¡puede hacerlo compatible corrigiendo los errores señalados por el validador o utilizando un tema compatible con la versión!' ;
$_LANG['version'] = 'versión';
$_LANG['In this aim, use our'] = 'En este objetivo, utilice nuestro';
$_LANG['To do this, use our'] = 'En este objetivo, utilice nuestro';
$_LANG['Additional Benefits'] = 'Otros beneficios';
$_LANG['Exclusive offers dedicated to PrestaShop merchants'] = 'Ofertas exclusivas dedicadas a los comerciantes PrestaShop';
$_LANG['PHP magic quotes option is off (recommended)'] = 'La opción PHP "magic quotes" está desactivada (aconsejable)';
$_LANG['Other activity...'] = 'Otra actividad...';
$_LANG['Modules'] = 'Módulos';
$_LANG['Benefits'] = 'Beneficios';
$_LANG['Benefits'] = 'Beneficios';
$_LANG['Create a MySQL database using phpMyAdmin (or by asking your hosting provider)'] = 'Crear un base de datos MySQL usando phpMyAdmin (o preguntele a su proveedor de alojamiento web)';
$_LANG['- or -'] = ' - o -';
$_LANG['I want to'] = 'Yo quiero';
$_LANG['install'] = 'installar';
$_LANG['a new online shop with PrestaShop'] = 'una nueva tienda online con PrestaShop';
$_LANG['update'] = 'actualizar';
$_LANG['my existing PrestaShop to a newer version'] = 'mi tienda PrestaShop actual a una nueva version';
$_LANG['Your current version is too old, updates are possible only from version'] = 'Su version actual esta antigua, actualizaciones solo estan disponibles desde la version';
$_LANG['and higher'] = 'y en adelante';
$_LANG['PHP settings (for assistance, ask your hosting provider):'] = 'PHP parámetros (para assistencia, preguntale a su proveedor de alojamiento web)';
$_LANG['Database Configuration'] = 'Configuración de base de datos';
$_LANG['Database login:'] = 'Inicio de la base de datos';
$_LANG['Database password:'] = 'Contraseña de la base de datos';
$_LANG['Please create a MySQL database and then verify your settings below. If you need assistance, please ask your hosting provider for this information.'] = 'Por favor crear un base de datos MySQL y despues verifique sus parámetros debajo, para assistencia por favor preguntale a su proveedor de alojamiento web.';
$_LANG['No more information'] = 'No mas informacion';

View File

@@ -4,36 +4,35 @@ $_LANG['Installer'] = 'Installation';
$_LANG['Updater'] = 'Mise à jour';
$_LANG['.'] = '.';
$_LANG['A Prestashop database already exists, please drop it or change the prefix.'] = 'Une base de données PrestaShop existe déjà avec ce préfixe, vous devez la supprimer manuellement ou changer son préfixe.';
$_LANG['An email has been sent!'] = 'Un email a été envoyé !';
$_LANG['Access and configure PHP 5.0+ on your hosting server'] = 'Vérifier que votre hébergeur propose PHP5 et/ou l\'activer';
$_LANG['A test e-mail has been sent to'] = 'Un email a été envoyé à';
$_LANG['An error occurred while resizing the picture.'] = 'Une erreur est survenue lors du redimensionnement de l\'image.';
$_LANG['An error occurred while sending email, please verify your parameters.'] = 'Une erreur est survenue lors de l\'envoi de l\'email, merci de vérifier vos paramètres.';
$_LANG['Available shop languages'] = 'Langues proposées';
$_LANG['Back'] = 'Précédent';
$_LANG['Back up your database and all application files (update only)'] = 'Sauvegarder votre base de données et vos fichiers (en cas de mise à jour de PrestaShop uniquement)';
$_LANG['Please backup the database and application files.'] = 'Avant de continuer, vous devez sauvegarder vos données. Merci donc de copier tous les fichiers du site dans un dossier de sauvegarde, mais également de sauvegarder votre base de données. Si vous avez modifié manuellement le fichier caché ".htaccess" à la racine de votre boutique, prenez soin de le sauvegarder également.';
$_LANG['By default, the PHP \'mail()\' function is used'] = 'Par défaut, la fonction PHP \'mail()\' est utilisée';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'] = 'Erreur à la création du fichier de configuration, si le fichier /config/settings.inc.php existe, veuillez lui donner les droits publics d\'écriture; sinon veuillez créer un fichier settings.inc.php dans le répertoire de configuration (/config/)';
$_LANG['By default, the PHP \'mail()\' function is used (recommended)'] = 'Par défaut, la fonction PHP \'mail()\' est utilisée';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, otherwise please create a file named settings.inc.php in config directory.'] = 'Erreur à la création du fichier de configuration, si le fichier /config/settings.inc.php existe, veuillez lui donner les droits publics d\'écriture; sinon veuillez créer un fichier settings.inc.php dans le répertoire de configuration (/config/)';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Impossible de trouver un des fichiers de mise à jour SQL. Merci de vérifier que le dossier /install/sql/upgrade n\'est pas vide.';
$_LANG['Choose the installer language:'] = 'Dans quelle langue souhaitez-vous effectuer l\'installation ?';
$_LANG['Choose your prefered language for the installation:'] = 'Dans quelle langue souhaitez-vous effectuer l\'installation ?';
$_LANG['Community Forum'] = 'notre forum communautaire';
$_LANG['Configure SMTP manually (advanced users only)'] = 'Configurer l\'envoi SMTP (experts uniquement)';
$_LANG['Configure your database by filling out the following fields:'] = 'Configurez votre base de données en remplissant les champs ci-dessous :';
$_LANG['Congratulation, your online shop is now ready!'] = 'Félicitations, votre boutique est installée !';
$_LANG['Congratulations, your online shop is now ready!'] = 'Félicitations, votre boutique est installée !';
$_LANG['Contact us!'] = 'Contactez-nous';
$_LANG['Create new files and folders allowed'] = 'Création de nouveaux dossiers et fichiers autorisée';
$_LANG['Creation of new files and folders allowed'] = 'Création de nouveaux dossiers et fichiers autorisée';
$_LANG['Your database connection settings are not valid. Please check your server, name, login and prefix.'] = 'Vos informations de connexion à la base de données ne sont pas valides. Veuillez vérifier le serveur, nom, login et préfixe que vous avez indiqué.';
$_LANG['Database Server is available but database is not found'] = 'Le serveur de bases de données est disponible mais la base de données n\'a pas été trouvée';
$_LANG['Database Server is not found. Please verify the login, password and server fields.'] = 'Le serveur de bases de données n\'a pas été trouvé, merci de vérifier vos identifiants ou le nom du serveur.';
$_LANG['Database server is available but database was not found'] = 'Le serveur de bases de données est disponible mais la base de données n\'a pas été trouvée';
$_LANG['Database server was not found. Please verify the login, password and server fields.'] = 'Le serveur de bases de données n\'a pas été trouvé, merci de vérifier vos identifiants ou le nom du serveur.';
$_LANG['Database configuration'] = 'Configuration de la base de données';
$_LANG['Database connection is available!'] = 'La base de données a été trouvée !';
$_LANG['Database is created!'] = 'Base de données installée !';
$_LANG['Database name:'] = 'Nom de la base de données :';
$_LANG['Disclaimer'] = 'Avertissement';
$_LANG['Documentation Wiki'] = 'documentation Wiki';
$_LANG['Online documentation'] = 'documentation Wiki';
$_LANG['E-mail:'] = 'Email :';
$_LANG['E-mail address:'] = 'Adresse e-mail :';
$_LANG['E-mail delivery set-up'] = 'Paramètres d\'envoi des emails';
$_LANG['E-mail configuration'] = 'Paramètres d\'envoi des emails';
$_LANG['Encryption:'] = 'Cryptage :';
$_LANG['Error!'] = 'Erreur !';
$_LANG['Error while creating the /config/settings.inc.php file.'] = 'Erreur lors de la création du fichier /config/settings.inc.php.';
@@ -41,7 +40,7 @@ $_LANG['Error while inserting content into the database'] = 'Erreur lors de l\'i
$_LANG['Error while inserting data in the database:'] = 'Erreur lors de l\'insertion dans la base :';
$_LANG['Error while loading sql upgrade file.'] = 'Erreur lors de l\'ouverture du fichier SQL';
$_LANG['Error:'] = 'Erreur :';
$_LANG['Errors while updating...'] = 'Erreur lors de la mise à jour...';
$_LANG['Error(s) while updating...'] = 'Erreur lors de la mise à jour...';
$_LANG['Failed to write file to disk'] = 'Impossible d\'écrire le fichier sur le disque';
$_LANG['Fields are different!'] = 'Les champs sont différents !';
$_LANG['File upload allowed'] = 'Envoi de fichier autorisé';
@@ -50,23 +49,23 @@ $_LANG['First name:'] = 'Prénom :';
$_LANG['For more information, please consult our'] = 'Pour plus d\'infos, veuillez consulter notre';
$_LANG['GD Library installed'] = 'Librairie GD installée';
$_LANG['GZIP compression is on (recommended)'] = 'La compression GZIP est activée (recommandé)';
$_LANG['Here are your shop information. You can modify them once logged in.'] = 'Voici vos informations de connexion, vous pouvez les modifier ultérieurement dans votre arrière boutique.';
$_LANG['However, you must know how to do the following manually:'] = 'Toutefois, vous pouvez effectuer les tâches suivantes manuellement :';
$_LANG['Here is your shop information. You can modify it once you are logged in.'] = 'Voici vos informations de connexion, vous pouvez les modifier ultérieurement dans votre Back Office.';
$_LANG['However, you must know how to do the following:'] = 'Toutefois, vous devrez effectuer les actions suivantes :';
$_LANG['I agree to the above terms and conditions.'] = 'J\'approuve les termes et conditions du contrat ci-dessus.';
$_LANG['If you have any questions, please visit our '] = 'Si vous avez la moindre question, merci de jeter un oeil sur notre ';
$_LANG['Impossible the access the a MySQL content file.'] = 'Impossible d\'accéder au contenu d\'un des fichiers *.sql.';
$_LANG['Impossible to read the content of a MySQL content file.'] = 'Impossible de lire le contenu d\'un des fichiers *.sql.';
$_LANG['Impossible to send the email!'] = 'Impossible d\'envoyer l\'email !';
$_LANG['Impossible to upload the file!'] = 'Impossible d\'envoyer le fichier !';
$_LANG['Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Impossible d\'écrire l\'image /img/logo.jpg. Si celle-ci existe déjà, merci de la supprimer manuellement.';
$_LANG['Installation : complete install of the PrestaShop Solution'] = 'Installation complète de PrestaShop';
$_LANG['Cannot access the a MySQL data file.'] = 'Impossible d\'accéder au contenu d\'un des fichiers *.sql.';
$_LANG['Cannot read the content of a MySQL data file.'] = 'Impossible de lire le contenu d\'un des fichiers *.sql.';
$_LANG['Cannot send the email!'] = 'Impossible d\'envoyer l\'email !';
$_LANG['Cannot upload the file!'] = 'Impossible d\'envoyer le fichier !';
$_LANG['Cannot write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Impossible d\'écrire l\'image /img/logo.jpg. Si celle-ci existe déjà, merci de la supprimer manuellement.';
$_LANG['Installation: Full installation of PrestaShop'] = 'Installation complète de PrestaShop';
$_LANG['Installation is complete!'] = 'Installation terminée !';
$_LANG['Installation method'] = 'Méthode d\'installation';
$_LANG['What do you want to do?'] = 'Méthode d\'installation';
$_LANG['Last name:'] = 'Nom :';
$_LANG['Licenses Agreement'] = 'Contrat de licences';
$_LANG['License Agreement'] = 'Contrat de licences';
$_LANG['PrestaShop core is released under the OSL 3.0 while PrestaShop modules and themes are released under the AFL 3.0.'] = 'Le coeur de PrestaShop est publié sous licence OSL 3.0 tandis que les modules et thèmes sont publiés sous licence AFL 3.0.';
$_LANG['Login:'] = 'Identifiant :';
$_LANG['Merchant info'] = 'Informations à propos du vendeur';
$_LANG['Shop settings and merchant account information'] = 'Informations à propos du vendeur';
$_LANG['Missing a temporary folder'] = 'Il manque le dossier temporaire de réception de vos envois de fichiers. Merci de consulter votre administrateur système.';
$_LANG['MySQL support is on'] = 'Le support de MySQL est activé';
$_LANG['Next'] = 'Suivant';
@@ -74,18 +73,17 @@ $_LANG['No error code available.'] = 'Erreur inconnue.';
$_LANG['No file was uploaded.'] = 'Aucun fichier n\'a été envoyé';
$_LANG['No upgrade is possible.'] = 'Pas de mise à jour disponible';
$_LANG['None'] = 'Aucun';
$_LANG['Official forum'] = 'Forum officiel';
$_LANG['One or more errors have occurred, you can find more informations below or in the log/installation.log file.'] = 'Une ou plusieurs erreurs sont apparues, vous trouverez plus d\'informations ci-dessous ou dans le fichier log/installation.log';
$_LANG['PrestaShop Forums'] = 'Forums PrestaShop';
$_LANG['One or more errors have occurred, you can find more information below or in the log/installation.log file.'] = 'Une ou plusieurs erreurs sont apparues, vous trouverez plus d\'informations ci-dessous ou dans le fichier log/installation.log';
$_LANG['Open external URLs allowed'] = 'Ouverture des URL externes autorisée';
$_LANG['Optional languages'] = 'Langues non-proposées';
$_LANG['Optional set-up'] = 'Paramètres optionnels';
$_LANG['PHP \'mail()\' function is available'] = 'La fonction PHP \'mail()\' est disponible';
$_LANG['PHP \'mail()\' function is unavailable'] = 'La fonction PHP \'mail()\' n\'est pas disponible';
$_LANG['PHP 5.0 or later installed'] = 'PHP 5.0 ou supérieur installé';
$_LANG['PHP parameters:'] = 'Paramètres PHP :';
$_LANG['PHP register global option is off (recommended)'] = 'L\'option PHP "register global" est désactivée (recommandé)';
$_LANG['Password:'] = 'Mot de passe :';
$_LANG['Please allow 5-15 minutes to complete the installation process.'] = 'Le processus d\'installation devrait vous prendre quelques minutes seulement !';
$_LANG['Please allow 10-15 minutes to complete the installation process.'] = 'Le processus d\'installation devrait vous prendre quelques minutes seulement !';
$_LANG['Please set a SMTP login'] = 'Entrez un identifiant SMTP';
$_LANG['Please set a SMTP password'] = 'Entrez le password SMTP';
$_LANG['Please set a SMTP server name'] = 'Entrez un nom de serveur SMTP';
@@ -97,10 +95,10 @@ $_LANG['PrestaShop %s Installer'] = 'Installation de PrestaShop %s';
$_LANG['PrestaShop is ready!'] = 'PrestaShop est prêt!';
$_LANG['Re-type to confirm:'] = 'Confirmez le mot de passe :';
$_LANG['Ready, set, go!'] = 'PrestaShop est installé !';
$_LANG['Receive notifications by e-mail'] = 'Recevoir mes informations par e-mail';
$_LANG['Refresh these settings'] = 'Revérifier';
$_LANG['Receive this information by e-mail'] = 'Recevoir mes informations par e-mail';
$_LANG['Check my settings again'] = 'Revérifier';
$_LANG['Required field'] = 'Champs requis';
$_LANG['Required set-up. Please verify the following checklist items are true.'] = 'Merci de vous assurer que chacun des paramètres ci-dessous est valide (coche verte affichée).';
$_LANG['Required set-up. Please verify the following checklist items:'] = 'Merci de vous assurer que chacun des paramètres ci-dessous est valide (coche verte affichée).';
$_LANG['SMTP connection is available!'] = 'Connexion SMTP disponible !';
$_LANG['SMTP connection is unavailable'] = 'Connexion SMTP non disponible.';
$_LANG['SMTP server:'] = 'Serveur SMTP :';
@@ -108,19 +106,18 @@ $_LANG['SQL errors have occurred.'] = 'erreurs SQL sont apparues.';
$_LANG['Select the different languages available for your shop'] = 'Choisissez les différentes langues que votre boutique proposera aux clients';
$_LANG['Send me a test email!'] = 'M\'envoyer un email de test !';
$_LANG['Server:'] = 'Serveur :';
$_LANG['Set permissions on folders & subfolders using Terminal or an FTP client'] = 'Mettre les permissions sur les dossiers & sous-dossiers via un client FTP';
$_LANG['Set permissions on folders & subfolders using an FTP client'] = 'Mettre les permissions sur les dossiers & sous-dossiers via un client FTP';
$_LANG['Shop Configuration'] = 'Configuration boutique';
$_LANG['Shop logo'] = 'Logo de la boutique';
$_LANG['Shop logo:'] = 'Logo de la boutique :';
$_LANG['Shop name:'] = 'Nom de la boutique :';
$_LANG['Shop password:'] = 'Mot de passe de la boutique :';
$_LANG['Shop\'s default language'] = 'Langue par défaut';
$_LANG['Shop\'s languages'] = 'Langues de la boutique';
$_LANG['System and permissions'] = 'Système et permissions';
$_LANG['System Compatibility'] = 'Compatibilité du système';
$_LANG['System Configuration'] = 'Configuration système';
$_LANG['Tables prefix:'] = 'Préfixe des tables :';
$_LANG['Test message - Prestashop'] = 'Installation de Prestashop - test du serveur d\'email';
$_LANG['The PrestaShop Installer will do most of the work in just a few clicks.'] = 'L\'installeur de PrestaShop va faire tout le travail en quelques clics.';
$_LANG['The PrestaShop Installer will do most of the work for you in just a few clicks.'] = 'L\'installeur de PrestaShop va faire tout le travail en quelques clics.';
$_LANG['The config/settings.inc.php file was not found. Did you delete or rename this file?'] = 'Le fichier config/settings.inc.php n\'a pas été trouvé. L\'avez-vous supprimé ou renommé ?';
$_LANG['The config/defines.inc.php file was not found. Where did you move it?'] = 'Le fichier config/defines.inc.php n\'a pas été trouvé. Ou est-il passé ?';
$_LANG['The password is incorrect (alphanumeric string at least 8 characters).'] = 'Mot de passe incorrect (chaîne alpha-numérique d\'au moins 8 caractères)';
@@ -128,60 +125,59 @@ $_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified
$_LANG['The uploaded file exceeds the upload_max_filesize directive in php.ini'] = 'Le fichier envoyé dépasse la taille maximum autorisée.';
$_LANG['The uploaded file was only partially uploaded'] = 'Le fichier a été envoyé partiellement.';
$_LANG['There is no older version. Did you delete or rename the config/settings.inc.php file?'] = 'Pas de version antérieur détectée. Avez-vous supprimé ou renommé le fichier settings.inc.php du dossier config ?';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication informations to the database.'] = 'Cette base de données PrestaShop existe déjà, merci de revalider vos informations d\'authentification à la base de données.';
$_LANG['This application need you to activate Javascript to correctly work.'] = 'JavaScript est requis pour lancer cette application.';
$_LANG['This email adress is wrong!'] = 'Adresse incorrecte !';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication information to the database.'] = 'Cette base de données PrestaShop existe déjà, merci de revalider vos informations d\'authentification à la base de données.';
$_LANG['This application needs you to activate Javascript to correctly work.'] = 'JavaScript est requis pour lancer cette application.';
$_LANG['This e-mail address is invalid!'] = 'Adresse incorrecte !';
$_LANG['This installer is too old.'] = 'Cet installeur est trop vieux.';
$_LANG['This is a test message, your server is now available to send email'] = 'Ceci est un message de test, votre serveur d\'email fonctionne correctement.';
$_LANG['This is not a valid file name.'] = 'Ce n\'est pas un nom valide.';
$_LANG['This is not a valid image file.'] = 'Ce n\'est pas une image valide.';
$_LANG['Too long!'] = 'Trop long !';
$_LANG['Too long'] = 'Trop long !';
$_LANG['Unfortunately,'] = 'Malheureusement,';
$_LANG['Update is complete!'] = 'Mise à jour terminée !';
$_LANG['Upgrade: get the latest stable version!'] = 'Mise à jour : installez la dernière version de PrestaShop';
$_LANG['Verify now!'] = 'Tester la connexion';
$_LANG['Verify my database settings'] = 'Tester la connexion';
$_LANG['Verify system compatibility'] = 'Compatibilité système';
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\'.';
$_LANG['WARNING: For security purposes, you must delete the "install" folder.'] = 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Attention : une sauvegarde manuelle est INDISPENSABLE avant de procéder à la mise à jour de l\'application PrestaShop, cela afin de prévenir toute perte de données accidentelle';
$_LANG['Welcome'] = 'Bienvenue';
$_LANG['Welcome to the PrestaShop %s Installer'] = 'Bienvenue dans l\'installation de PrestaShop %s';
$_LANG['When your files and database are saving in an other support, please certify that your shop is really backed up.'] = 'Une fois que les fichiers de l\'application et votre base de données seront sauvegardés, nous vous demanderons de le certifier. De ce fait, vous assumerez l\'entière responsabilité d\'une éventuelle perte de données liée à la mise à jour de l\'application PrestaShop.';
$_LANG['When your backup is complete, please confirm that it is fully functional.'] = 'Une fois que les fichiers de l\'application et votre base de données seront sauvegardés, nous vous demanderons de le certifier. De ce fait, vous assumerez l\'entière responsabilité d\'une éventuelle perte de données liée à la mise à jour de l\'application PrestaShop.';
$_LANG['Write permissions on folders (and subfolders):'] = 'Droits en écriture sur les dossiers (et leurs sous-dossiers) :';
$_LANG['Write permissions on files and folders:'] = 'Droits en écriture sur les fichiers et dossiers:';
$_LANG['Write permissions on folders:'] = 'Droits en écriture sur les dossiers';
$_LANG['You already have the %s version.'] = 'Vous êtes déjà en possession de la version %s';
$_LANG['You have just installed and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Vous venez d\'installer et de configurer votre boutique en ligne, nous vous en remercions.';
$_LANG['You have just updated and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Vous venez de mettre à jour votre boutique en ligne. Nous vous en remercions.';
$_LANG['You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Vous venez d\'installer et de configurer votre boutique en ligne, nous vous en remercions.';
$_LANG['You have just updated and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Vous venez de mettre à jour votre boutique en ligne. Nous vous en remercions.';
$_LANG['Your installation is finished!'] = 'L\'installation est terminée !';
$_LANG['Your update is finished!'] = 'La mise à jour est terminée';
$_LANG['and/or'] = 'et/ou';
$_LANG['enter@your.email'] = 'entrez@votre.email';
$_LANG['online documentation'] = 'documentation en ligne';
$_LANG['installed version detected'] = 'version actuelle détectée';
$_LANG['recommended dimensions: 230px X 75px'] = 'Dimensions recommandées : 230px x 75px';
$_LANG['Currently installed version detected:'] = 'Version actuellement installée détectée :';
$_LANG['Recommended dimensions:'] = 'Dimensions recommandées :';
$_LANG['view the log'] = 'voir le rapport';
$_LANG['(no old version detected)'] = '(aucune ancienne version détectée)';
$_LANG['(No previous version detected)'] = '(aucune ancienne version détectée)';
$_LANG['Can\'t write settings file, please create a file named settings.inc.php in config directory.'] = 'Le fichier de paramètres n\'a pu être écrit, veuillez créer un fichier nommé settings.inc.php dans votre répertoire de configuration.';
$_LANG['Cannot convert your database\'s data to utf-8.'] = 'Impossible de convertir les données de votre base de données en utf-8.';
$_LANG['Your database server does not support the utf-8 charset.'] = 'Votre serveur de base de données ne supporte pas le jeu de caractère utf-8.';
$_LANG['Cannot convert your database\'s data to UTF-8.'] = 'Impossible de convertir les données de votre base de données en UTF-8.';
$_LANG['Your database server does not support the UTF-8 charset.'] = 'Votre serveur de base de données ne supporte pas le jeu de caractère UTF-8.';
$_LANG['Need help?'] = 'Besoin d\'aide ?';
$_LANG['All tips and advice about PrestaShop'] = 'Toutes les astuces et conseils autour de PrestaShop';
$_LANG['Forum'] = 'Le forum';
$_LANG['PrestaShop tips and advice'] = 'Toutes les astuces et conseils autour de PrestaShop';
$_LANG['Forums'] = 'Le forum';
$_LANG['Blog'] = 'Le blog';
$_LANG['Back Office'] = 'Back Office';
$_LANG['Manage your store with your back office. Manage your orders and customers, add modules, change your theme, etc...'] = 'Administrez votre boutique avec votre back office. Gérer vos commandes et vos clients, ajouter des modules, modifier votre thème, etc...';
$_LANG['Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.'] = 'Administrez votre boutique avec votre back office. Gérer vos commandes et vos clients, ajouter des modules, modifier votre thème, etc...';
$_LANG['Manage your store'] = 'Gérez votre boutique';
$_LANG['Front Office'] = 'Front Office';
$_LANG['Find your store as your future customers will see!'] = 'Découvrez votre boutique telle que vos futurs clients la verront !';
$_LANG['Discover your store as your future customers will see it!'] = 'Découvrez votre boutique telle que vos futurs clients la verront !';
$_LANG['Discover your store'] = 'Découvrir ma boutique';
$_LANG['Did you know?'] = 'Le saviez-vous ?';
$_LANG['Prestashop and community offers over 40 different languages for free download on'] = 'Prestashop et sa communauté propose plus de 40 langues différentes en téléchargement gratuit sur';
$_LANG['Prestashop and its community offers over 40 different languages for free download at'] = 'Prestashop et sa communauté proposent plus de 40 langues différentes en téléchargement gratuit sur';
$_LANG['Default country:'] = 'Pays par défaut :';
$_LANG['Shop\'s timezone:'] = 'Fuseau horaire de la boutique :';
$_LANG['Your configuration is valid, click next to continue!'] = 'Votre configuration est valide, cliquez sur suivant pour continuer !';
$_LANG['Shop timezone:'] = 'Fuseau horaire de la boutique :';
$_LANG['Your configuration is valid, click \"Next\" to continue!'] = 'Votre configuration est valide, cliquez sur suivant pour continuer !';
$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'Votre configuration n\'est pas valide, merci de corriger ces problèmes :';
$_LANG['You have to create a database, help available in readme_en.txt'] = 'Vous devez au préalable créer une base de données (aide disponible dans le fichier readme.txt)';
$_LANG['If you check this box and your mail configuration is wrong, your installation might be blocked. If so, please uncheck the box to go to the next step.'] = 'Cette option peut être bloquante si votre configuration e-mail est erronée, merci de la désactiver si vous ne pouvez pas passer à l\'étape suivante.';
$_LANG['Warning: If you check this box and your e-mail configuration is incorrect, you might not be able to continue the installation.'] = 'Cette option peut être bloquante si votre configuration e-mail est erronée, merci de la désactiver si vous ne pouvez pas passer à l\'étape suivante.';
$_LANG['Mcrypt is available (recommended)'] = 'Mcrypt est disponible (recommandé)';
$_LANG['Your MySQL server doesn\'t support this engine, please use another one like MyISAM'] = 'Le support de ce moteur de base de donnée n\'est pas supporté, veuillez en choisir un autre tel que MyISAM';
$_LANG['Adult'] = 'Adulte et lingerie';
@@ -202,34 +198,31 @@ $_LANG['Jewelry'] = 'Bijouterie';
$_LANG['Mobile and Telecom'] = 'Téléphonie et communication';
$_LANG['Services'] = 'Services';
$_LANG['Shoes and accessories'] = 'Chaussures et accessoires';
$_LANG['Sport and Entertainment'] = 'Sport et loisirs';
$_LANG['Sports and Entertainment'] = 'Sports et loisirs';
$_LANG['Travel'] = 'Voyage et tourisme';
$_LANG['Main activity:'] = 'Activité principale';
$_LANG['-- Please choose your main activity --'] = '-- Choisissez une activité --';
$_LANG['A question about PrestaShop or issues during installation or upgrade? Call us!'] = 'Une question à propos de PrestaShop ou un problème lors de l\'installation ou la mise à jour ? Appelez-nous !';
$_LANG['Invalid catalog mode'] = 'Champ mode catalog invalide';
$_LANG['Catalog mode:'] = 'Mode Catalogue :';
$_LANG['Invalid catalog mode'] = 'Champ Mode catalogue invalide';
$_LANG['Catalog mode only:'] = 'Mode Catalogue uniquement :';
$_LANG['Yes'] = 'Oui';
$_LANG['No'] = 'Non';
$_LANG['If you activate this feature, all purchase features will be disabled. You can activate this feature later in your back office'] = 'Si vous activez cette option, toutes les fonctionnalités d\'achats vont être désactivées. Vous pouvez activer cette option plus tard dans votre back-office';
$_LANG['the already installed version detected is too recent, no update available'] = 'la version déjà installée qui a été détectée est trop récente, aucune mise à jour disponible';
$_LANG['This information isn\'t required, it will be used for statistical purposes. This information doesn\'t change anything in your store.'] = 'Cette information n\'est pas obligatoire, elle sera utilisée à des fins statistiques. Cette information ne changera rien dans votre boutique.';
$_LANG['If you activate this feature, all purchasing will be disabled. However, you will be able to enable purchasing later in your Back Office.'] = 'Si vous activez cette option, toutes les fonctionnalités d\'achats vont être désactivées. Vous pouvez activer cette option plus tard dans votre back-office';
$_LANG['Your current version is already up-to-date'] = 'la version déjà installée qui a été détectée est trop récente, aucune mise à jour disponible';
$_LANG['This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.'] = 'Cette information n\'est pas obligatoire, elle sera utilisée à des fins statistiques. Cette information ne changera rien dans votre boutique.';
$_LANG['Invalid shop name'] = 'Nom de boutique invalide';
$_LANG['Your firstname contains some invalid characters'] = 'Votre prénom contient des caractères invalides';
$_LANG['Your lastname contains some invalid characters'] = 'Votre nom contient des caractères invalides';
$_LANG['PrestaShop %s Installer'] = '';
$_LANG['+33 (0)1.40.18.30.04'] = '+33 (0)1.40.18.30.04';
$_LANG['(FREE)'] = '(GRATUIT)';
$_LANG['(FREE too!)'] = '(GRATUIT AUSSI !)';
$_LANG['Shop configuration'] = 'Configuration de la boutique';
$_LANG['Database Engine:'] = 'Type de base de données :';
$_LANG['I certify that I backed up my database and application files. I assume all responsibility for any data loss or damage related to this upgrade.'] = 'Je certifie avoir effectué une sauvegarde de ma base de données et de mes fichiers. J\'assume pleinement l\'ensemble des responsabilités liées à toute perte de données ou dommage lié à cette mise à jour.';
$_LANG['The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'] = 'Le fichier /img/logo.jpg n\'a pas les droits d\'écriture, merci d\'effectuer un CHMOD 755 ou 777 sur ce fichier';
$_LANG['If you do not know how to enable it, use our turnkey solution PrestaBox at'] = 'Si vous ne savez pas comment l\'activer, utilisez notre solution PrestaBox sur';
$_LANG['If you do not know how to fix these issues, use turnkey solution PrestaBox at'] = 'Si vous ne parvenez pas à régler ces problèmes, utilisez notre solution PrestaBox sur';
$_LANG['the already installed version detected is too old, no more update available'] = 'la version déjà installée est trop ancienne, aucune mise à jour possible.';
$_LANG['Simple mode: Basic installation'] = 'Mode basique : installation simplifiée';
$_LANG['Full mode: includes'] = 'Mode complet : inclut';
$_LANG['Lite mode: Basic installation'] = 'Mode basique : installation simplifiée';
$_LANG['Full mode: includes core modules,'] = 'Mode complet : inclut';
$_LANG['100+ additional modules'] = '100 modules';
$_LANG['and demo products'] = 'et des produits de démonstration';
$_LANG['Installation type'] = 'Type d\'installation';
@@ -249,12 +242,12 @@ $_LANG['minute'] = 'minute';
$_LANG['seconds'] = 'secondes';
$_LANG['second'] = 'seconde';
$_LANG['Depending on your server and the size of your shop'] = 'Selon la puissance de votre serveur et la taille de votre boutique...';
$_LANG['You did not update your shop for a while,'] = 'Vous n\'avez pas mis à jour votre boutique depuis un moment,';
$_LANG['You have not updated your shop in a while,'] = 'Vous n\'avez pas mis à jour votre boutique depuis un moment,';
$_LANG['stable releases have been made available since.'] = 'versions majeures ont été mis à disposition depuis.';
$_LANG['This is not a problem however the update may take several minutes, try to update your shop more frequently.'] = 'Ce n\'est pas un problème cependant la mise à jour risque de durer quelques minutes. A l\'avenir, essayez de mettre à jour votre boutique plus souvent.';
$_LANG['No files to process, this might be an error.'] = 'Aucun fichier à traiter, il s\'agit probablement d\'une erreur';
$_LANG['Hosting parameters'] = 'Paramètres hébergement';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order the update to be successful.'] = 'PrestaShop essaye automatiquement de configurer pour vous les paramètres de votre serveur afin que la mise à jour se déroule correctement.';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order for the update to be successful.'] = 'PrestaShop essaye automatiquement de configurer pour vous les paramètres de votre serveur afin que la mise à jour se déroule correctement.';
$_LANG['PHP parameter'] = 'Paramètre PHP';
$_LANG['Description'] = 'Description';
$_LANG['Current value'] = 'Valeur actuelle';
@@ -263,24 +256,24 @@ $_LANG['Maximum memory allowed for the upgrade'] = 'Mémoire maximum autorisée
$_LANG['All your settings seem to be OK, go for it!'] = 'Tous vos paramètres semblent OK, cliquez sur suivant !';
$_LANG['Let\'s go!'] = 'C\'est parti !';
$_LANG['Click on the "Next" button to start the upgrade, this can take several minutes,'] = 'Cliquez sur le bouton "Suivant" pour démarrer la mise à jour, cela peut prendre plusieurs minutes,';
$_LANG['do not close the window and be patient.'] = 'ne fermez pas la fenêtre et soyez patient.';
$_LANG['Your update is completed!'] = 'Votre mise à jour est terminée !';
$_LANG['please be patient and do not close this window.'] = 'ne fermez pas la fenêtre et soyez patient.';
$_LANG['Your update is complete!'] = 'Votre mise à jour est terminée !';
$_LANG['Your shop version is now'] = 'La version de votre boutique est maintenant';
$_LANG['New features in PrestaShop v'] = 'Nouvelles fonctionnalités dans PrestaShop v';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters (max_execution_time & memory_limit).'] = 'Attention, votre paramètres semblent corrects mais ne sont pas optimaux, si jamais vous rencontrez des soucis (mise à jour qui se bloque avant la fin, erreur de mémoire...), merci de demander à votre hébergeur d\'augmenter les valeurs de ces paramètres (max_execution_time & memory_limit).';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters: "max_execution_time" and "memory_limit".'] = 'Attention, votre paramètres semblent corrects mais ne sont pas optimaux, si jamais vous rencontrez des soucis (mise à jour qui se bloque avant la fin, erreur de mémoire...), merci de demander à votre hébergeur d\'augmenter les valeurs de ces paramètres (max_execution_time & memory_limit).';
$_LANG['We strongly recommend that you inform your hosting provider to modify the settings before process to the update.'] = 'Nous vous recommandons fortement de prévenir votre hébergeur avant de procéder à la mise à jour afin qu\'il modifie ces paramètres PHP.';
$_LANG['Module compatibility'] = 'Compatibilité Modules';
$_LANG['It\'s dangerous to keep non-native modules activated during the update. If you really want to take this risk, uncheck the following box.'] = 'Il est déconseillé de laisser les modules non natifs activés durant la mise à jour. Si vous voulez réellement prendre ce risque, décochez la case ci-dessous.';
$_LANG['You will be able to manually reactivate them in your back-office, once the update process has succeeded.'] = 'Vous pourrez ensuite les réactiver manuellement dans le back-office, une fois le processus de mise à jour terminé.';
$_LANG['Ok, please desactivate the following modules, I will reactivate them later:'] = 'D\'accord, désactiver automatiquement les modules suivants, je les réactiverai moi-même plus tard&nbsp;:';
$_LANG['You will be able to manually reactivate them in your Back Office once the update process has succeeded.'] = 'Vous pourrez ensuite les réactiver manuellement dans le back-office, une fois le processus de mise à jour terminé.';
$_LANG['Ok, please deactivate the following modules, I will reactivate them later:'] = 'D\'accord, désactiver automatiquement les modules suivants, je les réactiverai moi-même plus tard&nbsp;:';
$_LANG['Theme compatibility'] = 'Compatibilité du thème';
$_LANG['Before updating, you need to check that your theme is compatible with version'] = 'Avant la mise à jour, vous avez besoin de vérifier que votre thème reste compatible avec la version';
$_LANG['of PrestaShop.'] = 'de PrestaShop';
$_LANG['Link to the validator'] = 'Lien vers le validateur';
$_LANG['Online Theme Validator'] = 'Validateur de Theme en ligne';
$_LANG['If your theme is not valid, you may experience some problems in your front-office aspect, but don\'t panic ! To solve this, you can make it compatible by correcting the validators errors or by using a theme compatible with '] = 'Si votre thème n\'est pas valide, vous pourrez rencontrer quelques problèmes d\'affichage de votre site, mais inutile de paniquer ! Vous pouvez le rendre compatible en corrigeant les erreurs signalées par le validateur ou en utilisant un thème compatible avec la version' ;
$_LANG['If your theme is invalid, you may experience some problems in your Front Office layout, but do not panic! To resolve this, you can make it compatible by fixing the validator errors or by using a theme compatible with '] = 'Si votre thème n\'est pas valide, vous pourrez rencontrer quelques problèmes d\'affichage de votre site, mais inutile de paniquer ! Vous pouvez le rendre compatible en corrigeant les erreurs signalées par le validateur ou en utilisant un thème compatible avec la version' ;
$_LANG['version'] = 'version';
$_LANG['In this aim, use our'] = 'Dans ce but, utilisez notre';
$_LANG['To do this, use our'] = 'Dans ce but, utilisez notre';
$_LANG['Warning, we detected that the version specified in your config/settings.inc.php does not match your SQL database structure.<br />File config/settings.inc.php indicates: %1$s<br />Our automatic detection tool has detected version: %2$s<br /><br />You should edit your config/settings.inc.php file to replace %1$s by %2$s.<br />Failure to fix this issue before upgrading may result in severe complications.<br />Do not forget to relaunch the installer after this modification by pressing F5 on your web browser.'] = "Attention, nous avons détecté que la version spécifiée dans votre fichier config/settings.inc.php ne correspond pas à celle de la structure de votre base de donnée.<br />Le fichier config/settings.inc.php indique : %1\$s<br />Notre script de détection de version indique : %2\$s<br /><br />Vous devriez éditer votre fichier config/settings.inc.php pour remplacer %1\$s par %2\$s.<br />Ne pas résoudre ce problème risque d'entrainer de sévères complications durant la mise à jour.<br />N'oubliez pas de relancer l'installeur après ces modifications en appuyant sur F5 sur votre navigateur internet.";
$_LANG['Warning, we detected that the version specified in your config/settings.inc.php does not match your SQL database structure.<br />File config/settings.inc.php indicates: %1$s<br />Our automatic detection tool has detected a version between %2$s and %3$s<br /><br />You should edit your config/settings.inc.php file to replace %1$s by your real shop version.<br />Failure to fix this issue before upgrading may result in severe complications.<br />Do not forget to relaunch the installer after this modification by pressing F5 on your web browser.'] = "Attention, nous avons détecté que la version spécifiée dans votre fichier config/settings.inc.php ne correspond pas à celle de la structure de votre base de donnée.<br />Le fichier config/settings.inc.php indique : %1\$s<br />Notre script de détection de version indique une version entre %2\$s et %3\$s<br /><br />Vous devriez éditer votre fichier config/settings.inc.php pour remplacer %1\$s par la vraie version de votre magasin.<br />Ne pas résoudre ce problème risque d'entrainer de sévères complications durant la mise à jour.<br />N'oubliez pas de relancer l'installeur après ces modifications en appuyant sur F5 sur votre navigateur internet.";
$_LANG['Warning, the installer was unable to detect what is your current PrestaShop version from a database structure analysis. This means some fields or tables are missing, and upgrade is under your own risk.'] = "Attention, l'installateur n'a pas été capable de détecter votre version de PrestaShop à partir de l'analyse de votre base de donnée. Cela signifie que certains champs ou tables sont manquants. La mise à jour est à vos risques et périls.";
@@ -291,4 +284,19 @@ $_LANG['PHP magic quotes option is off (recommended)'] = 'L\'option PHP "magic q
$_LANG['Dom extension loaded'] = 'L\'extension Dom est activée';
$_LANG['Other activity...'] = 'Autre activité..';
$_LANG['Modules'] = 'Modules';
$_LANG['Benefits'] = 'Avantages';
$_LANG['Benefits'] = 'Avantages';
$_LANG['Create a MySQL database using phpMyAdmin (or by asking your hosting provider)'] = 'Créer une base de données MySQL en utilisant phpMyAdmin (ou en demandant à votre hébergeur)';
$_LANG['- or -'] = '- ou -';
$_LANG['I want to'] = 'Je souhaite';
$_LANG['install'] = 'installer';
$_LANG['a new online shop with PrestaShop'] = 'une nouvelle boutique avec PrestaShop';
$_LANG['update'] = 'mettre à jour';
$_LANG['my existing PrestaShop to a newer version'] = 'ma boutique PrestaShop vers une nouvelle version';
$_LANG['Your current version is too old, updates are possible only from version'] = 'Votre version actuelle est trop ancienne, les mises à jour sont autorisées à partir de la version';
$_LANG['and higher'] = 'et versions supérieures';
$_LANG['PHP settings (for assistance, ask your hosting provider):'] = 'Paramètres PHP (Demandez de l\'aide à votre hébergeur si nécessaire)';
$_LANG['Database Configuration'] = 'Configuration base de données';
$_LANG['Database login:'] = 'Identifiant base de données';
$_LANG['Database password:'] = 'Mot de passe base de données';
$_LANG['Please create a MySQL database and then verify your settings below. If you need assistance, please ask your hosting provider for this information.'] = 'Merci de créer une base de données MySQL puis de saisir et vérifier les paramètres ci-dessous. Si vous avez besoin d\'aide pour ces paramètres, demandez à votre hébergeur.';
$_LANG['No more information'] = 'Pas d\'autres informations';

View File

@@ -4,36 +4,34 @@ $_LANG['Installer'] = 'Installazione';
$_LANG['Updater'] = 'Aggiornamento';
$_LANG['.'] = '.';
$_LANG['A Prestashop database already exists, please drop it or change the prefix.'] = 'Esiste già un database Prestashop con questo prefisso; eliminalo oppure cambia prefisso.';
$_LANG['An email has been sent!'] = 'E\' stata inviata una e-mail!';
$_LANG['Access and configure PHP 5.0+ on your hosting server'] = 'Verifica che il tuo host proponga PHP 5.0 e/o attivalo';
$_LANG['A test e-mail has been sent to'] = 'E\' stata inviata una e-mail!';
$_LANG['An error occurred while resizing the picture.'] = 'Si è verificato un errore durante il ridimensionamento dell\'immagine';
$_LANG['An error occurred while sending email, please verify your parameters.'] = 'Si è verificato un errore durante l\'invio della e-mail, verifica i tuoi parametri.';
$_LANG['Available shop languages'] = 'Lingue proposte';
$_LANG['Back'] = 'Precedente';
$_LANG['Back up your database and all application files (update only)'] = 'Fai il back up del tuo database e di tutti i tuoi file applicazione (solo in caso di aggiornamento di PrestaShop)';
$_LANG['Please backup the database and application files.'] = 'Prima di proseguire, fai il back up dei tuoi dati. Copia tutti i file del sito in una cartella di back up, ma salva anche il tuo database. Se hai modificato manualmente il file nascosto ".htaccess" nel tuo negozio, assicurati di averlo salvato.';
$_LANG['By default, the PHP \'mail()\' function is used'] = 'La funzione PHP \'mail()\' viene usata di default.';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'] = 'Impossibile creare file di impostazione, se /config/settings.inc.php esiste, dai un\'autorizzazione scritta a questo file, altrimenti crea un file chiamato settings.inc.php nella directory config (/config/)';
$_LANG['By default, the PHP \'mail()\' function is used (recommended)'] = 'La funzione PHP \'mail()\' viene usata di default.';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, otherwise please create a file named settings.inc.php in config directory.'] = 'Impossibile creare file di impostazione, se /config/settings.inc.php esiste, dai un\'autorizzazione scritta a questo file, altrimenti crea un file chiamato settings.inc.php nella directory config (/config/)';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Impossibile trovare i file di upgrade SQL. Verifica che la cartella /install/sql/upgrade non sia vuota.';
$_LANG['Choose the installer language:'] = 'In quale lingua vuoi effettuare l\'installazione?';
$_LANG['Choose your prefered language for the installation:'] = 'In quale lingua vuoi effettuare l\'installazione?';
$_LANG['Community Forum'] = 'il nostro forum comune';
$_LANG['Configure SMTP manually (advanced users only)'] = 'Configura l\'invio SMTP (solo per utenti esperti)';
$_LANG['Configure your database by filling out the following fields:'] = 'Configura il tuo database riempiendo i campi qui sotto:';
$_LANG['Congratulation, your online shop is now ready!'] = 'Congratulazioni, il tuo negozio è installato!';
$_LANG['Congratulations, your online shop is now ready!'] = 'Congratulazioni, il tuo negozio è installato!';
$_LANG['Contact us!'] = 'Contattaci!';
$_LANG['Create new files and folders allowed'] = 'Autorizzato a creare nuovi file e cartelle';
$_LANG['Data integrity is not valided. Hack attempt?'] = 'L\'integrità dei dati non è convalidata.';
$_LANG['Database Server is available but database is not found'] = 'Il server del database è disponibile ma il database non è stato trovato.';
$_LANG['Database Server is not found. Please verify the login, password and server fields.'] = 'Il server del database non è stato trovato, verifica i tuoi dati o il nome del server.';
$_LANG['Creation of new files and folders allowed'] = 'Autorizzato a creare nuovi file e cartelle';
$_LANG['Database server is available but database was not found'] = 'Il server del database è disponibile ma il database non è stato trovato.';
$_LANG['Database server was not found. Please verify the login, password and server fields.'] = 'Il server del database non è stato trovato, verifica i tuoi dati o il nome del server.';
$_LANG['Database configuration'] = 'Configurazione del database.';
$_LANG['Database connection is available!'] = 'Il database è stato trovato!';
$_LANG['Database is created!'] = 'Database installato!';
$_LANG['Database name:'] = 'Nome database:';
$_LANG['Disclaimer'] = 'Attenzione';
$_LANG['Documentation Wiki'] = 'documentazione Wiki';
$_LANG['Online documentation'] = 'documentazione Wiki';
$_LANG['E-mail:'] = 'E-mail :';
$_LANG['E-mail address:'] = 'Indirizzo e-mail:';
$_LANG['E-mail delivery set-up'] = 'Parametri invio mail';
$_LANG['E-mail configuration'] = 'Parametri invio mail';
$_LANG['Encryption:'] = 'Criptaggio:';
$_LANG['Error!'] = 'Errore!';
$_LANG['Error while creating the /config/settings.inc.php file.'] = 'Errore al momento della creazione del file /config/settings.inc.php.';
@@ -41,7 +39,7 @@ $_LANG['Error while inserting content into the database'] = 'Errore al momento d
$_LANG['Error while inserting data in the database:'] = 'Errore al momento dell\'inserimento nel database:';
$_LANG['Error while loading sql upgrade file.'] = 'Errore al momento dell\'apertura del file SQL';
$_LANG['Error:'] = 'Errore:';
$_LANG['Errors while updating...'] = 'Errore durante l\'aggiornamento...';
$_LANG['Error(s) while updating...'] = 'Errore durante l\'aggiornamento...';
$_LANG['Failed to write file to disk'] = 'Impossibile scrivere il file sul disco';
$_LANG['Fields are different!'] = 'I campi non corrispondono!';
$_LANG['File upload allowed'] = 'Invio file autorizzato';
@@ -50,22 +48,22 @@ $_LANG['First name:'] = 'Nome:';
$_LANG['For more information, please consult our'] = 'Per maggiori informazioni consultare il nostro';
$_LANG['GD Library installed'] = 'Libreria GD installata';
$_LANG['GZIP compression is on (recommended)'] = 'La compressione GZIP è attiva (consigliato)';
$_LANG['Here are your shop information. You can modify them once logged in.'] = 'Qui sotto i dati del tuo negozio. Puoi modificarli dopo aver effettuato il login a Back Office.';
$_LANG['However, you must know how to do the following manually:'] = 'Comunque, puoi effettuare manualmente i seguenti compiti:';
$_LANG['Here is your shop information. You can modify it once you are logged in.'] = 'Qui sotto i dati del tuo negozio. Puoi modificarli dopo aver effettuato il login a Back Office.';
$_LANG['However, you must know how to do the following:'] = 'Comunque, puoi effettuare i seguenti compiti:';
$_LANG['I agree to the above terms and conditions.'] = 'Accetto i termini e le condizioni del contratto seguente.';
$_LANG['If you have any questions, please visit our '] = 'Per qualsiasi domanda, dai un\'occhiata a';
$_LANG['Impossible the access the a MySQL content file.'] = 'Impossibile accedere al contenuto di uno dei file *.sql.';
$_LANG['Impossible to read the content of a MySQL content file.'] = 'Impossibile leggere il contenuto di uno dei file *.sql.';
$_LANG['Impossible to send the email!'] = 'Impossibile inviare l\'e-mail!';
$_LANG['Impossible to upload the file!'] = 'Impossibile inviare il file!';
$_LANG['Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Impossibile scrivere l\'immagine /img/logo.jpg. Se esiste già, cancellala manualmente.';
$_LANG['Installation : complete install of the PrestaShop Solution'] = 'Installazione completa di PrestaShop';
$_LANG['Cannot access the a MySQL data file.'] = 'Impossibile accedere al contenuto di uno dei file *.sql.';
$_LANG['Cannot read the content of a MySQL data file.'] = 'Impossibile leggere il contenuto di uno dei file *.sql.';
$_LANG['Cannot send the email!'] = 'Impossibile inviare l\'e-mail!';
$_LANG['Cannot upload the file!'] = 'Impossibile inviare il file!';
$_LANG['Cannot write the image /img/logo.jpg. If this image already exists, please delete it.'] = 'Impossibile scrivere l\'immagine /img/logo.jpg. Se esiste già, cancellala manualmente.';
$_LANG['Installation: Full installation of PrestaShop'] = 'Installazione completa di PrestaShop';
$_LANG['Installation is complete!'] = 'Installazione terminata!';
$_LANG['Installation method'] = 'Metodo di installazione';
$_LANG['What do you want to do?'] = 'Metodo di installazione';
$_LANG['Last name:'] = 'Cognome:';
$_LANG['Licenses Agreement'] = 'Contratto di Licenza';
$_LANG['License Agreement'] = 'Contratto di Licenza';
$_LANG['Login:'] = 'ID';
$_LANG['Merchant info'] = 'Informazioni sul venditore';
$_LANG['Shop settings and merchant account information'] = 'Informazioni sul venditore';
$_LANG['Missing a temporary folder'] = 'Manca la cartella temporanea di ricezione dell\'invio di file. Consulta il tuo amministratore.';
$_LANG['MySQL support is on'] = 'Il supporto di MySQL è attivato';
$_LANG['Next'] = 'Successivo';
@@ -73,18 +71,17 @@ $_LANG['No error code available.'] = 'Errore sconosciuto';
$_LANG['No file was uploaded.'] = 'Non è stato inviato alcun file';
$_LANG['No upgrade is possible.'] = 'Nessun aggiornamento disponibile';
$_LANG['None'] = 'Nessuno';
$_LANG['Official forum'] = 'Forum ufficiale';
$_LANG['One or more errors have occurred, you can find more informations below or in the log/installation.log file.'] = 'E\' apparso uno o più errori';
$_LANG['PrestaShop Forums'] = 'Forum ufficiale';
$_LANG['One or more errors have occurred, you can find more information below or in the log/installation.log file.'] = 'E\' apparso uno o più errori';
$_LANG['Open external URLs allowed'] = 'Autorizzato ad aprire URL esterni';
$_LANG['Optional languages'] = 'Lingue non proposte';
$_LANG['Optional set-up'] = 'Parametri opzionali';
$_LANG['PHP \'mail()\' function is available'] = 'La funzione PHP \'mail()\' è disponibile';
$_LANG['PHP \'mail()\' function is unavailable'] = 'La funzione PHP \'mail()\' non è disponibile';
$_LANG['PHP 5.0 or later installed'] = 'PHP 5.0 o superiore installato';
$_LANG['PHP parameters:'] = 'Parametri PHP :';
$_LANG['PHP register global option is off (recommended)'] = 'Opzione globale registro PHP è disattivata (consigliato)';
$_LANG['Password:'] = 'Password';
$_LANG['Please allow 5-15 minutes to complete the installation process.'] = 'Il processo di installazione dovrebbe durare solo pochi minuti!';
$_LANG['Please allow 10-15 minutes to complete the installation process.'] = 'Il processo di installazione dovrebbe durare solo pochi minuti!';
$_LANG['Please set a SMTP login'] = 'Inserire un identificativo SMTP';
$_LANG['Please set a SMTP password'] = 'Inserire una password SMTP';
$_LANG['Please set a SMTP server name'] = 'Inserire un nome di server SMTP';
@@ -96,10 +93,10 @@ $_LANG['PrestaShop %s Installer'] = 'Installazione di PrestaShop %s';
$_LANG['PrestaShop is ready!'] = 'PrestaShop è pronto!';
$_LANG['Re-type to confirm:'] = 'Conferma la password:';
$_LANG['Ready, set, go!'] = 'PrestaShop è installato!';
$_LANG['Receive notifications by e-mail'] = 'Riceverò le mie informazioni tramite e-mail';
$_LANG['Refresh these settings'] = 'Verifica di nuovo';
$_LANG['Receive this information by e-mail'] = 'Riceverò le mie informazioni tramite e-mail';
$_LANG['Check my settings again'] = 'Verifica di nuovo';
$_LANG['Required field'] = 'Campi richiesti';
$_LANG['Required set-up. Please verify the following checklist items are true.'] = 'Assicurati che ciascuno dei parametri seguenti siano convalidati.';
$_LANG['Required set-up. Please verify the following checklist:'] = 'Assicurati che ciascuno dei parametri seguenti siano convalidati.';
$_LANG['SMTP connection is available!'] = 'Connessione SMTP disponibile!';
$_LANG['SMTP connection is unavailable'] = 'Connessione SMTP non disponibile!';
$_LANG['SMTP server:'] = 'Server SMTP :';
@@ -107,19 +104,18 @@ $_LANG['SQL errors have occurred.'] = 'sono apparsi errori SQL.';
$_LANG['Select the different languages available for your shop'] = 'Scegli le lingue che il tuo negozio proporrà ai clienti';
$_LANG['Send me a test email!'] = 'Inviami una e-mail di prova!';
$_LANG['Server:'] = 'Server :';
$_LANG['Set permissions on folders & subfolders using Terminal or an FTP client'] = 'Mettere i permessi nelle cartelle e sottocartelle tramite un cliente FTP';
$_LANG['Set permissions on folders & subfolders using an FTP client'] = 'Mettere i permessi nelle cartelle e sottocartelle tramite un cliente FTP';
$_LANG['Shop Configuration'] = 'Configurazione negozio';
$_LANG['Shop logo'] = 'Logo del negozio';
$_LANG['Shop logo:'] = 'Logo del negozio:';
$_LANG['Shop name:'] = 'Nome del negozio:';
$_LANG['Shop password:'] = 'Password del negozio';
$_LANG['Shop\'s default language'] = 'Lingua di default';
$_LANG['Shop\'s languages'] = 'Lingue del negozio';
$_LANG['System and permissions'] = 'Sistema e permessi';
$_LANG['System Compatibility'] = 'Compatibilità del sistema';
$_LANG['System Configuration'] = 'Configurazione sistema';
$_LANG['Tables prefix:'] = 'Prefisso tabelle';
$_LANG['Test message - Prestashop'] = 'Installazione di Prestashop - prova del server di e-mail';
$_LANG['The PrestaShop Installer will do most of the work in just a few clicks.'] = 'L\'installatore di PrestaShop eseguirà tutto in pochi click.';
$_LANG['The PrestaShop Installer will do most of the work for you in just a few clicks.'] = 'L\'installatore di PrestaShop eseguirà tutto in pochi click.';
$_LANG['The config/settings.inc.php file was not found. Did you delete or rename this file?'] = 'Il file config/settings.inc.php non è stato trovato. Il file potrebbe essere stato cancellato o rinominato';
$_LANG['The config/defines.inc.php file was not found. Where did you move it?'] = 'Il file config/defines.inc.php non è stato trovato. Cosa è successo?';
$_LANG['The password is incorrect (alphanumeric string at least 8 characters).'] = 'La password non è corretta (stringa alfanumerica di almeno 8 caratteri)';
@@ -127,60 +123,59 @@ $_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified
$_LANG['The uploaded file exceeds the upload_max_filesize directive in php.ini'] = 'Il file inviato supera la dimensione massima autorizzata.';
$_LANG['The uploaded file was only partially uploaded'] = 'Il file è stato parzialmente inviato.';
$_LANG['There is no older version. Did you delete or rename the config/settings.inc.php file?'] = 'Nessuna versione precedente. Hai cancellato o rinominato il file settings.inc.php della cartella config ?';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication informations to the database.'] = 'Questo database PrestaShop esiste già. Inserisci di nuovo i tuoi dati di login nel database.';
$_LANG['This application need you to activate Javascript to correctly work.'] = 'E\' richiesto JavaScript per lanciare questa applicazione.';
$_LANG['This email adress is wrong!'] = 'Indirizzo errato!';
$_LANG['This PrestaShop database already exists. Please revalidate your authentication information to the database.'] = 'Questo database PrestaShop esiste già. Inserisci di nuovo i tuoi dati di login nel database.';
$_LANG['This application needs you to activate Javascript to correctly work.'] = 'E\' richiesto JavaScript per lanciare questa applicazione.';
$_LANG['This e-mail address is invalid!'] = 'Indirizzo errato!';
$_LANG['This installer is too old.'] = 'Questo installatore è troppo vecchio.';
$_LANG['This is a test message, your server is now available to send email'] = 'Questo è un messaggio di testo. Il tuo server è adesso impostato per inviare e-mail.';
$_LANG['This is not a valid file name.'] = 'Non è un nome valido';
$_LANG['This is not a valid image file.'] = 'Non è un\'immagine valida';
$_LANG['Too long!'] = 'Troppo lungo!';
$_LANG['Too long'] = 'Troppo lungo!';
$_LANG['Unfortunately,'] = 'Purtroppo,';
$_LANG['Update is complete!'] = 'Aggiornamento terminato!';
$_LANG['Upgrade: get the latest stable version!'] = 'Aggiornamento installa l\'ultima versione di PrestaShop';
$_LANG['Verify now!'] = 'Prova la connessione SQL';
$_LANG['Verify my database settings'] = 'Prova la connessione SQL';
$_LANG['Verify system compatibility'] = 'Compatibilità sistema';
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENZIONE: per motivi di sicurezza, adesso devi cancellare la cartella \'install\'.';
$_LANG['WARNING: For security purposes, you must delete the "install" folder.'] = 'ATTENZIONE: per motivi di sicurezza, adesso devi cancellare la cartella \'install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Attenzione: E\' FONDAMENTALE un backup manuale prima di continuare l\'aggiornamento dell\'applicazione Prestashop, al fine di evitare la perdita accidentale di dati.';
$_LANG['Welcome'] = 'Benvenuto';
$_LANG['Welcome to the PrestaShop %s Installer'] = 'Benvenuto nell\'installazione di PrestaShop %s';
$_LANG['When your files and database are saving in an other support, please certify that your shop is really backed up.'] = 'Una volta salvati i tuoi file applicazione e il database, ti chiederemo di certificarlo. Così facendo, ti assumerai tutte le responsabilità per qualsiasi perdita di dati dovuti ad un aggiornamento del software PrestaShop.';
$_LANG['When your backup is complete, please confirm that it is fully functional.'] = 'Una volta salvati i tuoi file applicazione e il database, ti chiederemo di certificarlo. Così facendo, ti assumerai tutte le responsabilità per qualsiasi perdita di dati dovuti ad un aggiornamento del software PrestaShop.';
$_LANG['Write permissions on folders (and subfolders):'] = 'Scrivi i permessi sulle cartelle (e le loro sottocartelle):';
$_LANG['Write permissions on files and folders:'] = 'Permessi di scrittura su file e cartelle:';
$_LANG['Write permissions on folders:'] = 'Permessi di scrittura sulle cartelle';
$_LANG['You already have the %s version.'] = 'Sei già in possesso della versione %s';
$_LANG['You have just installed and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Hai appena installato e configurato il tuo negozio online, grazie.';
$_LANG['You have just updated and configured PrestaShop as your online shop solution. We wish you all the best with the success of your online shop.'] = 'Hai appena aggiornato il tuo negozio online. Grazie.';
$_LANG['You have just installed and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Hai appena installato e configurato il tuo negozio online, grazie.';
$_LANG['You have just updated and configured PrestaShop as your online shop. We wish you all the best with the success of your online shop.'] = 'Hai appena aggiornato il tuo negozio online. Grazie.';
$_LANG['Your installation is finished!'] = 'Installazione terminata!';
$_LANG['Your update is finished!'] = 'Aggiornamento terminato';
$_LANG['and/or'] = 'e/o';
$_LANG['enter@your.email'] = 'inserisci@tua.email';
$_LANG['online documentation'] = 'documentazione online';
$_LANG['installed version detected'] = 'versione attuale individuata';
$_LANG['recommended dimensions: 230px X 75px'] = 'Dimensioni suggerite: 230px x 75px';
$_LANG['Currently installed version detected:'] = 'Versione attuale individuata:';
$_LANG['Recommended dimensions:'] = 'Dimensioni suggerite:';
$_LANG['view the log'] = 'visualizza rapporto';
$_LANG['(no old version detected)'] = '(nessuna versione vecchia individuata)';
$_LANG['(No previous version detected)'] = '(nessuna versione vecchia individuata)';
$_LANG['Can\'t write settings file, please create a file named settings.inc.php in config directory.'] = 'Il file dei parametri non è stato scritto, crea un file denominato settings.inc.php nella tua directory di configurazione.';
$_LANG['Cannot convert your database\'s data to utf-8.'] = 'Impossibile convertire i dati del tuo database in utf-8.';
$_LANG['Your database server does not support the utf-8 charset.'] = 'Il tuo server di database non supporta il charset utf-8.';
$_LANG['Cannot convert your database\'s data to UTF-8.'] = 'Impossibile convertire i dati del tuo database in UTF-8.';
$_LANG['Your database server does not support the UTF-8 charset.'] = 'Il tuo server di database non supporta il charset UTF-8.';
$_LANG['Need help?'] = 'Hai bisogno di aiuto?';
$_LANG['All tips and advice about PrestaShop'] = 'Tutte le astuzie e i consigli su PrestaShop';
$_LANG['Forum'] = 'Il forum';
$_LANG['PrestaShop tips and advice'] = 'Tutte le astuzie e i consigli su PrestaShop';
$_LANG['Forums'] = 'Il forum';
$_LANG['Blog'] = 'Il blog';
$_LANG['Back Office'] = 'Back Office';
$_LANG['Manage your store with your back office. Manage your orders and customers, add modules, change your theme, etc...'] = 'Amministra il tuo negozio con il tuo back office. Gestisci ordini e clienti, aggiungi moduli, modifica il tuo tema, etc....';
$_LANG['Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.'] = 'Amministra il tuo negozio con il tuo back office. Gestisci ordini e clienti, aggiungi moduli, modifica il tuo tema, etc....';
$_LANG['Manage your store'] = 'Gestisci il tuo negozio';
$_LANG['Front Office'] = 'Front Office';
$_LANG['Find your store as your future customers will see!'] = 'Scopri il tuo negozio come lo vedranno i tuoi futuri clienti!';
$_LANG['Discover your store as your future customers will see it!'] = 'Scopri il tuo negozio come lo vedranno i tuoi futuri clienti!';
$_LANG['Discover your store'] = 'Scopri il mio negozio';
$_LANG['Did you know?'] = 'Lo sapevi?';
$_LANG['Prestashop and community offers over 40 different languages for free download on'] = 'Prestashop e la sua comunità propongono più di 40 lingue diverse in download gratuito su';
$_LANG['Prestashop and its community offers over 40 different languages for free download at'] = 'Prestashop e la sua comunità propongono più di 40 lingue diverse in download gratuito su';
$_LANG['Default country:'] = 'Nazione di default:';
$_LANG['Shop\'s timezone:'] = 'Fuso orario del negozio:';
$_LANG['Your configuration is valid, click next to continue!'] = 'La tua configurazione è valida,<br />clicca su successivo per continuare!';
$_LANG['Shop timezone:'] = 'Fuso orario del negozio:';
$_LANG['Your configuration is valid, click \"Next\" to continue!'] = 'La tua configurazione è valida,<br />clicca su successivo per continuare!';
$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'La tua configurazione non è valida,<br />correggi questi problemi:';
$_LANG['You have to create a database, help available in readme_en.txt'] = 'Devi prima creare un database (aiuto disponibile nel file readme_it.txt)';
$_LANG['If you check this box and your mail configuration is wrong, your installation might be blocked. If so, please uncheck the box to go to the next step.'] = 'Se la tua configurazione e-mail è errata, questa opzione può essere bloccata; disattivala se non puoi passare alla fase successiva.';
$_LANG['Warning: If you check this box and your e-mail configuration is incorrect, you might not be able to continue the installation.'] = 'Se la tua configurazione e-mail è errata, questa opzione può essere bloccata; disattivala se non puoi passare alla fase successiva.';
$_LANG['Mcrypt is available (recommended)'] = 'Mcrypt è disponibile (consigliato)';
$_LANG['Your MySQL server doesn\'t support this engine, please use another one like MyISAM'] = 'Il supporto di questo motore di database non è supportato, scegline un altro come MyISAM';
$_LANG['Adult'] = 'Adulti e indumenti intimi';
@@ -201,33 +196,30 @@ $_LANG['Jewelry'] = 'Gioielleria';
$_LANG['Mobile and Telecom'] = 'Telefonia e comunicazioni';
$_LANG['Services'] = 'Servizi';
$_LANG['Shoes and accessories'] = 'Scarpe e accessori';
$_LANG['Sport and Entertainment'] = 'Sport e divertimenti';
$_LANG['Sports and Entertainment'] = 'Sport e divertimenti';
$_LANG['Travel'] = 'Viaggi e turismo';
$_LANG['Main activity:'] = 'Attività principale';
$_LANG['-- Please choose your main activity --'] = '-- Scegli un\'attività --';
$_LANG['A question about PrestaShop or issues during installation or upgrade? Call us!'] = 'Hai domande su PrestaShop o un problema per l\'installazione o l\'aggiornamento? Chiamaci!';
$_LANG['Invalid catalog mode'] = 'Campo modalità catalogo non valido';
$_LANG['Catalog mode:'] = 'Modalità catalogo:';
$_LANG['Catalog mode only:'] = 'Modalità catalogo:';
$_LANG['Yes'] = 'Sì';
$_LANG['No'] = 'No';
$_LANG['If you activate this feature, all purchase features will be disabled. You can activate this feature later in your back office'] = 'Se attivi questa opzione, tutte le funzioni di acquisto saranno disattivate. Potrai attivare questa opzione più tardi nel tuo back-office';
$_LANG['the already installed version detected is too recent, no update available'] = 'la versione già installata individuata è troppo recente, nessun aggiornamento disponibile';
$_LANG['This information isn\'t required, it will be used for statistical purposes. This information doesn\'t change anything in your store.'] = 'Queste informazioni non sono obbligatorie, saranno utilizzate a fini statistici. Queste informazioni non cambieranno nulla nel tuo negozio.';
$_LANG['If you activate this feature, all purchasing will be disabled. However, you will be able to enable purchasing later in your Back Office.'] = 'Se attivi questa opzione, tutte le funzioni di acquisto saranno disattivate. Potrai attivare questa opzione più tardi nel tuo back-office';
$_LANG['Your current version is already up-to-date'] = 'la versione già installata individuata è troppo recente, nessun aggiornamento disponibile';
$_LANG['This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.'] = 'Queste informazioni non sono obbligatorie, saranno utilizzate a fini statistici. Queste informazioni non cambieranno nulla nel tuo negozio.';
$_LANG['If you do not know how to enable it, use our turnkey solution PrestaBox at'] = 'Se non sai come abilitarlo, usa la nostra soluzione innovativa PrestaBox su';
$_LANG['Invalid shop name'] = 'nome negozio non valido';
$_LANG['Your firstname contains some invalid characters'] = 'Il tuo nome contiene dei caratteri non validi';
$_LANG['Your lastname contains some invalid characters'] = 'Il tuo cognome contiene dei caratteri non validi';
$_LANG['The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'] = 'Il file /img/logo.jpg non ?scrivibile, ti preghiamo di effettuare CHMOD 755 oppure CHMOD 777';
$_LANG['the already installed version detected is too old, no more update available'] = 'La versione già installata individuata è troppo vecchia, non ci sono più aggiornamenti disponibili';
$_LANG['If you do not know how to fix these issues, use turnkey solution PrestaBox at'] = 'Se non sai come correggere questi problemi, usa la soluzione innovativa PrestaBox su';
$_LANG['Database Engine:'] = 'Motore database';
$_LANG['Installation type'] = 'Tipo di installazione';
$_LANG['Simple mode: Basic installation'] = 'Modalità semplice: installazione base';
$_LANG['Lite mode: Basic installation'] = 'Modalità semplice: installazione base';
$_LANG['(FREE)'] = '(GRATUITO)';
$_LANG['Full mode: includes'] = 'Modalità completa: include';
$_LANG['Full mode: includes core modules,'] = 'Modalità completa: include';
$_LANG['100+ additional modules'] = 'Più di 100 moduli aggiuntivi';
$_LANG['and demo products'] = 'e prodotti demo';
$_LANG['(FREE too!)'] = 'GRATUITI!';
$_LANG['Shop configuration'] = 'Configurazione negozio';
$_LANG['I certify that I backed up my database and application files. I assume all responsibility for any data loss or damage related to this upgrade.'] = 'Dichiaro di aver effettuato il backup del mio database e dei file di applicazione. Mi assumo tutte le responsabilità per qualsiasi perdita dei dati o danni relativi a questo aggiornamento';
$_LANG['Upgrade in progress'] = 'Aggiornamento in corso';
@@ -246,30 +238,48 @@ $_LANG['minute'] = 'minuto';
$_LANG['seconds'] = 'secondi';
$_LANG['second'] = 'secondo';
$_LANG['Depending on your server and the size of your shop'] = 'In base al tuo server e alle dimensioni del tuo negozio';
$_LANG['You did not update your shop for a while,'] = 'E\' da un po\' di tempo che non aggiorni il tuo negozio';
$_LANG['You have not updated your shop in a while,'] = 'E\' da un po\' di tempo che non aggiorni il tuo negozio';
$_LANG['stable releases have been made available since.'] = 'Sono state messe a disposizione importanti novità';
$_LANG['This is not a problem however the update may take several minutes, try to update your shop more frequently.'] = 'Questo non è un problema, comunque laggiornamento può impiegare diversi minuti: cerca di aggiornare il tuo negozio più spesso';
$_LANG['No files to process, this might be an error.'] = 'Nessun file da elaborare, potrebbe esserci un errore';
$_LANG['Hosting parameters'] = 'Parametri host';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order the update to be successful.'] = 'PrestaShop cerca di impostare automaticamente le migliori configurazioni per il tuo server in modo che laggiornamento riesca con successo.';
$_LANG['PrestaShop tries to automatically set the best settings for your server in order for the update to be successful.'] = 'PrestaShop cerca di impostare automaticamente le migliori configurazioni per il tuo server in modo che laggiornamento riesca con successo.';
$_LANG['PHP parameter'] = 'Parametro PHP';
$_LANG['Description'] = 'Descrizione';
$_LANG['Current value'] = 'Valuta attuale';
$_LANG['Maximum allowed time for the upgrade'] = 'Tempo massimo concesso per l\'aggiornamento';
$_LANG['Maximum memory allowed for the upgrade'] = 'Memoria massima concessa per l\'aggiornamento';
$_LANG['All your settings seem to be OK, go for it!'] = 'Tutte le impostazioni sembrano OK, procedi pure!';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters (max_execution_time & memory_limit).'] = 'Attenzione, le tue impostazioni sembrano corrette ma non ottimali; se incontrassi dei problemi (aggiornamento troppo lungo, errore di memoria...), chiedi al tuo host di aumentare i valori di questi parametri (tempo massimo di esecuzione e limite di memoria).';
$_LANG['Beware, your settings look correct but are not optimal, if you encounter problems (upgrade too long, memory error...), please ask your hosting provider to increase the values of these parameters: "max_execution_time" and "memory_limit".'] = 'Attenzione, le tue impostazioni sembrano corrette ma non ottimali; se incontrassi dei problemi (aggiornamento troppo lungo, errore di memoria...), chiedi al tuo host di aumentare i valori di questi parametri (tempo massimo di esecuzione e limite di memoria).';
$_LANG['We strongly recommend that you inform your hosting provider to modify the settings before process to the update.'] = 'Ti suggeriamo di informare il tuo host in modo da modificare le impostazioni prima di iniziare laggiornamento.';
$_LANG['Let\'s go!'] = 'Via!';
$_LANG['Click on the "Next" button to start the upgrade, this can take several minutes,'] = 'Clicca sul tasto “Successivo” per iniziare laggiornamento; potrebbero volerci alcuni minuti,';
$_LANG['do not close the window and be patient.'] = 'non chiudere la finestra e attendi';
$_LANG['Your update is completed!'] = 'L\'aggiornamento è completo!';
$_LANG['please be patient and do not close this window.'] = 'non chiudere la finestra e attendi';
$_LANG['Your update is complete!'] = 'L\'aggiornamento è completo!';
$_LANG['Your shop version is now'] = 'La tua versione adesso è';
$_LANG['New features in PrestaShop v'] = 'Nuove caratteristiche in PrestaShop v';
$_LANG['In this aim, use our'] = 'A questo scopo, utilizzare il nostro';
$_LANG['To do this, use our'] = 'A questo scopo, utilizzare il nostro';
$_LANG['Additional Benefits'] = 'Ulteriori vantaggi';
$_LANG['Exclusive offers dedicated to PrestaShop merchants'] = 'Offerte esclusivo dedicato ai venditori PrestaShop';
$_LANG['PHP magic quotes option is off (recommended)'] = 'Opzione magic quotes PHP è disattivata (consigliato)';
$_LANG['Other activity...'] = 'Altre attività ...';
$_LANG['Modules'] = 'Moduli';
$_LANG['Benefits'] = 'Vantaggi';
$_LANG['Create a MySQL database using phpMyAdmin (or by asking your hosting provider)'] = '';
$_LANG['- or -'] = '';
$_LANG['I want to'] = '';
$_LANG['install'] = '';
$_LANG['a new online shop with PrestaShop'] = '';
$_LANG['update'] = '';
$_LANG['my existing PrestaShop to a newer version'] = '';
$_LANG['Your current version is too old, updates are possible only from version'] = '';
$_LANG['and higher'] = '';
$_LANG['PHP settings (for assistance, ask your hosting provider):'] = '';
$_LANG['Database Configuration'] = '';
$_LANG['Database login:'] = '';
$_LANG['Database password:'] = '';
$_LANG['Please create a MySQL database and then verify your settings below. If you need assistance, please ask your hosting provider for this information.'] = '';
$_LANG['Ok, please deactivate the following modules, I will reactivate them later:'] = '';
$_LANG['You will be able to manually reactivate them in your Back Office once the update process has succeeded.'] = '';
$_LANG['No more information'] = '';
$_LANG['If your theme is not valid, you may experience some problems in your front-office aspect, but don\'t panic ! To solve this, you can make it compatible by correcting the validators errors or by using a theme compatible with '] = '';

View File

@@ -5,7 +5,6 @@ $_LANG['Updater'] = 'Updater';
$_LANG['A mail has been sended!'] = 'A mail has been sent';
$_LANG['An error occurred while sending mail, please verify your parameters.'] = 'An error occurred while sending mail. Please verify your parameters.';
$_LANG['And now, discover your new store and Back Office'] = 'Take me to my new Front Office (online store) or Back Office (admin tool)';
$_LANG['By default, the PHP \'mail()\' function is used'] = 'By default, the PHP \'mail()\' function is used. For more functionality, manual SMTP configuration is recommended.';
$_LANG['Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'] = 'Can\'t find the SQL upgrade files. Please verify that the /install/sql/upgrade folder is not empty.';
$_LANG['Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.'] = 'Can\'t create settings file, if /config/settings.inc.php exists, please give the public write permissions to this file, else please create a file named settings.inc.php in config directory.';
$_LANG['Congratulation, your online shop is now ready!'] = 'Congratulations, your online store is now ready to open!';
@@ -24,14 +23,11 @@ $_LANG['Impossible the access the a MySQL content file.'] = 'Unable to access th
$_LANG['Impossible to read the content of a MySQL content file.'] = 'Unable to read the content an MySQL content file.';
$_LANG['Impossible to send the mail!'] = 'Unable to send the e-mail.';
$_LANG['Impossible to upload the file!'] = 'Unable to upload file.';
$_LANG['Installation : complete install of the PrestaShop Solution'] = 'Installation: Full installation of the PrestaShop™ e-Commerce Solution';
$_LANG['Merchant info'] = 'Merchant admin info';
$_LANG['Your Back Office'] = 'Your Back Office';
$_LANG['Your shop'] = 'Your Front Office';
$_LANG['No upgrade is possible.'] = 'No update available';
$_LANG['One or more errors have occurred...'] = 'One or more errors have occurred';
$_LANG['Open external URLs allowed'] = 'Allowed to open external URLs';
$_LANG['PHP parameters:'] = 'PHP settings (modify via your PHP admin software):';
$_LANG['PHP register global option is off (recommended)'] = 'PHP register global option is off (recommended)';
$_LANG['Password:'] = 'Password:';
$_LANG['Please set a SMTP login'] = 'Please enter the SMTP login';
@@ -61,10 +57,8 @@ $_LANG['This installer is too old.'] = 'This installer is for an older version o
$_LANG['This is a test message, your server is now available to send mail'] = 'This is a test message. Your server is now set up to send e-mail.';
$_LANG['This is not a valid file name.'] = 'Invalid file name';
$_LANG['This is not a valid image file.'] = 'Invalid image file';
$_LANG['Too long!'] = 'Too long';
$_LANG['Upgrade: get the latest stable version!'] = 'Update: Get the latest stable version';
$_LANG['Verify system compatibility'] = 'System Compatibility';
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'WARNING: For more security, you must delete the \'install\'.';
$_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'WARNING! A manual backup is HIGHLY recommended before continuing.';
$_LANG['Welcome'] = 'Welcome!';
$_LANG['Welcome to the PrestaShop '.INSTALL_VERSION.' Installer.'] = 'Welcome to the PrestaShop™ v'.INSTALL_VERSION.' Installer wizard.';
@@ -74,12 +68,9 @@ $_LANG['Write permissions on folders:'] = 'Write permissions on folders (do not
$_LANG['You already have the '.INSTALL_VERSION.' version.'] = 'Version v'.INSTALL_VERSION.' is already installed.';
$_LANG['Your installation is finished!'] = 'Installation is complete!';
$_LANG['Your update is finished!'] = 'Update is finished!';
$_LANG['recommended dimensions: 230px X 75px'] = 'Recommended size: 230x75 px';
$_LANG['view the log'] = 'View the log';
$_LANG['the already installed version detected is too old, no more update available'] = 'The existing installation of PrestaShop is outdated. No updates are available';
$_LANG['Reunion'] = 'Réunion';
$_LANG['Saint Barthelemy'] = 'Saint Barthélemy';
$_LANG['Sao Tome and Principe'] = 'São Tomé and Príncipe';
$_LANG['Aland Islands'] = 'Åland Islands';
$_LANG['Aland Islands'] = 'Åland Islands';

View File

@@ -10,13 +10,13 @@ INSERT INTO `PREFIX_carrier_zone` (`id_carrier`, `id_zone`) VALUES (2, 1),(2, 2)
UPDATE `PREFIX_configuration` SET `value` = '2' WHERE `name` = 'PS_CARRIER_DEFAULT';
INSERT INTO `PREFIX_configuration` (`name`, `value`, `date_add`, `date_upd`) VALUES
('MB_PAY_TO_EMAIL', 'testmerchant@moneybookers.com', NOW(), NOW()),
('MB_SECRET_WORD', 'mbtest', NOW(), NOW()),
('MB_PAY_TO_EMAIL', '', NOW(), NOW()),
('MB_SECRET_WORD', '', NOW(), NOW()),
('MB_HIDE_LOGIN', 1, NOW(), NOW()),
('MB_ID_LOGO', 1, NOW(), NOW()),
('MB_ID_LOGO_WALLET', 1, NOW(), NOW()),
('MB_PARAMETERS', 1, NOW(), NOW()),
('MB_PARAMETERS_2', 1, NOW(), NOW()),
('MB_PARAMETERS', 0, NOW(), NOW()),
('MB_PARAMETERS_2', 0, NOW(), NOW()),
('MB_DISPLAY_MODE', 0, NOW(), NOW()),
('MB_CANCEL_URL', 'http://www.yoursite.com', NOW(), NOW()),
('MB_LOCAL_METHODS', '2', NOW(), NOW()),

View File

@@ -868,15 +868,15 @@ INSERT INTO `PREFIX_tab_lang` (`id_lang`, `id_tab`, `name`) VALUES
(1, 1, 'Catalog'),(1, 2, 'Customers'),(1, 3, 'Orders'),(1, 4, 'Payment'),
(1, 5, 'Shipping'),(1, 6, 'Stats'),(1, 7, 'Modules'),(1, 8, 'Preferences'),(1, 9, 'Tools'),(1, 10, 'Manufacturers'),(1, 11, 'Attributes and Groups'),
(1, 12, 'Addresses'),(1, 13, 'Statuses'),(1, 14, 'Vouchers'),(1, 15, 'Currencies'),(1, 16, 'Taxes'),(1, 17, 'Carriers'),(1, 18, 'Countries'),
(1, 19, 'Zones'),(1, 20, 'Price Ranges'),(1, 21, 'Weight Ranges'),(1, 22, 'Positions'),(1, 23, 'Database'),(1, 24, 'E-mail'),(1, 26, 'Image'),
(1, 19, 'Zones'),(1, 20, 'Price Ranges'),(1, 21, 'Weight Ranges'),(1, 22, 'Positions'),(1, 23, 'Database'),(1, 24, 'E-mail'),(1, 26, 'Images'),
(1, 27, 'Products'),(1, 28, 'Contacts'),(1, 29, 'Employees'),(1, 30, 'Profiles'),(1, 31, 'Permissions'),(1, 32, 'Languages'),(1, 33, 'Translations'),
(1, 34, 'Suppliers'),(1, 35, 'Tabs'),(1, 36, 'Features'),(1, 37, 'Quick Access'),(1, 38, 'Themes'),(1, 39, 'Contact Information'),(1, 40, 'Aliases'),
(1, 41, 'Import'),(1, 42, 'Invoices'),(1, 43, 'Search'),(1, 44, 'Localization'),(1, 46, 'States'),(1, 47, 'Merchandise Returns'),(1, 48, 'PDF'),
(1, 49, 'Credit Slips'),(1, 51, 'Settings'),(1, 52, 'Subdomains'),(1, 53, 'DB backup'),(1, 54, 'Order Messages'),
(1, 55, 'Delivery Slips'),(1, 56, 'SEO & URLs'),(1, 57, 'CMS'),(1, 58, 'Image Mapping'),(1, 59, 'Customer Messages'),(1, 60, 'Tracking'),
(1, 34, 'Suppliers'),(1, 35, 'Tabs'),(1, 36, 'Features'),(1, 37, 'Quick Access'),(1, 38, 'Themes'),(1, 39, 'Contact Information'),(1, 40, 'Keyword Typos'),
(1, 41, 'CSV Import'),(1, 42, 'Invoices'),(1, 43, 'Search'),(1, 44, 'Localization'),(1, 46, 'States'),(1, 47, 'Merchandise Returns'),(1, 48, 'PDF'),
(1, 49, 'Credit Slips'),(1, 51, 'Settings'),(1, 52, 'Subdomains'),(1, 53, 'DB Backup'),(1, 54, 'Order Messages'),
(1, 55, 'Delivery Slips'),(1, 56, 'SEO & URLs'),(1, 57, 'CMS'),(1, 58, 'Image Mapping'),(1, 59, 'Customer Messages'),(1, 60, 'Monitoring'),
(1, 61, 'Search Engines'),(1, 62, 'Referrers'),(1, 63, 'Groups'),(1, 64, 'Generators'),(1, 65, 'Shopping Carts'),(1, 66, 'Tags'),(1, 67, 'Search'),
(1, 68, 'Attachments'),(1, 69, 'Configuration Information'),(1, 70, 'Performance'),(1, 71, 'Customer Service'),(1, 72, 'Webservice'),(1, 73, 'Stock Movements'),
(1, 80, 'Modules & Themes Catalog'),(1, 81, 'My Account'),(1, 82, 'Stores'),(1, 83, 'Themes'),(1, 84, 'Geolocation'),(1, 85, 'Tax Rules'),(1, 86, 'Log'),
(1, 68, 'Attachments'),(1, 69, 'Configuration Information'),(1, 70, 'Performance'),(1, 71, 'Customer Service'),(1, 72, 'Webservice'),(1, 73, 'Stock Movement'),
(1, 80, 'Modules & Themes Catalog'),(1, 81, 'My Account'),(1, 82, 'Stores'),(1, 83, 'Themes'),(1, 84, 'Geolocation'),(1, 85, 'Tax Rules'),(1, 86, 'Logs'),
(1, 87, 'Home'), (1, 88, 'Shops'), (1, 89, 'Group Shops'), (1, 90, 'Shop Urls'),(1, 91, 'Genders'),(1, 92, 'SQL Manager'),
(1, 93, 'Products'),
(1, 94, 'Categories'),

View File

@@ -0,0 +1 @@
SET NAMES 'utf8';

View File

@@ -315,22 +315,24 @@ ol#tabs{
margin:0;
padding:0;
}
ol#tabs li{
padding:9px 0 9px 16px;
padding: 9px 0 9px 20px;
font-size:14px;
color:#adadad;
}
ol#tabs li.selected{
font-weight: bold;
color:#000;
background : url(img/bg-li-tabs.png) no-repeat 1px 15px;
}
ol#tabs li.finished{
color:#78a531;
background : url(img/bg-li-tabs-finished.png) no-repeat 0 12px;
}
/* ****************************************************************************
FOOTER
**************************************************************************** */

View File

@@ -33,4 +33,4 @@ header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;
exit;

View File

@@ -92,12 +92,8 @@
<th style="text-align: left; padding: 0.3em 1em;">Lieferanschrift</th> <th style="text-align: left; padding: 0.3em 1em;">Rechnungsanschrift</th>
</tr>
<tr>
<td style="padding: 0.5em 0 0.5em 0.5em; background-color: #ebecee;">
{delivery_block_html}
</td>
<td style="padding: 0.5em 0 0.5em 0.5em; background-color: #ebecee;">
{invoice_block_html}
</td>
<td style="padding: 0.5em 0 0.5em 0.5em; background-color: #ebecee;">{delivery_company} <br /><span style="color: #db3484; font-weight: bold;">{delivery_firstname} {delivery_lastname}</span> <br />{delivery_address1} <br />{delivery_address2} <br />{delivery_city} {delivery_postal_code} <br />{delivery_country} {delivery_state} <br />{delivery_phone} <br />{delivery_other}</td>
<td style="padding: 0.5em 0 0.5em 0.5em; background-color: #ebecee;">{invoice_company} <br /><span style="color: #db3484; font-weight: bold;">{invoice_firstname} {invoice_lastname}</span> <br />{invoice_address1} <br />{invoice_address2} <br />{invoice_city} {invoice_postal_code} <br />{invoice_country} {invoice_state} <br />{invoice_phone} <br />{invoice_other}</td>
</tr>
</tbody>
</table>
@@ -116,9 +112,9 @@
<td>&nbsp;</td>
</tr>
<tr>
<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop&trade;</a></td>
<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="versions/1.4.1.0/mails/en/%7Bshop_url%7D">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop&trade;</a></td>
</tr>
</tbody>
</table>
</body>
</html>
</html>

View File

@@ -18,13 +18,26 @@ Versand
Lieferanschrift:
{delivery_block_txt}
{delivery_company}
{delivery_firstname} {delivery_lastname}
{delivery_address1}
{delivery_address2}
{delivery_postal_code} {delivery_city}
{delivery_country} {delivery_state}
{delivery_other}
Rechnungsanschrift:
{invoice_block_txt}
{invoice_company}
{invoice_vat_number}
{invoice_firstname} {invoice_lastname}
{invoice_address1}
{invoice_address2}
{invoice_postal_code} {invoice_city}
{invoice_country} {invoice_state}
{invoice_other}
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung auf dieser Webseite verfolgen: {shop_url}guest-tracking.php
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung auf dieser Webseite verfolgen: {shop_url}gast-bestellverfolgung.php
{shop_name} powered with PrestaShop™

View File

@@ -17,11 +17,13 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your account login details</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your {shop_name} login details</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Thank you for creating a customer account at {shop_name}.</b><br /><br />
Here are your login details:<br /><br />
E-mail address: <strong><span style="color:#DB3484;">{email}</span></strong>
<br >Password: <strong>{passwd}</strong>
</td>
@@ -29,23 +31,24 @@
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<strong>Safety tips:</strong>
<br><br>Keep your account details safe.
<br>Do not disclose your login details to anyone.
<br>Change your password regularly.
<br>Should you suspect someone is using your account illegally, please notify us immediately.
<strong>Important Security Tips:</strong>
<ol>
<li>Always keep your account details safe.</li>
<li>Never disclose your login details to anyone.</li>
<li>Change your password regularly.</li>
<li>Should you suspect someone is using your account illegally, please notify us immediately.</li>
</ol>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can now place orders on our Website: <a href="{shop_url}">{shop_name}</a>.
You can now place orders on our shop: <a href="{shop_url}">{shop_name}</a>.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,20 +1,19 @@
Hi {firstname} {lastname},
Thank you for creating your account at {shop_name}.
Thank you for creating a customer account at {shop_name}.
Your account login details :
Here are your login details:
E-mail address: {email}
Password: {passwd}
You can now place orders on our Website: {shop_url}
You can now place orders on our shop: {shop_url}
Safety Tips:
* Keep your account details safe.
* Do not disclose your login details to anyone.
* Change your password regularly.
* Should you suspect someone is using your account illegally, please notify us immediately.
Important Security Tips:
1. Always keep your account details safe.
2. Never disclose your login details to anyone.
3. Change your password regularly.
4. Should you suspect someone is using your account illegally, please notify us immediately.
{shop_url} powered by PrestaShop™

View File

@@ -17,45 +17,43 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order {order_name} - Awaiting wire payment</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Your order has been placed successfully, and will be shipped as soon as payment is received.
Thank you for shopping at {shop_name}!<br /><br />
Your order {order_name} has been placed successfully and will be <b>shipped as soon as we receive your payment</b>.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Please note that you have selected to pay by bank wire. Please send your wire to :
You have selected to pay by wire transfer.<br /><br />Here are the bank details for your wire or transfer:
<br /><br />
<strong>{bankwire_owner}</strong>
<br /><br />
{bankwire_details}
<br /><br />
{bankwire_address}
<br /><br />
Order total amount is {total_paid}
<b>Amount:</b> {total_paid}<br /><br />
<b>Account owner:</b> {bankwire_owner}<br /><br />
<b>Account details:</b><br /><br />{bankwire_details}<br /><br />
<b>Bank address:</b> {bankwire_address}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,23 +1,26 @@
Hi {firstname} {lastname},
Your order #{id_order} has been placed successfully. Your order will be shipped as soon as payment is received.
Thank you for shopping at {shop_name}!
Please note that you have selected to pay by bank wire. Please send your wire to:
Your order {order_name} has been placed successfully and will be shipped as soon as we receive your payment.
{bankwire_owner}
You have selected to pay by wire transfer.
Here are the bank details for your wire or transfer:
Amount: {total_paid}
Account owner: {bankwire_owner}
Account details:
{bankwire_details}
{bankwire_address}
Bank address: {bankwire_address}
Order total amount is {total_paid}
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
Thank you for shopping at {shop_name}.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,41 +17,43 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order {order_name} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order {order_name} - Awaiting cheque payment</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Your order has been placed successfully, and will be shipped as soon as payment is received.
Thank you for shopping at {shop_name}!<br /><br />
Your order {order_name} has been placed successfully and will be <b>shipped as soon as we receive your payment</b>.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Please note that you have selected to pay by cheque. Please send your cheque:
You have selected to pay by cheque. Please include on your cheque:
<br /><br />
- an amount of <b>{total_paid}</b>
- Amount: <b>{total_paid}</b>
<br /><br />
- payable to the order of <b>{cheque_name}</b>
- Payable to the order of: <b>{cheque_name}</b>
<br /><br />
- mail to <b>{cheque_address_html}</b>
Please mail your cheque to:<br /><br />
<b>{cheque_address_html}</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,21 +1,23 @@
Hi {firstname} {lastname},
Your order {order_name} has been placed successfully. Your order will be shipped as soon as payment is received.
Thank you for shopping at {shop_name}!
Please note that you have selected to pay by cheque. Please include on your cheque:
Your order {order_name} has been placed successfully and will be shipped as soon as we receive your payment.
- an amount of {total_paid}
You have selected to pay by cheque. Please include on your cheque:
- payable to the order of {cheque_name}
Amount: {total_paid}
- mail to {cheque_address}
Payable to the order of: {cheque_name}
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
Please mail your cheque to:
Thank you for shopping at {shop_name}.
{cheque_address}
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -13,20 +13,20 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Message from your shop {shop_name}</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Message from a {shop_name} customer</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
E-mail address: <a href="mailto:{email}"><b>{email}</b></a>
Customer e-mail address: <a href="mailto:{email}"><b>{email}</b></a>
<br><br>
Message: {message}
Customer message: {message}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,10 +1,10 @@
Dear merchant,
You have received a message from a customer via your shop: {shop_name}
Details of message:
Customer e-mail address: {email}
E-mail address: {email}
Message:
Customer message:
{message}

View File

@@ -13,22 +13,23 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your message has been correctly sent to our Customer Service.</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your message to {shop_name} Customer Service</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Your message: {message}
Your message has been sent successfully.<br /><br />
Message: {message}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">We will answer as soon as possible.</td>
<td align="left">We will answer as soon as possible.</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,11 +1,12 @@
Your message has been correctly sent to our Customer Service.
Hello,
Your message has been sent successfully to {shop_name} Customer Service.
Your message:
{message}
We will answer as soon as possible.
We will respond as soon as possible.
Regards,

View File

@@ -17,24 +17,24 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Credit slip created</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
This is to inform you about the creation of a credit slip in your name based on your order #{id_order}.
<b>We have generated a credit slip in your name for order #{id_order}</b>.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this credit slip and download your invoice from the <a href="{shop_url}order-follow.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order follow"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review this credit slip and download your invoice from the <a href="{shop_url}order-slip.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My credit slips"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,12 +1,11 @@
Hi {firstname} {lastname},
This is to inform you about the generation of a credit slip in your name from your order #{id_order}.
Thank you for shopping at {shop_name}!
You can review this credit slip and download the invoice from the "Order follow" section of your account by clicking "My account" on our Website.
We have generated a credit slip in your name for order #{id_order}.
Thank you for shopping at {shop_name}.
You can review this credit slip and download the invoice from the "Order follow" section of your account by clicking "My account" on our shop.
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -6,7 +6,7 @@
expires on {$product.deadline}
{/if}
{if isset($product.downloadable)}
downloadable {$product.downloadable} times
downloadable {$product.downloadable} time(s)
{/if}
</li>
{/foreach}

View File

@@ -13,40 +13,41 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">Hello <strong style="color:#DB3484;">{firstname} {lastname}</strong>, thank you for shopping with <strong>{shop_name}</strong>.</td>
<td align="left">Hello <strong style="color:#DB3484;">{firstname} {lastname}</strong></td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Product(s) to download</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Product(s) now available for download</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You have {nbProducts} product(s) to download.
Thank you for your order from <strong>{shop_name}</strong>!<br /><br />
You have {nbProducts} product(s) now available for download using the following link(s):<br />
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Below are direct links to these products:
{virtualProducts}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have a guest account, you can follow your order at <a href="{shop_url}guest-tracking.php?id_order={id_order}" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,11 +1,13 @@
{firstname} {lastname}, thank you for your order on {shop_name}!
Hi {firstname} {lastname},
You have {nbProducts} product(s) to download.
Thank you for your order from {shop_name}!
You have {nbProducts} product(s) now available for download using the following link(s):
Below are direct links to these products:
{virtualProducts}
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have a guest account, you can follow your order at this page: {shop_url}guest-tracking.php?id_order={id_order}
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_url} powered by PrestaShop™

View File

@@ -17,23 +17,24 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your personal login information</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your {shop_name} login information</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>First name</b>: {firstname}<br>
<b>Last name</b>: {lastname}<br>
<b>Password</b>: {passwd}<br>
Here is your personal login information for {shop_name}:<br /><br />
<b>First name</b>: {firstname}<br />
<b>Last name</b>: {lastname}<br />
<b>Password</b>: {passwd}<br />
<b>E-mail address</b>: {email}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,14 +1,12 @@
Hi {firstname} {lastname},
Your personal login information for your shop {shop_name}:
Here is your personal login information for {shop_name}:
* First name: {firstname}
* Last name: {lastname}
* Password: {passwd}
* E-mail address: {email}
First name: {firstname}
Last name: {lastname}
Password: {passwd}
E-mail address: {email}
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -6,13 +6,24 @@
</head>
<body>
<table style="font-family:Verdana,sans-serif; font-size:11px; color:#374953; width: 550px;">
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Customer service - Forwarded discussion</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td style="border:1px solid #CCCCCC;background-color:#FFFFFF;padding:10px;color:#383838;font-size:12px">
{employee} wanted to forward this chat to you.
{employee} wanted to forward this discussion to you.
<br /><br />
Discussion history:<br />
{messages}
<br /><br />
{employee} added "{comment}".
{employee} added "{comment}"
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,4 +1,11 @@
{employee} wanted to forward this chat to you.
Comment: {comment}
Hello,
{employee} wanted to forward this discussion to you.
Internal comments: {comment}
Discussion history:
{messages}
Regards,
{shop_name} powered by PrestaShop™

View File

@@ -17,7 +17,13 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your guest account has been transformed into a customer account</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your customer account creation</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Your guest account for {shop_name} has been transformed into a customer account.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
@@ -31,16 +37,15 @@
<td align="left">
Please be careful when sharing these login details with others.
<br><br>
You can access your account on our website: {shop_url}
You can access your customer account on our shop: {shop_url}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,16 +1,12 @@
Hi {firstname} {lastname},
Your guest account has been transformed into a customer account:
Your guest account for {shop_name} has been transformed into a customer account.
E-mail address: {email}
Password: {passwd}
You can access your account on our website: {shop_url}
Please be careful when sharing these login details with others.
{shop_url} powered by PrestaShop™
{shop_url} powered by PrestaShop™

View File

@@ -17,37 +17,31 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - In transit</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your order is currently in transit.</b>
<b>Your order #{id_order} is currently in transit.</b>.<br /><br />You can track your package using the following link: <a href="{followup}">{followup}</a>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can track your package by clicking on the following link: <a href="{followup}">{followup}</a>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have a guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,16 +1,15 @@
Hi {firstname} {lastname},
Your order is currently in transit.
You can track your package by clicking on the following link: {followup}
You can also review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have a guest account, you can follow your order at this page: {shop_url}guest-tracking.php
Thank you for shopping with {shop_name}!
Your order #{id_order} is currently in transit.
You can track your package using the following link: {followup}
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -33,4 +33,4 @@ header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;
exit;

View File

@@ -27,5 +27,38 @@
global $_LANGMAIL;
$_LANGMAIL = array();
$_LANGMAIL['Welcome!'] = 'Welcome!';
$_LANGMAIL['Message from contact form'] = 'Customer message from contact form';
$_LANGMAIL['Your message has been correctly sent'] = 'Your message has been sent successfully';
$_LANGMAIL['New credit slip regarding your order'] = 'New credit slip regarding your order';
$_LANGMAIL['Virtual product to download'] = 'Virtual product(s) available for download';
$_LANGMAIL['Fwd: Customer message'] = 'Fwd: Customer message';
$_LANGMAIL['Your guest account has been transformed to customer account'] = 'Your guest account has been transformed to a customer account';
$_LANGMAIL['Package in transit'] = 'Package in transit';
$_LANGMAIL['[Log'] = '[Log';
$_LANGMAIL['Order confirmation'] = 'Order confirmation';
$_LANGMAIL['Message from a customer'] = 'Message from a customer';
$_LANGMAIL['New message regarding your order'] = 'New message regarding your order';
$_LANGMAIL['Your order return state has changed'] = 'Your order return status has changed';
$_LANGMAIL['Your password'] = 'Your password has been reset';
$_LANGMAIL['Password query confirmation'] = 'Forgot password';
$_LANGMAIL['An answer to your message is available'] = 'New response to your inquiry';
$_LANGMAIL['New voucher regarding your order'] = 'New voucher for your order';
$_LANGMAIL['Happy birthday!'] = 'Happy birthday!';
$_LANGMAIL['Newsletter confirmation'] = 'Newsletter subscription confirmation';
$_LANGMAIL['Newsletter voucher'] = 'Newsletter voucher';
$_LANGMAIL['Your wishlist\\\'s link'] = 'Your wishlist\'s link';
$_LANGMAIL['Message from '] = 'Message from ';
$_LANGMAIL['$subject'] = '';
$_LANGMAIL['Your cart and your discount'] = 'Discount offer for items in your cart';
$_LANGMAIL['Thanks for your order'] = 'Thanks for your order!';
$_LANGMAIL['You are one of our best customers'] = 'Thank you for being one of our best customers';
$_LANGMAIL['We miss you'] = 'We miss you';
$_LANGMAIL['Product available'] = 'Your watched product is now available';
$_LANGMAIL['Product out of stock'] = 'One or more products are almost out of stock';
$_LANGMAIL['Error reporting from your PayPal module'] = 'Error reporting from your PayPal module';
$_LANGMAIL['Congratulations!'] = 'Congratulations!';
$_LANGMAIL['Referral Program'] = 'Referral program';
$_LANGMAIL['A friend sent you a link to'] = 'A friend sent you a link to';
?>

View File

@@ -13,28 +13,28 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">Hi,</td>
<td align="left">Hello,</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">New log alert</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">You have received a new log alert</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Unfortunately, new log alert message has been saved.</b>
<b>Warning:</b> you have received a new log alert in your Back Office.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can check this on your Back office &gt; Tools &gt; Log on our Website.
You can check for it in the "Tools" > "Logs" section of your Back Office.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,11 +1,9 @@
Hi,
Hello,
New log alert
Warning: you have received a new log alert in your Back Office.
Unfortunately, new log alert message has been saved.
You can check for it in the "Tools" > "Logs" section of your Back Office.
You can check this on your Back office > Tools > Log on our Website.
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™
{shop_url} powered by PrestaShop™

View File

@@ -22,9 +22,9 @@
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,9 +1,5 @@
Newsletter from {shop_name}
Message
{message}
{shop_url} powered by PrestaShop™

View File

@@ -17,29 +17,29 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Concerning your order #{id_order}</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Order cancelled</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your order has been cancelled.</b>
<b>Your order #{id_order} from {shop_name} has been cancelled.</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,14 +1,11 @@
Hi {firstname} {lastname},
Concerning your order #{id_order}:
Your order #{id_order} from {shop_name} has been cancelled.
Your order has been cancelled.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -13,7 +13,7 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">Hello <strong style="color:#DB3484;">{firstname} {lastname}</strong>, thank you for shopping with <strong>{shop_name}</strong>.</td>
<td align="left">Hi <strong style="color:#DB3484;">{firstname} {lastname}</strong>,<br /><br />Thank you for shopping with <strong>{shop_name}</strong>!</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
@@ -102,18 +102,18 @@
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have a guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,6 +1,6 @@
Hello {firstname} {lastname}, thank you for your order on {shop_name}!
Hi {firstname} {lastname},
Order details
Thank you for your order on {shop_name}!
Order: {order_name} placed on {date}
Payment: {payment}
@@ -11,9 +11,6 @@ Order details
Gift-wrapping: {total_wrapping}
Total paid: {total_paid}
Shipping
Carrier: {carrier}
Delivery address:
@@ -24,7 +21,8 @@ Shipping
{invoice_block_txt}
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have a guest account, you can follow your order at this page: {shop_url}guest-tracking.php
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
{shop_url} powered by PrestaShop™
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_url} powered by PrestaShop™

View File

@@ -17,12 +17,13 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Message from {firstname} {lastname} ({email})</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Message from a customer</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>You have received a new message regarding order #{id_order}:</b>
<b>You have received a new message regarding order #{id_order}.</b><br /><br />
<b>Customer:</b> {firstname} {lastname} ({email})
<br /><br />
{message}
</td>
@@ -30,9 +31,9 @@
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,8 +1,10 @@
Hi {firstname} {lastname},
Hello,
You have received a new message regarding order #{id_order}:
You have received a new message from a customer regarding order #{id_order}.
Customer: {firstname} {lastname} ({email})
Message:
{message}
{shop_url} powered by PrestaShop™

View File

@@ -17,20 +17,21 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Message from {shop_name}</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">New message from {shop_name}</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>You have received a new message regarding order #{id_order}:</b>
<br><br>
<b>You have received a new message from {shop_name} regarding order #{id_order}.</b>
<br /><br />
Message:<br />
{message}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,10 +1,8 @@
Message from {shop_name}
Hi {firstname} {lastname},
You have received a new message regarding order #{id_order}:
You have received a new message from {shop_name} regarding your order #{id_order}.
Message:
{message}
{shop_url} powered by PrestaShop™

View File

@@ -17,26 +17,26 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order return #{id_order_return} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Return #{id_order_return} - update</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your return order has changed in "{state_order_return}".</b>
We have updated the progress on your return #{id_order_return}, the new status is: <b>"{state_order_return}"</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order return from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,11 +1,9 @@
Hi {firstname} {lastname},
Your return order #{id_order_return} history has changed in "{state_order_return}".
We have updated the progress on your return #{id_order_return}, the new status is: "{state_order_return}"
You can review this order return in the "Order history" section of your account by clicking "My account" on our Website.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,29 +17,29 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Item(s) out of stock</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Unfortunately, one or more items on your order #{id_order} are currently out of stock. This may cause a slight delay in delivery. Please accept our apologies and rest assured that we are working hard to rectify this.</b>
Thanks for your order #{id_order} from {shop_name}.<br /><br />Unfortunately, one or more items are currently out of stock. This may cause a slight delay in your delivery. Please accept our apologies and rest assured that we are working hard to rectify this.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,14 +1,15 @@
Hi {firstname} {lastname},
Your order #{id_order} history
Unfortunately, one or more items on your order #{id_order} is currently out of stock. This may cause a slight delay in delivery. Please accept our apologies and rest assured that we are working hard to rectify this.
Hi {firstname} {lastname},
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
Thanks for your order #{id_order} from {shop_name}.
Unfortunately, one or more items are currently out of stock.
This may cause a slight delay in your delivery.
Please accept our apologies and rest assured that we are working hard to rectify this.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
{shop_url} powered by PrestaShop™
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,27 +17,25 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your new login details</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your new {shop_name} login details</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>E-mail address:</b> {email}<br>
<b>E-mail address:</b> {email}<br />
<b>Password:</b> {passwd}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Please be careful when sharing these login details with others.
<br><br>
You can now order on our Website: {shop_url}
Please be careful when sharing these login details with others.<br /><br />You can now order on our shop: {shop_url}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,11 +1,11 @@
Hello {firstname} {lastname},
Your new login details:
Here are your new {shop_name} login details:
E-mail address: {email}
Password: {passwd}
You can now place an order on our Website: {shop_url}
You can now place an order on our shop: {shop_url}
Please be careful when sharing these login details with others.

View File

@@ -13,17 +13,21 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">Hello <strong style="color:#DB3484;">{firstname} {lastname}</strong>,</td>
<td align="left">Hi <strong style="color:#DB3484;">{firstname} {lastname}</strong>,</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">You asked to get back your {shop_name} access codes,<br />
Note that this action will change your current password.</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Password reset request for {shop_name}</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">You have requested to reset your {shop_name} login details.<br /><br />
Please note that this will change your current password.</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
If you really want to do it, click the following link :<br />
To confirm this action, please use the following link:<br />
<a href="{url}">{url}</a>
</td>
</tr>

View File

@@ -1,9 +1,10 @@
Hello {firstname} {lastname},
Hi {firstname} {lastname},
You asked to get back your {shop_name} access codes.
Note that this action will change your current password.
You have requested to reset your {shop_name} login details.
If you really want to do it, click the following link :
Please note that this will change your current password.
To confirm this action, please use the following link:
{url}
{shop_url} powered by PrestaShop™
{shop_url} powered by PrestaShop™

View File

@@ -17,24 +17,30 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Payment processed</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Payment for your order was successfully processed.</b>
Thank you for shopping with {shop_name}!<br /><br />
<b>Your payment for order #{id_order} was successfully processed.</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,13 +1,13 @@
Hi {firstname} {lastname},
Your order #{id_order} history
Payment for your order was successfully processed.
Hi {firstname} {lastname},
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
Thank you for shopping with {shop_name}!
{shop_name} - {shop_url}
Your payment for order #{id_order} was successfully processed.
Thank you for shopping with {shop_name}.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
{shop_url} powered by PrestaShop™
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,35 +17,35 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Payment processing error</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>There is a problem with your payment for order #{id_order}. Please contact us at your earliest convenience.</b>
<b>There is a problem with your payment for {shop_name} order #{id_order}. Please contact us at your earliest convenience.</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your order will not be shipped until we have resolved this problem.</b>
<b>We cannot ship your order until we receive your payment. </b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,14 +1,13 @@
Hi {firstname} {lastname},
There is a problem with your payment for order #{id_order}. Please contact us at your earliest convenience.
There is a problem with your payment for {shop_name} order #{id_order}. Please contact us at your earliest convenience.
Your order will not be shipped until we have resolved this problem.
We cannot ship your order until we receive your payment.
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,31 +17,31 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Processing</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>We are processing your order.</b>
<b>We are currently processing your {shop_name} order #{id_order}.</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,14 +1,11 @@
Hi {firstname} {lastname},
Your order #{id_order} history
We are processing your order.
Hi {firstname} {lastname},
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
We are currently processing your {shop_name} order #{id_order}.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_url} powered by PrestaShop™
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -17,29 +17,29 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Refund processed for order #{id_order}</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your order payment has been refunded.</b>
<b>We have processed your {shop_name} refund for order #{id_order}.</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,12 +1,11 @@
Hi {firstname} {lastname},
Hi {firstname} {lastname},
Your order payment has been refunded.
We have processed your {shop_name} refund for order #{id_order}.
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
{shop_name} - {shop_url}
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™
{shop_url} powered by PrestaShop™

View File

@@ -9,8 +9,8 @@
<tr>
<td style="border:1px solid #CCCCCC;background-color:#FFFFFF;padding:10px;color:#383838;font-size:12px">
{reply}<br /><br />
<span style="color:red;font-weight:bold">Please do not reply to this message with your e-mail client</span>, we would not receive your message.<br />
In order to reply, please use exclusively the following link: <a href="{link}">{link}</a>.
<span style="color:#CC0000;font-weight:bold">Please do not reply to this message</span>, we will not receive it.<br /><br />
In order to reply, please use the following link: <a href="{link}">{link}</a>.
</td>
</tr>
</table>

View File

@@ -1,4 +1,5 @@
{reply}
Please do not reply to this message using your e-mail client, we would not receive your message.
In order to reply, please use exclusively the following link: {link}
Please do not reply to this message, we will not receive it.
In order to reply, please use the following link: {link}

View File

@@ -17,31 +17,31 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Shipped</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Your order has been shipped.</b><br />You will soon receive a URL to click on in order to track the delivery progress of your package.
Thank you for shopping with {shop_name}!<br /><br /><b>Your order #{id_order} has been shipped.</b><br />You will soon receive a URL to track the delivery progress of your package.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
You can review this order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our Website.
You can review your order and download your invoice from the <a href="{shop_url}history.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Order history"</a> section of your customer account by clicking <a href="{shop_url}my-account.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"My account"</a> on our shop.<br /><br />
</td>
</tr>
<tr>
<td align="left">
If you have guest account, you can follow your order at <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our Website.
If you have guest account, you can follow your order via the <a href="{shop_url}guest-tracking.php" style="color:#DB3484; font-weight:bold; text-decoration:none;">"Guest Tracking"</a> section on our shop.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,16 +1,15 @@
Hi {firstname} {lastname},
Your order has just been shipped.
You will soon receive a URL to click on in order to track the delivery progress of your package.
You can review this order and download your invoice from the "Order history" section of your account by clicking "My account" on our Website.
If you have guest account, you can follow your order at this page: {shop_url}guest-tracking.php
Thank you for shopping with {shop_name}!
Your order #{id_order} has just been shipped.
You will soon receive a URL to track the delivery progress of your package.
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
If you have guest account, you can follow your order using this link: {shop_url}guest-tracking.php
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -8,16 +8,17 @@
<table style="font-family:Verdana,sans-serif; font-size:11px; color:#374953; width: 550px;">
<tr>
<td>
Hello,<br><br>
This is a <b>test mail</b> from your shop.
Hello,<br /><br />
This is a <b>test e-mail</b> from your shop.<br /><br />
If you can read this, the test was successful!
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
</html>

View File

@@ -1,3 +1,8 @@
Hello,
This is a test mail from your PrestaShop™ online shop.
This is a test e-mail from your PrestaShop™ online shop.
If you can read this, the test was successful!
Regards,
{shop_name} powered by PrestaShop™

View File

@@ -17,25 +17,25 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} history</td>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Your order #{id_order} - Voucher created</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
This is to inform you about the creation of a voucher in your name as a result of your order #{id_order}.
A voucher has been created in your name as a result of your order #{id_order}.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
Here is the code of your voucher : <b>{voucher_num}</b>, with an amount of <b>{voucher_amount}</b>.<br />
Voucher code: <b>{voucher_num}</b>, in the amount of <b>{voucher_amount}</b>.<br />
Simply copy/paste this code during the payment process for your next order.
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered by <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>

View File

@@ -1,8 +1,8 @@
Hi {firstname} {lastname},
This is to inform you about the creation of a voucher in your name as a result of your order #{id_order}.
A voucher has been created in your name as a result of your order #{id_order}.
Here is the code of your voucher : {voucher_num}, to the amount of {voucher_amount}.
Voucher code: {voucher_num}, in the amount of {voucher_amount}.
Simply copy/paste this code during the payment process for your next order.
@@ -10,5 +10,4 @@ Thank you for shopping at {shop_name}.
{shop_name} - {shop_url}
{shop_url} powered by PrestaShop™

View File

@@ -48,6 +48,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -51,6 +51,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -51,6 +51,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -30,6 +30,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -36,6 +36,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -42,6 +42,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -51,6 +51,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -6,6 +6,5 @@
</head>
<body>
</body>
</html>

View File

@@ -12,6 +12,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -42,6 +42,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -51,6 +51,5 @@
</tr>
</tbody>
</table>
</body>
</html>

View File

@@ -10,7 +10,7 @@ $_LANGMAIL['Virtual product to download'] = '';
$_LANGMAIL['Fwd: Customer message'] = '';
$_LANGMAIL['Your guest account has been transformed to customer account'] = '';
$_LANGMAIL['Package in transit'] = '';
$_LANGMAIL['[Log'] = '';
$_LANGMAIL['Log: You have a new alert from your shop'] = '';
$_LANGMAIL['Order confirmation'] = 'Confirmacion de pedido';
$_LANGMAIL['Message from a customer'] = 'Mensaje de un cliente';
$_LANGMAIL['New message regarding your order'] = '';
@@ -23,17 +23,17 @@ $_LANGMAIL['Happy birthday!'] = '';
$_LANGMAIL['Newsletter confirmation'] = '';
$_LANGMAIL['Newsletter voucher'] = '';
$_LANGMAIL['Your wishlist\\\'s link'] = '';
$_LANGMAIL['Message from '] = '';
$_LANGMAIL['Message from \').$customer->lastname.\' '] = '';
$_LANGMAIL[' $subject'] = '';
$_LANGMAIL['Your cart and your discount'] = '';
$_LANGMAIL['Thanks for your order'] = '';
$_LANGMAIL['You are one of our best customers'] = '';
$_LANGMAIL['We miss you'] = '';
$_LANGMAIL['Your cart and your discount'] = 'Su cesta y su descuento';
$_LANGMAIL['Thanks for your order'] = 'Gracias por su pedido';
$_LANGMAIL['You are one of our best customers'] = 'Usted es uno de nuestros mejores clientes';
$_LANGMAIL['We miss you'] = 'Te extrañamos';
$_LANGMAIL['Product available'] = '';
$_LANGMAIL['Product out of stock'] = '';
$_LANGMAIL['Error reporting from your PayPal module'] = '';
$_LANGMAIL['Congratulations!'] = '';
$_LANGMAIL['Referral Program'] = '';
$_LANGMAIL['A friend sent you a link to'] = '';
$_LANGMAIL['A friend sent you a link to\').\' '] = '';
?>

Some files were not shown because too many files have changed in this diff Show More