From 68c7be42c21a767eda1213220fdf2c8803cc4034 Mon Sep 17 00:00:00 2001 From: rMalie Date: Fri, 26 Aug 2011 07:59:29 +0000 Subject: [PATCH] // Merge -> revision 8199 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8200 b9a71923-0436-4b27-9f14-aed3839534dd --- admin-dev/ajax.php | 4 +- classes/CompareProduct.php | 8 +- classes/GroupReduction.php | 12 +- docs/.htaccess | 1 + CHANGELOG => docs/CHANGELOG | 3 +- readme_de.txt => docs/readme_de.txt | 28 +-- readme_en.txt => docs/readme_en.txt | 4 +- readme_es.txt => docs/readme_es.txt | 4 +- readme_fr.txt => docs/readme_fr.txt | 4 +- readme_it.txt => docs/readme_it.txt | 6 +- install-dev/index.php | 2 +- install-dev/langs/de.php | 214 ++++++++--------- install-dev/langs/es.php | 334 +++++++++++++-------------- install-dev/langs/fr.php | 2 +- install-dev/langs/it.php | 2 +- install-dev/sql/db_settings_lite.sql | 37 ++- install-dev/sql/upgrade/1.4.4.1.sql | 1 + modules/blockcms/blockcms.php | 2 +- themes/prestashop/cms.tpl | 4 +- themes/prestashop/css/global.css | 2 + 20 files changed, 358 insertions(+), 316 deletions(-) create mode 100644 docs/.htaccess rename CHANGELOG => docs/CHANGELOG (99%) mode change 100644 => 100755 rename readme_de.txt => docs/readme_de.txt (72%) mode change 100644 => 100755 rename readme_en.txt => docs/readme_en.txt (98%) mode change 100644 => 100755 rename readme_es.txt => docs/readme_es.txt (98%) mode change 100644 => 100755 rename readme_fr.txt => docs/readme_fr.txt (98%) mode change 100644 => 100755 rename readme_it.txt => docs/readme_it.txt (93%) mode change 100644 => 100755 create mode 100755 install-dev/sql/upgrade/1.4.4.1.sql diff --git a/admin-dev/ajax.php b/admin-dev/ajax.php index 8387b2a06..f9f5c8c95 100644 --- a/admin-dev/ajax.php +++ b/admin-dev/ajax.php @@ -76,7 +76,7 @@ if (isset($_GET['ajaxProductManufacturers'])) { $jsonArray = array(); foreach ($manufacturers AS $manufacturer) - $jsonArray[] = '{"optionValue": "'.$manufacturer['id_manufacturer'].'", "optionDisplay": "'.htmlspecialchars($manufacturer['name']).'"}'; + $jsonArray[] = '{"optionValue": "'.$manufacturer['id_manufacturer'].'", "optionDisplay": "'.htmlspecialchars(trim($manufacturer['name'])).'"}'; die('['.implode(',', $jsonArray).']'); } } @@ -93,7 +93,7 @@ if (isset($_GET['ajaxProductSuppliers'])) { $jsonArray = array(); foreach ($suppliers AS $supplier) - $jsonArray[] = '{"optionValue": "'.$supplier['id_supplier'].'", "optionDisplay": "'.htmlspecialchars($supplier['name']).'"}'; + $jsonArray[] = '{"optionValue": "'.$supplier['id_supplier'].'", "optionDisplay": "'.htmlspecialchars(trim($supplier['name'])).'"}'; die('['.implode(',', $jsonArray).']'); } } diff --git a/classes/CompareProduct.php b/classes/CompareProduct.php index d91e32166..345f8d0fe 100644 --- a/classes/CompareProduct.php +++ b/classes/CompareProduct.php @@ -85,8 +85,8 @@ class CompareProductCore extends ObjectModel public static function addGuestCompareProduct($id_guest, $id_product) { return Db::getInstance()->Execute(' - INSERT INTO `'._DB_PREFIX_.'compare_product` (`id_product`, `id_guest`, `date_add`, `date_upd`) - VALUES ('.(int)($id_product).', '.(int)($id_guest).', NOW(), NOW()) + INSERT INTO `'._DB_PREFIX_.'compare_product` (`id_product`, `id_guest`, `id_customer`, `date_add`, `date_upd`) + VALUES ('.(int)($id_product).', '.(int)($id_guest).', 0, NOW(), NOW()) '); } @@ -145,7 +145,9 @@ class CompareProductCore extends ObjectModel */ public static function addCustomerCompareProduct($id_customer, $id_product) { - return Db::getInstance()->Execute('INSERT INTO `'._DB_PREFIX_.'compare_product` (`id_product`, `id_customer`, `date_add`, `date_upd`) VALUES ('.(int)($id_product).', '.(int)($id_customer).', NOW(), NOW())'); + return Db::getInstance()->Execute(' + INSERT INTO `'._DB_PREFIX_.'compare_product` (`id_product`, `id_guest`, `id_customer`, `date_add`, `date_upd`) + VALUES ('.(int)($id_product).', 0, '.(int)($id_customer).', NOW(), NOW())'); } diff --git a/classes/GroupReduction.php b/classes/GroupReduction.php index c96819ca3..f92ada767 100644 --- a/classes/GroupReduction.php +++ b/classes/GroupReduction.php @@ -146,7 +146,7 @@ class GroupReductionCore extends ObjectModel WHERE `id_group` = '.(int)($id_group).' AND `id_category` = '.(int)($id_category)); } - public function getGroupByCategoryId($id_category) + public static function getGroupByCategoryId($id_category) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT gr.`id_group` as id_group, gr.`reduction` as reduction @@ -155,7 +155,7 @@ class GroupReductionCore extends ObjectModel , false); } - public function getGroupReductionByCategoryId($id_category) + public static function getGroupReductionByCategoryId($id_category) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT gr.`id_group_reduction` as id_group_reduction @@ -164,7 +164,7 @@ class GroupReductionCore extends ObjectModel , false); } - public function setProductReduction($id_product, $id_group, $id_category, $reduction) + public static function setProductReduction($id_product, $id_group, $id_category, $reduction) { $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT pgr.`id_product`, pgr.`id_group`, pgr.`reduction` @@ -183,7 +183,7 @@ class GroupReductionCore extends ObjectModel return (Db::getInstance()->Execute($query)); } - public function deleteProductReduction($id_product) + public static function deleteProductReduction($id_product) { $query = 'DELETE FROM `'._DB_PREFIX_.'product_group_reduction_cache` WHERE `id_product` = '.(int)($id_product); if (Db::getInstance()->Execute($query) === false) @@ -191,7 +191,7 @@ class GroupReductionCore extends ObjectModel return true; } - public function duplicateReduction($id_product_old, $id_product) + public static function duplicateReduction($id_product_old, $id_product) { $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT pgr.`id_product`, pgr.`id_group`, pgr.`reduction` @@ -206,7 +206,7 @@ class GroupReductionCore extends ObjectModel return (Db::getInstance()->Execute($query)); } - public function deleteCategory($id_category) + public static function deleteCategory($id_category) { $query = 'DELETE FROM `'._DB_PREFIX_.'group_reduction` WHERE `id_category` = '.(int)($id_category); if (Db::getInstance()->Execute($query) === false) diff --git a/docs/.htaccess b/docs/.htaccess new file mode 100644 index 000000000..8703119f9 --- /dev/null +++ b/docs/.htaccess @@ -0,0 +1 @@ +Deny from ALL diff --git a/CHANGELOG b/docs/CHANGELOG old mode 100644 new mode 100755 similarity index 99% rename from CHANGELOG rename to docs/CHANGELOG index 93ba9f810..0d4d14410 --- a/CHANGELOG +++ b/docs/CHANGELOG @@ -21,7 +21,7 @@ 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 Registred Trademark & Property of PrestaShop SA -Release Notes for PrestaShop 1.4 +Release Notes for PrestaShop 1.5 -------------------------------- #################################### # v1.5.0.0 - 7536 (2011-07-06) # @@ -33,6 +33,7 @@ Release Notes for PrestaShop 1.4 [+] FO : add dispatcher + #################################### # v1.4.4.0 - 7803 (2011-07-28) # #################################### diff --git a/readme_de.txt b/docs/readme_de.txt old mode 100644 new mode 100755 similarity index 72% rename from readme_de.txt rename to docs/readme_de.txt index 7c23c4624..c342a1fc2 --- a/readme_de.txt +++ b/docs/readme_de.txt @@ -21,21 +21,21 @@ 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.5.0.0 -VERSION: 1.5.0.0 +NAME: Prestashop 1.4.4.1 +VERSION: 1.4.4.1 VORBEREITUNG =========== -Zur Installation von PrestaShop ben�tigen Sie einen Remote-Web-Server oder +Zur Installation von PrestaShop benötigen Sie einen Remote-Web-Server oder Ihren Computer (MAMP) mit Zugriff auf eine Datenbank wie MySQL. -Sie ben�tigen Zugriff auf phpMyAdmin, um eine Datenbank zu erstellen und die +Sie benötigen Zugriff auf phpMyAdmin, um eine Datenbank zu erstellen und die Informationen in der Datenbank im Installer anzuzeigen. Wenn Sie keinen Hosting-Provider haben und Ihren Shop selbst nicht erstellen -k�nnen, bieten wir einen schl�sselfertigen Shop, mit dem Sie Ihren eigenen +können, bieten wir einen schlüsselfertigen Shop, mit dem Sie Ihren eigenen Online-Shop in weniger als 10 Minuten ohne jegliche technische Kenntnisse -erstellen k�nnen. +erstellen können. Besuchen Sie: http://www.prestabox.com/ @@ -45,9 +45,9 @@ INSTALLATION Gehen Sie einfach zu Ihrem PrestaShop Web-Verzeichnis und verwenden Sie den Installer :-) -Falls ein PHP-Fehler auftritt, haben Sie vielleicht kein PHP5 oder m�ssen es +Falls ein PHP-Fehler auftritt, haben Sie vielleicht kein PHP5 oder müssen es auf Ihrem Web-Host aktivieren. -Die Vorinstallationseinstellungen (PHP 5, htaccess) f�r bestimmte +Die Vorinstallationseinstellungen (PHP 5, htaccess) für bestimmte Hosting-Dienste (1&1, Free, Lycos, OVH, Infomaniak, Amen, GoDaddy, etc.) finden Sie in unserem Forum. @@ -55,26 +55,26 @@ Spezifische englische Webhosting-Einstellungen: http://www.prestashop.com/forums/viewthread/2946/installation_configuration___upgrade/preinstallation_settings_php_5_htaccess_for_certain_hosting_servi ces -Wenn Sie keine L�sung zum Starten des Installers finden, posten Sie bitte +Wenn Sie keine Lösung zum Starten des Installers finden, posten Sie bitte Ihr Problem in unserem Forum: http://www.prestashop.com/forums/viewforum/7/installation_configuration___upgrade -Es gibt immer L�sungen f�r Ihre Fragen ;-) +Es gibt immer Lösungen für Ihre Fragen ;-) DOKUMENTATION ============= -F�r zus�tzliche Benutzerhinweise (how-to), lesen Sie bitte unser Wiki: +Für zusätzliche Benutzerhinweise (how-to), lesen Sie bitte unser Wiki: http://www.prestashop.com/wiki/ FOREN ====== -Sie k�nnen au�erdem mit der PrestaShop Community in unseren Foren -diskutieren, Hilfe finden und eigene Beitr�ge liefern unter: +Sie können außerdem mit der PrestaShop Community in unseren Foren +diskutieren, Hilfe finden und eigene Beiträge liefern unter: http://www.prestashop.com/forums/ -Danke f�r Ihren Download und die Nutzung der PrestaShop E-Commerce-Open-Source-L�sung! +Danke für Ihren Download und die Nutzung der PrestaShop E-Commerce-Open-Source-Lösung! ========================== = The PrestaTeam' = diff --git a/readme_en.txt b/docs/readme_en.txt old mode 100644 new mode 100755 similarity index 98% rename from readme_en.txt rename to docs/readme_en.txt index 84cc8a7d9..3e4fbf4f3 --- a/readme_en.txt +++ b/docs/readme_en.txt @@ -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.5.0.0 -VERSION: 1.5.0.0 +NAME: Prestashop 1.4.4.1 +VERSION: 1.4.4.1 PREPARATION =========== diff --git a/readme_es.txt b/docs/readme_es.txt old mode 100644 new mode 100755 similarity index 98% rename from readme_es.txt rename to docs/readme_es.txt index 0d4e6c8dc..8ccbdaf1a --- a/readme_es.txt +++ b/docs/readme_es.txt @@ -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.5.0.0 -VERSION: 1.5.0.0 +NAME: Prestashop 1.4.4.1 +VERSION: 1.4.4.1 PREPARACI�N =========== diff --git a/readme_fr.txt b/docs/readme_fr.txt old mode 100644 new mode 100755 similarity index 98% rename from readme_fr.txt rename to docs/readme_fr.txt index 911964be9..f9b071ad2 --- a/readme_fr.txt +++ b/docs/readme_fr.txt @@ -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.5.0.0 -VERSION: 1.5.0.0 +NAME: Prestashop 1.4.4.1 +VERSION: 1.4.4.1 PREPARATION =========== diff --git a/readme_it.txt b/docs/readme_it.txt old mode 100644 new mode 100755 similarity index 93% rename from readme_it.txt rename to docs/readme_it.txt index 0315325b7..db7c5b5c0 --- a/readme_it.txt +++ b/docs/readme_it.txt @@ -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.5.0.0 -VERSION: 1.5.0.0 +NAME: Prestashop 1.4.4.1 +VERSION: 1.4.4.1 PREPARAZIONE =========== @@ -30,7 +30,7 @@ PREPARAZIONE Per installare PrestaShop, hai bisogno di un server remoto o nel tuo computer (MAMP), con accesso ad un database come MySQL. Dovrai accedere a phpMyAdmin per creare un database e per indicare le informazioni nel database all'installatore. -Sei non hai un host e non sai come creare il tuo negozio, ti offriamo un negozio gi� pronto che ti far� realizzare il tuo negozio online in meno di 10 minuti senza nessun bisogno di competenze tecniche. +Sei non hai un host e non sai come creare il tuo negozio, ti offriamo un negozio già pronto che ti farà realizzare il tuo negozio online in meno di 10 minuti senza nessun bisogno di competenze tecniche. Ti invitiamo a visitare: http://www.prestabox.com/ diff --git a/install-dev/index.php b/install-dev/index.php index aeb8f4440..380636796 100644 --- a/install-dev/index.php +++ b/install-dev/index.php @@ -969,7 +969,7 @@ if ($lm->getIncludeTradFilename()) -

