// Merge -> revision 8199
This commit is contained in:
@@ -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).']');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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())');
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
1
docs/.htaccess
Normal file
1
docs/.htaccess
Normal file
@@ -0,0 +1 @@
|
||||
Deny from ALL
|
||||
3
CHANGELOG → docs/CHANGELOG
Normal file → Executable file
3
CHANGELOG → docs/CHANGELOG
Normal file → Executable file
@@ -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) #
|
||||
####################################
|
||||
28
readme_de.txt → docs/readme_de.txt
Normal file → Executable file
28
readme_de.txt → docs/readme_de.txt
Normal file → Executable file
@@ -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<EFBFBD>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<EFBFBD>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<EFBFBD>nnen, bieten wir einen schl<EFBFBD>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<EFBFBD>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<EFBFBD>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<EFBFBD>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<EFBFBD>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<EFBFBD>sungen f<EFBFBD>r Ihre Fragen ;-)
|
||||
Es gibt immer Lösungen für Ihre Fragen ;-)
|
||||
|
||||
DOKUMENTATION
|
||||
=============
|
||||
|
||||
F<EFBFBD>r zus<EFBFBD>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<EFBFBD>nnen au<EFBFBD>erdem mit der PrestaShop Community in unseren Foren
|
||||
diskutieren, Hilfe finden und eigene Beitr<EFBFBD>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<EFBFBD>r Ihren Download und die Nutzung der PrestaShop E-Commerce-Open-Source-L<EFBFBD>sung!
|
||||
Danke für Ihren Download und die Nutzung der PrestaShop E-Commerce-Open-Source-Lösung!
|
||||
|
||||
==========================
|
||||
= The PrestaTeam' =
|
||||
4
readme_en.txt → docs/readme_en.txt
Normal file → Executable file
4
readme_en.txt → docs/readme_en.txt
Normal file → Executable 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.5.0.0
|
||||
VERSION: 1.5.0.0
|
||||
NAME: Prestashop 1.4.4.1
|
||||
VERSION: 1.4.4.1
|
||||
|
||||
PREPARATION
|
||||
===========
|
||||
4
readme_es.txt → docs/readme_es.txt
Normal file → Executable file
4
readme_es.txt → docs/readme_es.txt
Normal file → Executable 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.5.0.0
|
||||
VERSION: 1.5.0.0
|
||||
NAME: Prestashop 1.4.4.1
|
||||
VERSION: 1.4.4.1
|
||||
|
||||
PREPARACI<EFBFBD>N
|
||||
===========
|
||||
4
readme_fr.txt → docs/readme_fr.txt
Normal file → Executable file
4
readme_fr.txt → docs/readme_fr.txt
Normal file → Executable 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.5.0.0
|
||||
VERSION: 1.5.0.0
|
||||
NAME: Prestashop 1.4.4.1
|
||||
VERSION: 1.4.4.1
|
||||
|
||||
PREPARATION
|
||||
===========
|
||||
6
readme_it.txt → docs/readme_it.txt
Normal file → Executable file
6
readme_it.txt → docs/readme_it.txt
Normal file → Executable 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.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<EFBFBD> pronto che ti far<EFBFBD> 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/
|
||||
|
||||
@@ -969,7 +969,7 @@ if ($lm->getIncludeTradFilename())
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h3 class="infosBlock"><?php echo 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).'); ?></h3>
|
||||
<h3 class="infosBlock"><?php echo lang('WARNING: For more security, you must delete the \'install\' folder.'); ?></h3>
|
||||
|
||||
<div id="boBlock" class="blockInfoEnd clearfix">
|
||||
<img src="img/visu_boBlock.png" />
|
||||
|
||||
@@ -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, <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['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, <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['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)';
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
<?php
|
||||
|
||||
$_LANG['Installer'] = 'Instalación';
|
||||
$_LANG['Updater'] = 'Actualizatión';
|
||||
$_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['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['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['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['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'] = '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['Community Forum'] = 'en nuestro foro comunitario';
|
||||
$_LANG['Configure SMTP manually (advanced users only)'] = 'Configurar el envío SMTP (expertos únicamente)';
|
||||
$_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['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['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 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 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['Encryption:'] = 'Encriptación:';
|
||||
$_LANG['Error!'] = '¡Falta!';
|
||||
$_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['Encryption:'] = 'Encriptación:';
|
||||
$_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:';
|
||||
@@ -42,201 +42,201 @@ $_LANG['Error while loading sql upgrade file.'] = 'Error al abrir el archivo SQL
|
||||
$_LANG['Error:'] = 'Error :';
|
||||
$_LANG['Errors 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['File upload stopped by extension'] = 'Carga de archivos interrumpido a causa de la extensión incorrecta';
|
||||
$_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['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['For more information, please consult our'] = 'Para más información, consulte nuestra';
|
||||
$_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['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['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['Last name:'] = 'Apellido:';
|
||||
$_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['MySQL support is on'] = 'El soporte de MySQL está activado';
|
||||
$_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['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['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['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['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['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['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['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 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['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['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['SMTP connection is unavailable'] = 'Conexión SMTP no está disponible.';
|
||||
$_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['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['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['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['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['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['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['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 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['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['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['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['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['Unfortunately,'] = 'Desgraciadamente,';
|
||||
$_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['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 system compatibility'] = 'Compatibilidad 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).'] = 'ATENCION : para más seguridad, por favor suprima la carpeta \'/install\' y los archivos 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!'] = '¡Atención: se recomienda hacer una copia de seguridad manual antes de continuar!';
|
||||
$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATENCION : para m√°s seguridad, por favor suprima la carpeta \'/install\' y los archivos 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!'] = '¡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['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['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['Your update is finished!'] = 'La actualización se ha completado';
|
||||
$_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['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['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['view the log'] = 'ver el informe';
|
||||
$_LANG['(no old 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['(no old 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['Need help?'] = '¬øNecesita ayuda?';
|
||||
$_LANG['Forum'] = '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 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'] = '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['Find your store as your future customers will see!'] = '¬°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['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['Your configuration is invalid. Please fix the issues below:'] = 'Su configuración no es válida,<br />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,<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['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)';
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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),
|
||||
|
||||
1
install-dev/sql/upgrade/1.4.4.1.sql
Executable file
1
install-dev/sql/upgrade/1.4.4.1.sql
Executable file
@@ -0,0 +1 @@
|
||||
SET NAMES 'utf8';
|
||||
@@ -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'))
|
||||
|
||||
@@ -44,8 +44,8 @@
|
||||
{$cms->content}
|
||||
</div>
|
||||
{elseif isset($category)}
|
||||
<div>
|
||||
<h1>{$category->name|escape:'htmlall':'UTF-8'}</h1>
|
||||
<div class="block-cms">
|
||||
<h1><a href="{if $category->id eq 1}{$base_dir}{else}{$link->getCategoryLink($category->id, $category->link_rewrite)}{/if}">{$category->name|escape:'htmlall':'UTF-8'}</a></h1>
|
||||
{if isset($sub_category) & !empty($sub_category)}
|
||||
<h4>{l s='List of sub categories in '}{$category->name}{l s=':'}</h4>
|
||||
<ul class="bullet">
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user