+

diff --git a/install-dev/langs/de.php b/install-dev/langs/de.php index 251ce9043..0889c330e 100644 --- a/install-dev/langs/de.php +++ b/install-dev/langs/de.php @@ -3,28 +3,28 @@ $_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['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['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['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['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['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['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 the installer language:'] = '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['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['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['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['Database configuration'] = 'Konfiguration der Datenbank'; $_LANG['Database connection is available!'] = 'Die Datenbank wurde gefunden!'; $_LANG['Database is created!'] = 'Datenbank installiert!'; @@ -33,13 +33,13 @@ $_LANG['Disclaimer'] = 'Warnung'; $_LANG['Documentation Wiki'] = '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['Encryption:'] = 'Verschlüsselung:'; +$_LANG['E-mail delivery set-up'] = '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.'; -$_LANG['Error while inserting content into the database'] = 'Fehler beim Einfügen in die Datenbank'; -$_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 while inserting content into the database'] = 'Fehler beim Einf√ºgen in die Datenbank'; +$_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['Failed to write file to disk'] = 'Kann die Datei nicht auf die Festplatte schreiben'; @@ -50,37 +50,37 @@ $_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 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['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['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['Installation is complete!'] = 'Installation abgeschlossen!'; $_LANG['Installation method'] = 'Installationsmethode'; $_LANG['Last name:'] = 'Name:'; $_LANG['License Agreement'] = 'Lizenzvertrag'; $_LANG['Login:'] = 'Benutzername:'; -$_LANG['Merchant info'] = '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['Merchant info'] = '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'; $_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['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['Open external URLs allowed'] = 'Öffnung externer URLs erlaubt'; +$_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 \'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:'; @@ -94,20 +94,20 @@ $_LANG['Please set a database server name'] = 'Geben Sie den Namen des Datenbank $_LANG['Port:'] = 'Port:'; $_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['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['Refresh these settings'] = '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['SMTP connection is available!'] = 'SMTP-Verbindung verfügbar!'; -$_LANG['SMTP connection is unavailable'] = 'SMTP-Verbindung nicht verfügbar'; +$_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['SMTP connection is available!'] = 'SMTP-Verbindung verf√ºgbar!'; +$_LANG['SMTP connection is unavailable'] = 'SMTP-Verbindung nicht verf√ºgbar'; $_LANG['SMTP server:'] = 'SMTP-Server:'; $_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['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 Terminal or 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 name:'] = 'Name des Shops:'; @@ -115,39 +115,39 @@ $_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 Compatibility'] = 'Systemkompatibilit√§t'; $_LANG['System Configuration'] = 'Systemkonfiguration'; -$_LANG['Tables prefix:'] = 'Tabellen-Präfixe:'; +$_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 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 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 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)'; -$_LANG['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'Die gesendete Datei überschreitet die maximal zulässige Größe.'; -$_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 exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'Die gesendete Datei √ºberschreitet die maximal zul√§ssige Gr√∂√üe.'; +$_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['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 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['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['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 system compatibility'] = 'Systemkompatibilität'; -$_LANG['WARNING: For more security, you must delete the \'install\' folder and readme files (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'] = 'VORSICHT: Aus Sicherheitsgründen löschen Sie bitte den Ordner \'/install\' und die readme-Dateien (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; -$_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['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\' und die readme-Dateien (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; +$_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.'] = '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.'] = '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['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['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.'; @@ -162,32 +162,32 @@ $_LANG['view the log'] = 'Bericht ansehen'; $_LANG['(no old 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['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['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 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'] = '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['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'] = '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 community offers over 40 different languages for free download on'] = '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,
klicken Sie auf Weiter zum Fortfahren!'; -$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'Ihre Konfiguration ist nicht gültig,
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['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['Your configuration is valid, click next to continue!'] = 'Ihre Konfiguration ist g√ºltig,
klicken Sie auf Weiter zum Fortfahren!'; +$_LANG['Your configuration is invalid. Please fix the issues below:'] = 'Ihre Konfiguration ist nicht gültig,
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['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'; $_LANG['Animals and Pets'] = 'Tiere'; $_LANG['Art and Culture'] = 'Kultur und Freizeit'; $_LANG['Babies'] = 'Baby-Artikel'; -$_LANG['Beauty and Personal Care'] = 'Gesundheit und Schönheit'; +$_LANG['Beauty and Personal Care'] = 'Gesundheit und Sch√∂nheit'; $_LANG['Cars'] = 'Auto und Motorrad'; $_LANG['Computer Hardware and Software'] = 'Computer & Software'; $_LANG['Download'] = 'Download'; @@ -196,90 +196,90 @@ $_LANG['Flowers, Gifts and Crafts'] = 'Blumen und Geschenke'; $_LANG['Food and beverage'] = 'Lebensmittel und Gastronomie'; $_LANG['HiFi, Photo and Video'] = 'Hifi, Foto und Video'; $_LANG['Home and Garden'] = 'Haus & Garten'; -$_LANG['Home Appliances'] = 'Haushaltsgeräte'; +$_LANG['Home Appliances'] = 'Haushaltsger√§te'; $_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['Travel'] = 'Reise und Tourismus'; -$_LANG['Main activity:'] = 'Haupttätigkeit'; -$_LANG['-- Please choose your main activity --'] = '- Wählen Sie eine Tätigkeit --'; +$_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['Invalid catalog mode'] = 'Feld Katalog-Modus ung√ºltig'; $_LANG['Catalog mode:'] = '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['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['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['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['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['100+ additional modules'] = 'über 100 zusätzliche Module'; +$_LANG['100+ additional modules'] = '√ºber 100 zus√§tzliche Module'; $_LANG['and demo products'] = 'und Demo-Produkte'; $_LANG['Installation type'] = 'Installationstyp'; -$_LANG['Upgrade in progress'] = 'Upgrade läuft'; +$_LANG['Upgrade in progress'] = 'Upgrade l√§uft'; $_LANG['Current query:'] = 'Aktueller Satz:'; -$_LANG['Details about this upgrade'] = 'Mehr über das Upgrade'; +$_LANG['Details about this upgrade'] = 'Mehr √ºber das Upgrade'; $_LANG['Thank you, you will be able to continue the upgrade process by clicking on the "Next" button.'] = ''; $_LANG['PrestaShop is upgrading your shop one version after the other, the following upgrade files will be processed:'] = ''; $_LANG['Upgrade file'] = 'Upgrade-Datei'; -$_LANG['Modifications to process'] = 'Änderungen zum Durchführen'; +$_LANG['Modifications to process'] = '√Ñnderungen zum Durchf√ºhren'; $_LANG['(major)'] = '(wichtig)'; $_LANG['TOTAL'] = '(GESAMT)'; -$_LANG['Estimated time to complete the'] = 'Verbliebene Zeit zum Abschluß von'; +$_LANG['Estimated time to complete the'] = 'Verbliebene Zeit zum Abschlu√ü von'; $_LANG['modifications:'] = 'Modifikationen'; $_LANG['minutes'] = 'Minuten'; $_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['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['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['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 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'; -$_LANG['Maximum allowed time for the upgrade'] = 'Maximale zugelassene Zeit für das Update'; -$_LANG['Maximum memory allowed for the upgrade'] = 'Maximal zugelassener Speichern für das Update'; +$_LANG['Maximum allowed time for the upgrade'] = 'Maximale zugelassene Zeit f√ºr das Update'; +$_LANG['Maximum memory allowed for the upgrade'] = 'Maximal zugelassener Speichern f√ºr das Update'; $_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['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['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['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['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['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['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['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 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['version'] = 'Version'; $_LANG['In this aim, 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['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)'; diff --git a/install-dev/langs/es.php b/install-dev/langs/es.php index dc7d5024b..36a851621 100644 --- a/install-dev/langs/es.php +++ b/install-dev/langs/es.php @@ -1,40 +1,40 @@ gracias por corregir la configuración:'; +$_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,
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['Invalid catalog mode'] = 'Campo modo catálogo no válido'; -$_LANG['Catalog mode:'] = 'Modo Catálogo:'; -$_LANG['Yes'] = 'Sí'; +$_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['Invalid catalog mode'] = 'Campo modo cat√°logo no v√°lido'; +$_LANG['Catalog mode:'] = '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 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['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 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['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['+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['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['Installation type'] = 'Tipo de instalaci√≥n'; +$_LANG['Simple 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['and demo products'] = 'y productos de demostración'; -$_LANG['(FREE too!)'] = '(¡TAMBIEN GRATIS!)'; -$_LANG['Shop configuration'] = 'Configuración de la tienda'; +$_LANG['100+ additional modules'] = '100 m√≥dulos'; +$_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['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['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 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['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'; -$_LANG['Current query:'] = 'Búsqueda actual:'; -$_LANG['Details about this upgrade'] = 'Detalles sobre esta actualización'; -$_LANG['Thank you, you will be able to continue the upgrade process by clicking on the "Next" button.'] = 'Gracias, puede continuar la actualización, pulsando en "Siguiente".'; -$_LANG['PrestaShop is upgrading your shop one version after the other, the following upgrade files will be processed:'] = 'PrestaShop actualiza las versiones de su tienda de una en una, los siguientes archivos de actualización van a ser tratados:'; +$_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'; +$_LANG['Current query:'] = 'B√∫squeda actual:'; +$_LANG['Details about this upgrade'] = 'Detalles sobre esta actualizaci√≥n'; +$_LANG['Thank you, you will be able to continue the upgrade process by clicking on the "Next" button.'] = 'Gracias, puede continuar la actualizaci√≥n, pulsando en "Siguiente".'; +$_LANG['PrestaShop is upgrading your shop one version after the other, the following upgrade files will be processed:'] = 'PrestaShop actualiza las versiones de su tienda de una en una, los siguientes archivos de actualizaci√≥n van a ser tratados:'; $_LANG['Upgrade file'] = 'Archivo de actualizaciones'; $_LANG['Modifications to process'] = 'Modificaciones que deben tenerse en cuenta'; $_LANG['(major)'] = '(majeure)'; @@ -247,39 +247,39 @@ $_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['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['PHP parameter'] = 'Parámetro PHP'; -$_LANG['Description'] = 'Descripción'; +$_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['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['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['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['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['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['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['Your shop version is now'] = 'La versión de su tienda ya está'; +$_LANG['Your update is completed!'] = '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['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['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['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['version'] = 'versión'; +$_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['version'] = 'versi√≥n'; $_LANG['In this aim, 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['PHP magic quotes option is off (recommended)'] = 'La opci√≥n PHP "magic quotes" est√° desactivada (aconsejable)'; diff --git a/install-dev/langs/fr.php b/install-dev/langs/fr.php index 2274bde54..0cb62b88f 100644 --- a/install-dev/langs/fr.php +++ b/install-dev/langs/fr.php @@ -141,7 +141,7 @@ $_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 system compatibility'] = 'Compatibilité système'; -$_LANG['WARNING: For more security, you must delete the \'install\' folder and readme files (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'] = 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\' et les fichiers readme (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\' et les fichiers readme (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; $_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'; diff --git a/install-dev/langs/it.php b/install-dev/langs/it.php index dedbc8a81..fcd02f548 100644 --- a/install-dev/langs/it.php +++ b/install-dev/langs/it.php @@ -140,7 +140,7 @@ $_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 system compatibility'] = 'Compatibilità sistema'; -$_LANG['WARNING: For more security, you must delete the \'install\' folder and readme files (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'] = 'ATTENZIONE: per motivi di sicurezza, adesso devi cancellare la cartella \'install\' e i file readme (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENZIONE: per motivi di sicurezza, adesso devi cancellare la cartella \'install\' e i file readme (readme_fr.txt, readme_en.txt, readme_es.txt, readme_de.txt, readme_it.txt, CHANGELOG).'; $_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'; diff --git a/install-dev/sql/db_settings_lite.sql b/install-dev/sql/db_settings_lite.sql index 82cef4119..ec866afc2 100644 --- a/install-dev/sql/db_settings_lite.sql +++ b/install-dev/sql/db_settings_lite.sql @@ -320,7 +320,7 @@ INSERT INTO `PREFIX_country` (`id_country`, `id_zone`, `iso_code`, `call_prefix` (94, 4, 'GH', 233, 1, 0, 0, 1, '', 1),(95, 8, 'GD', 0, 1, 0, 0, 1, '', 1),(96, 7, 'GL', 299, 1, 0, 0, 1, '', 1),(97, 7, 'GI', 350, 1, 0, 0, 1, '', 1),(98, 8, 'GP', 590, 1, 0, 0, 1, '', 1), (99, 8, 'GU', 0, 1, 0, 0, 1, '', 1),(100, 8, 'GT', 502, 1, 0, 0, 1, '', 1),(101, 7, 'GG', 0, 1, 0, 0, 1, 'LLN NLL', 1),(102, 4, 'GN', 224, 1, 0, 0, 1, '', 1),(103, 4, 'GW', 245, 1, 0, 0, 1, '', 1), (104, 6, 'GY', 592, 1, 0, 0, 1, '', 1),(105, 8, 'HT', 509, 1, 0, 0, 1, '', 1),(106, 5, 'HM', 0, 1, 0, 0, 1, '', 1),(107, 7, 'VA', 379, 1, 0, 0, 1, 'NNNNN', 1),(108, 8, 'HN', 504, 1, 0, 0, 1, '', 1), -(109, 7, 'IS', 354, 1, 0, 0, 1, 'NNN', 1),(110, 3, 'IN', 91, 1, 0, 0, 1, 'NNN NNN', 1),(111, 3, 'ID', 62, 1, 0, 0, 1, 'NNNNN', 1),(112, 3, 'IR', 98, 1, 0, 0, 1, 'NNNNN-NNNNN', 1), +(109, 7, 'IS', 354, 1, 0, 0, 1, 'NNN', 1),(110, 3, 'IN', 91, 1, 0, 0, 1, 'NNN NNN', 1),(111, 3, 'ID', 62, 1, 1, 0, 1, 'NNNNN', 1),(112, 3, 'IR', 98, 1, 0, 0, 1, 'NNNNN-NNNNN', 1), (113, 3, 'IQ', 964, 1, 0, 0, 1, 'NNNNN', 1),(114, 7, 'IM', 0, 1, 0, 0, 1, 'CN NLL', 1),(115, 8, 'JM', 0, 1, 0, 0, 1, '', 1),(116, 7, 'JE', 0, 1, 0, 0, 1, 'CN NLL', 1),(117, 3, 'JO', 962, 1, 0, 0, 1, '', 1), (118, 3, 'KZ', 7, 1, 0, 0, 1, 'NNNNNN', 1),(119, 4, 'KE', 254, 1, 0, 0, 1, '', 1),(120, 7, 'KI', 686, 1, 0, 0, 1, '', 1),(121, 3, 'KP', 850, 1, 0, 0, 1, '', 1),(122, 3, 'KW', 965, 1, 0, 0, 1, '', 1), (123, 3, 'KG', 996, 1, 0, 0, 1, '', 1),(124, 3, 'LA', 856, 1, 0, 0, 1, '', 1),(125, 1, 'LV', 371, 1, 0, 0, 1, 'C-NNNN', 1),(126, 3, 'LB', 961, 1, 0, 0, 1, '', 1),(127, 4, 'LS', 266, 1, 0, 0, 1, '', 1), @@ -665,6 +665,41 @@ INSERT INTO `PREFIX_state` (`id_country`, `id_zone`, `name`, `iso_code`, `tax_be (10, 1, 'Vicenza', 'VI', 0, 1), (10, 1, 'Viterbo', 'VT', 0, 1); +INSERT INTO `PREFIX_state` (`id_country`, `id_zone`, `name`, `iso_code`, `active`) VALUES +(111, 3, 'Aceh', 'AC', 1), +(111, 3, 'Bali', 'BA', 1), +(111, 3, 'Bangka', 'BB', 1), +(111, 3, 'Banten', 'BT', 1), +(111, 3, 'Bengkulu', 'BE', 1), +(111, 3, 'Central Java', 'JT', 1), +(111, 3, 'Central Kalimantan', 'KT', 1), +(111, 3, 'Central Sulawesi', 'ST', 1), +(111, 3, 'Coat of arms of East Java', 'JI', 1), +(111, 3, 'East kalimantan', 'KI', 1), +(111, 3, 'East Nusa Tenggara', 'NT', 1), +(111, 3, 'Lambang propinsi', 'GO', 1), +(111, 3, 'Jakarta', 'JK', 1), +(111, 3, 'Jambi', 'JA', 1), +(111, 3, 'Lampung', 'LA', 1), +(111, 3, 'Maluku', 'MA', 1), +(111, 3, 'North Maluku', 'MU', 1), +(111, 3, 'North Sulawesi', 'SA', 1), +(111, 3, 'North Sumatra', 'SU', 1), +(111, 3, 'Papua', 'PA', 1), +(111, 3, 'Riau', 'RI', 1), +(111, 3, 'Lambang Riau', 'KR', 1), +(111, 3, 'Southeast Sulawesi', 'SG', 1), +(111, 3, 'South Kalimantan', 'KS', 1), +(111, 3, 'South Sulawesi', 'SN', 1), +(111, 3, 'South Sumatra', 'SS', 1), +(111, 3, 'West Java', 'JB', 1), +(111, 3, 'West Kalimantan', 'KB', 1), +(111, 3, 'West Nusa Tenggara', 'NB', 1), +(111, 3, 'Lambang Provinsi Papua Barat', 'PB', 1), +(111, 3, 'West Sulawesi', 'SR', 1), +(111, 3, 'West Sumatra', 'SB', 1), +(111, 3, 'Yogyakarta', 'YO', 1); + INSERT INTO `PREFIX_currency` (`name`, `iso_code`, `iso_code_num`, `sign`, `blank`, `conversion_rate`, `format`, `deleted`, `active`) VALUES ('Euro', 'EUR', '978', '€', 1, 1, 2, 0, 1), ('Dollar', 'USD', '840', '$', 0, 1.32, 1, 0, 1), ('Pound', 'GBP', '826', '£', 0, 0.8, 1, 0, 1); /*('Yen', 'JPY', '392', '¥', 0, 113.14, 2, 0, 0), diff --git a/install-dev/sql/upgrade/1.4.4.1.sql b/install-dev/sql/upgrade/1.4.4.1.sql new file mode 100755 index 000000000..0b4cf1b2f --- /dev/null +++ b/install-dev/sql/upgrade/1.4.4.1.sql @@ -0,0 +1 @@ +SET NAMES 'utf8'; diff --git a/modules/blockcms/blockcms.php b/modules/blockcms/blockcms.php index 71234cd07..9d53d907f 100755 --- a/modules/blockcms/blockcms.php +++ b/modules/blockcms/blockcms.php @@ -598,7 +598,7 @@ class BlockCms extends Module "'.pSQL(Tools::getValue('block_name_'.$language['id_lang'])).'")'); Db::getInstance()->Execute(' - UPDATE `'._DB_PREFIX_.'cms_block + UPDATE `'._DB_PREFIX_.'cms_block` SET `display_store` = '.Configuration::get('PS_STORES_DISPLAY_FOOTER')); } elseif (Tools::isSubmit('editBlockCMS')) diff --git a/themes/prestashop/cms.tpl b/themes/prestashop/cms.tpl index 8a77a44a4..fe2d89b8b 100644 --- a/themes/prestashop/cms.tpl +++ b/themes/prestashop/cms.tpl @@ -44,8 +44,8 @@ {$cms->content}
{elseif isset($category)} -
-

{$category->name|escape:'htmlall':'UTF-8'}

+
+

{$category->name|escape:'htmlall':'UTF-8'}

{if isset($sub_category) & !empty($sub_category)}

{l s='List of sub categories in '}{$category->name}{l s=':'}

    diff --git a/themes/prestashop/css/global.css b/themes/prestashop/css/global.css index 9ae035792..0f443e48b 100644 --- a/themes/prestashop/css/global.css +++ b/themes/prestashop/css/global.css @@ -763,6 +763,8 @@ ul#order_step { background-color: white } } /* Default block style */ +div.block-cms h1 a { color: #374853; text-decoration: none; } +div.block-cms h1 a:hover { text-decoration: underline; } div.block { margin-bottom: 1em; width: 191px