Initial commit

This commit is contained in:
2020-10-07 10:37:15 +02:00
commit ce5f440392
28157 changed files with 4429172 additions and 0 deletions

10
app/.htaccess Normal file
View File

@@ -0,0 +1,10 @@
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>

33
app/AppCache.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
/**
* 2007-2019 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
require_once __DIR__.'/AppKernel.php';
use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
class AppCache extends HttpCache
{
}

189
app/AppKernel.php Normal file
View File

@@ -0,0 +1,189 @@
<?php
/**
* 2007-2020 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2020 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
use PrestaShopBundle\Kernel\ModuleRepositoryFactory;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
class AppKernel extends Kernel
{
const VERSION = '1.7.6.7';
const MAJOR_VERSION_STRING = '1.7';
const MAJOR_VERSION = 17;
const MINOR_VERSION = 6;
const RELEASE_VERSION = 7;
/**
* @{inheritdoc}
*/
public function registerBundles()
{
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
// PrestaShop Core bundle
new PrestaShopBundle\PrestaShopBundle(),
// PrestaShop Translation parser
new PrestaShop\TranslationToolsBundle\TranslationToolsBundle(),
// REST API consumer
new Csa\Bundle\GuzzleBundle\CsaGuzzleBundle(),
new League\Tactician\Bundle\TacticianBundle(),
);
if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
}
if ('dev' === $this->getEnvironment()) {
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
}
/* Will not work until PrestaShop is installed */
$activeModules = $this->getActiveModules();
if (!empty($activeModules)) {
try {
$this->enableComposerAutoloaderOnModules($activeModules);
} catch (\Exception $e) {
}
}
return $bundles;
}
/**
* @{inheritdoc}
*/
protected function getKernelParameters()
{
$kernelParameters = parent::getKernelParameters();
return array_merge(
$kernelParameters,
array('kernel.active_modules' => $this->getActiveModules())
);
}
/**
* @{inheritdoc}
*/
public function getRootDir()
{
return __DIR__;
}
/**
* @{inheritdoc}
*/
public function getCacheDir()
{
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
}
/**
* @{inheritdoc}
*/
public function getLogDir()
{
return dirname(__DIR__).'/var/logs';
}
/**
* @{inheritdoc}
* @throws \Exception
*/
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(function (ContainerBuilder $container) {
$container->setParameter('container.autowiring.strict_mode', true);
$container->setParameter('container.dumper.inline_class_loader', false);
$container->addObjectResource($this);
});
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}
/**
* Return all active modules.
*
* @return array list of modules names.
*/
private function getActiveModules()
{
$activeModules = [];
try {
if ($modulesRepository = ModuleRepositoryFactory::getInstance()->getRepository()) {
$activeModules = $modulesRepository->getActiveModules();
}
} catch (\Exception $e) {
//Do nothing because the modules retrieval must not block the kernel, and it won't work
//during the installation process
}
return $activeModules;
}
/**
* Enable auto loading of module Composer autoloader if needed.
* Need to be done as earlier as possible in application lifecycle.
*
* Note: this feature is also manage in PrestaShop\PrestaShop\Adapter\ContainerBuilder
* for non Symfony environments.
*
* @param array $modules the list of modules
*/
private function enableComposerAutoloaderOnModules($modules)
{
foreach ($modules as $module) {
$autoloader = __DIR__.'/../modules/'.$module.'/vendor/autoload.php';
if (file_exists($autoloader)) {
include_once $autoloader;
}
}
}
/**
* Gets the application root dir.
* Override Kernel due to the fact that we remove the composer.json in
* downloaded package. More we are not a framework and the root directory
* should always be the parent of this file.
*
* @return string The project root dir
*/
public function getProjectDir()
{
return realpath(__DIR__ . '/..');
}
}

View File

@@ -0,0 +1,668 @@
{
"af": {
"name": "Afrikaans (Afrikaans)",
"iso_code": "af",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "af-za",
"locale": "af-ZA"
},
"ag": {
"name": "Español AR (Spanish)",
"iso_code": "ag",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "es-ar",
"locale": "es-AR"
},
"ar": {
"name": "اللغة العربية (Arabic)",
"iso_code": "ar",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "1",
"language_code": "ar-sa",
"locale": "ar-SA"
},
"az": {
"name": "Azərbaycan dili (Azerbaijani)",
"iso_code": "az",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "az-az",
"locale": "az-AZ"
},
"bg": {
"name": "български език (Bulgarian)",
"iso_code": "bg",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "bg-bg",
"locale": "bg-BG"
},
"bn": {
"name": "বাংলা (Bengali)",
"iso_code": "bn",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "bn-bd",
"locale": "bn-BD"
},
"br": {
"name": "Português BR (Portuguese)",
"iso_code": "br",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "pt-br",
"locale": "pt-BR"
},
"bs": {
"name": "Bosanski (Bosnian)",
"iso_code": "bs",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "bs-ba",
"locale": "bs-BA"
},
"bz": {
"name": "Brezhoneg (Breton)",
"iso_code": "bz",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "bz",
"locale": "br-FR"
},
"ca": {
"name": "Català (Catalan)",
"iso_code": "ca",
"date_format_lite": "d/m/Y",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ca-es",
"locale": "ca-ES"
},
"cb": {
"name": "Español CO ( Spanish)",
"iso_code": "cb",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "es-co",
"locale": "es-CO"
},
"cs": {
"name": "Čeština (Czech)",
"iso_code": "cs",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "cs-cz",
"locale": "cs-CZ"
},
"da": {
"name": "Dansk (Danish)",
"iso_code": "da",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "da-dk",
"locale": "da-DK"
},
"de": {
"name": "Deutsch (German)",
"iso_code": "de",
"date_format_lite": "d.m.Y",
"date_format_full": "d.m.Y H:i:s",
"is_rtl": "0",
"language_code": "de-de",
"locale": "de-DE"
},
"dh": {
"name": "Deutsch CH (German)",
"iso_code": "dh",
"date_format_lite": "d.m.Y",
"date_format_full": "d.m.Y H:i:s",
"is_rtl": "0",
"language_code": "de-CH",
"locale": "de-CH"
},
"el": {
"name": "ελληνικά (Greek)",
"iso_code": "el",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "el-gr",
"locale": "el-GR"
},
"en": {
"name": "English (English)",
"iso_code": "en",
"date_format_lite": "m/d/Y",
"date_format_full": "m/d/Y H:i:s",
"is_rtl": "0",
"language_code": "en-us",
"locale": "en-US"
},
"eo": {
"name": "Esperanto",
"iso_code": "eo",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "eo-eo",
"locale": "eo-EO"
},
"es": {
"name": "Español (Spanish)",
"iso_code": "es",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "es-es",
"locale": "es-ES"
},
"et": {
"name": "Eesti keel (Estonian)",
"iso_code": "et",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "et-ee",
"locale": "et-EE"
},
"eu": {
"name": "Euskera (Basque)",
"iso_code": "eu",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "eu-es",
"locale": "eu-ES"
},
"fa": {
"name": "فارسى (Persian)",
"iso_code": "fa",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "1",
"language_code": "fa-ir",
"locale": "fa-IR"
},
"fi": {
"name": "Suomi (Finnish)",
"iso_code": "fi",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "fi-fi",
"locale": "fi-FI"
},
"tl": {
"name": "Wikang Tagalog (Filipino)",
"iso_code": "tl",
"date_format_lite": "Y-d-m",
"date_format_full": "Y-d-m H:i:s",
"is_rtl": "0",
"language_code": "tl-ph",
"locale": "tl-PH"
},
"fr": {
"name": "Français (French)",
"iso_code": "fr",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "fr-fr",
"locale": "fr-FR"
},
"ga": {
"name": "Gaeilge (Gaelic)",
"iso_code": "ga",
"date_format_lite": "dd/mm/yyyy",
"date_format_full": "dd/mm/yyyy HH:mm:ss",
"is_rtl": "0",
"language_code": "ga-ie",
"locale": "ga-IE"
},
"gb": {
"name": "English GB (English)",
"iso_code": "gb",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "en-gb",
"locale": "en-GB"
},
"gl": {
"name": "Galego (Galician)",
"iso_code": "gl",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "gl-es",
"locale": "gl-ES"
},
"gu": {
"name": "ગુજરાતી (Gujarati)",
"iso_code": "gu",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "gu-in",
"locale": "gu-IN"
},
"he": {
"name": "עברית (Hebrew)",
"iso_code": "he",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "1",
"language_code": "he-il",
"locale": "he-IL"
},
"hi": {
"name": "हिन्दी (Hindi)",
"iso_code": "hi",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "hi-in",
"locale": "hi-IN"
},
"hr": {
"name": "Hrvatski (Croatian)",
"iso_code": "hr",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "hr-hr",
"locale": "hr-HR"
},
"hu": {
"name": "Magyar (Hungarian)",
"iso_code": "hu",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "hu-hu",
"locale": "hu-HU"
},
"hy": {
"name": "Հայերէն (Armenian)",
"iso_code": "hy",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "hy",
"locale": "hy-AM"
},
"id": {
"name": "Bahasa Indonesia (Indonesian)",
"iso_code": "id",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "id-id",
"locale": "id-ID"
},
"it": {
"name": "Italiano (Italian)",
"iso_code": "it",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "it-it",
"locale": "it-IT"
},
"is": {
"name": "Íslenska (Icelandic)",
"iso_code": "is",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "is-is",
"locale": "is-IS"
},
"ja": {
"name": "日本語 (Japanese)",
"iso_code": "ja",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ja-jp",
"locale": "ja-JP"
},
"ka": {
"name": "ქართული (Georgian)",
"iso_code": "ka",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ka-ge",
"locale": "ka-GE"
},
"ko": {
"name": "한국어 (Korean)",
"iso_code": "ko",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ko",
"locale": "ko-KR"
},
"lo": {
"name": "ພາສາລາວ (Lao)",
"iso_code": "lo",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "lo-la",
"locale": "lo-LA"
},
"lt": {
"name": "Lietuvių kalba (Lithuanian)",
"iso_code": "lt",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "lt-lt",
"locale": "lt-LT"
},
"lv": {
"name": "Latviešu valoda (Latvian)",
"iso_code": "lv",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "lv-lv",
"locale": "lv-LV"
},
"mk": {
"name": "македонски (Macedonian)",
"iso_code": "mk",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "mk",
"locale": "mk-MK"
},
"ml": {
"name": "മലയാളം (Malayalam)",
"iso_code": "ml",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ml-in",
"locale": "ml-IN"
},
"ms": {
"name": "Bahasa melayu (Malay)",
"iso_code": "ms",
"date_format_lite": "d MMMM yyyy",
"date_format_full": "d MMMM yyyy h:mm:ss",
"is_rtl": "0",
"language_code": "ms-my",
"locale": "ms-MY"
},
"mx": {
"name": "Español MX (Spanish)",
"iso_code": "mx",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "es-mx",
"locale": "es-MX"
},
"nl": {
"name": "Nederlands (Dutch)",
"iso_code": "nl",
"date_format_lite": "d-m-Y",
"date_format_full": "d-m-Y H:i:s",
"is_rtl": "0",
"language_code": "nl-nl",
"locale": "nl-NL"
},
"nn": {
"name": "Nynorsk (Norwegian)",
"iso_code": "nn",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "nn-no",
"locale": "nn-NO"
},
"no": {
"name": "Bokmål (Norwegian)",
"iso_code": "no",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "no-no",
"locale": "no-NO"
},
"pl": {
"name": "Polski (Polish)",
"iso_code": "pl",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "pl-pl",
"locale": "pl-PL"
},
"pe": {
"name": "Español PE (Spanish)",
"iso_code": "pe",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "es-pe",
"locale": "es-PE"
},
"pt": {
"name": "Português PT (Portuguese)",
"iso_code": "pt",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "pt-pt",
"locale": "pt-PT"
},
"qc": {
"name": "Français CA (French)",
"iso_code": "qc",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "fr-ca",
"locale": "fr-CA"
},
"ro": {
"name": "Română (Romanian)",
"iso_code": "ro",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ro-ro",
"locale": "ro-RO"
},
"ru": {
"name": "Русский (Russian)",
"iso_code": "ru",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ru-ru",
"locale": "ru-RU"
},
"sh": {
"name": "سنڌي (Sinhala)",
"iso_code": "sh",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "si-lk",
"locale": "si-LK"
},
"si": {
"name": "Slovenščina (Slovene)",
"iso_code": "si",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "sl-si",
"locale": "sl-SI"
},
"sk": {
"name": "Slovenčina (Slovak)",
"iso_code": "sk",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "sk-sk",
"locale": "sk-SK"
},
"sq": {
"name": "Shqip (Albanian)",
"iso_code": "sq",
"date_format_lite": "dd-mm-yyyy",
"date_format_full": "dd-mm-yyyy H:i:s",
"is_rtl": "0",
"language_code": "sq-al",
"locale": "sq-AL"
},
"sr": {
"name": "српски (Serbian)",
"iso_code": "sr",
"date_format_lite": "d. m. Y.",
"date_format_full": "d. m. Y. H:i:s",
"is_rtl": "0",
"language_code": "sr-cs",
"locale": "sr-CS"
},
"sv": {
"name": "Svenska (Swedish)",
"iso_code": "sv",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "sv-se",
"locale": "sv-SE"
},
"ta": {
"name": "தமிழ் (Tamil)",
"iso_code": "ta",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ta-in",
"locale": "ta-IN"
},
"th": {
"name": "ภาษาไทย (Thai)",
"iso_code": "th",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "th-th",
"locale": "th-TH"
},
"tr": {
"name": "Türkçe (Turkish)",
"iso_code": "tr",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "tr-tr",
"locale": "tr-TR"
},
"tw": {
"name": "繁體中文 (Traditional Chinese)",
"iso_code": "tw",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "zh-tw",
"locale": "zh-TW"
},
"ud": {
"name": "English (upside down)",
"iso_code": "ud",
"date_format_lite": "m/d/Y",
"date_format_full": "m/d/Y H:i:s",
"is_rtl": "0",
"language_code": "en-ud",
"locale": "en-UD"
},
"ug": {
"name": "ئۇيغۇر (Uyghur)",
"iso_code": "ug",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "ug-cn",
"locale": "ug-CN"
},
"uk": {
"name": "Українська (Ukrainian)",
"iso_code": "uk",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "uk-ua",
"locale": "uk-UA"
},
"ur": {
"name": "اردو (Urdu)",
"iso_code": "ur",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "1",
"language_code": "ur",
"locale": "ur-PK"
},
"uz": {
"name": "Oʻzbek tili (Uzbek)",
"iso_code": "uz",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "uz-uz",
"locale": "uz-UZ"
},
"ve": {
"name": "Español VE (Spanish)",
"iso_code": "ve",
"date_format_lite": "d/m/Y",
"date_format_full": "d/m/Y H:i:s",
"is_rtl": "0",
"language_code": "es-ve",
"locale": "es-VE"
},
"vn": {
"name": "Tiếng Việt (Vietnamese)",
"iso_code": "vn",
"date_format_lite": "d/m/Y",
"date_format_full": "H:i:s d/m/Y",
"is_rtl": "0",
"language_code": "vi-vn",
"locale": "vi-VN"
},
"zh": {
"name": "中文 (Simplified Chinese)",
"iso_code": "zh",
"date_format_lite": "Y-m-d",
"date_format_full": "Y-m-d H:i:s",
"is_rtl": "0",
"language_code": "zh-cn",
"locale": "zh-CN"
}
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* 2007-2019 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,79 @@
{
"an": "an-AR",
"af": "af-ZA",
"ag": "es-AR",
"ar": "ar-SA",
"az": "az-AZ",
"bg": "bg-BG",
"bn": "bn-BD",
"bs": "bs-BA",
"br": "pt-BR",
"bz": "br-FR",
"ca": "ca-ES",
"cb": "es-CO",
"cs": "cs-CZ",
"da": "da-DK",
"de": "de-DE",
"dh": "de-CH",
"el": "el-GR",
"en": "en-US",
"eo": "eo-EO",
"es": "es-ES",
"et": "et-EE",
"eu": "eu-ES",
"fa": "fa-IR",
"fi": "fi-FI",
"tl": "tl-PH",
"fo": "fo-FO",
"fr": "fr-FR",
"ga": "ga-IE",
"gb": "en-GB",
"gl": "gl-ES",
"gu": "gu-IN",
"he": "he-IL",
"hi": "hi-IN",
"hr": "hr-HR",
"hu": "hu-HU",
"hy": "hy-AM",
"id": "id-ID",
"it": "it-IT",
"is": "is-IS",
"ja": "ja-JP",
"ka": "ka-GE",
"ko": "ko-KR",
"lo": "lo-LA",
"lt": "lt-LT",
"lv": "lv-LV",
"mk": "mk-MK",
"ml": "ml-IN",
"ms": "ms-MY",
"mx": "es-MX",
"nl": "nl-NL",
"nn": "nn-NO",
"no": "no-NO",
"pl": "pl-PL",
"pe": "es-PE",
"pt": "pt-PT",
"qc": "fr-CA",
"ro": "ro-RO",
"ru": "ru-RU",
"sh": "si-LK",
"si": "sl-SI",
"sk": "sk-SK",
"sq": "sq-AL",
"sr": "sr-CS",
"sv": "sv-SE",
"sw": "sw-KE",
"ta": "ta-IN",
"te": "te-IN",
"th": "th-TH",
"tr": "tr-TR",
"tw": "zh-TW",
"ug": "ug-CN",
"uk": "uk-UA",
"ur": "ur-PK",
"uz": "uz-UZ",
"ve": "es-VE",
"vn": "vi-VN",
"zh": "zh-CN"
}

View File

@@ -0,0 +1,10 @@
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>

View File

@@ -0,0 +1,897 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/access/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a27dfe771799a09fd55fea73286eb6ab">
<source>Uninstall</source>
<target>Uninstall</target>
<note>Line: 505</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="92fbf0e5d97b8afd7e73126b52bdc4bb">
<source>Choose a file</source>
<target>Choose a file</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ad3d06d03d94223fa652babc913de686">
<source>Validate</source>
<target>Validate</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/cart_rules/informations.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="32b919d18cfaca89383f6000dcc9c031">
<source>Generate</source>
<target>Generate</target>
<note>Line: 83</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/countries/helpers/list/list_footer.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4c41e0bd957698b58100a5c687d757d9">
<source>Select all</source>
<target>Select all</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="237c7b6874386141a095e321c9fdfd38">
<source>Unselect all</source>
<target>Unselect all</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="b9987a246a537f4fe86f1f2e3d10dbdb">
<source>Display</source>
<target>Display</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/customer_threads/helpers/view/modal.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7bc873cba11f035df692c3549366c722">
<source>-- Choose --</source>
<target>-- Choose --</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/customer_threads/message.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4351cfebe4b61d8aa5efa1d020710005">
<source>View</source>
<target>View</target>
<note>Line: 85</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/import/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="91412465ea9169dfd901dd5e7c96dd99">
<source>Upload</source>
<target>Upload</target>
<note>Line: 79</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/import/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="72d6d7a1885885bb55a565fd1070581a">
<source>Import</source>
<target>Import</target>
<note>Line: 141</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/import/modal_import_progress.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d3d2e617335f08df83599665eef8a418">
<source>Close</source>
<target>Close</target>
<note>Line: 108</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules/configure.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bcfaccebf745acfd5e75351095a5394a">
<source>Disable</source>
<target>Disable</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="f1206f9fadc5ce41694f69129aecac26">
<source>Configure</source>
<target>Configure</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="deccbe4e9083c3b5f7cd2632722765bb">
<source>Translate</source>
<target>Translate</target>
<note>Line: 86</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules/filters.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d7778d0c64b6ba21494c97f77a66885a">
<source>Filter</source>
<target>Filter</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules_positions/list_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="498f79c4c5bbde77f1bceb6c86fd0f6d">
<source>Show</source>
<target>Show</target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_product_line.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="06933067aafd48425d67bcb01bba5cb6">
<source>Update</source>
<target>Update</target>
<note>Line: 233</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7dce122004969d56ae2e0245cb754d35">
<source>Edit</source>
<target>Edit</target>
<note>Line: 1398</note>
</trans-unit>
<trans-unit id="961f2247a2070bedff9f9cd8d64e2650">
<source>Choose</source>
<target>Choose</target>
<note>Line: 512</note>
</trans-unit>
<trans-unit id="ea9cf7e47ff33b2be14e6dd07cbcefc6">
<source>Shipping</source>
<target>Shipping</target>
<note>Line: 1415</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/return/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="daf51d7d9e10e6a469434ae548d9a173">
<source>Print out</source>
<target>Print out</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/statuses/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="31fde7b05ac8952dacf4af8a704074ec">
<source>Preview</source>
<target>Preview</target>
<note>Line: 77</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/tags/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1063e38cb53d94d386f21227fcd84717">
<source>Remove</source>
<target>Remove</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/tax_rules/helpers/list/list_header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="526d688f37a86d3c3f27d0c5016eb71d">
<source>Reset</source>
<target>Reset</target>
<note>Line: 76</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_mails.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9ea67be453eaccf020697b4654fc021a">
<source>Save and stay</source>
<target>Save and stay</target>
<note>Line: 90</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/footer_toolbar.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e9c7e4df74077626f7e42797c65273c4">
<source>and stay</source>
<target>and stay</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cc3787ca78f445f481069a4c047f7e7a">
<source>Choose language:</source>
<target>Choose language:</target>
<note>Line: 77</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/helpers/calendar/calendar.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ea4788705e6873b424c65e91c2846b19">
<source>Cancel</source>
<target>Cancel</target>
<note>Line: 97</note>
</trans-unit>
<trans-unit id="9639e32cab248434a17ab32237cb3b71">
<source>Apply</source>
<target>Apply</target>
<note>Line: 101</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ec211f7c20af43e742bf2570c3cb84f9">
<source>Add</source>
<target>Add</target>
<note>Line: 311</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/helpers/list/list_header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="13348442cc6a27032d2b4aa28b75a5d3">
<source>Search</source>
<target>Search</target>
<note>Line: 398</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/helpers/required_fields.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c9cc8cce247e49bae79f15173ce97354">
<source>Save</source>
<target>Save</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/helpers/uploader/simple.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f2a6c498fb90ee345d997f888fce3b18">
<source>Delete</source>
<target>Delete</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="classes/helper/Helper.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b56c3bda503a8dc4be356edb0cc31793">
<source>Collapse All</source>
<target>Collapse All</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="5ffd7a335dd836b3373f5ec570a58bdc">
<source>Expand All</source>
<target>Expand All</target>
<note>Line: 173</note>
</trans-unit>
<trans-unit id="5e9df908eafa83cb51c0a3720e8348c7">
<source>Check All</source>
<target>Check All</target>
<note>Line: 174</note>
</trans-unit>
<trans-unit id="9747d23c8cc358c5ef78c51e59cd6817">
<source>Uncheck All</source>
<target>Uncheck All</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="17f5f00c6d09158f70718e353e91d20e">
<source>Find a category</source>
<target>Find a category</target>
<note>Line: 176</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarrierWizardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a20ddccbb6f808ec42cd66323e6c6061">
<source>Finish</source>
<target>Finish</target>
<note>Line: 133</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCategoriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="de9ced9bf5e9829de4a93ad8c9d7a170">
<source>Add New</source>
<target>Add New</target>
<note>Line: 328</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCountriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e25f0ecd41211b01c83e5fec41df4fe7">
<source>Delete selected items?</source>
<target>Delete selected items?</target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
<file original="modules/dashactivity/views/templates/hook/dashboard_zone_one.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="63a6a88c066880c5ac42394a22803ca6">
<source>Refresh</source>
<target>Refresh</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
<file original="modules/gsitemap/views/templates/admin/configuration.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a0bfb8e59e6c13fc8d990781f77694fe">
<source>Continue</source>
<target>Continue</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_categorytree/ps_categorytree.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6b46ae48421828d9973deec5fa9aa0c3">
<source>Sort</source>
<target>Sort</target>
<note>Line: 202</note>
</trans-unit>
<trans-unit id="06f1ac65b0a6a548339a38b348e64d79">
<source>Sort order</source>
<target>Sort order</target>
<note>Line: 219</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_emailsubscription/ps_emailsubscription.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dbb392a2dc9b38722e69f6032faea73e">
<source>Export .CSV file</source>
<target>Export .CSV file</target>
<note>Line: 995</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_imageslider/views/templates/hook/list.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ef61fb324d729c341ea8ab9901e23566">
<source>Add new</source>
<target>Add new</target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="modules/statscatalog/statscatalog.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b1c94ca2fbc3e78fc30069c8d0f01680">
<source>All</source>
<target>All</target>
<note>Line: 188</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CategoryGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="88e5d5ca0a8d1b109ce64897e3f5a1ad">
<source>Search description</source>
<target>Search description</target>
<note>Line: 220</note>
</trans-unit>
<trans-unit id="9d6abf0161fd44d3390037c48f84207a">
<source>Search position</source>
<target>Search position</target>
<note>Line: 246</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CmsPageDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d3b206d196cd6be3a2764c1fb90b200f">
<source>Delete selected</source>
<target>Delete selected</target>
<note>Line: 345</note>
</trans-unit>
<trans-unit id="ede4759c9afae620fd586628789fa304">
<source>Enable selection</source>
<target>Enable selection</target>
<note>Line: 333</note>
</trans-unit>
<trans-unit id="ab7fd6e250b64a46027a996088fdff74">
<source>Disable selection</source>
<target>Disable selection</target>
<note>Line: 339</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CustomerGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2459a02ecb2c655956ecb3e39068dc55">
<source>Search email</source>
<target>Search email</target>
<note>Line: 319</note>
</trans-unit>
<trans-unit id="159b53bd16ff77184a5603620e54f761">
<source>Search company</source>
<target>Search company</target>
<note>Line: 362</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/LanguageGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="56b533c60a6c6d0b172c4ba5ec971eeb">
<source>Search ISO code</source>
<target>Search ISO code</target>
<note>Line: 212</note>
</trans-unit>
<trans-unit id="0534d3a8a5d85f380852d74575f77744">
<source>Search code</source>
<target>Search code</target>
<note>Line: 222</note>
</trans-unit>
<trans-unit id="5009286a303ef99a9b58979e866476a1">
<source>Search date format</source>
<target>Search date format</target>
<note>Line: 232</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/ManufacturerAddressGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e98936d7a5973d99a4b50b1f43400494">
<source>Search first name</source>
<target>Search first name</target>
<note>Line: 183</note>
</trans-unit>
<trans-unit id="402456650e9401a17e766d619ef691ec">
<source>Search last name</source>
<target>Search last name</target>
<note>Line: 192</note>
</trans-unit>
<trans-unit id="1b24f089e060676ad7ee2e3b3d3d6d5e">
<source>Search post code</source>
<target>Search post code</target>
<note>Line: 201</note>
</trans-unit>
<trans-unit id="da6b6493b1cc2156ad63965bd59ca491">
<source>Search city</source>
<target>Search city</target>
<note>Line: 210</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/ProfileGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="14b65dabcecbbcb0724ed1efe27c6335">
<source>Search ID</source>
<target>Search ID</target>
<note>Line: 188</note>
</trans-unit>
<trans-unit id="542f59279cd5d73dfbdb069ce0833b0a">
<source>Search name</source>
<target>Search name</target>
<note>Line: 197</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/WebserviceKeyDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e480b018a3b81eb00b88d5bc11b78663">
<source>Search key</source>
<target>Search key</target>
<note>Line: 186</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/ThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="349838fb1d851d3e2014b9fe39203275">
<source>Install</source>
<target>Install</target>
<note>Line: 511</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/ProductController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="656c3be690ee43df4b845bd2a2ebe587">
<source>New product</source>
<target>New product</target>
<note>Line: 358</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/Design/Pages/CmsPageType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2efd89b3ccc76b0b03a34196fc6d1c8b">
<source>Add tag</source>
<target>Add tag</target>
<note>Line: 158</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/grid_actions.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="351b6d570b6ba15fe66e85c1eaf9ec64">
<source>Export to SQL Manager</source>
<target>Export to SQL Manager</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Backup/download_view.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="801ab24683a4a8c433c6eb40c48bcd9d">
<source>Download</source>
<target>Download</target>
<note>Line: 36</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Blocks/import_file_history.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ad8783089f828b927473fb61d51940ec">
<source>Use</source>
<target>Use</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Blocks/import_panel.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f4ec5f57bd4d31b803312d873be40da9">
<source>Change</source>
<target>Change</target>
<note>Line: 104</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/ImportDataConfiguration/Blocks/import_data_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f19dbf2edb3a0bd74b0524d960ff21eb">
<source>Load</source>
<target>Load</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f8825c9f08ff15b5ef6bc3a3898817e8">
<source>Save and preview</source>
<target>Save and preview</target>
<note>Line: 118</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/listing_panel_footer.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="630f6dc397fe74e52d5189e2c80f282b">
<source>Back to list</source>
<target>Back to list</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/showcase_card.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d59048f21fd887ad520398ce677be586">
<source>Learn more</source>
<target>Learn more</target>
<note>Line: 35</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/generate_mails_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a0a17caf8de192bd85662445714f0adc">
<source>Generate emails</source>
<target>Generate emails</target>
<note>Line: 92</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/list_mail_theme_layouts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="50e21d84e2f62e0d61bae893518fa884">
<source>Back to configuration</source>
<target>Back to configuration</target>
<note>Line: 114</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/customize_page_layouts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f0dbca7d922e4e759a1e3b512b9be852">
<source>Choose layouts</source>
<target>Choose layouts</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2faec1f9f8cc7f8f40d521c4dd574f49">
<source>Enable</source>
<target>Enable</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/edit.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4472046c137171c7adf7c4fe5a72b6b9">
<source>Edit: %value%</source>
<target>Edit: %value%</target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/copy_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5fb63579fc981698f97d55bfecb213ea">
<source>Copy</source>
<target>Copy</target>
<note>Line: 87</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/export_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0095a9fa74d1713e43e370a7d7846224">
<source>Export</source>
<target>Export</target>
<note>Line: 74</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/modify_translations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7f090bbab1cc7f9c08bf4e54d932d3c0">
<source>Modify</source>
<target>Modify</target>
<note>Line: 103</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Shipping/Preferences/Blocks/shipping_preferences_carrier_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="01fda57aa6c7e9f07f5aa36b108e95cb">
<source>Order by</source>
<target>Order by</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_loader.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f915a95e609bbd517a8a1e7bdcceef37">
<source>Try again</source>
<target>Try again</target>
<note>Line: 56</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_addons_connect.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="634efc0701950e9b2b97384327c8d5d2">
<source>Let's go!</source>
<target>Let's go!</target>
<note>Line: 72</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/see_more.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="58de647698e3130c85d5c20670852608">
<source>See less</source>
<target>See less</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="891ad007e2e9f2d55be6669cd9abc7a0">
<source>See more</source>
<target>See more</target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/filters.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ab76f8687bae4be1912889f2328fc8ea">
<source>Filter by categories</source>
<target>Filter by categories</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="46b816f573557a53c93ac78bbcfa9493">
<source>Unselect</source>
<target>Unselect</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="7bbd046ab824701b2e019e5d07d6ab99">
<source>Activate selection</source>
<target>Activate selection</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="fa870a208f7f70af5ead1f1992f6d9e2">
<source>Deactivate selection</source>
<target>Deactivate selection</target>
<note>Line: 93</note>
</trans-unit>
<trans-unit id="e2afd6b97d2eac4817170845d26b9c9b">
<source>Duplicate selection</source>
<target>Duplicate selection</target>
<note>Line: 103</note>
</trans-unit>
<trans-unit id="6adab6d3fdf92c448d60cf8824e4851c">
<source>Delete selection</source>
<target>Delete selection</target>
<note>Line: 114</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dbcd43f8ba2bafd1bccc57fe9c8b5d7b">
<source>Show SQL query</source>
<target>Show SQL query</target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/products_table.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="332c80b1838dc515f5031e09da3b7f3f">
<source>Reorder</source>
<target>Reorder</target>
<note>Line: 170</note>
</trans-unit>
<trans-unit id="f5cb84b93af7d426e14a49b2804d0f29">
<source><![CDATA[Save & refresh]]></source>
<target><![CDATA[Save & refresh]]></target>
<note>Line: 172</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e54081e38ac9d11f4426975774eca447">
<source>Delete now</source>
<target>Delete now</target>
<note>Line: 198</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Blocks/footer.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ed75712b0eb1913c28a3872731ffd48d">
<source>Duplicate</source>
<target>Duplicate</target>
<note>Line: 131</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_categories.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8098b34f582537833b36b58273c3545b">
<source>Expand</source>
<target>Expand</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="2b31634e3cfef1bfdd7d0d2cdfdc3f9d">
<source>Collapse</source>
<target>Collapse</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="686e697538050e4664636337cc3b834f">
<source>Create</source>
<target>Create</target>
<note>Line: 72</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d5ef96e383d376beeec28da7acfea516">
<source>Download file</source>
<target>Download file</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="a1997856e58a07d80e27aaf4bc7eaf88">
<source>Delete this file</source>
<target>Delete this file</target>
<note>Line: 106</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="43340e6cc4e88197d57f8d6d5ea50a46">
<source>Read more</source>
<target>Read more</target>
<note>Line: 72</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/ProductImage/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="baf47af13c027a9c747328bbfbcb9178">
<source>Save image settings</source>
<target>Save image settings</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Manufacturer/edit.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="22163c9b1e9ad0ace8d5335b09e56a22">
<source>Edit: %name%</source>
<target>Edit: %name%</target>
<note>Line: 27</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/TwigTemplateForm/bootstrap_4_horizontal_layout.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c770d8e0d1d1943ce239c64dbd6acc20">
<source>Add my IP</source>
<target>Add my IP</target>
<note>Line: 116</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/TwigTemplateForm/bootstrap_4_layout.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5f2c094de2848d0d36b59de2ff06e79f">
<source>Choose file(s)</source>
<target>Choose file(s)</target>
<note>Line: 720</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/macros.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="33d8042bd735c559cc3206f4bc99aedc">
<source>Sort by</source>
<target>Sort by</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="50de2399e96ac57bed17e95376046c3b">
<source>Check / Uncheck all</source>
<target>Check / Uncheck all</target>
<note>Line: 285</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4eac69549b8424b6cf5852421f327838">
<source>Confirm this action</source>
<target>Confirm this action</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,602 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminEmployeesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7bc873cba11f035df692c3549366c722">
<source>-- Choose --</source>
<target>-- Choose --</target>
<note>Line: 392</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminImportController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e81c4e4f2b7b93b481e13a8553c2ae1b">
<source>or</source>
<target>or</target>
<note>Line: 1063
Comment: Special case for Product : either one or the other. Not both.</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c127560c7252928dc38d9a0ebf312ba4">
<source>Use this option to associate data (products, modules, etc.) the same way for each selected shop.</source>
<target>Use this option to associate data (products, modules, etc.) the same way for each selected shop.</target>
<note>Line: 600</note>
</trans-unit>
<trans-unit id="41ff4b3ea277bdc597fce74850a85510">
<source>Click here to display the shops in the %name% shop group</source>
<target>Click here to display the shops in the %name% shop group</target>
<note>Line: 778</note>
</trans-unit>
<trans-unit id="d916f5b0696f10712fad55220707fab9">
<source>Click here to display the URLs of the %name% shop</source>
<target>Click here to display the URLs of the %name% shop</target>
<note>Line: 800</note>
</trans-unit>
<trans-unit id="01af4d9c4808ce3ccd662c0e5ef7f203">
<source>Click here to display the list of shop groups</source>
<target>Click here to display the list of shop groups</target>
<note>Line: 852</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopGroupController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0c2afe3d3eb02183ee182aa447608bc4">
<source>Warning: Enabling the "share customers" and "share orders" options is not recommended. Once activated and orders are created, you will not be able to disable these options. If you need these options, we recommend using several categories rather than several shops.</source>
<target>Warning: Enabling the "share customers" and "share orders" options is not recommended. Once activated and orders are created, you will not be able to disable these options. If you need these options, we recommend using several categories rather than several shops.</target>
<note>Line: 182</note>
</trans-unit>
<trans-unit id="ee5d0efc6b5d41f7ee2ac5ea831f2a7f">
<source>Once this option is enabled, the shops in this group will share customers. If a customer registers in any one of these shops, the account will automatically be available in the others shops of this group.</source>
<target>Once this option is enabled, the shops in this group will share customers. If a customer registers in any one of these shops, the account will automatically be available in the others shops of this group.</target>
<note>Line: 208</note>
</trans-unit>
<trans-unit id="dace58c348a19d7bddb7a3fe4fd3ebfa">
<source>Warning: you will not be able to disable this option once you have registered customers.</source>
<target>Warning: you will not be able to disable this option once you have registered customers.</target>
<note>Line: 208</note>
</trans-unit>
<trans-unit id="059a6f0b1a0a28d15ee51fe80670f6f2">
<source>Once this option is enabled (which is only possible if customers and available quantities are shared among shops), the customer's cart will be shared by all shops in this group. This way, any purchase started in one shop will be able to be completed in another shop from the same group.</source>
<target>Once this option is enabled (which is only possible if customers and available quantities are shared among shops), the customer's cart will be shared by all shops in this group. This way, any purchase started in one shop will be able to be completed in another shop from the same group.</target>
<note>Line: 247</note>
</trans-unit>
<trans-unit id="697ce708715d1f771177623968e8c6a4">
<source>Warning: You will not be able to disable this option once you've started to accept orders.</source>
<target>Warning: You will not be able to disable this option once you've started to accept orders.</target>
<note>Line: 247</note>
</trans-unit>
<trans-unit id="e667b16af30e0820218ad32242e284dc">
<source>Enable or disable this shop group?</source>
<target>Enable or disable this shop group?</target>
<note>Line: 266</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopUrlController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c688fbbc9468ea3473172ca924290860">
<source>If you want to add a virtual URL, you need to activate URL rewriting on your web server and enable Friendly URL option.</source>
<target>If you want to add a virtual URL, you need to activate URL rewriting on your web server and enable Friendly URL option.</target>
<note>Line: 123</note>
</trans-unit>
<trans-unit id="05f8f0fab3ff5d86e0de9db902da7045">
<source>You can use this option if you want to create a store with a URL that doesn't exist on your server (e.g. if you want your store to be available with the URL www.example.com/my-store/shoes/, you have to set shoes/ in this field, assuming that my-store/ is your Physical URL).</source>
<target>You can use this option if you want to create a store with a URL that doesn't exist on your server (e.g. if you want your store to be available with the URL www.example.com/my-store/shoes/, you have to set shoes/ in this field, assuming that my-store/ is your Physical URL).</target>
<note>Line: 127</note>
</trans-unit>
<trans-unit id="f6e7829277b67d5a8805d6728a810362">
<source>URL rewriting must be activated on your server to use this feature.</source>
<target>URL rewriting must be activated on your server to use this feature.</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="a2e8a639b5fd3e34ab4def1e7aac3383">
<source>If you set this URL as the Main URL for the selected shop, all URLs set to this shop will be redirected to this URL (you can only have one Main URL per shop).</source>
<target>If you set this URL as the Main URL for the selected shop, all URLs set to this shop will be redirected to this URL (you can only have one Main URL per shop).</target>
<note>Line: 173</note>
</trans-unit>
<trans-unit id="819e18d335155ef4a9cdfe926ac8a3de">
<source>Since the selected shop has no main URL, you have to set this URL as the Main URL.</source>
<target>Since the selected shop has no main URL, you have to set this URL as the Main URL.</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="fe42e7cf02611b9719a6db6513de19eb">
<source>The selected shop already has a Main URL. Therefore, if you set this one as the Main URL, the older Main URL will be set as a regular URL.</source>
<target>The selected shop already has a Main URL. Therefore, if you set this one as the Main URL, the older Main URL will be set as a regular URL.</target>
<note>Line: 179</note>
</trans-unit>
<trans-unit id="7e7b350e5cee624789b1e263ec59db26">
<source>This is the physical folder for your store on the web server. Leave this field empty if your store is installed on the root path. For instance, if your store is available at www.example.com/my-store/, you must input my-store/ in this field.</source>
<target>This is the physical folder for your store on the web server. Leave this field empty if your store is installed on the root path. For instance, if your store is available at www.example.com/my-store/, you must input my-store/ in this field.</target>
<note>Line: 243</note>
</trans-unit>
<trans-unit id="29f3eb1bea3049b52600a18ad4d0b96c">
<source>Warning: URL rewriting (e.g. mod_rewrite for Apache) seems to be disabled. If your Virtual URL doesn't work, please check with your hosting provider on how to activate URL rewriting.</source>
<target>Warning: URL rewriting (e.g. mod_rewrite for Apache) seems to be disabled. If your Virtual URL doesn't work, please check with your hosting provider on how to activate URL rewriting.</target>
<note>Line: 259</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Import/EntityField/Provider/CategoryFieldsProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="11cd708df7411da4546d8580356e711a">
<source>Ignore this field if you don't use the Multistore tool. If you leave this field empty, the default shop will be used.</source>
<target>Ignore this field if you don't use the Multistore tool. If you leave this field empty, the default shop will be used.</target>
<note>Line: 75</note>
</trans-unit>
<trans-unit id="4bc14a0f722453ba235bc3fb52d95ffb">
<source>A category root is where a category tree can begin. This is used with multistore.</source>
<target>A category root is where a category tree can begin. This is used with multistore.</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Import/EntityField/Provider/CombinationFieldsProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5702db29cfdd93934ed330edb201ecf3">
<source>Enable Advanced Stock Management on product (0 = No, 1 = Yes)</source>
<target>Enable Advanced Stock Management on product (0 = No, 1 = Yes)</target>
<note>Line: 89</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Import/EntityField/Provider/ProductFieldsProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2d743ae4c74db2a22d79e1e950e719e5">
<source>0 = Use quantity set in product, 1 = Use quantity from warehouse.</source>
<target>0 = Use quantity set in product, 1 = Use quantity from warehouse.</target>
<note>Line: 162</note>
</trans-unit>
<trans-unit id="aaf88088b0ac3f2992888fdfe00b5d76">
<source>ID of the warehouse to set as storage.</source>
<target>ID of the warehouse to set as storage.</target>
<note>Line: 170</note>
</trans-unit>
<trans-unit id="7506b41cf1aa65b2663b038e465c0d6d">
<source>Enable Advanced Stock Management on product (0 = No, 1 = Yes).</source>
<target>Enable Advanced Stock Management on product (0 = No, 1 = Yes).</target>
<note>Line: 154</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Columns/Content/severity_level.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b80c52e7f679fba3c2837b42705fe779">
<source>Informative only</source>
<target>Informative only</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="0eaadb4fcb48a0a0ed7bc9868be9fbaa">
<source>Warning</source>
<target>Warning</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="902b0d55fddef6f8d651fe1035b7d4bd">
<source>Error</source>
<target>Error</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="4a378407770df6a42474ec5db9f54740">
<source>Major issue (crash)!</source>
<target>Major issue (crash)!</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Backup/Blocks/backup_info.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="20fbc8f64351875f498d7d6f8c91810b">
<source>How to restore a database backup in 10 easy steps</source>
<target>How to restore a database backup in 10 easy steps</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="7bf215c957e661c3bd8ad7f6221675c9">
<source>Set "Enable Shop" to "No" in the "Maintenance" page under the "Preferences" menu.</source>
<target>Set "Enable Shop" to "No" in the "Maintenance" page under the "Preferences" menu.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="2dc09c116021fe75dd928d368a35e9d7">
<source>Download the backup from the list below or from your FTP server (in the folder "admin/backups").</source>
<target>Download the backup from the list below or from your FTP server (in the folder "admin/backups").</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="3a86c87939c6bbaba4cb2e44e4734146">
<source>Check the backup integrity: Look for errors, incomplete file, etc... Be sure to verify all of your data.</source>
<target>Check the backup integrity: Look for errors, incomplete file, etc... Be sure to verify all of your data.</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="0ba394816eab81959ea7c442801b0819">
<source>Please ask your hosting provider for "phpMyAdmin" access to your database.</source>
<target>Please ask your hosting provider for "phpMyAdmin" access to your database.</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="04abc58df1575dd465a28c86d859d302">
<source>Connect to "phpMyAdmin" and select your current database.</source>
<target>Connect to "phpMyAdmin" and select your current database.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="197ebd1d022def92dd1c64aae3320d6a">
<source>Unless you enabled the "Drop existing tables" option, you must delete all tables from your current database.</source>
<target>Unless you enabled the "Drop existing tables" option, you must delete all tables from your current database.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="7d6044f9c5ec3bb7b89ac9328a871b2f">
<source>At the top of the screen, please select the "Import" tab</source>
<target>At the top of the screen, please select the "Import" tab</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="6463499cc4522ee5cef415d727f543a3">
<source>Click on the "Browse" button and select the backup file from your hard drive.</source>
<target>Click on the "Browse" button and select the backup file from your hard drive.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="85614411a0c7c3eb8c7c7a81be9fb918">
<source>Check the maximum filesize allowed (e.g. Max: 16MB)</source>
<target>Check the maximum filesize allowed (e.g. Max: 16MB)</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="d24e59c4885823395588f1b480876da5">
<source>If your backup file exceeds this limit, contact your hosting provider for assistance. </source>
<target>If your backup file exceeds this limit, contact your hosting provider for assistance.</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="44b2f277fe0d0365bbc168e617387c73">
<source>Click on the "Go" button and please wait patiently for the import process to conclude. This may take several minutes.</source>
<target>Click on the "Go" button and please wait patiently for the import process to conclude. This may take several minutes.</target>
<note>Line: 50</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Backup/Blocks/options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1589ac76f2f88749f51028f09b23f9d4">
<source>Drop existing tables during import.</source>
<target>Drop existing tables during import.</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="b07ccf1ffff29007509d45dbcc13f923">
<source>If enabled, the backup script will drop your tables prior to restoring data.</source>
<target>If enabled, the backup script will drop your tables prior to restoring data.</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="2e25562aa49c13b17e979d826fecc25f">
<source>(ie. "DROP TABLE IF EXISTS")</source>
<target>(ie. "DROP TABLE IF EXISTS")</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Blocks/import_panel.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="084ad8abffc138f8d43f0a77824396b9">
<source>You can read information on import at:</source>
<target>You can read information on import at:</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="4e7357d876d6d15fe084be41934e6555">
<source>http://doc.prestashop.com/display/PS17/Import</source>
<target>http://doc.prestashop.com/display/PS17/Import</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="9d23c31f2dcc1ace9296037f327563a4">
<source>https://en.wikipedia.org/wiki/Comma-separated_values</source>
<target>https://en.wikipedia.org/wiki/Comma-separated_values</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="a27780d9bb7b3595998465aadcaaeed7">
<source>Allowed formats: .csv, .xls, .xlsx, .xlst, .ods, .ots</source>
<target>Allowed formats: .csv, .xls, .xlsx, .xlst, .ods, .ots</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="c9f7248e8f5712f5438def77389e1c46">
<source>Only UTF-8 and ISO 8859-1 encodings are allowed</source>
<target>Only UTF-8 and ISO 8859-1 encodings are allowed</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="6578c8c9a3dbadb0a3672c3ca6c0b513">
<source>You can also upload your file via FTP to the following directory: %s .</source>
<target>You can also upload your file via FTP to the following directory: %s .</target>
<note>Line: 92</note>
</trans-unit>
<trans-unit id="b070d64c5a2f10b4b8eb361ba4f61833">
<source>e.g. </source>
<target>e.g.</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="1d3be023802846145f9b75fc90b4cf21">
<source>If enabled, the product's reference number MUST be unique!</source>
<target>If enabled, the product's reference number MUST be unique!</target>
<note>Line: 148</note>
</trans-unit>
<trans-unit id="f66963da2d51d637afa80ff8edf8d734">
<source>If you enable this option, your imported items' ID number will be used as is. If you do not enable this option, the imported ID numbers will be ignored, and PrestaShop will instead create auto-incremented ID numbers for all the imported items.</source>
<target>If you enable this option, your imported items' ID number will be used as is. If you do not enable this option, the imported ID numbers will be ignored, and PrestaShop will instead create auto-incremented ID numbers for all the imported items.</target>
<note>Line: 160</note>
</trans-unit>
<trans-unit id="04d39f4c0f667d58c8c5540514ebf0eb">
<source>Sends an email to let you know your import is complete. It can be useful when handling large files, as the import may take some time.</source>
<target>Sends an email to let you know your import is complete. It can be useful when handling large files, as the import may take some time.</target>
<note>Line: 166</note>
</trans-unit>
<trans-unit id="3bb4a695db0c87a3d70a2deffddeb743">
<source>Read more about the CSV format at:</source>
<target>Read more about the CSV format at:</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Email/Blocks/email_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e6f52e23510fd010aa5460c96fd67142">
<source>Where customers send messages from the order page.</source>
<target>Where customers send messages from the order page.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Email/Blocks/smtp_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a60bc065c0296646c5a07e55c0cfff6e">
<source>Fully qualified domain name (keep this field empty if you don't know).</source>
<target>Fully qualified domain name (keep this field empty if you don't know).</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="2a3c280f73a3389c6ba4b2d87c8aa15f">
<source>IP address or server name (e.g. smtp.mydomain.com).</source>
<target>IP address or server name (e.g. smtp.mydomain.com).</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="a5d35e0a66d41c7d12c0df6e643fa0ff">
<source>Leave blank if not applicable.</source>
<target>Leave blank if not applicable.</target>
<note>Line: 60</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Employee/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="14a966a005ea5262cd09332f4e50b7b1">
<source>Your avatar in PrestaShop 1.7.x is your profile picture on %url%. To change your avatar, log in to PrestaShop.com with your email %email% and follow the on-screen instructions.</source>
<target>Your avatar in PrestaShop 1.7.x is your profile picture on %url%. To change your avatar, log in to PrestaShop.com with your email %email% and follow the on-screen instructions.</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="d222c4d0463bd3f146536ac89c0d7c77">
<source>Password should be at least %num% characters long.</source>
<target>Password should be at least %num% characters long.</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="0b2827832fff3d973ee0ed2e6c7d4b23">
<source>PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, you can disable this option.</source>
<target>PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, you can disable this option.</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="c4e326fcaa83c6b1ca3856175bb86d2e">
<source>This page will be displayed just after login.</source>
<target>This page will be displayed just after login.</target>
<note>Line: 211</note>
</trans-unit>
<trans-unit id="d970370797ba19bba5524b480d3526fb">
<source>Allow or disallow this employee to log in to the Admin panel.</source>
<target>Allow or disallow this employee to log in to the Admin panel.</target>
<note>Line: 221</note>
</trans-unit>
<trans-unit id="1a7f0b984884e66e95a86b9b5d857b5b">
<source>Select the shops the employee is allowed to access.</source>
<target>Select the shops the employee is allowed to access.</target>
<note>Line: 236</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/LogsPage/Blocks/severity_levels.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3979bb684920e9e9dc86e266f93d8c87">
<source>Severity levels</source>
<target>Severity levels</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/LogsPage/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="25047dda7ccdbdb758df436ada087c4e">
<source>Enter "5" if you do not want to receive any emails.</source>
<target>Enter "5" if you do not want to receive any emails.</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="0250518090d13c807ece595694bffa98">
<source>Emails will be sent to the shop owner.</source>
<target>Emails will be sent to the shop owner.</target>
<note>Line: 55</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/RequestSql/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="68db67219aa1fd6e5f8820e20fd78b25">
<source>How do I create a new SQL query?</source>
<target>How do I create a new SQL query?</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="555f1c93c6aa30a9b28e5cb37eaade53">
<source>Click "Add New".</source>
<target>Click "Add New".</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="b7ccdf6ab58f5514acc520721ddc9f08">
<source>Fill in the fields and click "Save".</source>
<target>Fill in the fields and click "Save".</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="64427cd6d9efe12b779a1e3bb2fafc06">
<source>You can then view the query results by clicking on the Edit action in the dropdown menu</source>
<target>You can then view the query results by clicking on the Edit action in the dropdown menu</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="29147406190a86209d5f4b3080cc7fa9">
<source>You can also export the query results as a CSV file by clicking on the Export button</source>
<target>You can also export the query results as a CSV file by clicking on the Export button</target>
<note>Line: 39</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Webservice/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a5cb039db72d4c240b6cca34b48d61bc">
<source>Quick description of the key: who it is for, what permissions it has, etc.</source>
<target>Quick description of the key: who it is for, what permissions it has, etc.</target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Webservice/webservice_settings.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e8602bda90ef985a71054950e6f1981e">
<source>Before activating the webservice, you must be sure to: </source>
<target>Before activating the webservice, you must be sure to:</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="45d7b1d28cb1afbb45fdb620db725c10">
<source>Check that URL rewriting is available on this server.</source>
<target>Check that URL rewriting is available on this server.</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="60da463f081084680c973ec554a995bb">
<source>Check that the five methods GET, POST, PUT, DELETE and HEAD are supported by this server.</source>
<target>Check that the five methods GET, POST, PUT, DELETE and HEAD are supported by this server.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="c03f07bc287e77654a26af409b4d93fa">
<source>Before choosing "Yes", check that PHP is not configured as an Apache module on your server.</source>
<target>Before choosing "Yes", check that PHP is not configured as an Apache module on your server.</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/administration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="99059a2047f475cdc6428076e3360134">
<source>New modules and updates are displayed on the modules page.</source>
<target>New modules and updates are displayed on the modules page.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="0f81567617bb8ebc23f48e74d8ae8acf">
<source>Check the IP address of the cookie in order to prevent your cookie from being stolen.</source>
<target>Check the IP address of the cookie in order to prevent your cookie from being stolen.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="20d6b6498eab9f749d55c9b53151e00a">
<source>Set the amount of hours during which the front office cookies are valid. After that amount of time, the customer will have to log in again.</source>
<target>Set the amount of hours during which the front office cookies are valid. After that amount of time, the customer will have to log in again.</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="a676520f8296be0319ad6268657471ea">
<source>Set the amount of hours during which the back office cookies are valid. After that amount of time, the PrestaShop user will have to log in again.</source>
<target>Set the amount of hours during which the back office cookies are valid. After that amount of time, the PrestaShop user will have to log in again.</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="a067e61c044ba333fae23b61c83d87c4">
<source>Set the maximum size allowed for attachment files (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</source>
<target>Set the maximum size allowed for attachment files (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="dae623d110235f2837ca0a6e753305b8">
<source>Define the upload limit for a downloadable product (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</source>
<target>Define the upload limit for a downloadable product (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="2a59c5a630e01a9a88e9bcb2863fd69f">
<source>Define the upload limit for an image (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</source>
<target>Define the upload limit for an image (in megabytes). This value has to be lower or equal to the maximum file upload allotted by your server (currently: %size% MB).</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="2566fed9ede40ae26636b773594094cf">
<source>Notifications are numbered bubbles displayed at the very top of your back office, right next to the shop's name. They display the number of new items since you last clicked on them.</source>
<target>Notifications are numbered bubbles displayed at the very top of your back office, right next to the shop's name. They display the number of new items since you last clicked on them.</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="e0853b619fbd24fdabc3ae78beb81193">
<source>This will display notifications when new orders are made in your shop.</source>
<target>This will display notifications when new orders are made in your shop.</target>
<note>Line: 139</note>
</trans-unit>
<trans-unit id="11b3df1e92b11e2d899494d3cdf4dd13">
<source>This will display notifications every time a new customer registers in your shop.</source>
<target>This will display notifications every time a new customer registers in your shop.</target>
<note>Line: 146</note>
</trans-unit>
<trans-unit id="b8a8fa662505e278031049e4990e428a">
<source>This will display notifications when new messages are posted in your shop.</source>
<target>This will display notifications when new messages are posted in your shop.</target>
<note>Line: 153</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/performance.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="30c802194b54f04e24a2abdc774c2f7e">
<source>Should be enabled if you want to avoid to store the smarty cache on NFS.</source>
<target>Should be enabled if you want to avoid to store the smarty cache on NFS.</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="853f64470ff7bb429d4d1febf19a2d58">
<source>Enable or disable debug mode.</source>
<target>Enable or disable debug mode.</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="bb3656a5447418f8f2644f3ac91b5c6f">
<source>Some features can be disabled in order to improve performance.</source>
<target>Some features can be disabled in order to improve performance.</target>
<note>Line: 144</note>
</trans-unit>
<trans-unit id="dadb7368382c41e65db131dde4acbddd">
<source>Choose "No" to disable Product Combinations.</source>
<target>Choose "No" to disable Product Combinations.</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="31d21c53f8b07a3adcac80c8fab067db">
<source>You cannot set this parameter to No when combinations are already used by some of your products</source>
<target>You cannot set this parameter to No when combinations are already used by some of your products</target>
<note>Line: 159</note>
</trans-unit>
<trans-unit id="755b5f88357c721918923199f02a127d">
<source>Choose "No" to disable Product Features.</source>
<target>Choose "No" to disable Product Features.</target>
<note>Line: 165</note>
</trans-unit>
<trans-unit id="07e451f21d83658a364e0548c86926b3">
<source>Choose "No" to disable Customer Groups.</source>
<target>Choose "No" to disable Customer Groups.</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="ecffc19cb5ada347980c0fd06ca337f4">
<source>CCC allows you to reduce the loading time of your page. With these settings you will gain performance without even touching the code of your theme. Make sure, however, that your theme is compatible with PrestaShop 1.4+. Otherwise, CCC will cause problems.</source>
<target>CCC allows you to reduce the loading time of your page. With these settings you will gain performance without even touching the code of your theme. Make sure, however, that your theme is compatible with PrestaShop 1.4+. Otherwise, CCC will cause problems.</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="021007c7da195ab112330b846e0b1cbb">
<source>This will add directives to your .htaccess file, which should improve caching and compression.</source>
<target>This will add directives to your .htaccess file, which should improve caching and compression.</target>
<note>Line: 218</note>
</trans-unit>
<trans-unit id="7d7364eb90dcf245641e4139c6ab1a7c">
<source>Name of the second domain of your shop, (e.g. myshop-media-server-1.com). If you do not have another domain, leave this field blank.</source>
<target>Name of the second domain of your shop, (e.g. myshop-media-server-1.com). If you do not have another domain, leave this field blank.</target>
<note>Line: 250</note>
</trans-unit>
<trans-unit id="80ca4dd5f99b6572c93cec540caff504">
<source>Name of the third domain of your shop, (e.g. myshop-media-server-2.com). If you do not have another domain, leave this field blank.</source>
<target>Name of the third domain of your shop, (e.g. myshop-media-server-2.com). If you do not have another domain, leave this field blank.</target>
<note>Line: 257</note>
</trans-unit>
<trans-unit id="1e4e1915fcb0b296ce2ffb029b27d730">
<source>Name of the fourth domain of your shop, (e.g. myshop-media-server-3.com). If you do not have another domain, leave this field blank.</source>
<target>Name of the fourth domain of your shop, (e.g. myshop-media-server-3.com). If you do not have another domain, leave this field blank.</target>
<note>Line: 264</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,882 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/cart_rules/actions.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="de11e2e4296bb20487b6430508866e06">
<source>Does not apply to the shipping costs</source>
<target>Does not apply to the shipping costs</target>
<note>Line: 73</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/cart_rules/conditions.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3fde87028c9327c15017b46e6d84ac80">
<source>Optional: The cart rule will be available to everyone if you leave this field blank.</source>
<target>Optional: The cart rule will be available to everyone if you leave this field blank.</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="fc36a619a1f71bfe01203191c5c95675">
<source>The default period is one month.</source>
<target>The default period is one month.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="5b41d7dc2da5ea15baf3e2d62d820ac2">
<source>You can choose a minimum amount for the cart either with or without the taxes and shipping.</source>
<target>You can choose a minimum amount for the cart either with or without the taxes and shipping.</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="cfc9489072f04e808ce4e01948b7fef8">
<source>The cart rule will be applied to the first "X" customers only.</source>
<target>The cart rule will be applied to the first "X" customers only.</target>
<note>Line: 116</note>
</trans-unit>
<trans-unit id="15391e9d908034a4458cd78296a945a8">
<source>A customer will only be able to use the cart rule "X" time(s).</source>
<target>A customer will only be able to use the cart rule "X" time(s).</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="ced8a99398578936b21103cba545cd66">
<source>This restriction applies to the country of delivery.</source>
<target>This restriction applies to the country of delivery.</target>
<note>Line: 151</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/cart_rules/informations.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="092ff92c5c5fb215f214c07d9221e949">
<source>This will be displayed in the cart summary, as well as on the invoice.</source>
<target>This will be displayed in the cart summary, as well as on the invoice.</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="7560e0cd0768c203f178a95dbb586297">
<source>For your eyes only. This will never be displayed to the customer.</source>
<target>For your eyes only. This will never be displayed to the customer.</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="4c04b0afd7a378940377c1948fa65e5f">
<source>This is the code users should enter to apply the voucher to a cart. Either create your own code or generate one by clicking on "Generate".</source>
<target>This is the code users should enter to apply the voucher to a cart. Either create your own code or generate one by clicking on "Generate".</target>
<note>Line: 75</note>
</trans-unit>
<trans-unit id="b9fe1289d4d385c85d61f262aea8de40">
<source>Caution! If you leave this field blank, the rule will automatically be applied to benefiting customers.</source>
<target>Caution! If you leave this field blank, the rule will automatically be applied to benefiting customers.</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="9c0cc5911e6caceaa3f19e4bcf264ab0">
<source>If the voucher is not yet in the cart, it will be displayed in the cart summary.</source>
<target>If the voucher is not yet in the cart, it will be displayed in the cart summary.</target>
<note>Line: 93</note>
</trans-unit>
<trans-unit id="b51a203cee37965537db75688feaef75">
<source>Only applicable if the voucher value is greater than the cart total.</source>
<target>Only applicable if the voucher value is greater than the cart total.</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="45ec8a24a8f55af16fad097e8a4fb9fe">
<source>If you do not allow partial use, the voucher value will be lowered to the total order amount. If you allow partial use, however, a new voucher will be created with the remainder.</source>
<target>If you do not allow partial use, the voucher value will be lowered to the total order amount. If you allow partial use, however, a new voucher will be created with the remainder.</target>
<note>Line: 112</note>
</trans-unit>
<trans-unit id="0fcc630f536dae07ee7c1ac612654c1d">
<source>Cart rules are applied by priority. A cart rule with a priority of "1" will be processed before a cart rule with a priority of "2".</source>
<target>Cart rules are applied by priority. A cart rule with a priority of "1" will be processed before a cart rule with a priority of "2".</target>
<note>Line: 130</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/categories/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="db11ee64aeb094a9cccbd04957e3416f">
<source><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Modules & Services > Installed modules.[/1] Then, configure your menu module.]]></source>
<target><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Modules & Services > Installed modules.[/1] Then, configure your menu module.]]></target>
<note>Context:
File: admin-dev/themes/default/template/controllers/categories/helpers/form/form.tpl:50</note>
</trans-unit>
<trans-unit id="5bc1667deb2b522c0cac00de5f15ffbc">
<source>Recommended dimensions (for the default theme): %1spx x %2spx</source>
<target>Recommended dimensions (for the default theme): %1spx x %2spx</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="0f6ae5ebf937764fc48db601df56d0ca">
<source><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Modules Manager.[/1] Then, configure your menu module.]]></source>
<target><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Modules Manager.[/1] Then, configure your menu module.]]></target>
<note>Line: 50</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/tracking/helpers/list/list_header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b40b4b1a0589005b45e9fa351c1b91f3">
<source>An empty category is a category that has no product directly associated to it. An empty category may however contain products through its subcategories.</source>
<target>An empty category is a category that has no product directly associated to it. An empty category may however contain products through its subcategories.</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminAttributesGroupsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f2d1c5443636295e9720caac90ea8d93">
<source>Your internal name for this attribute.</source>
<target>Your internal name for this attribute.</target>
<note>Line: 204</note>
</trans-unit>
<trans-unit id="b5e6921c2d093fbcb0088c9466ee9983">
<source>The public name for this attribute, displayed to the customers.</source>
<target>The public name for this attribute, displayed to the customers.</target>
<note>Line: 213</note>
</trans-unit>
<trans-unit id="580de47d3bc3e99a0b6aba55066a983a">
<source>The way the attribute's values will be presented to the customers in the product's page.</source>
<target>The way the attribute's values will be presented to the customers in the product's page.</target>
<note>Line: 226</note>
</trans-unit>
<trans-unit id="71c476c94d0a0e3dfc0826afd03d2dda">
<source>Choose the attribute group for this value.</source>
<target>Choose the attribute group for this value.</target>
<note>Line: 274</note>
</trans-unit>
<trans-unit id="22cbf85c41427960736dc10cfec5faf4">
<source>Choose a color with the color picker, or enter an HTML color (e.g. "lightblue", "#CC6600").</source>
<target>Choose a color with the color picker, or enter an HTML color (e.g. "lightblue", "#CC6600").</target>
<note>Line: 312</note>
</trans-unit>
<trans-unit id="dd24a1142c1070a0efbdf43b4f0167cc">
<source>Upload an image file containing the color texture from your computer.</source>
<target>Upload an image file containing the color texture from your computer.</target>
<note>Line: 320</note>
</trans-unit>
<trans-unit id="ba353198430b2004efeb1ac6d1f410d0">
<source>This will override the HTML color!</source>
<target>This will override the HTML color!</target>
<note>Line: 321</note>
</trans-unit>
<trans-unit id="7d5672f569de406c85249db6f1c99ec0">
<source>Save then add another value</source>
<target>Save then add another value</target>
<note>Line: 565</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCategoriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7e35726fb991605ab3d0e6406599e6ef">
<source>To add "tags," click in the field, write something, and then press "Enter."</source>
<target>To add "tags," click in the field, write something, and then press "Enter."</target>
<note>Line: 618</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomerThreadsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7db5022f86dda7b39e31e754afd5c6a0">
<source>Allow customers to upload files using the contact page.</source>
<target>Allow customers to upload files using the contact page.</target>
<note>Line: 151</note>
</trans-unit>
<trans-unit id="1f2b974152999d549b89994879e452a3">
<source>Please fill out the message fields that appear by default when you answer a thread on the customer service page.</source>
<target>Please fill out the message fields that appear by default when you answer a thread on the customer service page.</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="61b7dba4b2704903e5a2434e1f3ab878">
<source>URL for your IMAP server (ie.: mail.server.com).</source>
<target>URL for your IMAP server (ie.: mail.server.com).</target>
<note>Line: 168</note>
</trans-unit>
<trans-unit id="d60419d8fec86275eb0752ce43556e6f">
<source>Port to use to connect to your IMAP server.</source>
<target>Port to use to connect to your IMAP server.</target>
<note>Line: 174</note>
</trans-unit>
<trans-unit id="b8453d9982fb11c704dca368e5107677">
<source>User to use to connect to your IMAP server.</source>
<target>User to use to connect to your IMAP server.</target>
<note>Line: 180</note>
</trans-unit>
<trans-unit id="849dafe04c2f54cb0dc079da9ca15a8f">
<source>Password to use to connect your IMAP server.</source>
<target>Password to use to connect your IMAP server.</target>
<note>Line: 185</note>
</trans-unit>
<trans-unit id="e9d5cadd20f10058a5bb0823aed17584">
<source>Delete messages after synchronization. If you do not enable this option, the synchronization will take more time.</source>
<target>Delete messages after synchronization. If you do not enable this option, the synchronization will take more time.</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="eca83facb7294ab0f66e1dec9fc66efd">
<source>Create new threads for unrecognized emails.</source>
<target>Create new threads for unrecognized emails.</target>
<note>Line: 195</note>
</trans-unit>
<trans-unit id="38033ed4d12ca354e503266bd9a59105">
<source>Use POP3 instead of IMAP.</source>
<target>Use POP3 instead of IMAP.</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="3abb33532b4b4e0201dbdde08eced7ee">
<source>Do not use RSH or SSH to establish a preauthenticated IMAP sessions.</source>
<target>Do not use RSH or SSH to establish a preauthenticated IMAP sessions.</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="89884c64df4330255f1fc07dadfb5dd4">
<source>Use the Secure Socket Layer (TLS/SSL) to encrypt the session.</source>
<target>Use the Secure Socket Layer (TLS/SSL) to encrypt the session.</target>
<note>Line: 211</note>
</trans-unit>
<trans-unit id="f5c4e8df7daa8f49d8f68ae25deab8c7">
<source>Validate certificates from the TLS/SSL server.</source>
<target>Validate certificates from the TLS/SSL server.</target>
<note>Line: 216</note>
</trans-unit>
<trans-unit id="244789498d5c439efc7a4a05975dc391">
<source>Do not validate certificates from the TLS/SSL server. This is only needed if a server uses self-signed certificates.</source>
<target>Do not validate certificates from the TLS/SSL server. This is only needed if a server uses self-signed certificates.</target>
<note>Line: 221</note>
</trans-unit>
<trans-unit id="eabd6d4298e21426642606fe653585c9">
<source>Force use of start-TLS to encrypt the session, and reject connection to servers that do not support it.</source>
<target>Force use of start-TLS to encrypt the session, and reject connection to servers that do not support it.</target>
<note>Line: 226</note>
</trans-unit>
<trans-unit id="5b035ec3dccf9e9d875e0b830062a9ff">
<source>Do not use start-TLS to encrypt the session, even with servers that support it.</source>
<target>Do not use start-TLS to encrypt the session, even with servers that support it.</target>
<note>Line: 231</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminFeaturesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7aad0283b11e41230d9d1fc7372c3862">
<source>Add new feature value</source>
<target>Add new feature value</target>
<note>Line: 216</note>
</trans-unit>
<trans-unit id="21d883f3177ec09a845d9963eca239b1">
<source>Save and add another value</source>
<target>Save and add another value</target>
<note>Line: 244</note>
</trans-unit>
<trans-unit id="07fc7dc79c8046bb36d97b4332dab1ca">
<source>Back to the list</source>
<target>Back to the list</target>
<note>Line: 268</note>
</trans-unit>
<trans-unit id="d8aac6665c79faf4f411fe0da93ab23c">
<source>Add new feature values</source>
<target>Add new feature values</target>
<note>Line: 264</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminManufacturersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="643544fd7876fa0f017ba6233f46b4c3">
<source>To add "tags," click inside the field, write something, and then press "Enter."</source>
<target>To add "tags," click inside the field, write something, and then press "Enter."</target>
<note>Line: 396</note>
</trans-unit>
<trans-unit id="b7d8f05036844ad562ed08715bb480b4">
<source>Company name for this brand</source>
<target>Company name for this brand</target>
<note>Line: 523</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSuppliersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dd0479e67d24cd2c2868d4c6b2dcba9a">
<source>Company name for this supplier</source>
<target>Company name for this supplier</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="afd7431f75b5801226c9ee37acc1a504">
<source>Will appear in the list of suppliers.</source>
<target>Will appear in the list of suppliers.</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="b51bea4eee9d9ef6bd9a6849337013d5">
<source>Phone number for this supplier</source>
<target>Phone number for this supplier</target>
<note>Line: 167</note>
</trans-unit>
<trans-unit id="c24c0c9cd7bdb34eaff67028b0cb8349">
<source>Mobile phone number for this supplier.</source>
<target>Mobile phone number for this supplier.</target>
<note>Line: 176</note>
</trans-unit>
<trans-unit id="e865605842d16d0d11c266c731e00507">
<source>Upload a supplier logo from your computer.</source>
<target>Upload a supplier logo from your computer.</target>
<note>Line: 241</note>
</trans-unit>
<trans-unit id="3ef61077e04c24d0b712a1b0ea036255">
<source>To add "tags" click in the field, write something and then press "Enter".</source>
<target>To add "tags" click in the field, write something and then press "Enter".</target>
<note>Line: 266</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/ProductController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cc2ac103a9c1411fd67952983e25978a">
<source>Create a new product: CTRL+P</source>
<target>Create a new product: CTRL+P</target>
<note>Line: 360</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Catalog/Category/AbstractCategoryType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="88fe88f4033791ef6f38fbb7f7c58f04">
<source>To have a different title from the category name, enter it here.</source>
<target>To have a different title from the category name, enter it here.</target>
<note>Line: 136</note>
</trans-unit>
<trans-unit id="0a7ca3ce7cde025a585cd02d7382b48f">
<source>To have a different description than your category summary in search results page, write it here.</source>
<target>To have a different description than your category summary in search results page, write it here.</target>
<note>Line: 169</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Product/ProductInformation.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7bb36e0f484d91aeba5d83fe2af63d28">
<source>Search for a product</source>
<target>Search for a product</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="9242ed633bcac07574f63fba6e184fd8">
<source>Enter your product name</source>
<target>Enter your product name</target>
<note>Line: 171</note>
</trans-unit>
<trans-unit id="7f6c27a96363effdda77216cf1251400">
<source><![CDATA[The summary is a short sentence describing your product.<br />It will appears at the top of your shop's product page, in product lists, and in search engines' results page (so it's important for SEO). To give more details about your product, use the "Description" tab.]]></source>
<target><![CDATA[The summary is a short sentence describing your product.<br />It will appears at the top of your shop's product page, in product lists, and in search engines' results page (so it's important for SEO). To give more details about your product, use the "Description" tab.]]></target>
<note>Line: 202</note>
</trans-unit>
<trans-unit id="1fbfcc9642d39544207c67f66ec3bc00">
<source>Search and add a related product</source>
<target>Search and add a related product</target>
<note>Line: 291</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Product/ProductOptions.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8246ddfaa2c607ace3ae3a4643d957d1">
<source>Use a comma to create separate tags. E.g.: dress, cotton, party dresses.</source>
<target>Use a comma to create separate tags. E.g.: dress, cotton, party dresses.</target>
<note>Line: 119</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Product/ProductPrice.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="420f46a170eef476454fa134085a85a2">
<source>Per kilo, per litre</source>
<target>Per kilo, per litre</target>
<note>Line: 185</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Product/ProductQuantity.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e63e2ba42470a41ba75e0d7ea35a410f">
<source>Combine several attributes, e.g.: "Size: all", "Color: red".</source>
<target>Combine several attributes, e.g.: "Size: all", "Color: red".</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="16a5534d559007de7e8f5b4f17112203">
<source>Leave empty to disable</source>
<target>Leave empty to disable</target>
<note>Line: 175</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Product/ProductSeo.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="af809f35e40bd6f644509ad566ecf38c">
<source>To have a different title from the product name, enter it here.</source>
<target>To have a different title from the product name, enter it here.</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="b0ea2bd9df4b8ee746b4e5fd28503851">
<source>Public title for the product's page, and for search engines. Leave blank to use the product name. The number of remaining characters is displayed to the left of the field.</source>
<target>Public title for the product's page, and for search engines. Leave blank to use the product name. The number of remaining characters is displayed to the left of the field.</target>
<note>Line: 92</note>
</trans-unit>
<trans-unit id="5f99bb8ecd940f311cb66fadfc467a2b">
<source>To have a different description than your product summary in search results pages, write it here.</source>
<target>To have a different description than your product summary in search results pages, write it here.</target>
<note>Line: 106</note>
</trans-unit>
<trans-unit id="8533d8d42f2c7ef3078797984ea14675">
<source>This description will appear in search engines. You need a single sentence, shorter than 160 characters (including spaces)</source>
<target>This description will appear in search engines. You need a single sentence, shorter than 160 characters (including spaces)</target>
<note>Line: 117</note>
</trans-unit>
<trans-unit id="26511e4120f7b4f3135a21b9f35efed8">
<source>To which product the page should redirect?</source>
<target>To which product the page should redirect?</target>
<note>Line: 161</note>
</trans-unit>
<trans-unit id="024db530212734e5c28319bc4754ad85">
<source>To which category the page should redirect?</source>
<target>To which category the page should redirect?</target>
<note>Line: 163</note>
</trans-unit>
<trans-unit id="2719055d3b2b4fc865a78df22462c96b">
<source>If no category is selected the Main Category is used</source>
<target>If no category is selected the Main Category is used</target>
<note>Line: 164</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/category_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bed3b3133d292db46a0d28c5d91811b9">
<source>Only letters and the minus (-) character are allowed.</source>
<target>Only letters and the minus (-) character are allowed.</target>
<note>Line: 75</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/products_table.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="542f59279cd5d73dfbdb069ce0833b0a">
<source>Search name</source>
<target>Search name</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="3ce14776b1408d0dc406766fd0c6a45d">
<source>Search ref.</source>
<target>Search ref.</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="84645920bd0fb266cb4acdbc00003e62">
<source>Search category</source>
<target>Search category</target>
<note>Line: 124</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Blocks/footer.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="548f88021c5b960f7eccd9ee81871aad">
<source>Permanently delete this product.</source>
<target>Permanently delete this product.</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="94e4259ad6f05c74b84eb6cca4d60ce6">
<source>See how your product sheet will look online: ALT+SHIFT+V</source>
<target>See how your product sheet will look online: ALT+SHIFT+V</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="ad7478afcd575d882738a42546bc041a">
<source>Enable or disable the product on your shop: ALT+SHIFT+O</source>
<target>Enable or disable the product on your shop: ALT+SHIFT+O</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="82e3cb7a4be4e299701a182197dc9410">
<source>Save the product and stay on the current page: ALT+SHIFT+S</source>
<target>Save the product and stay on the current page: ALT+SHIFT+S</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="ac6f66dc450bc768229c1329aa7a48b1">
<source>Save and duplicate this product, then go to the new product: ALT+SHIFT+D</source>
<target>Save and duplicate this product, then go to the new product: ALT+SHIFT+D</target>
<note>Line: 83</note>
</trans-unit>
<trans-unit id="b110e989a1143b7f44cd5691324d4d11">
<source>Save and go back to the catalog: ALT+SHIFT+Q</source>
<target>Save and go back to the catalog: ALT+SHIFT+Q</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="37163a2847189335a934c83e8ae32677">
<source>Save and create a new product: ALT+SHIFT+P</source>
<target>Save and create a new product: ALT+SHIFT+P</target>
<note>Line: 104</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Blocks/header.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bb03c14d14caa07e21f97cbe5eab022d">
<source>Is the product a pack (a combination of at least two existing products), a virtual product (downloadable file, service, etc.), or simply a standard, physical product?</source>
<target>Is the product a pack (a combination of at least two existing products), a virtual product (downloadable file, service, etc.), or simply a standard, physical product?</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_categories.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="61010671991185f436b35030f599d327">
<source>Where should the product be available on your site? The main category is where the product appears by default: this is the category which is seen in the product page's URL. Disabled categories are written in italics.</source>
<target>Where should the product be available on your site? The main category is where the product appears by default: this is the category which is seen in the product page's URL. Disabled categories are written in italics.</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="c5abe76b24973299661ce389d1a092e1">
<source>Search categories</source>
<target>Search categories</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="b78db8ba6d89ef3a49b95e6f92235997">
<source>If you want to quickly create a new category, you can do it here. Dont forget to then go to the Categories page to fill in the needed details (description, image, etc.). A new category will not automatically appear in your shop's menu, please read the Help about it.</source>
<target>If you want to quickly create a new category, you can do it here. Dont forget to then go to the Categories page to fill in the needed details (description, image, etc.). A new category will not automatically appear in your shop's menu, please read the Help about it.</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="53f3eb21de0c7a8c909a86be984996f6">
<source>Does this combination have a different price? Is it cheaper or more expensive than the default retail price?</source>
<target>Does this combination have a different price? Is it cheaper or more expensive than the default retail price?</target>
<note>Line: 150</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combinations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="268bf51f15b2210472b2d42dd883214a">
<source><![CDATA[Combinations are the different variations of a product, with attributes like its size, weight or color taking different values. To create a combination, you need to create your product attributes first. Go to Catalog > Attributes & Features for this!]]></source>
<target><![CDATA[Combinations are the different variations of a product, with attributes like its size, weight or color taking different values. To create a combination, you need to create your product attributes first. Go to Catalog > Attributes & Features for this!]]></target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="57a23510ca35a7354d9208151c344364">
<source><![CDATA[To add combinations, you first need to create proper attributes and values in [1]Attributes & Features[/1]. <br> When done, you may enter the wanted attributes (like "size" or "color") and their respective values ("XS", "red", "all", etc.) in the field below; or simply select them from the right column. Then click on "Generate": it will automatically create all the combinations for you!]]></source>
<target><![CDATA[To add combinations, you first need to create proper attributes and values in [1]Attributes & Features[/1]. <br> When done, you may enter the wanted attributes (like "size" or "color") and their respective values ("XS", "red", "all", etc.) in the field below; or simply select them from the right column. Then click on "Generate": it will automatically create all the combinations for you!]]></target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c533675166b567256cae22139534b713">
<source>This is the human-readable URL, as generated from the product's name. You can change it if you want.</source>
<target>This is the human-readable URL, as generated from the product's name. You can change it if you want.</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="eb8b9b044f3b64b5ba5f7b047963714c">
<source>When your product is disabled, choose to which page youd like to redirect the customers visiting its page by typing the product or category name.</source>
<target>When your product is disabled, choose to which page youd like to redirect the customers visiting its page by typing the product or category name.</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="40464c1dbd8778600fba3f37d36e79dd">
<source>No redirection (404) = Do not redirect anywhere and display a 404 "Not Found" page.</source>
<target>No redirection (404) = Do not redirect anywhere and display a 404 "Not Found" page.</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="462864be2a8d87de471c82d553000030">
<source>Permanent redirection (301) = Permanently display another product or category instead.</source>
<target>Permanent redirection (301) = Permanently display another product or category instead.</target>
<note>Line: 125</note>
</trans-unit>
<trans-unit id="50565048560ec8a9fe1f6ddec57a917a">
<source>Temporary redirection (302) = Temporarily display another product or category instead.</source>
<target>Temporary redirection (302) = Temporarily display another product or category instead.</target>
<note>Line: 126</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="305c255586949e297af4d74bb1bc9563">
<source>Display delivery time for a product is advised for merchants selling in Europe to comply with the local laws.</source>
<target>Display delivery time for a product is advised for merchants selling in Europe to comply with the local laws.</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="de95b43bceeb4b998aed4aed5cef1ae7">
<source>edit</source>
<target>edit</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="8b2ff26690065c221599c196cb6adc82">
<source>If a carrier has a tax, it will be added to the shipping fees. Does not apply to free shipping.</source>
<target>If a carrier has a tax, it will be added to the shipping fees. Does not apply to free shipping.</target>
<note>Line: 127</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_supplier_choice.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="aa25978d6b02e4e469c205afa9de0c46">
<source>This interface allows you to specify the suppliers of the current product and its combinations, if any.</source>
<target>This interface allows you to specify the suppliers of the current product and its combinations, if any.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="5f5641c7f2d62db16c4d12ce2bcf5898">
<source>You can specify supplier references according to previously associated suppliers.</source>
<target>You can specify supplier references according to previously associated suppliers.</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="d57ad4a0ab142c03bb1ced551f66ce9b">
<source><![CDATA[When using the advanced stock management tool (see Shop Parameters > Products settings), the values you define (price, references) will be used in supply orders.]]></source>
<target><![CDATA[When using the advanced stock management tool (see Shop Parameters > Products settings), the values you define (price, references) will be used in supply orders.]]></target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_supplier_combination.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="214396125ea99914d7f6faef5d612b85">
<source>You can specify product reference(s) for each associated supplier. Click "Save" after changing selected suppliers to display the associated product references.</source>
<target>You can specify product reference(s) for each associated supplier. Click "Save" after changing selected suppliers to display the associated product references.</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_warehouse_combination.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e3e5475e756a5faa16b7c97ca591c5d9">
<source>This interface allows you to specify the warehouse in which the product is stocked.</source>
<target>This interface allows you to specify the warehouse in which the product is stocked.</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="d96fc45d9d293e923893a37d598ee960">
<source>It is also possible to specify the location within the warehouse for each product or combination.</source>
<target>It is also possible to specify the location within the warehouse for each product or combination.</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5f4efe2735311bfd3e5784705fb0110f">
<source>Number of days this file can be accessed by customers. Set to zero for unlimited access.</source>
<target>Number of days this file can be accessed by customers. Set to zero for unlimited access.</target>
<note>Line: 141</note>
</trans-unit>
<trans-unit id="dbcf3c5f67528da5cf59dc0c042748da">
<source>Upload a file from your computer (%maxUploadSize% max.)</source>
<target>Upload a file from your computer (%maxUploadSize% max.)</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="c312034c9f17a264365e734de442ca0a">
<source>The full filename with its extension (e.g. Book.pdf)</source>
<target>The full filename with its extension (e.g. Book.pdf)</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="48da1c11d36bd8b34f13821e996c7f97">
<source>Number of downloads allowed per customer. Set to 0 for unlimited downloads.</source>
<target>Number of downloads allowed per customer. Set to 0 for unlimited downloads.</target>
<note>Line: 123</note>
</trans-unit>
<trans-unit id="f049153f2c655d6d1ebd123f04b432cf">
<source>If set, the file will not be downloadable after this date. Leave blank if you do not wish to attach an expiration date.</source>
<target>If set, the file will not be downloadable after this date. Leave blank if you do not wish to attach an expiration date.</target>
<note>Line: 132</note>
</trans-unit>
<trans-unit id="ea8d1b4f32f86030683d8f9252c0a3e1">
<source>The minimum quantity required to buy this product (set to 1 to disable this feature). E.g.: if set to 3, customers will be able to purchase the product only if they take at least 3 in quantity.</source>
<target>The minimum quantity required to buy this product (set to 1 to disable this feature). E.g.: if set to 3, customers will be able to purchase the product only if they take at least 3 in quantity.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="1914ce33841a6e52c0577751d9004159">
<source><![CDATA[The email will be sent to all the users who have the right to run the stock page. To modify the permissions, go to [1]Advanced Parameters > Team[/1]]]></source>
<target><![CDATA[The email will be sent to all the users who have the right to run the stock page. To modify the permissions, go to [1]Advanced Parameters > Team[/1]]]></target>
<note>Line: 74</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0745d3d4082ad910137e24fd2901ca63">
<source>Combinations are the different variations of a product, with attributes like its size, weight or color taking different values. Does your product require combinations?</source>
<target>Combinations are the different variations of a product, with attributes like its size, weight or color taking different values. Does your product require combinations?</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="0a4595dd800cb3338d233a177f422758">
<source>Advanced settings in [1][2]Combinations[/1]</source>
<target>Advanced settings in [1][2]Combinations[/1]</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="01cfe41b8ece41634e85248382166271">
<source>Your reference code for this product. Allowed special characters: .-_#.</source>
<target>Your reference code for this product. Allowed special characters: .-_#.</target>
<note>Line: 183</note>
</trans-unit>
<trans-unit id="e2c7ed083cb894812fb5d2539f5e7ecb">
<source>How many products should be available for sale?</source>
<target>How many products should be available for sale?</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="5e8b5ad38b1c0a76d41c2ebaa74c11f5">
<source>Advanced settings in [1][2]Quantities[/1]</source>
<target>Advanced settings in [1][2]Quantities[/1]</target>
<note>Line: 208</note>
</trans-unit>
<trans-unit id="1423e14cddc8aa38062c77d9b8fe8910">
<source>This is the retail price at which you intend to sell this product to your customers. The tax included price will change according to the tax rule you select.</source>
<target>This is the retail price at which you intend to sell this product to your customers. The tax included price will change according to the tax rule you select.</target>
<note>Line: 217</note>
</trans-unit>
<trans-unit id="143cb6dd5281d68859217704ad9c9f60">
<source>Advanced settings in [1][2]Pricing[/1]</source>
<target>Advanced settings in [1][2]Pricing[/1]</target>
<note>Line: 246</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6fcccfb9dbed970c59c18752f6372703">
<source>Tags are meant to help your customers find your products via the search bar.</source>
<target>Tags are meant to help your customers find your products via the search bar.</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="cfd69f4f64142b71ff1ddd21b0053026">
<source>Choose terms and keywords that your customers will use to search for this product and make sure you are consistent with the tags you may have already used.</source>
<target>Choose terms and keywords that your customers will use to search for this product and make sure you are consistent with the tags you may have already used.</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="8a08a645644d632f79ad988808ba2174">
<source>You can manage tag aliases in the [1]Search section[/1]. If you add new tags, you have to rebuild the index.</source>
<target>You can manage tag aliases in the [1]Search section[/1]. If you add new tags, you have to rebuild the index.</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="19f31a842add8b13595ddb3a41a1ff27">
<source>Not all shops sell new products. This option enables you to indicate the condition of the product. It can be required on some marketplaces.</source>
<target>Not all shops sell new products. This option enables you to indicate the condition of the product. It can be required on some marketplaces.</target>
<note>Line: 101</note>
</trans-unit>
<trans-unit id="633bf9436b67e19cd61db84ccab7fee2">
<source>ISBN is used internationally to identify books and their various editions.</source>
<target>ISBN is used internationally to identify books and their various editions.</target>
<note>Line: 116</note>
</trans-unit>
<trans-unit id="39bd7eba8aa2033579b5ae60bf0c774d">
<source>This type of product code is widely used in the United States, Canada, the United Kingdom, Australia, New Zealand and in other countries.</source>
<target>This type of product code is widely used in the United States, Canada, the United Kingdom, Australia, New Zealand and in other countries.</target>
<note>Line: 136</note>
</trans-unit>
<trans-unit id="0041a5c39ca241f883f4e0516a32d290">
<source>This type of product code is specific to Europe and Japan, but is widely used internationally. It is a superset of the UPC code: all products marked with an EAN will be accepted in North America.</source>
<target>This type of product code is specific to Europe and Japan, but is widely used internationally. It is a superset of the UPC code: all products marked with an EAN will be accepted in North America.</target>
<note>Line: 125</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a4a8ceb87fae812bfac552e0169bb0f9">
<source>This is the price at which you intend to sell this product to your customers. The tax included price will change according to the tax rule you select.</source>
<target>This is the price at which you intend to sell this product to your customers. The tax included price will change according to the tax rule you select.</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="b9c6e3712398e2df7d3ebd7ccc7d5132">
<source>Some products can be purchased by unit (per bottle, per pound, etc.), and this is the price for one unit. For instance, if youre selling fabrics, it would be the price per meter.</source>
<target>Some products can be purchased by unit (per bottle, per pound, etc.), and this is the price for one unit. For instance, if youre selling fabrics, it would be the price per meter.</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="eee67d763dcf287ca5d096650341f387">
<source>The cost price is the price you paid for the product. Do not include the tax. It should be lower than the retail price: the difference between the two will be your margin.</source>
<target>The cost price is the price you paid for the product. Do not include the tax. It should be lower than the retail price: the difference between the two will be your margin.</target>
<note>Line: 113</note>
</trans-unit>
<trans-unit id="959f5f13ee3cc4199a335d1738351596">
<source>You can set specific prices for customers belonging to different groups, different countries, etc.</source>
<target>You can set specific prices for customers belonging to different groups, different countries, etc.</target>
<note>Line: 130</note>
</trans-unit>
<trans-unit id="fbade15b99b07c58fab7be777c0f4c0c">
<source>Sometimes one customer can fit into multiple price rules. Priorities allow you to define which rules apply first.</source>
<target>Sometimes one customer can fit into multiple price rules. Priorities allow you to define which rules apply first.</target>
<note>Line: 182</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Security/compromised.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="607e1d854783c8229998ac2b5b6923d3">
<source>Invalid token</source>
<target>Invalid token</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="d24ec28b066e46d9d9ec3c1f39aa89ee">
<source>[1]Invalid token[/1]: direct access to this link may lead to a potential security breach.</source>
<target>[1]Invalid token[/1]: direct access to this link may lead to a potential security breach.</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="f364944e8422977932bd21eb2d96963a">
<source>Do you want to display this page?</source>
<target>Do you want to display this page?</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="a0d31e7f783700b99e15ce8621dc6381">
<source>Yes, I understand the risks</source>
<target>Yes, I understand the risks</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="a5b0a810681c7fca4581d7f7524009f4">
<source>Take me out of there!</source>
<target>Take me out of there!</target>
<note>Line: 66</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d4be87a5a7a7e9bf633dc6d356968333">
<source>Click on "Displayed" to index the category on your shop.</source>
<target>Click on "Displayed" to index the category on your shop.</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="42f9ee5026d32792987af851a2ea0343">
<source>This is the main image for your category, displayed in the category page. The category description will overlap this image and appear in its top-left corner.</source>
<target>This is the main image for your category, displayed in the category page. The category description will overlap this image and appear in its top-left corner.</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="c5d262df2fa3b92141eb8bb37b1fb9b7">
<source>Displays a small image in the parent category's page, if the theme allows it.</source>
<target>Displays a small image in the parent category's page, if the theme allows it.</target>
<note>Line: 97</note>
</trans-unit>
<trans-unit id="9cbbbb4e43f08deda211ff24e6fd542f">
<source>The category thumbnail appears in the menu as a small image representing the category, if the theme allows it.</source>
<target>The category thumbnail appears in the menu as a small image representing the category, if the theme allows it.</target>
<note>Line: 121</note>
</trans-unit>
<trans-unit id="09e2683b6b92b326691cd992f6e5684b">
<source>Only letters, numbers, underscore (_) and the minus (-) character are allowed.</source>
<target>Only letters, numbers, underscore (_) and the minus (-) character are allowed.</target>
<note>Line: 166</note>
</trans-unit>
<trans-unit id="53d98bd116f47fdfe15c8eb4525c5e99">
<source>You now have three default customer groups.</source>
<target>You now have three default customer groups.</target>
<note>Line: 179</note>
</trans-unit>
<trans-unit id="463848257c086c4816d9f4c020a8d19e">
<source>Mark all of the customer groups which you would like to have access to this category.</source>
<target>Mark all of the customer groups which you would like to have access to this category.</target>
<note>Line: 171</note>
</trans-unit>
<trans-unit id="19318118b1173f172418b3282cb037d7">
<source><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Module Manager[/1] and configure your menu module.]]></source>
<target><![CDATA[If you want a category to appear in the menu of your shop, go to [1]Modules > Module Manager[/1] and configure your menu module.]]></target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Manufacturer/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0205bdbccc495138a109bd8710053565">
<source>Upload a brand logo from your computer.</source>
<target>Upload a brand logo from your computer.</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="8ed6ad2c4486cdf4c66666671a6d4bf5">
<source>To add "tags", click inside the field, write something, and then press "Enter".</source>
<target>To add "tags", click inside the field, write something, and then press "Enter".</target>
<note>Line: 86</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/dashboard/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2f310f524ccb95e1bf929cea106a8f24">
<source>Add more dashboard modules</source>
<target>Add more dashboard modules</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="f87dfb10a52e92f3fc08bef2802da23d">
<source>PrestaShop News</source>
<target>PrestaShop News</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="c9cd54b7c6c536dc09e7724c68412a56">
<source>Find more news</source>
<target>Find more news</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="e9be76a44ba1c2521b80bc4a126e017a">
<source>Useful links</source>
<target>Useful links</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="57290da4ab80180ce258e18d1a0c5abc">
<source>Official Documentation</source>
<target>Official Documentation</target>
<note>Line: 110</note>
</trans-unit>
<trans-unit id="560325da4b8aa781fb24499f7ff0b7d9">
<source>User, Developer and Designer Guides</source>
<target>User, Developer and Designer Guides</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="01302c2b3dc304b92b75390bc76d5dcf">
<source>PrestaShop Forum</source>
<target>PrestaShop Forum</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="a4a59496bd0d27dcf9b8ee74d7cceb2a">
<source>Connect with the PrestaShop community</source>
<target>Connect with the PrestaShop community</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="164b7380deb0d897551d0c89c88de883">
<source>PrestaShop Addons</source>
<target>PrestaShop Addons</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="6f6d2f5f73d1795f9138a74c59aaa1fb">
<source><![CDATA[Enhance your store with templates & modules]]></source>
<target><![CDATA[Enhance your store with templates & modules]]></target>
<note>Line: 119</note>
</trans-unit>
<trans-unit id="13df627c018625ce68ca2200a869dd65">
<source>Report issues in the Bug Tracker</source>
<target>Report issues in the Bug Tracker</target>
<note>Line: 123</note>
</trans-unit>
<trans-unit id="b5425b530ea3127c2877199c5b64c956">
<source>Contact Us!</source>
<target>Contact Us!</target>
<note>Line: 126</note>
</trans-unit>
<trans-unit id="3baecdcf2a4503bac6d0b385146b5f3e">
<source>We stay by your side!</source>
<target>We stay by your side!</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="9b3a8fd98f6da8d3a2e338d0faa771ea">
<source>Documentation, support, experts, training... PrestaShop and all of its community are here to guide you</source>
<target>Documentation, support, experts, training... PrestaShop and all of its community are here to guide you</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="1862c358989cfbd20d38ca9adf69e27a">
<source>PrestaShop Marketplace</source>
<target>PrestaShop Marketplace</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="44a9a480bd52a55b362fc1c3b885204c">
<source>Traffic, conversion rate, customer loyalty... Increase your sales with all of the PrestaShop modules and themes</source>
<target>Traffic, conversion rate, customer loyalty... Increase your sales with all of the PrestaShop modules and themes</target>
<note>Line: 115</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminDashboardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2938c7f7e560ed972f8a4f68e80ff834">
<source>Dashboard</source>
<target>Dashboard</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="948a2986c50ad6bb8c90b4d93ae5c04d">
<source>Demo mode</source>
<target>Demo mode</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="6894510fe0d12804bb8c93f374a485c0">
<source>Average bank fees per payment method</source>
<target>Average bank fees per payment method</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="dc04176957901a0f880e073ea5187187">
<source>Average shipping fees per shipping method</source>
<target>Average shipping fees per shipping method</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="cb3c93351f1f20809fdd6e938a4319c7">
<source>Other settings</source>
<target>Other settings</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="e7c89563e25ff383dddc384817a7b857">
<source>Average gross margin percentage</source>
<target>Average gross margin percentage</target>
<note>Line: 197</note>
</trans-unit>
<trans-unit id="719d7270f0014508129eecfe03ffd84e">
<source>Other fees per order</source>
<target>Other fees per order</target>
<note>Line: 207</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminDashboardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b8a4e75e91526add8051444041526556">
<source>This mode displays sample data so you can try your dashboard without real numbers.</source>
<target>This mode displays sample data so you can try your dashboard without real numbers.</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="d43cfeee72c309dbca7926165582b977">
<source>Choose a fixed fee for each order placed in %currency% with %module%.</source>
<target>Choose a fixed fee for each order placed in %currency% with %module%.</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="1ebae23c433fa585b32d472c98edcbb4">
<source>Choose a variable fee for each order placed in %currency% with %module%. It will be applied on the total paid with taxes.</source>
<target>Choose a variable fee for each order placed in %currency% with %module%. It will be applied on the total paid with taxes.</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="cfaf4c36f59bdda6dec70aaee4f99fa5">
<source>Choose a fixed fee for each order placed with a foreign currency with %module%.</source>
<target>Choose a fixed fee for each order placed with a foreign currency with %module%.</target>
<note>Line: 132</note>
</trans-unit>
<trans-unit id="963e569356ae2068f6b0c5a98428332a">
<source>Choose a variable fee for each order placed with a foreign currency with %module%. It will be applied on the total paid with taxes.</source>
<target>Choose a variable fee for each order placed with a foreign currency with %module%. It will be applied on the total paid with taxes.</target>
<note>Line: 147</note>
</trans-unit>
<trans-unit id="e8ae5ad5beb4830ebe9a1a2fde5bb0cc">
<source>For the carrier named %s, indicate the domestic delivery costs in percentage of the price charged to customers.</source>
<target>For the carrier named %s, indicate the domestic delivery costs in percentage of the price charged to customers.</target>
<note>Line: 165</note>
</trans-unit>
<trans-unit id="d2db76b1301441d2171ebc13b2533b95">
<source>For the carrier named %s, indicate the overseas delivery costs in percentage of the price charged to customers.</source>
<target>For the carrier named %s, indicate the overseas delivery costs in percentage of the price charged to customers.</target>
<note>Line: 180</note>
</trans-unit>
<trans-unit id="3ca719d0b01232ba8c9a7109d8295917">
<source>Method: Indicate the percentage of your carrier margin. For example, if you charge $10 of shipping fees to your customer for each shipment, but you really pay $4 to this carrier, then you should indicate "40" in the percentage field.</source>
<target>Method: Indicate the percentage of your carrier margin. For example, if you charge $10 of shipping fees to your customer for each shipment, but you really pay $4 to this carrier, then you should indicate "40" in the percentage field.</target>
<note>Line: 194</note>
</trans-unit>
<trans-unit id="8c7cf68cbd01d91e537b6055adf0967f">
<source>You should calculate this percentage as follows: ((total sales revenue) - (cost of goods sold)) / (total sales revenue) * 100. This value is only used to calculate the Dashboard approximate gross margin, if you do not specify the wholesale price for each product.</source>
<target>You should calculate this percentage as follows: ((total sales revenue) - (cost of goods sold)) / (total sales revenue) * 100. This value is only used to calculate the Dashboard approximate gross margin, if you do not specify the wholesale price for each product.</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="1b511dcde043e7a3609a669e2c34f63d">
<source>You should calculate this value by making the sum of all of your additional costs per order.</source>
<target>You should calculate this value by making the sum of all of your additional costs per order.</target>
<note>Line: 208</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminDashboardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="54e180b1dbafcab1e37fd7f8cf5411f6">
<source>You are currently connected under the following domain name:</source>
<target>You are currently connected under the following domain name:</target>
<note>Line: 389</note>
</trans-unit>
<trans-unit id="98f5fdb1bf05af7241b0eb9cf8afbafa">
<source>This is different from the shop domain name set in the Multistore settings: "%s".</source>
<target>This is different from the shop domain name set in the Multistore settings: "%s".</target>
<note>Line: 392</note>
</trans-unit>
<trans-unit id="d8d5ce732cf78334f18c47ce0892ab2e">
<source>If this is your main domain, please {link}change it now{/link}.</source>
<target>If this is your main domain, please {link}change it now{/link}.</target>
<note>Line: 408</note>
</trans-unit>
<trans-unit id="e3e7221b6b1d51f976fa58ec6131a2aa">
<source><![CDATA[This is different from the domain name set in the "SEO & URLs" tab.]]></source>
<target><![CDATA[This is different from the domain name set in the "SEO & URLs" tab.]]></target>
<note>Line: 406</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,647 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/images/content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="874d3deed67e503cac1d8bc00417794a">
<source>Move images</source>
<target>Move images</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="258606ef5a3ed5cd7e39da08435adec0">
<source>Regenerate thumbnails</source>
<target>Regenerate thumbnails</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="79750ba11832a44ccf92e15eb0e84ae4">
<source>Select an image</source>
<target>Select an image</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="26e687808eb656fb38bd6e98f592e4f7">
<source>Select a format</source>
<target>Select a format</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="d379cadd41b68efe7c945b4d85c72085">
<source>Erase previous images</source>
<target>Erase previous images</target>
<note>Line: 107</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules_positions/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="51a8b3a61ad63d4e5df2ce86870e39b8">
<source>Transplant a module</source>
<target>Transplant a module</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="97e34811d05eb0ee902aa3e190ea5efd">
<source>Transplant to</source>
<target>Transplant to</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="d5f1381c5f97f928df4ef8d18c2a27c0">
<source>Exceptions</source>
<target>Exceptions</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="c5cc1164fe38560fcd4fb85ca074a789">
<source>Available hooks</source>
<target>Available hooks</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="407e15fbe496ef15d5cce04b0cbbebaf">
<source>Already registered hooks</source>
<target>Already registered hooks</target>
<note>Line: 70</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules_positions/list_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4ba24d91566786f5315acf453418dbb6">
<source>All modules</source>
<target>All modules</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="c2f2fa871a47fd6ab9e8442ff4dd468d">
<source>Search for a hook</source>
<target>Search for a hook</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="4c64748755160a1e441ed3dc34d6b827">
<source>Display non-positionable hooks</source>
<target>Display non-positionable hooks</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="d97628f4b34d5ca2a77cc1bfa7914aa9">
<source>Unhook</source>
<target>Unhook</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="feb6f2e19409f021e5fd65c51d21d254">
<source>Unhook the selection</source>
<target>Unhook the selection</target>
<note>Line: 185</note>
</trans-unit>
<trans-unit id="fdf4e26a28a557ccfae6ddea1881687e">
<source>1 module selected</source>
<target>1 module selected</target>
<note>Line: 179</note>
</trans-unit>
<trans-unit id="2451f8c34b91d6d3b6e7ee63c23d13fc">
<source>modules selected</source>
<target>modules selected</target>
<note>Line: 181</note>
</trans-unit>
</body>
</file>
<file original="classes/lang/KeysReference/ThemeLang.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="24e61dc70866cb84d375a6270035c7cf">
<source>Full width</source>
<target>Full width</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="63bd7d20cb7d515fe705bcda029ea776">
<source>Three columns</source>
<target>Three columns</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="710c71f05157207e5c47015fc032564d">
<source>Two columns, small left column</source>
<target>Two columns, small left column</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="4c318832b92e5f7b818aba037e1ed5ac">
<source>Two columns, small right column</source>
<target>Two columns, small right column</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="05559f48f0ea41ebb03f6d08b95e1e25">
<source>No side columns, ideal for distraction-free pages such as product pages.</source>
<target>No side columns, ideal for distraction-free pages such as product pages.</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="387bf9bbb8c3c3fd021aa85970554839">
<source>One large central column and 2 side columns.</source>
<target>One large central column and 2 side columns.</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="74266ad9cb6f32c9da66592ca748ef8d">
<source>Two columns with a small left column.</source>
<target>Two columns with a small left column.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="fefe6a1aca554473c855e076d0376b52">
<source>Two columns with a small right column.</source>
<target>Two columns with a small right column.</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCmsContentController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d0d4e3688fdaee5afa292083b855e143">
<source>Add new category</source>
<target>Add new category</target>
<note>Line: 187</note>
</trans-unit>
<trans-unit id="4fb1231b615c9fc59cdb5729577b0919">
<source>Edit category: %name%</source>
<target>Edit category: %name%</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="aa6f77f824eff8e896510f1bbaf9f8e5">
<source>Add new page</source>
<target>Add new page</target>
<note>Line: 195</note>
</trans-unit>
<trans-unit id="23b8a311aed9d1b2e76424acc4eff45f">
<source>Edit page: %meta_title%</source>
<target>Edit page: %meta_title%</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="5aa00a736e77bff80d8a530b0522803d">
<source>Category: %category%</source>
<target>Category: %category%</target>
<note>Line: 201</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCmsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="897b3f9a5dc0ebb8ab90e033e7ce61f3">
<source>Page Category</source>
<target>Page Category</target>
<note>Line: 166</note>
</trans-unit>
<trans-unit id="cc4fbd30d676ea2f9994b7063a8ada15">
<source>Pages in this category</source>
<target>Pages in this category</target>
<note>Line: 310</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminImagesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cc350a9d1eabece4f9299f7bb51c3a9c">
<source>Images generation options</source>
<target>Images generation options</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="d0efb46cfd8b126482192a343e2142b4">
<source>Image format</source>
<target>Image format</target>
<note>Line: 92</note>
</trans-unit>
<trans-unit id="92deb9e729da3800aca668de3491f0c8">
<source>Use JPEG.</source>
<target>Use JPEG.</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="6178649941eae11401f8bd95d32ad690">
<source>Use PNG only if the base image is in PNG format.</source>
<target>Use PNG only if the base image is in PNG format.</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="d40849d8da6fe69b751ebaa13595b34d">
<source>Use PNG for all images.</source>
<target>Use PNG for all images.</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="5a259e0a584d2d8f7de738689c91cb20">
<source>JPEG compression</source>
<target>JPEG compression</target>
<note>Line: 99</note>
</trans-unit>
<trans-unit id="9c4936420e1471c2233cfbb40ce49319">
<source>PNG compression</source>
<target>PNG compression</target>
<note>Line: 107</note>
</trans-unit>
<trans-unit id="2f0f4bfac8d0b89ceaf30a94f39f0d58">
<source>Generate images based on one side of the source image</source>
<target>Generate images based on one side of the source image</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="fbd5c930381c5176afe9310becf39ee5">
<source>Automatic (longest side)</source>
<target>Automatic (longest side)</target>
<note>Line: 123</note>
</trans-unit>
<trans-unit id="9cddfad226d0bc7a731c13fbec74aca6">
<source>Maximum file size of product customization pictures</source>
<target>Maximum file size of product customization pictures</target>
<note>Line: 138</note>
</trans-unit>
<trans-unit id="4b3a6218bb3e3a7303e8a171a60fcf92">
<source>bytes</source>
<target>bytes</target>
<note>Line: 144</note>
</trans-unit>
<trans-unit id="ff534cd9270ca999a39a50a6365ff52e">
<source>Product picture width</source>
<target>Product picture width</target>
<note>Line: 148</note>
</trans-unit>
<trans-unit id="d399848208da8b80a306af0fd62bb03f">
<source>pixels</source>
<target>pixels</target>
<note>Line: 223</note>
</trans-unit>
<trans-unit id="5891a406596216c63f7a1f8f7c6a81a8">
<source>Product picture height</source>
<target>Product picture height</target>
<note>Line: 159</note>
</trans-unit>
<trans-unit id="ace52125644d273380446071bcd6d5fb">
<source>Generate high resolution images</source>
<target>Generate high resolution images</target>
<note>Line: 171</note>
</trans-unit>
<trans-unit id="b08ea6a4f29e76c9d843856917642409">
<source>Use the legacy image filesystem</source>
<target>Use the legacy image filesystem</target>
<note>Line: 185</note>
</trans-unit>
<trans-unit id="2dd1148046499f9c2422ce1045a4accf">
<source>Image type</source>
<target>Image type</target>
<note>Line: 197</note>
</trans-unit>
<trans-unit id="404dede45594c16ad5592b1091cc7ba8">
<source>Name for the image type</source>
<target>Name for the image type</target>
<note>Line: 203</note>
</trans-unit>
<trans-unit id="d1e9d1892046943ae96e613646fc0381">
<source>Add new image type</source>
<target>Add new image type</target>
<note>Line: 702</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminModulesPositionsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="700e2c3b7b442c597c781eac801408b6">
<source>___________ CUSTOM ___________</source>
<target>___________ CUSTOM ___________</target>
<note>Line: 446</note>
</trans-unit>
<trans-unit id="6957667301f05bce7e2c0b5cd8567df5">
<source>____________ CORE ____________</source>
<target>____________ CORE ____________</target>
<note>Line: 459</note>
</trans-unit>
<trans-unit id="1cc06efffbc5252916c871f45098a50f">
<source>Admin modules controller</source>
<target>Admin modules controller</target>
<note>Line: 465</note>
</trans-unit>
<trans-unit id="2f75fd5bb638eb1353d6941aac58700e">
<source>Front modules controller</source>
<target>Front modules controller</target>
<note>Line: 465</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="453aceb005ceaf54a47da15fee8b2a26">
<source>Pages</source>
<target>Pages</target>
<note>Line: 540</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminThemesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b5c941eace89787ab475237451189eac">
<source>Import theme</source>
<target>Import theme</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="f5ad3d3e217e4b7ea1729eb997dfbe1e">
<source>Your current theme</source>
<target>Your current theme</target>
<note>Line: 405</note>
</trans-unit>
<trans-unit id="410901e83305e49595778896745950a9">
<source><![CDATA[Invoice & Email Logos]]></source>
<target><![CDATA[Invoice & Email Logos]]></target>
<note>Line: 409</note>
</trans-unit>
<trans-unit id="90dafb1cce6579655041476ab07fab90">
<source>Favicons</source>
<target>Favicons</target>
<note>Line: 410</note>
</trans-unit>
<trans-unit id="3388a09e80639f10038e6725fb32f444">
<source>Select a theme for the "%name%" shop</source>
<target>Select a theme for the "%name%" shop</target>
<note>Line: 508</note>
</trans-unit>
<trans-unit id="8d5cc12b0e7ecbe4e624baa345323035">
<source>Theme appearance</source>
<target>Theme appearance</target>
<note>Line: 529</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CmsPageDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1f6162e1430a8d5020bf4c20dc02499f">
<source>Pages in category "%name%"</source>
<target>Pages in category "%name%"</target>
<note>Line: 118</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/MailThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cca370c1880917b42e0ca0f484afb715">
<source>Preview Theme %s</source>
<target>Preview Theme %s</target>
<note>Line: 249</note>
</trans-unit>
<trans-unit id="7accead9f41b1968f1957961177b1ed7">
<source>Test email %template%</source>
<target>Test email %template%</target>
<note>Line: 320</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/category_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="789ca3cc9e29e7ef767619e13c6b2f9e">
<source>CMS Category</source>
<target>CMS Category</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="52b68aaa602d202c340d9e4e9157f276">
<source>Parent category</source>
<target>Parent category</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="21f93401134586a6c481422bf01fccfd">
<source>Only letters and the hyphen (-) character are allowed.</source>
<target>Only letters and the hyphen (-) character are allowed.</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="45b1bce0ceb1e155fc99d59a21761b9e">
<source>Page content</source>
<target>Page content</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="ce1e51212c9df52777620dc9de246da0">
<source>Indexation by search engines</source>
<target>Indexation by search engines</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="79e48ca19eefe7806fbaf27df903e8d5">
<source>Page category</source>
<target>Page category</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/configuration_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d52c442675e27baf9d7c5a19d6ef93fa">
<source>Select your default email theme</source>
<target>Select your default email theme</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/generate_mails_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a0a17caf8de192bd85662445714f0adc">
<source>Generate emails</source>
<target>Generate emails</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="98d77d08b65418c4375c4947921ce44c">
<source>Select your email theme</source>
<target>Select your email theme</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="d8605aca26dca73f3e67726f7301a165">
<source>Select the theme you want to overwrite</source>
<target>Select the theme you want to overwrite</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="b445b07a4ce0e996acaf7ceb6a2547c3">
<source>Overwrite templates</source>
<target>Overwrite templates</target>
<note>Line: 76</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/list_mail_theme_layouts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="594092807cc252032c22d39dacab4d95">
<source>List %theme% layouts</source>
<target>List %theme% layouts</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="bfa4f8af8165a84b7d7b2e01d8dfc870">
<source>Raw HTML</source>
<target>Raw HTML</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="9dffbf69ffba8bc38bc4e01abf4b1675">
<source>Text</source>
<target>Text</target>
<note>Line: 94</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/list_mail_themes.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d28bbf5382a9e7e12a596e5e7f2d04ca">
<source>Email themes</source>
<target>Email themes</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/Partials/theme_card.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="837a54ae4874c4501c804173cd3c0fdf">
<source>Designed by %s</source>
<target>Designed by %s</target>
<note>Line: 49</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/delete_theme_modal.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a20cd66c6c13302711252a1b5830f17c">
<source>Delete this theme?</source>
<target>Delete this theme?</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/layouts_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8ef656f84513928ea1b0c2f1735b62e9">
<source>Configure your page layouts</source>
<target>Configure your page layouts</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="4459ae4e873177642b30e9fc8b821d2f">
<source>Each page can use a different layout, choose it among the layouts bundled in your theme.</source>
<target>Each page can use a different layout, choose it among the layouts bundled in your theme.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="f0dbca7d922e4e759a1e3b512b9be852">
<source>Choose layouts</source>
<target>Choose layouts</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="21e2bb42873eddcb9b476b8eafbe0c18">
<source>Reset to defaults</source>
<target>Reset to defaults</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/logo_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="49824ed511fd64f33f2f8a1818ee8fe1">
<source>Header logo</source>
<target>Header logo</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="358b0205fd07c94c16a82d8278bc5b76">
<source>Mail logo</source>
<target>Mail logo</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="d84613cd39906ab9161e1ad513f8947b">
<source>Invoice logo</source>
<target>Invoice logo</target>
<note>Line: 138</note>
</trans-unit>
<trans-unit id="49e95301d8fcdbc23f623e0f2d1ed1e6">
<source>Favicon</source>
<target>Favicon</target>
<note>Line: 126</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/rtl_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d1c54fe762697b168dee820490655563">
<source>Adaptation to Right-to-Left languages</source>
<target>Adaptation to Right-to-Left languages</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="8ed22009aa8884b512b3e3a85d1aeb87">
<source>Theme to adapt</source>
<target>Theme to adapt</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="fb3f98de7e392f98c02ba257e6c46f9a">
<source>Generate RTL stylesheet</source>
<target>Generate RTL stylesheet</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/use_theme_modal.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ca4dc1a851769ef30c841b36cd18648a">
<source>Use this theme?</source>
<target>Use this theme?</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/import.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7961c4434751797a383d52d647e044d6">
<source>Import from your computer</source>
<target>Import from your computer</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="6966bbbcdeb44c019201ede70e7b74b8">
<source>Zip file</source>
<target>Zip file</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="dec0faa6eb19bd9120d12c5a876bd1cf">
<source>Import from the web</source>
<target>Import from the web</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="a33388a338ee2b199d66112369279558">
<source>Archive URL</source>
<target>Archive URL</target>
<note>Line: 83</note>
</trans-unit>
<trans-unit id="cd8d9cc19984ccf9d314eee5eebfc2cc">
<source>Import from FTP</source>
<target>Import from FTP</target>
<note>Line: 103</note>
</trans-unit>
<trans-unit id="a5a23094873852f0c0a9e55be4f1cf1d">
<source>Select the archive</source>
<target>Select the archive</target>
<note>Line: 108</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="36866999eeb441da24edc6fd075e1765">
<source>Add new theme</source>
<target>Add new theme</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="3ff63fb80ae3bd04b6550282d39f674f">
<source>Export current theme</source>
<target>Export current theme</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="859a82ffb385f9227c656960996025eb">
<source>Visit the theme catalog</source>
<target>Visit the theme catalog</target>
<note>Line: 151</note>
</trans-unit>
<trans-unit id="d721757161f7f70c5b0949fdb6ec2c30">
<source>Theme</source>
<target>Theme</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="6b8e9498b52135e7f6cee757294a6079">
<source>My current theme</source>
<target>My current theme</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="b6ba229b668e5a7b6700e4d275683084">
<source>Use this theme</source>
<target>Use this theme</target>
<note>Line: 121</note>
</trans-unit>
<trans-unit id="6fe78057f585de51da0f61d514143fe1">
<source>Explore more than a thousand themes</source>
<target>Explore more than a thousand themes</target>
<note>Line: 146</note>
</trans-unit>
<trans-unit id="10d79e2800631feee6411615a72eb79e">
<source>My theme for %name% shop</source>
<target>My theme for %name% shop</target>
<note>Line: 82</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,369 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/images/content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5fe1c6d39261cafbe5e6d827330d3841">
<source>By default, all images settings are already installed in your store. Do not delete them, you will need it!</source>
<target>By default, all images settings are already installed in your store. Do not delete them, you will need it!</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="8e6cd17ee7b35531b7c17c1e1edeb548">
<source>Regenerates thumbnails for all existing images</source>
<target>Regenerates thumbnails for all existing images</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="8055bf2356820e356d02127707b38d54">
<source>Please be patient. This can take several minutes.</source>
<target>Please be patient. This can take several minutes.</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="3bfa8daa236ed8bde7eb2179e8ee9765">
<source>Be careful! Manually uploaded thumbnails will be erased and replaced by automatically generated thumbnails.</source>
<target>Be careful! Manually uploaded thumbnails will be erased and replaced by automatically generated thumbnails.</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="85cf8b897040b0bc24d97db52d0922ee">
<source>Select "No" only if your server timed out and you need to resume the regeneration.</source>
<target>Select "No" only if your server timed out and you need to resume the regeneration.</target>
<note>Line: 122</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules_positions/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0a4dbce7e33277b97c5f5667715e0b46">
<source>Please select a module</source>
<target>Please select a module</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="0b08e9b451b556f1bdd62b285ee2a9df">
<source>Select a module above before choosing from available hooks</source>
<target>Select a module above before choosing from available hooks</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="74cd700f9b419dd789dc7d8d1cbf49ef">
<source>Please specify the files for which you do not want the module to be displayed.</source>
<target>Please specify the files for which you do not want the module to be displayed.</target>
<note>Line: 85</note>
</trans-unit>
<trans-unit id="07b7dbb810d745fc3891d68448f3f213">
<source>Please input each filename, separated by a comma (",").</source>
<target>Please input each filename, separated by a comma (",").</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="804a997021a16e79a9e6ef9a2bf39e3d">
<source>You can also click the filename in the list below, and even make a multiple selection by keeping the Ctrl key pressed while clicking, or choose a whole range of filename by keeping the Shift key pressed while clicking.</source>
<target>You can also click the filename in the list below, and even make a multiple selection by keeping the Ctrl key pressed while clicking, or choose a whole range of filename by keeping the Shift key pressed while clicking.</target>
<note>Line: 87</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCmsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3ed349365d718a59eadb9df9d5c339f2">
<source>To add "tags" click in the field, write something, and then press "Enter."</source>
<target>To add "tags" click in the field, write something, and then press "Enter."</target>
<note>Line: 208</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminImagesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="48658689e18e12e430668e1f2419b0d0">
<source>JPEG images have a small file size and standard quality. PNG images have a larger file size, a higher quality and support transparency. Note that in all cases the image files will have the .jpg extension.</source>
<target>JPEG images have a small file size and standard quality. PNG images have a larger file size, a higher quality and support transparency. Note that in all cases the image files will have the .jpg extension.</target>
<note>Line: 88</note>
</trans-unit>
<trans-unit id="c031c7c1498d22082b4dcbac4fac27d4">
<source>WARNING: This feature may not be compatible with your theme, or with some of your modules. In particular, PNG mode is not compatible with the Watermark module. If you encounter any issues, turn it off by selecting "Use JPEG".</source>
<target>WARNING: This feature may not be compatible with your theme, or with some of your modules. In particular, PNG mode is not compatible with the Watermark module. If you encounter any issues, turn it off by selecting "Use JPEG".</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="576d1a59cae85fc41c31d27433e17d37">
<source>Ranges from 0 (worst quality, smallest file) to 100 (best quality, biggest file).</source>
<target>Ranges from 0 (worst quality, smallest file) to 100 (best quality, biggest file).</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="49caff79e5dca417b2b2c37fc7ef61af">
<source>Recommended: 90.</source>
<target>Recommended: 90.</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="c1a1204bac358b5068446c93ec34bc87">
<source>PNG compression is lossless: unlike JPG, you do not lose image quality with a high compression ratio. However, photographs will compress very badly.</source>
<target>PNG compression is lossless: unlike JPG, you do not lose image quality with a high compression ratio. However, photographs will compress very badly.</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="ce1cd64739c592c80f58012b38f5c42f">
<source>Ranges from 0 (biggest file) to 9 (smallest file, slowest decompression).</source>
<target>Ranges from 0 (biggest file) to 9 (smallest file, slowest decompression).</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="4b1fa40679bbc322bc244f9f09830681">
<source>Recommended: 7.</source>
<target>Recommended: 7.</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="e425d33122fa9152a34d746c60b0903b">
<source>The maximum file size of pictures that customers can upload to customize a product (in bytes).</source>
<target>The maximum file size of pictures that customers can upload to customize a product (in bytes).</target>
<note>Line: 139</note>
</trans-unit>
<trans-unit id="273ad45c9ec7fbd15b705f1d8b272bdb">
<source>Width of product customization pictures that customers can upload (in pixels).</source>
<target>Width of product customization pictures that customers can upload (in pixels).</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="fd70ea0d8dbbe0a675d717812b3253fe">
<source>Height of product customization pictures that customers can upload (in pixels).</source>
<target>Height of product customization pictures that customers can upload (in pixels).</target>
<note>Line: 160</note>
</trans-unit>
<trans-unit id="d20e2b80b07e17b035a7c8fe09deca44">
<source>This will generate an additional file for each image (thus doubling your total amount of images). Resolution of these images will be twice higher.</source>
<target>This will generate an additional file for each image (thus doubling your total amount of images). Resolution of these images will be twice higher.</target>
<note>Line: 174</note>
</trans-unit>
<trans-unit id="d869df123081c24a3d5f5145cb5368ea">
<source>Enable to optimize the display of your images on high pixel density screens.</source>
<target>Enable to optimize the display of your images on high pixel density screens.</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="bc10c6548185bd449a823faf9c171596">
<source>This should be set to yes unless you successfully moved images in "Images" page under the "Preferences" menu.</source>
<target>This should be set to yes unless you successfully moved images in "Images" page under the "Preferences" menu.</target>
<note>Line: 186</note>
</trans-unit>
<trans-unit id="0e10ed6e73d3301bee138a59a23c5de9">
<source>Letters, underscores and hyphens only (e.g. "small_custom", "cart_medium", "large", "thickbox_extra-large").</source>
<target>Letters, underscores and hyphens only (e.g. "small_custom", "cart_medium", "large", "thickbox_extra-large").</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="845d4d07d4cfe4d1ccadcbab72efe199">
<source>Maximum image width in pixels.</source>
<target>Maximum image width in pixels.</target>
<note>Line: 215</note>
</trans-unit>
<trans-unit id="0afd1617fde01be0d13f62668e7ad4f1">
<source>Maximum image height in pixels.</source>
<target>Maximum image height in pixels.</target>
<note>Line: 224</note>
</trans-unit>
<trans-unit id="a61f835bd3188471923b2da2717091ec">
<source>This type will be used for Product images.</source>
<target>This type will be used for Product images.</target>
<note>Line: 232</note>
</trans-unit>
<trans-unit id="1ad8a6b5f7d9fc6ca597ad11103fab6e">
<source>This type will be used for Category images.</source>
<target>This type will be used for Category images.</target>
<note>Line: 253</note>
</trans-unit>
<trans-unit id="f193abb289c02779dabbdae3beb6e9e1">
<source>This type will be used for Brand images.</source>
<target>This type will be used for Brand images.</target>
<note>Line: 273</note>
</trans-unit>
<trans-unit id="01e1e70a11e81d8327a7a565869fb268">
<source>This type will be used for Supplier images.</source>
<target>This type will be used for Supplier images.</target>
<note>Line: 293</note>
</trans-unit>
<trans-unit id="0096ae72d90ea092533743553617e0a5">
<source>This type will be used for Store images.</source>
<target>This type will be used for Store images.</target>
<note>Line: 313</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminModulesPositionsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a06929291c19a7718975cb8c24dea961">
<source>E.g. address, addresses, attachment</source>
<target>E.g. address, addresses, attachment</target>
<note>Line: 436</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminThemesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8ed0c1461337919e3cf576591d74b687">
<source>Will appear on main page. Recommended size for the default theme: height %height% and width %width%.</source>
<target>Will appear on main page. Recommended size for the default theme: height %height% and width %width%.</target>
<note>Line: 415</note>
</trans-unit>
<trans-unit id="d4d7bd35b17411da70ed5e76bcb4c3da">
<source>Warning: you can use a PNG file for transparency, but it can take up to 1 second per page for processing. Please consider using JPG instead.</source>
<target>Warning: you can use a PNG file for transparency, but it can take up to 1 second per page for processing. Please consider using JPG instead.</target>
<note>Line: 438</note>
</trans-unit>
<trans-unit id="9d365da5a530a9f2607be1d3ba79235c">
<source>It is the small icon that appears in browser tabs, next to the web address</source>
<target>It is the small icon that appears in browser tabs, next to the web address</target>
<note>Line: 447</note>
</trans-unit>
<trans-unit id="1a4e6f83162563ba06213015f4f503ed">
<source>Be careful! Please check your theme in an RTL language before generating the RTL stylesheet: your theme could be already adapted to RTL.\nOnce you click on "Adapt to RTL", any RTL-specific file that you might have added to your theme might be deleted by the created stylesheet.</source>
<target>Be careful! Please check your theme in an RTL language before generating the RTL stylesheet: your theme could be already adapted to RTL.\nOnce you click on "Adapt to RTL", any RTL-specific file that you might have added to your theme might be deleted by the created stylesheet.</target>
<note>Line: 482</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2acc315907b6b57c444b1885666f5bdd">
<source>Used in the h1 page tag, and as the default title tag value.</source>
<target>Used in the h1 page tag, and as the default title tag value.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="27043bc0eeca71692edf6c51fef16ee0">
<source>Used to override the title tag value. If left blank, the default title value is used.</source>
<target>Used to override the title tag value. If left blank, the default title value is used.</target>
<note>Line: 65</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/showcase_card.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="80ccab2796a85566dac9af41ab0bf89b">
<source>Create meaningful content</source>
<target>Create meaningful content</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="4cd30cbec90b9e4a0b25f4e3222e417b">
<source>Because it is not just selling products but also creating a universe, build pages to tell stories and catch your visitors interest, to turn them into loyal customers.</source>
<target>Because it is not just selling products but also creating a universe, build pages to tell stories and catch your visitors interest, to turn them into loyal customers.</target>
<note>Line: 34</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cabfe7563d12c3e047000dc5703d9709">
<source>Add new page category</source>
<target>Add new page category</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="aa6f77f824eff8e896510f1bbaf9f8e5">
<source>Add new page</source>
<target>Add new page</target>
<note>Line: 36</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/configuration_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1dda8b854d639e61bee497c7d22f8057">
<source>This won't regenerate email templates, it only sets the default email theme for future generation (when a language is installed for example).</source>
<target>This won't regenerate email templates, it only sets the default email theme for future generation (when a language is installed for example).</target>
<note>Line: 42</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/MailTheme/Blocks/generate_mails_form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a286fbcf840903be7c9251c14ce9ac03">
<source>PrestaShop's email templates are stored in the "mails" folder, but they can be overridden by your current theme's own "mails" folder. Using this option enables to overwrite emails from your current theme.</source>
<target>PrestaShop's email templates are stored in the "mails" folder, but they can be overridden by your current theme's own "mails" folder. Using this option enables to overwrite emails from your current theme.</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="0705d2ffde737b9365c1f84715f6f66f">
<source>By default, existing email template files are not modified to avoid deleting any modification you may have done. Enable this option to force the overwrite.</source>
<target>By default, existing email template files are not modified to avoid deleting any modification you may have done. Enable this option to force the overwrite.</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="d8533de1b9f083f6a42b644fea80a6a0">
<source>No emails were detected in any theme folder so this field is disabled.</source>
<target>No emails were detected in any theme folder so this field is disabled.</target>
<note>Line: 69</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/logo_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="aeec498c2bb6b53e8eb24752af092828">
<source>Will appear on email headers. If undefined, the header logo will be used.</source>
<target>Will appear on email headers. If undefined, the header logo will be used.</target>
<note>Line: 88</note>
</trans-unit>
<trans-unit id="544cd7788ebd8916e7191e7a8fd0db57">
<source>Warning: if no invoice logo is available, the main logo will be used instead.</source>
<target>Warning: if no invoice logo is available, the main logo will be used instead.</target>
<note>Line: 117</note>
</trans-unit>
<trans-unit id="b0297d22aade28eda5efbeb5c2e21e97">
<source>Will appear on invoice headers.</source>
<target>Will appear on invoice headers.</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="3fb044d8f9136df5b2f0087f8a8fb0c9">
<source>Use our [1]favicon generator on PrestaShop Marketplace[/1] to boost your brand image!</source>
<target>Use our [1]favicon generator on PrestaShop Marketplace[/1] to boost your brand image!</target>
<note>Line: 146</note>
</trans-unit>
<trans-unit id="04f1f93771bf12b0b80ae6a86ceb5cae">
<source>Will appear on your main page. Recommended size for the default theme: height %height% and width %width%.</source>
<target>Will appear on your main page. Recommended size for the default theme: height %height% and width %width%.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="e91d6b1f1f3836b0126eb26760a0eb49">
<source>It is the small icon that appears in browser tabs, next to the title.</source>
<target>It is the small icon that appears in browser tabs, next to the title.</target>
<note>Line: 130</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/rtl_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cdeb5994d69c5154e5bc10db3382f09a">
<source>Be careful! Please check your theme in an RTL language before generating the RTL stylesheet: your theme could be already adapted to RTL.
Once you click on "Adapt to RTL", any RTL-specific file that you might have added to your theme might be deleted by the created stylesheet.</source>
<target>Be careful! Please check your theme in an RTL language before generating the RTL stylesheet: your theme could be already adapted to RTL.
Once you click on "Adapt to RTL", any RTL-specific file that you might have added to your theme might be deleted by the created stylesheet.</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/import.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0d03fc8cc7c22c4ff80c5cda6f56ce8e">
<source>Browse your computer files and select the Zip file for your new theme.</source>
<target>Browse your computer files and select the Zip file for your new theme.</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="f545e8220cd6f37617c495e59695f7f3">
<source>Indicate the complete URL to an online Zip file that contains your new theme. For instance, "http://example.com/files/theme.zip".</source>
<target>Indicate the complete URL to an online Zip file that contains your new theme. For instance, "http://example.com/files/theme.zip".</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="87c309a4d1deb851c8522127c1aeae54">
<source>This selector lists the Zip files that you uploaded in the '/themes' folder.</source>
<target>This selector lists the Zip files that you uploaded in the '/themes' folder.</target>
<note>Line: 109</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6894e313abf58dc29e27e6aef50b2f03">
<source>You must select a shop from the above list if you wish to choose a theme.</source>
<target>You must select a shop from the above list if you wish to choose a theme.</target>
<note>Line: 50</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/macros.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ff8ff5e54a1832486773ec48b8f8175d">
<source>You are editing this page for a specific shop or group. Click "Yes" to check all fields, "No" to uncheck all.</source>
<target>You are editing this page for a specific shop or group. Click "Yes" to check all fields, "No" to uncheck all.</target>
<note>Line: 286</note>
</trans-unit>
<trans-unit id="d97ccb3e617d930d52ffd95e5db2c101">
<source>If you check a field, change its value, and save, the multistore behavior will not apply to this shop (or group), for this particular parameter.</source>
<target>If you check a field, change its value, and save, the multistore behavior will not apply to this shop (or group), for this particular parameter.</target>
<note>Line: 287</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,262 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/cms/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="feede4b4294c44c907966ddd76e23614">
<source>Your page will be saved as a draft</source>
<target>Your page will be saved as a draft</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/images/content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8c9b2e81e93417bf65ee4d1c674d00e9">
<source>You can choose to keep your images stored in the previous system. There's nothing wrong with that.</source>
<target>You can choose to keep your images stored in the previous system. There's nothing wrong with that.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="1f424af91db226ac46ea712713a3728e">
<source>You can also decide to move your images to the new storage system. In this case, click on the "Move images" button below. Please be patient. This can take several minutes.</source>
<target>You can also decide to move your images to the new storage system. In this case, click on the "Move images" button below. Please be patient. This can take several minutes.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="cde488e6010c72acfb6ff2781683b030">
<source>After moving all of your product images, set the "Use the legacy image filesystem" option above to "No" for best performance.</source>
<target>After moving all of your product images, set the "Use the legacy image filesystem" option above to "No" for best performance.</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules_positions/list_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="307cd46da080d0ad19ec342feb2aa6d6">
<source>If you want to order/move the following data, please select a shop from the shop list.</source>
<target>If you want to order/move the following data, please select a shop from the shop list.</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/FrontController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c402321a8e5818b776007e8a2d00474a">
<source>Current theme is unavailable. Please check your theme's directory name ("%s") and permissions.</source>
<target>Current theme is unavailable. Please check your theme's directory name ("%s") and permissions.</target>
<note>Line: 317</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCmsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5ece607071fe59ddc4c88dc6abfe2310">
<source>No items found</source>
<target>No items found</target>
<note>Line: 324</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminImagesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ffddcc65274efa9b4c624b34289c922c">
<source>Duplicate images were found when moving the product images. This is likely caused by unused demonstration images. Please make sure that the folder %folder% only contains demonstration images, and then delete it.</source>
<target>Duplicate images were found when moving the product images. This is likely caused by unused demonstration images. Please make sure that the folder %folder% only contains demonstration images, and then delete it.</target>
<note>Line: 338</note>
</trans-unit>
<trans-unit id="5b8cb2aa659c7d6a98b740d2d788c69d">
<source>Incorrect value for the selected JPEG image compression.</source>
<target>Incorrect value for the selected JPEG image compression.</target>
<note>Line: 361</note>
</trans-unit>
<trans-unit id="8357fadc46ff52546c4c69965de0d653">
<source>Incorrect value for the selected PNG image compression.</source>
<target>Incorrect value for the selected PNG image compression.</target>
<note>Line: 364</note>
</trans-unit>
<trans-unit id="b88862891dbf9c20a73bc59258407d0b">
<source>Source file does not exist or is empty (%filepath%)</source>
<target>Source file does not exist or is empty (%filepath%)</target>
<note>Line: 502</note>
</trans-unit>
<trans-unit id="985b5b995c4574ae5eba2062a13ef168">
<source>Failed to resize image file (%filepath%)</source>
<target>Failed to resize image file (%filepath%)</target>
<note>Line: 504</note>
</trans-unit>
<trans-unit id="c5e7d0c13104eed0a195c175f2edfdd2">
<source>Failed to resize image file to high resolution (%filepath%)</source>
<target>Failed to resize image file to high resolution (%filepath%)</target>
<note>Line: 509</note>
</trans-unit>
<trans-unit id="103d86044b78fa59e02ff8480a3a2f46">
<source>Original image is corrupt (%filename%) for product ID %id% or bad permission on folder.</source>
<target>Original image is corrupt (%filename%) for product ID %id% or bad permission on folder.</target>
<note>Line: 541</note>
</trans-unit>
<trans-unit id="2934958a3f658892ee502aaf8258a6f7">
<source>Original image is missing or empty (%filename%) for product ID %id%</source>
<target>Original image is missing or empty (%filename%) for product ID %id%</target>
<note>Line: 554</note>
</trans-unit>
<trans-unit id="8b772dad7cc4ed15eaf0c433f861e55c">
<source>Cannot write images for this type: %1$s. Please check the %2$s folder's writing permissions.</source>
<target>Cannot write images for this type: %1$s. Please check the %2$s folder's writing permissions.</target>
<note>Line: 676</note>
</trans-unit>
<trans-unit id="d4f225ec09e4b0eba6558753f4bd8edd">
<source>Only part of the images have been regenerated. The server timed out before finishing.</source>
<target>Only part of the images have been regenerated. The server timed out before finishing.</target>
<note>Line: 679</note>
</trans-unit>
<trans-unit id="f2febdafe25d3517afc3c6dd3d815562">
<source>Server timed out. The watermark may not have been applied to all images.</source>
<target>Server timed out. The watermark may not have been applied to all images.</target>
<note>Line: 683</note>
</trans-unit>
<trans-unit id="606495559093a136ed6f2c9daee2645f">
<source>Cannot write "No picture" image to %s images folder. Please check the folder's writing permissions.</source>
<target>Cannot write "No picture" image to %s images folder. Please check the folder's writing permissions.</target>
<note>Line: 688</note>
</trans-unit>
<trans-unit id="4004c7590c68a8cbbe499736c56bc33c">
<source>Error: Your server configuration is not compatible with the new image system. No images were moved.</source>
<target>Error: Your server configuration is not compatible with the new image system. No images were moved.</target>
<note>Line: 716</note>
</trans-unit>
<trans-unit id="4c9f49243d6dc02028801d9767abe3c1">
<source>Not all images have been moved. The server timed out before finishing. Click on "Move images" again to resume the moving process.</source>
<target>Not all images have been moved. The server timed out before finishing. Click on "Move images" again to resume the moving process.</target>
<note>Line: 722</note>
</trans-unit>
<trans-unit id="95871efade00fbd0243355ce7937c40a">
<source>Error: Some -- or all -- images cannot be moved.</source>
<target>Error: Some -- or all -- images cannot be moved.</target>
<note>Line: 724</note>
</trans-unit>
<trans-unit id="cb2f901ceed5c3365d056794a1b5047f">
<source>After modification, do not forget to regenerate thumbnails</source>
<target>After modification, do not forget to regenerate thumbnails</target>
<note>Line: 743</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminThemesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6e9550e40cc317663fbe81e759d098e8">
<source>The uploaded file is too large.</source>
<target>The uploaded file is too large.</target>
<note>Line: 922</note>
</trans-unit>
<trans-unit id="d4c8009943f24c4318bef97058cc6ffa">
<source>Failed to move uploaded file.</source>
<target>Failed to move uploaded file.</target>
<note>Line: 380</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Addon/Theme/ThemeManager.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="412b4a82ba6153e19f17f490b5f1aa88">
<source>This theme is not valid for PrestaShop 1.7</source>
<target>This theme is not valid for PrestaShop 1.7</target>
<note>Line: 362</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Addon/Theme/ThemeValidator.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="832e8c53e8d05c52c824912c28933917">
<source>An error occurred. The information "%s" is missing.</source>
<target>An error occurred. The information "%s" is missing.</target>
<note>Line: 72</note>
</trans-unit>
<trans-unit id="7d88c564a7f74d56564402cd5e054b13">
<source>An error occurred. The template "%s" is missing.</source>
<target>An error occurred. The template "%s" is missing.</target>
<note>Line: 118</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Shop/LogoUploader.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f003149576f4755d74550952febe14bb">
<source>An error occurred while uploading the favicon: cannot copy file "%s" to folder "%s".</source>
<target>An error occurred while uploading the favicon: cannot copy file "%s" to folder "%s".</target>
<note>Line: 175</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Command/ExportThemeCommand.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ebc7584c0a97bc4aa867c11fc4760b3f">
<source>Your theme has been correctly exported: %path%</source>
<target>Your theme has been correctly exported: %path%</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/CmsPageController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="29dae1d163226f90bb206b333bbffe1d">
<source>The page Category cannot be moved here.</source>
<target>The page Category cannot be moved here.</target>
<note>Line: 1135</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/ThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4a9fdf95b29176bd9260016655a80852">
<source>Your RTL stylesheets has been generated successfully</source>
<target>Your RTL stylesheets has been generated successfully</target>
<note>Line: 358</note>
</trans-unit>
<trans-unit id="9ccfef29efe298e9a48295a69436e11f">
<source><![CDATA[Your theme has been correctly reset to its default settings. You may want to regenerate your images. See the Improve > Design > Images Settings screen for the 'Regenerate thumbnails' button.]]></source>
<target><![CDATA[Your theme has been correctly reset to its default settings. You may want to regenerate your images. See the Improve > Design > Images Settings screen for the 'Regenerate thumbnails' button.]]></target>
<note>Line: 385</note>
</trans-unit>
<trans-unit id="0933caade58197a4ff60c27077f67604">
<source>There is already a theme %theme_name% in your themes folder. Remove it if you want to continue.</source>
<target>There is already a theme %theme_name% in your themes folder. Remove it if you want to continue.</target>
<note>Line: 483</note>
</trans-unit>
<trans-unit id="2cca9f161ea0cc1102ad4be82b15cbfb">
<source>Failed to delete theme. Make sure you have permissions and theme is not used.</source>
<target>Failed to delete theme. Make sure you have permissions and theme is not used.</target>
<note>Line: 530</note>
</trans-unit>
<trans-unit id="05c176b8092b42c554d570513026207c">
<source>Cannot adapt theme to RTL languages.</source>
<target>Cannot adapt theme to RTL languages.</target>
<note>Line: 552</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Configure/AdvancedParameters/Import/ImportDataConfigurationFormDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e8be55bf3a30501aef09d2e74de97976">
<source>This name already exists.</source>
<target>This name already exists.</target>
<note>Line: 144</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/Design/Theme/ImportThemeType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1ecb89bb5b6dce906edaf8e12968c167">
<source>Invalid file format.</source>
<target>Invalid file format.</target>
<note>Line: 68</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/Blocks/logo_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3cb5c48f468125102a98fe83a277029d">
<source>Warning: if no email logo is available, the main logo will be used instead.</source>
<target>Warning: if no email logo is available, the main logo will be used instead.</target>
<note>Line: 100</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,926 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/countries/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9fc79b58296e3a108fbe2f8852b652f4">
<source>Required fields for the address (click for more details):</source>
<target>Required fields for the address (click for more details):</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="5dfe48d86e43b22b76d36dcaadd5caf9">
<source>Use the last registered format</source>
<target>Use the last registered format</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="a19ef0b0d61c6410b0c930f7164d5870">
<source>Use the default format</source>
<target>Use the default format</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="a4a61fd17fd3f75cdddb53a1404d2ba4">
<source>Use my current modified format</source>
<target>Use my current modified format</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="6b900667b4a05ffdccc0bab5a20130a7">
<source>Clear format</source>
<target>Clear format</target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/countries/helpers/list/list_footer.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="10d30c6319cf61386c878e4d9a3e09a2">
<source>Assign to a new zone</source>
<target>Assign to a new zone</target>
<note>Line: 148</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/currencies/status.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a0375b8965a19b59896d90e7e08041f3">
<source>This currency is disabled</source>
<target>This currency is disabled</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="5a654deb20d708c9f56c1d7bc5e35c38">
<source>This currency is enabled</source>
<target>This currency is enabled</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/tax_rules/helpers/list/list_content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="14e4d5e97b5a2c7780c4f23b7612a67b">
<source>This tax only</source>
<target>This tax only</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="e7b3c0acb7168c7969b03e8aebc67ce7">
<source>Combine</source>
<target>Combine</target>
<note>Line: 93</note>
</trans-unit>
<trans-unit id="7f8f392e0c47b730d773b4ddd9448fba">
<source>One after another</source>
<target>One after another</target>
<note>Line: 95</note>
</trans-unit>
<trans-unit id="08a38277b0309070706f6652eeae9a53">
<source>Down</source>
<target>Down</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="258f49887ef8d14ac268c92b02503aaa">
<source>Up</source>
<target>Up</target>
<note>Line: 69</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ea21841da70e6405af19fabc4ff8bdd9">
<source>missing</source>
<target>missing</target>
<note>Line: 111</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_mails.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d43522f215ed8be730a542c8e1fdcff1">
<source>Core emails</source>
<target>Core emails</target>
<note>Line: 97</note>
</trans-unit>
<trans-unit id="fdfd8f2cb7c034aecf19844d1cf4abd0">
<source>Module emails</source>
<target>Module emails</target>
<note>Line: 161</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2303c057afcbe798a5d9811d36e88050">
<source>Modify translations</source>
<target>Modify translations</target>
<note>Line: 189</note>
</trans-unit>
<trans-unit id="a9e4402481bd9b8e36752bf731f67eb6">
<source>Theme:</source>
<target>Theme:</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="53b3cae42737979c884275593a01f468">
<source>Module:</source>
<target>Module:</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="f05b91496296629228c94a6b4b0a335f">
<source>Expressions to translate:</source>
<target>Expressions to translate:</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="57aca76c1e8e4e4063437a931c74a0ee">
<source>Total missing expressions:</source>
<target>Total missing expressions:</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="1476dfb963d54c697399a79fafa90151">
<source>expressions</source>
<target>expressions</target>
<note>Line: 116</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCountriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f52c1ff75f69fa46ae947f0a3f653641">
<source>Country options</source>
<target>Country options</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="d8ec51bf63378409b1d40cc45c80f926">
<source>Call prefix</source>
<target>Call prefix</target>
<note>Line: 216</note>
</trans-unit>
<trans-unit id="21e6a1298ab4cd040464d67a19d0f957">
<source>Add new country</source>
<target>Add new country</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="790d59ef178acbc75d233bf4211763c6">
<source>Countries</source>
<target>Countries</target>
<note>Line: 188</note>
</trans-unit>
<trans-unit id="3be0efaecb3514a14757b8beb4b5dbb3">
<source>Country name</source>
<target>Country name</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="a4f164d8b1b72c87b8ce558827bcd423">
<source>Default store currency</source>
<target>Default store currency</target>
<note>Line: 232</note>
</trans-unit>
<trans-unit id="ecefe3def8a2d034d80f6a8876c3d4b1">
<source>Does it need Zip/postal code?</source>
<target>Does it need Zip/postal code?</target>
<note>Line: 250</note>
</trans-unit>
<trans-unit id="25d176f9d01ba273d1097ca7b298d281">
<source>Zip/postal code format</source>
<target>Zip/postal code format</target>
<note>Line: 269</note>
</trans-unit>
<trans-unit id="665e1ad1c6657791cecb5b68008c7c00">
<source>Address format</source>
<target>Address format</target>
<note>Line: 276</note>
</trans-unit>
<trans-unit id="0bd345b58335589d4c2fa1e50ae38619">
<source>Contains states</source>
<target>Contains states</target>
<note>Line: 305</note>
</trans-unit>
<trans-unit id="0c750dacc725ba4047374d2efc56ce3a">
<source>Do you need a tax identification number?</source>
<target>Do you need a tax identification number?</target>
<note>Line: 323</note>
</trans-unit>
<trans-unit id="05820ffcf621269347a1c14d81d20b77">
<source>Display tax label (e.g. "Tax incl.")</source>
<target>Display tax label (e.g. "Tax incl.")</target>
<note>Line: 341</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminLanguagesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a4bc4ae2cbf8be348ecfc863538998bf">
<source>Check to see if a language pack is available for this ISO code.</source>
<target>Check to see if a language pack is available for this ISO code.</target>
<note>Line: 246</note>
</trans-unit>
<trans-unit id="22a31963fda5661b3a0919f7bda0debc">
<source>Translation files</source>
<target>Translation files</target>
<note>Line: 277</note>
</trans-unit>
<trans-unit id="704075d95dec2f52e92cbe2c6e2f61c7">
<source>Theme files</source>
<target>Theme files</target>
<note>Line: 281</note>
</trans-unit>
<trans-unit id="37f3a51de63012d9060d5ff8ccab2b0f">
<source>Mail files</source>
<target>Mail files</target>
<note>Line: 285</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="71777469a202cba33a8985f7d5bf1d97">
<source>Add new state</source>
<target>Add new state</target>
<note>Line: 118</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTaxRulesGroupController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e7c7216c46ae0e04e2012a2137803cca">
<source>Add new tax rules group</source>
<target>Add new tax rules group</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="7ec515dc1920404871d8180791d589f2">
<source>Add a new tax rule</source>
<target>Add a new tax rule</target>
<note>Line: 227</note>
</trans-unit>
<trans-unit id="b39a035a995fc6597c8eb942210d1527">
<source>Behavior</source>
<target>Behavior</target>
<note>Line: 293</note>
</trans-unit>
<trans-unit id="8d4ae51b8b5831db49a6dcde1b83e175">
<source>Tax Rules</source>
<target>Tax Rules</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="af4a7a1f7975e2f67b0dbefb21a2a94d">
<source>New tax rule</source>
<target>New tax rule</target>
<note>Line: 245</note>
</trans-unit>
<trans-unit id="e1ec2a73deaf4b7cf2fea1d51c65ddc2">
<source>Zip/postal code range</source>
<target>Zip/postal code range</target>
<note>Line: 286</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTranslationsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6b13904f9eecabe20d88f942e84e1cb8">
<source>%1$s (Language: %2$s, Theme: %3$s)</source>
<target>%1$s (Language: %2$s, Theme: %3$s)</target>
<note>Line: 136</note>
</trans-unit>
<trans-unit id="3b54d45d2c221c50e916f3be1fc12f2a">
<source>Update translations</source>
<target>Update translations</target>
<note>Line: 176</note>
</trans-unit>
<trans-unit id="6e4fd86b4ea240672daa3c2fe1118fe0">
<source>Expand all fieldsets</source>
<target>Expand all fieldsets</target>
<note>Line: 1766</note>
</trans-unit>
<trans-unit id="e1686cbdbfefdc838c58469866922b6c">
<source>Close all fieldsets</source>
<target>Close all fieldsets</target>
<note>Line: 1769</note>
</trans-unit>
<trans-unit id="80ab38b942fb2da88ca496f8bbe237f7">
<source>Email subject</source>
<target>Email subject</target>
<note>Line: 2528</note>
</trans-unit>
<trans-unit id="673a349a39148b988e9aabf651d31a96">
<source>View HTML version</source>
<target>View HTML version</target>
<note>Line: 2551</note>
</trans-unit>
<trans-unit id="b040fe53badd6b3784735f3d102df0bd">
<source>Edit HTML version</source>
<target>Edit HTML version</target>
<note>Line: 2552</note>
</trans-unit>
<trans-unit id="5f986174fa9cf6c0ddd927e11b68254a">
<source>View/Edit TXT version</source>
<target>View/Edit TXT version</target>
<note>Line: 2553</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminZonesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="77f1ebd0522a27ee9502ab13a242d823">
<source>Add new zone</source>
<target>Add new zone</target>
<note>Line: 75</note>
</trans-unit>
<trans-unit id="dad1f8d794ee0dd7753fe75e73b78f31">
<source>Zones</source>
<target>Zones</target>
<note>Line: 95</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Currency/CommandHandler/ToggleExchangeRateAutomatizationHandler.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8394539f7cc6a58a1b71c2465d84644d">
<source>Live exchange Rate for %shop_name%</source>
<target>Live exchange Rate for %shop_name%</target>
<note>Line: 196</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Kpi/EnabledLanguagesKpi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8ed78ce61d50323c845e812aaccf247a">
<source>Enabled Languages</source>
<target>Enabled Languages</target>
<note>Line: 90</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Kpi/MainCountryKpi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c1aaec25c6e16ac8f28fdc652f1986ec">
<source>Main Country</source>
<target>Main Country</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Kpi/TranslationsKpi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2ffdb9f581f55fb1ae293ec48b151aad">
<source>Front office Translations</source>
<target>Front office Translations</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Form/ChoiceProvider/EmailContentTypeChoiceProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ac101b32dda4448cf13a93fe283dddd8">
<source>Body</source>
<target>Body</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Form/ChoiceProvider/LocalizationPackByIsoCodeChoiceProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="823e3e5a2bec573e4e38853822465914">
<source>%s (local)</source>
<target>%s (local)</target>
<note>Line: 114</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Form/ChoiceProvider/TaxAddressTypeChoiceProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="601d8c4b9f72fc1862013c19b677a499">
<source>Invoice address</source>
<target>Invoice address</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="af0f5bdc5be121b9307687aeeae38c17">
<source>Delivery address</source>
<target>Delivery address</target>
<note>Line: 56</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Form/ChoiceProvider/TranslationTypeChoiceProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fabfbbc841761a5621aea32aff4aa151">
<source>Back office translations</source>
<target>Back office translations</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="445518ee6de9f01f5203fa05e5b83236">
<source>Themes translations</source>
<target>Themes translations</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="3d966df0f234e9180aac80223c2a7e85">
<source>Installed modules translations</source>
<target>Installed modules translations</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="6df6a1378a5ddcdef978aadf494cef5d">
<source>Email translations</source>
<target>Email translations</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="5d1eb86e15320f5677c9502df9c97dd3">
<source>Other translations</source>
<target>Other translations</target>
<note>Line: 60</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CurrencyGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="02c86eb2792f3262c21d030a87e19793">
<source>Symbol</source>
<target>Symbol</target>
<note>Line: 86</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/TaxGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7087cbed62cddb06bd7506c46269f0b5">
<source>Search rate</source>
<target>Search rate</target>
<note>Line: 176</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/International/Geolocation/GeolocationOptionsType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="13a596ad5071982366e29e4f3d76e366">
<source>Visitors cannot see your catalog.</source>
<target>Visitors cannot see your catalog.</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="3850c8049741085bef77450dc5f0dc9a">
<source>Visitors can see your catalog but cannot place an order.</source>
<target>Visitors can see your catalog but cannot place an order.</target>
<note>Line: 88</note>
</trans-unit>
<trans-unit id="4609449450efd4dbe3f05ef2e9c5151d">
<source>All features are available</source>
<target>All features are available</target>
<note>Line: 86</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/International/Localization/ImportLocalizationPackType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b8464cdd84b5f068ad72bf5c4f32163d">
<source>States</source>
<target>States</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="892a326e935b414a79a1eb938afd6ba5">
<source>Units (e.g. weight, volume, distance)</source>
<target>Units (e.g. weight, volume, distance)</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="41661d8cebe0d3d2211676fd8aaf73f7">
<source>Change the behavior of the price display for groups</source>
<target>Change the behavior of the price display for groups</target>
<note>Line: 103</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/International/Translations/AddUpdateLanguageType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="57fa5be19cbdbe09aa4f555b2ee710b3">
<source>Update a language</source>
<target>Update a language</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="369b8db3e9651d0b5d8a13a5f7f9a53a">
<source>Add a language</source>
<target>Add a language</target>
<note>Line: 67</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/International/Translations/ModifyTranslationsType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5aca31cb4d1fbb543b716cbaaf35c65f">
<source>Core (no theme selected)</source>
<target>Core (no theme selected)</target>
<note>Line: 88</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Currency/Blocks/exchange_rates.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="31b7dce9ac35e52f1c4719ac210b7419">
<source>Live exchange rates</source>
<target>Live exchange rates</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="a9df98bcbe3f6c6f366c373674d5008b">
<source>The exchange rates are not automatically updated</source>
<target>The exchange rates are not automatically updated</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="161e96e34f07ec8c967819825f982902">
<source>The exchange rates are automatically updated</source>
<target>The exchange rates are automatically updated</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="8f76a793218248d062ced130c0ffd968">
<source>Update exchange rates</source>
<target>Update exchange rates</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="e75e316ab3a0a8c0c5fc4b48d1a7033f">
<source>Exchange rate</source>
<target>Exchange rate</target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Currency/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="076b68505282c6c0654708db343d6673">
<source>Add new currency</source>
<target>Add new currency</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/Blocks/geolocation_by_ip_address.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="aa3b1c5568c71eb8b7a22e5f07c70cd4">
<source>Geolocation by IP address</source>
<target>Geolocation by IP address</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/Blocks/geolocation_ip_address_whitelist.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b104929231738bd0699db6e6678581b8">
<source>IP address whitelist</source>
<target>IP address whitelist</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="f6572f026526c2b6356149d46db5f0a1">
<source>Whitelisted IP addresses</source>
<target>Whitelisted IP addresses</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/Blocks/geolocation_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="17812004136cffbd9c55b624f8d21557">
<source>The following features are only available if you enable the Geolocation by IP address feature.</source>
<target>The following features are only available if you enable the Geolocation by IP address feature.</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="8beea67a449f1c8e352838c8a1a77111">
<source>Geolocation behavior for restricted countries</source>
<target>Geolocation behavior for restricted countries</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="dd39e763b87f78cae49e9d09b1e5e9d2">
<source>Geolocation behavior for other countries</source>
<target>Geolocation behavior for other countries</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="3d5428a3ea15cf231a5d0651df2452e2">
<source>Select the countries from which your store is accessible</source>
<target>Select the countries from which your store is accessible</target>
<note>Line: 67</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d1e4ac2093276d0228ca8470e7ecbf98">
<source>In order to use Geolocation, please download [1]this file[/1] and extract it (using Winrar or Gzip) into the /app/Resources/geoip/ directory.</source>
<target>In order to use Geolocation, please download [1]this file[/1] and extract it (using Winrar or Gzip) into the /app/Resources/geoip/ directory.</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Language/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c5836008c1649301e29351a55db8f65c">
<source>Flag</source>
<target>Flag</target>
<note>Line: 71</note>
</trans-unit>
<trans-unit id="e59a41e120686e63cbb743f003bea4e6">
<source>Language code</source>
<target>Language code</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="534fd46732986cba0efeda8701592427">
<source>Date format</source>
<target>Date format</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="c11566e30920ed4786e534e5332d5b87">
<source>Date format (full)</source>
<target>Date format (full)</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="a0978fb69022447c12c0db348ad4f00c">
<source>"No-picture" image</source>
<target>"No-picture" image</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="57efe5623fc0d68b37628923808d15d1">
<source>Is RTL language</source>
<target>Is RTL language</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="1e817248a18ffae64e10be49a46fa9ee">
<source>Activate this language.</source>
<target>Activate this language.</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="ad68f9bafd9bf2dcf3865dac55662fd5">
<source>ISO code</source>
<target>ISO code</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Language/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f53b6aa000ea3aa0114e70c1f8737608">
<source>Add new language</source>
<target>Add new language</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/advanced_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="72388067f972c9a43b1ded59297f5b6e">
<source>Language identifier</source>
<target>Language identifier</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="a86844187775f3d99ab7bad450a61d78">
<source>Country identifier</source>
<target>Country identifier</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="94d7422ba3c5b0f2a35f50b048e51c6d">
<source>Default currency</source>
<target>Default currency</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="c96a77fb323a41898c3b6941a58dc741">
<source>Default language</source>
<target>Default language</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="65a9e6dae82101cecd43f16583f8cd37">
<source>Set language from browser</source>
<target>Set language from browser</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="aac4bf78b43b8b815119032038bbee97">
<source>Default country</source>
<target>Default country</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="e93c6cb824cab26f82d9b3446dc8e563">
<source>Set default country from browser language</source>
<target>Set default country from browser language</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="1c96489b890acf7ccbb4bd0dc306870b">
<source>Time zone</source>
<target>Time zone</target>
<note>Line: 87</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/import_localization_pack_block.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1240d2eed41a0fd4e898e6aab64c6732">
<source>Import a localization pack</source>
<target>Import a localization pack</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="75f9936f4fef50cf05561217a24f058c">
<source>Localization pack you want to import</source>
<target>Localization pack you want to import</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="41b72abcfb3ec32e91e9cfa775e49cbd">
<source>Content to import</source>
<target>Content to import</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="345e1dd7e9d9ec15c68486caac639767">
<source>Download pack data</source>
<target>Download pack data</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/local_units.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="216845c195c351faf05ff91c6411bfea">
<source>Local units</source>
<target>Local units</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="f489118ea95c746d648d36bb50c226f0">
<source>Weight unit</source>
<target>Weight unit</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="fff9ff80cc72d571e3d5115b421a27c3">
<source>Distance unit</source>
<target>Distance unit</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="bac94fdafa0ab5ce874f63b75d6d28da">
<source>Volume unit</source>
<target>Volume unit</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="cc13d156306185fd42a860da3049567c">
<source>Dimension unit</source>
<target>Dimension unit</target>
<note>Line: 62</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dcb66ff6e4a2517ade22183779939c9d">
<source>Rate</source>
<target>Rate</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/tax_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1c669d037f8bc785f0e1a9aeb7070367">
<source>Tax options</source>
<target>Tax options</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="783453d461b47241396594776bef68de">
<source>Enable tax</source>
<target>Enable tax</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="9686d924d9453d29fabc55346fc57808">
<source>Display tax in the shopping cart</source>
<target>Display tax in the shopping cart</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="3e61afd38fcb5eca62efcfe46fc6a3c9">
<source>Based on</source>
<target>Based on</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="8e4157c726a8c5cf64361e2d751bc945">
<source>Use ecotax</source>
<target>Use ecotax</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="e92cfa244b5eb9025d07522080468445">
<source>Ecotax</source>
<target>Ecotax</target>
<note>Line: 80</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7c545d3243860a144f6d3410fadd3c08">
<source>Add new tax</source>
<target>Add new tax</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/add_update_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="763d71969e7ee9bff4e5dc8976501f33">
<source>Add / Update a language</source>
<target>Add / Update a language</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="d92acc5a17d29f3f8b7ac58f22fe7df8">
<source>Please select the language you want to add or update</source>
<target>Please select the language you want to add or update</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="524d7e787cc63c50e0d1946ee8ef0bef">
<source>Add or update a language</source>
<target>Add or update a language</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/export_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6700e23ddf33bd4421249c9ef94d6295">
<source>Export a language</source>
<target>Export a language</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="84a63a234d9b35094275bfb41ad46b47">
<source>Select your theme</source>
<target>Select your theme</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/modify_translations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="021257190c6e64120915e008a94a06f8">
<source>Type of translation</source>
<target>Type of translation</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="4dca8188ef80c1e68c7cfc96fdeb3abe">
<source>Select the type of email content</source>
<target>Select the type of email content</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="dd317a8b9f3ecfc5317c2cb586274145">
<source>Select your module</source>
<target>Select your module</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="c96f531c0eda2dece593a2f8df3a58a8">
<source>Select your language</source>
<target>Select your language</target>
<note>Line: 88</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Manufacturer/Blocks/View/products.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0071aa279bd1583754a544277740f047">
<source>Delete item #</source>
<target>Delete item #</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="16ec8a60494224f7fa891897aba8caf8">
<source>1 missing</source>
<target>1 missing</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="026966b734feffa2a2a7c807d268e495">
<source>%nb_translation% expression</source>
<target>%nb_translation% expression</target>
<note>Line: 49
Comment: nb_translations can be 0 or 1</note>
</trans-unit>
<trans-unit id="e3ee9f9a340e253eb5196ce7d53ae2d8">
<source>Search translations</source>
<target>Search translations</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Twig/TranslationsExtension.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c949bd6d096b356fc06f55ec5205e3b6">
<source>%d missing</source>
<target>%d missing</target>
<note>Line: 354</note>
</trans-unit>
<trans-unit id="3a8b99657fcabfc65f45cd1be2b34de9">
<source>%nb_translations% expressions</source>
<target>%nb_translations% expressions</target>
<note>Line: 423</note>
</trans-unit>
<trans-unit id="740b879fdd48f184f798b8018134f630">
<source>Show messages</source>
<target>Show messages</target>
<note>Line: 365</note>
</trans-unit>
<trans-unit id="67b6092e7137b245b034286819367669">
<source>Hide messages</source>
<target>Hide messages</target>
<note>Line: 366</note>
</trans-unit>
<trans-unit id="f5123d6dff8361ad9310560e87c220ef">
<source>%nb_translations% missing</source>
<target>%nb_translations% missing</target>
<note>Line: 467</note>
</trans-unit>
<trans-unit id="f0780b397b7190b7894af3d8d7d91a83">
<source>%nb_translations% translations are missing in %domain%</source>
<target>%nb_translations% translations are missing in %domain%</target>
<note>Line: 475</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,499 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/countries/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ac42ae31827e4ce47e084ecfb68018aa">
<source>This will restore your last registered address format.</source>
<target>This will restore your last registered address format.</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="a551db18a168f7b7af97f05f654f6ebd">
<source>This will restore the default address format for this country.</source>
<target>This will restore the default address format for this country.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="15103dc2a4e70c7865d2b2ed5542f7ee">
<source>This will restore your current address format.</source>
<target>This will restore your current address format.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="658983835e342b548674ebb6d169333f">
<source>This will delete the current address format</source>
<target>This will delete the current address format</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/languages/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c8177e39573538431ca4c24841ee3fbe">
<source>Missing files are marked in red</source>
<target>Missing files are marked in red</target>
<note>Line: 86</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_errors.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3881d16572ee3be6a8ab13f6862b3911">
<source>You MUST use this syntax in your translations. Here are a few examples:</source>
<target>You MUST use this syntax in your translations. Here are a few examples:</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="7cefb4829c6de24b63f7a05716b43bec">
<source>This expression uses a special syntax:</source>
<target>This expression uses a special syntax:</target>
<note>Line: 94</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_mails.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f75f58622599fa286aa5bdd94fb4404d">
<source>Some of these expressions use this special syntax: %s.</source>
<target>Some of these expressions use this special syntax: %s.</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="f324bbd9de83d61ccb5f7d5593aec5b3">
<source>You MUST use this syntax in your translations. Here are several examples:</source>
<target>You MUST use this syntax in your translations. Here are several examples:</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="919a5a4550f8f714f806f5590ed1b66a">
<source>There are [1]%replace%[/1] products</source>
<target>There are [1]%replace%[/1] products</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="06fb8ada95eab3e2b5d4a3e834a9ab10">
<source>"%s" will be replaced by a number.</source>
<target>"%s" will be replaced by a number.</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="cfe3ecf9fcc29ce36de15ee87cebd12b">
<source>List of pages in [1]%replace%[/1]</source>
<target>List of pages in [1]%replace%[/1]</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="a24386154e350ad7c608af84cdb4be11">
<source>"%s" will be replaced by a string.</source>
<target>"%s" will be replaced by a string.</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="9b4ca9541e2c3e7215a5fac1f4cecd2f">
<source>Feature: [1]%1%[/1] ([1]%2%[/1] values)</source>
<target>Feature: [1]%1%[/1] ([1]%2%[/1] values)</target>
<note>Line: 75</note>
</trans-unit>
<trans-unit id="031775df42ef41141d4b4c7d4db89d65">
<source>The numbers enable you to reorder the variables when necessary.</source>
<target>The numbers enable you to reorder the variables when necessary.</target>
<note>Line: 75</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="013afdec32d184dc61040022a45409ca">
<source>Click on the title of a section to open its fieldsets.</source>
<target>Click on the title of a section to open its fieldsets.</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="b3f4e400fe40a25d1c2b0c59e63668cf">
<source>Here you can modify translations for all installed module.</source>
<target>Here you can modify translations for all installed module.</target>
<note>Line: 173</note>
</trans-unit>
<trans-unit id="dd317a8b9f3ecfc5317c2cb586274145">
<source>Select your module</source>
<target>Select your module</target>
<note>Line: 176</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCountriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="abb056fd74a8bdf858dbe3e68c5ea97c">
<source>Restrict country selections in front office to those covered by active carriers</source>
<target>Restrict country selections in front office to those covered by active carriers</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="b33aadd6763bfea56853a7ecf2176382">
<source>Two -- or three -- letter ISO code (e.g. "us" for United States).</source>
<target>Two -- or three -- letter ISO code (e.g. "us" for United States).</target>
<note>Line: 207</note>
</trans-unit>
<trans-unit id="cd2f7b9409e0f1527766ad35aa8bd3c5">
<source>International call prefix, (e.g. 1 for United States).</source>
<target>International call prefix, (e.g. 1 for United States).</target>
<note>Line: 221</note>
</trans-unit>
<trans-unit id="92de0162cbdfa60f671ba3cad1d392a1">
<source>Geographical region.</source>
<target>Geographical region.</target>
<note>Line: 246</note>
</trans-unit>
<trans-unit id="98ae2fd635525d30d2b0e8b643f9a23c">
<source>Indicate the format of the postal code: use L for a letter, N for a number, and C for the country's ISO 3166-1 alpha-2 code. For example, NNNNN for the United States, France, Poland and many other; LNNNNLLL for Argentina, etc. If you do not want PrestaShop to verify the postal code for this country, leave it blank.</source>
<target>Indicate the format of the postal code: use L for a letter, N for a number, and C for the country's ISO 3166-1 alpha-2 code. For example, NNNNN for the United States, France, Poland and many other; LNNNNLLL for Argentina, etc. If you do not want PrestaShop to verify the postal code for this country, leave it blank.</target>
<note>Line: 272</note>
</trans-unit>
<trans-unit id="a2ddbdfb29a0708bd711601f9277435c">
<source>Display this country to your customers (the selected country will always be displayed in the Back Office).</source>
<target>Display this country to your customers (the selected country will always be displayed in the Back Office).</target>
<note>Line: 301</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b6ff06f41cb66b5b89be6a3670e40d63">
<source>Provide the state name to be displayed in addresses and on invoices.</source>
<target>Provide the state name to be displayed in addresses and on invoices.</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="473d5a5e7a18ca5e30b399ae0dfda18e">
<source>1 to 4 letter ISO code.</source>
<target>1 to 4 letter ISO code.</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="d44080730b4d80fb65b9018d57c058b3">
<source>You can prefix it with the country ISO code if needed.</source>
<target>You can prefix it with the country ISO code if needed.</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="0f6ca10753a64573af4ae286c7421e62">
<source>Country where the state is located.</source>
<target>Country where the state is located.</target>
<note>Line: 171</note>
</trans-unit>
<trans-unit id="68240d02aad03eed41bc52305688a035">
<source>Only the countries with the option "contains states" enabled are displayed.</source>
<target>Only the countries with the option "contains states" enabled are displayed.</target>
<note>Line: 171</note>
</trans-unit>
<trans-unit id="15c5d5dd58a9e70b8b86a7447dd00f70">
<source>Geographical region where this state is located.</source>
<target>Geographical region where this state is located.</target>
<note>Line: 184</note>
</trans-unit>
<trans-unit id="ec92dbe75bbcc2fbf4cad6302df97c19">
<source>Used for shipping</source>
<target>Used for shipping</target>
<note>Line: 185</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTaxRulesGroupController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8bd279ebcd912dc792663bc65a1fb499">
<source>You can define a range of Zip/postal codes (e.g., 75000-75015) or simply use one Zip/postal code.</source>
<target>You can define a range of Zip/postal codes (e.g., 75000-75015) or simply use one Zip/postal code.</target>
<note>Line: 289</note>
</trans-unit>
<trans-unit id="ce9c5fc1032ac5aa03a3d248022773df">
<source>You must define the behavior if an address matches multiple rules:</source>
<target>You must define the behavior if an address matches multiple rules:</target>
<note>Line: 315</note>
</trans-unit>
<trans-unit id="439fa6ce423495b01ffd31ea56b33335">
<source>- This tax only: Will apply only this tax</source>
<target>- This tax only: Will apply only this tax</target>
<note>Line: 316</note>
</trans-unit>
<trans-unit id="4019ba4535164cd55c61ac20379a8aa9">
<source>- Combine: Combine taxes (e.g.: 10% + 5% = 15%)</source>
<target>- Combine: Combine taxes (e.g.: 10% + 5% = 15%)</target>
<note>Line: 317</note>
</trans-unit>
<trans-unit id="dabf677c95d59c749ea5d6d6d22012c4">
<source><![CDATA[- One after another: Apply taxes one after another (e.g.: 100 + 10% => 110 + 5% = 115.5)]]></source>
<target><![CDATA[- One after another: Apply taxes one after another (e.g.: 100 + 10% => 110 + 5% = 115.5)]]></target>
<note>Line: 318</note>
</trans-unit>
<trans-unit id="7475ec0d41372a307c497acb7eeea8c4">
<source>No Tax</source>
<target>No Tax</target>
<note>Line: 332</note>
</trans-unit>
<trans-unit id="7a3ded393734410a3d3514e10b672c92">
<source>(Total tax: 9%)</source>
<target>(Total tax: 9%)</target>
<note>Line: 335</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminZonesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f3211eeee6d9a3f9208dbf61903eaafa">
<source>Zone name (e.g. Africa, West Coast, Neighboring Countries).</source>
<target>Zone name (e.g. Africa, West Coast, Neighboring Countries).</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="976bb0e0c56156bd36831e1bf244e7ed">
<source>Allow or disallow shipping to this zone.</source>
<target>Allow or disallow shipping to this zone.</target>
<note>Line: 124</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Currency/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c7c838899b96b2b17ea954d2578cf541">
<source>Exchange rates are calculated from one unit of your shop's default currency. For example, if the default currency is euros and your chosen currency is dollars, type "1.20" (1€ = $1.20).</source>
<target>Exchange rates are calculated from one unit of your shop's default currency. For example, if the default currency is euros and your chosen currency is dollars, type "1.20" (1€ = $1.20).</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="4ef5571f164a6a7fcc9f4625d14e260b">
<source>ISO code (e.g. USD for Dollars, EUR for Euros, etc.).</source>
<target>ISO code (e.g. USD for Dollars, EUR for Euros, etc.).</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="0ab7db7a10b7efc8270dd215c2a4ada7">
<source><![CDATA[Exchange rates are calculated from one unit of your shop's default currency. For example, if the default currency is euros and your chosen currency is dollars, type "1.20" (1€ = $1.20).]]></source>
<target><![CDATA[Exchange rates are calculated from one unit of your shop's default currency. For example, if the default currency is euros and your chosen currency is dollars, type "1.20" (1€ = $1.20).]]></target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/Blocks/geolocation_by_ip_address.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c12f8445861a605b788eb90e2c47f02a">
<source>This option allows you, among other things, to restrict access to your shop for certain countries. See below.</source>
<target>This option allows you, among other things, to restrict access to your shop for certain countries. See below.</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Geolocation/Blocks/geolocation_ip_address_whitelist.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="632a9a67e93d72324b63a0d0626cd2a2">
<source>You can add IP addresses that will always be allowed to access your shop (e.g. Google bots' IP).</source>
<target>You can add IP addresses that will always be allowed to access your shop (e.g. Google bots' IP).</target>
<note>Line: 39</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Language/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8ffd2caeab1261d512816def0690329d">
<source>Two-letter ISO code (e.g. FR, EN, DE).</source>
<target>Two-letter ISO code (e.g. FR, EN, DE).</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="5b5f150ebfc12cefc4bf889c3fcb7149">
<source>IETF language tag (e.g. en-US, pt-BR).</source>
<target>IETF language tag (e.g. en-US, pt-BR).</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="cb832fdb1310ad1cb4b36705e3e043d2">
<source>Short date format (e.g., Y-m-d).</source>
<target>Short date format (e.g., Y-m-d).</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="11fb95583b7d678407bb64582a2ca3c6">
<source>Full date format (e.g., Y-m-d H:i:s).</source>
<target>Full date format (e.g., Y-m-d H:i:s).</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="342634d26b64e430960c263ab202e02d">
<source>Upload the country flag from your computer.</source>
<target>Upload the country flag from your computer.</target>
<note>Line: 72</note>
</trans-unit>
<trans-unit id="e63a2fc0fc5da5af27fbf5c515beb044">
<source>Image is displayed when "no picture is found".</source>
<target>Image is displayed when "no picture is found".</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="6f570144d5f5ca1404b40cab00a9fa3f">
<source>Enable if this language is read from right to left.</source>
<target>Enable if this language is read from right to left.</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="6235bd7718134ee703c36fb7d3c78e69">
<source>(Experimental: your theme must be compliant with RTL languages).</source>
<target>(Experimental: your theme must be compliant with RTL languages).</target>
<note>Line: 82</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/advanced_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5aa30e77b6c3af8d4affb7b5162d60fb">
<source>The ISO 639-1 identifier for the language of the country where your web server is located (en, fr, sp, ru, pl, nl, etc.).</source>
<target>The ISO 639-1 identifier for the language of the country where your web server is located (en, fr, sp, ru, pl, nl, etc.).</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="31de2e2af2f6b180fe4f3969affff0de">
<source>The ISO 3166-1 alpha-2 identifier for the country/region where your web server is located, in lowercase (us, gb, fr, sp, ru, pl, nl, etc.).</source>
<target>The ISO 3166-1 alpha-2 identifier for the country/region where your web server is located, in lowercase (us, gb, fr, sp, ru, pl, nl, etc.).</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c4b8d8d900acf4712d4511f6c39e6578">
<source>The default language used in your shop.</source>
<target>The default language used in your shop.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="e932e3b39aa40f0efe327c599cbd406f">
<source>Set browser language as default language</source>
<target>Set browser language as default language</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="59a0d89a785e4e00f80b5d6154a446d0">
<source>The default country used in your shop.</source>
<target>The default country used in your shop.</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="2d84287b4a1226bb820aac87116f401a">
<source>Set country corresponding to browser language</source>
<target>Set country corresponding to browser language</target>
<note>Line: 71</note>
</trans-unit>
<trans-unit id="eb99748a0429320ff7a0120625ace088">
<source>The default currency used in your shop.</source>
<target>The default currency used in your shop.</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/import_localization_pack_block.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bb0fa2ec7b2d1fcfc14bf6587cc51a66">
<source>If set to yes then the localization pack will be downloaded from prestashop.com. Otherwise the local xml file found in the localization folder of your PrestaShop installation will be used.</source>
<target>If set to yes then the localization pack will be downloaded from prestashop.com. Otherwise the local xml file found in the localization folder of your PrestaShop installation will be used.</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/local_units.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9da30b4a4eab6c20f3ba7ddc89c18d6d">
<source>The default weight unit for your shop (e.g. "kg" for kilograms, "lbs" for pound-mass, etc.).</source>
<target>The default weight unit for your shop (e.g. "kg" for kilograms, "lbs" for pound-mass, etc.).</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="f7f469cfef2bd3d4d0a12cc7875df046">
<source>The default distance unit for your shop (e.g. "km" for kilometer, "mi" for mile, etc.).</source>
<target>The default distance unit for your shop (e.g. "km" for kilometer, "mi" for mile, etc.).</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="dd82d34d95398e0fe58f9b2edfc933fa">
<source>The default volume unit for your shop (e.g. "L" for liter, "gal" for gallon, etc.).</source>
<target>The default volume unit for your shop (e.g. "L" for liter, "gal" for gallon, etc.).</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="2bec6d5b97c142617d81b6abfd8611a1">
<source>The default dimension unit for your shop (e.g. "cm" for centimeter, "in" for inch, etc.).</source>
<target>The default dimension unit for your shop (e.g. "cm" for centimeter, "in" for inch, etc.).</target>
<note>Line: 62</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="76fcfab4720e7e09c9ef0afbd9fe8ed9">
<source>Tax name to display in carts and on invoices (e.g. "VAT").</source>
<target>Tax name to display in carts and on invoices (e.g. "VAT").</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="9441798e99bc6547fc74a158dbf119d6">
<source>Format: XX.XX or XX.XXX (e.g. 19.60 or 13.925)</source>
<target>Format: XX.XX or XX.XXX (e.g. 19.60 or 13.925)</target>
<note>Line: 49</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/tax_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9065c9561edb357b57b213c15813cb32">
<source>If you disable the ecotax, the ecotax for all your products will be set to 0.</source>
<target>If you disable the ecotax, the ecotax for all your products will be set to 0.</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="fc6d7eca192247f8406fc4fc8ff896ef">
<source>Select whether or not to include tax on purchases.</source>
<target>Select whether or not to include tax on purchases.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="ea9d4f5bdfaaa411eb8c74355aec4553">
<source>Select whether or not to display tax on a distinct line in the cart.</source>
<target>Select whether or not to display tax on a distinct line in the cart.</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="e17a0f166831874c90c9a13934c45cf7">
<source>Define the ecotax (e.g. French ecotax: 19.6%).</source>
<target>Define the ecotax (e.g. French ecotax: 19.6%).</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/add_update_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9deac468eeaf8b5b0d2c4bee2857841a">
<source>You can add or update a language directly from the PrestaShop website here.</source>
<target>You can add or update a language directly from the PrestaShop website here.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/copy_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d4e007a94451a69f593c3ce0e06e08f2">
<source>Copies data from one language to another.</source>
<target>Copies data from one language to another.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="3cd0f0cce3990de970f803ffc19f68e1">
<source>Warning: This will replace all of the existing data inside the destination language.</source>
<target>Warning: This will replace all of the existing data inside the destination language.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="8a6815aee1e25633b568be3153f4e779">
<source>If necessary [1][2] you must first create a new language[/1].</source>
<target>If necessary [1][2] you must first create a new language[/1].</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/export_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a577e13cac9ee85d6f298e0a8deffeee">
<source>Export data from one language to a file (language pack).</source>
<target>Export data from one language to a file (language pack).</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="234350fd7a2ea83720f91f40eb2985a9">
<source>Select which theme you would like to export your translations to.</source>
<target>Select which theme you would like to export your translations to.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/modify_translations.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8e67ab4e5869bb5521650ed40d448438">
<source>Here you can modify translations for every line of text inside PrestaShop.</source>
<target>Here you can modify translations for every line of text inside PrestaShop.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="00fd55ca2b1b20cca50d295393b32440">
<source>First, select a type of translation (such as "Back office" or "Installed modules"), and then select the language you want to translate strings in.</source>
<target>First, select a type of translation (such as "Back office" or "Installed modules"), and then select the language you want to translate strings in.</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="15ba451caecdf6917bcd4d150f33fb7c">
<source>Search a word or expression, e.g.: "Order confirmation"</source>
<target>Search a word or expression, e.g.: "Order confirmation"</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,794 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/countries/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="708526e44bef1d8fcd0d67ddf61044d5">
<source>Are you sure you want to restore the default address format for this country?</source>
<target>Are you sure you want to restore the default address format for this country?</target>
<note>Line: 109</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/languages/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f1dd3f4aa197c3cb588dce3911e990b2">
<source>A language pack is available for this ISO.</source>
<target>A language pack is available for this ISO.</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="3ad7d3a0bcf9313e6efc3ef183b779d0">
<source>The Prestashop version compatible with this language and your system is:</source>
<target>The Prestashop version compatible with this language and your system is:</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="6b1fb1c361571071fe0f6e2055c39dcb">
<source>After creating the language, you can import the content of the language pack, which you can download under "International -- Translations."</source>
<target>After creating the language, you can import the content of the language pack, which you can download under "International -- Translations."</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="a6669356dbb699457f5750c1b6e0ab0d">
<source>No language pack is available on prestashop.com for this ISO code</source>
<target>No language pack is available on prestashop.com for this ISO code</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="2c148c0631e11553ded2c0cb527be862">
<source>This language pack is NOT complete and cannot be used in the front or back office because some files are missing.</source>
<target>This language pack is NOT complete and cannot be used in the front or back office because some files are missing.</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_errors.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5d27fef01a54790de11db21f1ed47892">
<source>%s at least, or you will have to edit the translation files manually.</source>
<target>%s at least, or you will have to edit the translation files manually.</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_mails.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="06a92b5dc72bff3b98bf4b932ce72864">
<source>Apache mod_security is activated on your server. This could result in some Bad Request errors</source>
<target>Apache mod_security is activated on your server. This could result in some Bad Request errors</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="1f0f8b59397f34d499b181297714713a">
<source>Warning! Your hosting provider is using the Suhosin patch for PHP, which limits the maximum number of fields allowed in a form:</source>
<target>Warning! Your hosting provider is using the Suhosin patch for PHP, which limits the maximum number of fields allowed in a form:</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="bbfb7a636f839052067cc86c39fa595a">
<source>%limit% for suhosin.post.max_vars.</source>
<target>%limit% for suhosin.post.max_vars.</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="e97da54b23c78752578cd7fa01e8866d">
<source>%limit% for suhosin.request.max_vars.</source>
<target>%limit% for suhosin.request.max_vars.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="308c1cf98be9973142833c9a9dbbc2ef">
<source>Please ask your hosting provider to increase the Suhosin limit to</source>
<target>Please ask your hosting provider to increase the Suhosin limit to</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="5ad040870ae5ccaeb2d57e4d052163a4">
<source>Warning! Your PHP configuration limits the maximum number of fields allowed in a form:</source>
<target>Warning! Your PHP configuration limits the maximum number of fields allowed in a form:</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="5607dc45ebdfc0baaab64d944aa88f47">
<source>for max_input_vars.</source>
<target>for max_input_vars.</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="6e709babf4b5a0ed4194ad5240e1be2c">
<source>Please ask your hosting provider to increase this limit to</source>
<target>Please ask your hosting provider to increase this limit to</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="4fb6a3beb82f8d8aa4bbdf8f5a0c35fa">
<source>%s at least, or you will have to edit the translation files.</source>
<target>%s at least, or you will have to edit the translation files.</target>
<note>Line: 49</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7cefb4829c6de24b63f7a05716b43bec">
<source>This expression uses a special syntax:</source>
<target>This expression uses a special syntax:</target>
<note>Line: 140</note>
</trans-unit>
</body>
</file>
<file original="classes/Language.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="87c6e26b4d5c8e6c145691758c25b769">
<source>Fatal error: IETF code %s is not correct</source>
<target>Fatal error: IETF code %s is not correct</target>
<note>Line: 831</note>
</trans-unit>
<trans-unit id="bec88b0b441e9deb3008eb5b2a57ec70">
<source>Sorry this language is not available</source>
<target>Sorry this language is not available</target>
<note>Line: 1095</note>
</trans-unit>
<trans-unit id="edeb9e20655b946e4bee4ac44a6c0a7f">
<source>Server does not have permissions for writing.</source>
<target>Server does not have permissions for writing.</target>
<note>Line: 1121
Comment: @todo Throw exception</note>
</trans-unit>
<trans-unit id="19429992fd747ce8d7606c7ddb7fa272">
<source>Language pack unavailable.</source>
<target>Language pack unavailable.</target>
<note>Line: 1134
Comment: @todo Throw exception</note>
</trans-unit>
<trans-unit id="2e3dec4700000b6db379437f7d8d9fac">
<source>An error occurred while creating the language: %s</source>
<target>An error occurred while creating the language: %s</target>
<note>Line: 1204</note>
</trans-unit>
</body>
</file>
<file original="classes/LocalizationPack.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dd7edad69f95c053248e9b53eab73826">
<source>Cannot load country: %d</source>
<target>Cannot load country: %d</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="5408a3468e366610d70dc31825b3ef3d">
<source>Cannot enable the associated country: %s</source>
<target>Cannot enable the associated country: %s</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="db3f419ede0b78fcf31491509e68db40">
<source>Invalid Zone name.</source>
<target>Invalid Zone name.</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="be9fddade234ff9b16a1d92d62963b8e">
<source>Invalid state properties.</source>
<target>Invalid state properties.</target>
<note>Line: 169</note>
</trans-unit>
<trans-unit id="b19f9ad94a42c56d4a2d89aaca63bafb">
<source>Cannot update the associated country: %s</source>
<target>Cannot update the associated country: %s</target>
<note>Line: 178</note>
</trans-unit>
<trans-unit id="e970d66f1c952edf7a4e5dfcf3e18958">
<source>An error occurred while adding the state.</source>
<target>An error occurred while adding the state.</target>
<note>Line: 183</note>
</trans-unit>
<trans-unit id="28c39342f22a394f233ec0cba0ecfa02">
<source>An error occurred while fetching the state.</source>
<target>An error occurred while fetching the state.</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="37c73343e4118943bc088bb4ad94a56c">
<source>Invalid tax properties.</source>
<target>Invalid tax properties.</target>
<note>Line: 226</note>
</trans-unit>
<trans-unit id="da2b28e84d7f376b073d2c31b0cb937b">
<source>An error occurred while importing the tax: %s</source>
<target>An error occurred while importing the tax: %s</target>
<note>Line: 232</note>
</trans-unit>
<trans-unit id="36f9983aadfde9d77db0d357abe6e85e">
<source>This tax rule cannot be saved.</source>
<target>This tax rule cannot be saved.</target>
<note>Line: 256</note>
</trans-unit>
<trans-unit id="19f29a24f0ccb9b96b37182473b27d63">
<source>Invalid currency properties.</source>
<target>Invalid currency properties.</target>
<note>Line: 344</note>
</trans-unit>
<trans-unit id="0e7c10cc4eabebc9bd8f1b9cb8b81bb6">
<source>An error occurred while importing the currency: %s</source>
<target>An error occurred while importing the currency: %s</target>
<note>Line: 350</note>
</trans-unit>
<trans-unit id="4a11be1a3905ec59ca2d35a068de6f2e">
<source>Localization pack corrupted: wrong unit type.</source>
<target>Localization pack corrupted: wrong unit type.</target>
<note>Line: 489</note>
</trans-unit>
<trans-unit id="28194875b1f41da98a320b0c31e658a2">
<source>An error occurred while setting the units.</source>
<target>An error occurred while setting the units.</target>
<note>Line: 494</note>
</trans-unit>
<trans-unit id="0964494eb4e763fd08c6004a31b4b8a7">
<source>An error occurred while installing the module: %s</source>
<target>An error occurred while installing the module: %s</target>
<note>Line: 528</note>
</trans-unit>
<trans-unit id="e9b1cabd191f8141419c43cc46802e35">
<source>An error occurred while uninstalling the module: %s</source>
<target>An error occurred while uninstalling the module: %s</target>
<note>Line: 533</note>
</trans-unit>
<trans-unit id="962f6e835582ebb404a37893f46c60f3">
<source>An error has occurred, this module does not exist: %s</source>
<target>An error has occurred, this module does not exist: %s</target>
<note>Line: 539</note>
</trans-unit>
<trans-unit id="e7ae5e7fbebb7b087110d07b06bd2418">
<source>An error occurred during the configuration setup: %1$s</source>
<target>An error occurred during the configuration setup: %1$s</target>
<note>Line: 567</note>
</trans-unit>
<trans-unit id="b34f6454b80599ab92262b1da79a9edb">
<source>An error occurred during the default group update</source>
<target>An error occurred during the default group update</target>
<note>Line: 605</note>
</trans-unit>
<trans-unit id="09a0fad4c9a9702b2db457f6bff88f3d">
<source>An error has occurred during the default group update</source>
<target>An error has occurred during the default group update</target>
<note>Line: 609</note>
</trans-unit>
</body>
</file>
<file original="classes/Translate.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="753200ddd6c25c2b4875afc70bb6d4fc">
<source>Invalid language ISO code (%s)</source>
<target>Invalid language ISO code (%s)</target>
<note>Line: 314</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/AdminController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bb01c8c21884e974df8517110c92b22a">
<source>The translation was added successfully, but the language has not been created.</source>
<target>The translation was added successfully, but the language has not been created.</target>
<note>Line: 489</note>
</trans-unit>
<trans-unit id="ae99f365ee39176c3ab50b76a95cf629">
<source>Cannot add configuration %1$s for %2$s language</source>
<target>Cannot add configuration %1$s for %2$s language</target>
<note>Line: 1521</note>
</trans-unit>
</body>
</file>
<file original="classes/tax/TaxManagerModule.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="253356cdb3cd6af1a6028200326de711">
<source>Incorrect Tax Manager class [%s]</source>
<target>Incorrect Tax Manager class [%s]</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="20eb7f9857d85d1d0c8a1e0ddf8545b8">
<source>Tax Manager class not found [%s]</source>
<target>Tax Manager class not found [%s]</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="classes/tax/TaxRulesGroup.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6f3455d187a23443796efdcbe044096b">
<source>No tax</source>
<target>No tax</target>
<note>Line: 150</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCountriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e07a23e507642ef04f449a7a78f59d38">
<source>This ISO code already exists.You cannot create two countries with the same ISO code.</source>
<target>This ISO code already exists.You cannot create two countries with the same ISO code.</target>
<note>Line: 411</note>
</trans-unit>
<trans-unit id="28064049c0d480c2fdeafd456977da8d">
<source>Invalid address layout %s</source>
<target>Invalid address layout %s</target>
<note>Line: 446</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCurrenciesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1a93d2c04e8276471b3c198d1ad95098">
<source>The currency conversion rate cannot be equal to 0.</source>
<target>The currency conversion rate cannot be equal to 0.</target>
<note>Line: 284</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminLanguagesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4749a02e87a1b69cc421bf97c5353956">
<source>When you delete a language, all related translations in the database will be deleted. Are you sure you want to proceed?</source>
<target>When you delete a language, all related translations in the database will be deleted. Are you sure you want to proceed?</target>
<note>Line: 103</note>
</trans-unit>
<trans-unit id="5c61f1e9d7d492c795142ceb39900050">
<source>Flag and "No picture" image fields are required.</source>
<target>Flag and "No picture" image fields are required.</target>
<note>Line: 416</note>
</trans-unit>
<trans-unit id="1b3a472a4556d51d2169e947280e0400">
<source>An error occurred while resizing "No picture" image to your product directory.</source>
<target>An error occurred while resizing "No picture" image to your product directory.</target>
<note>Line: 480</note>
</trans-unit>
<trans-unit id="2b9a5da945495f5101d57abbf2a7083c">
<source>An error occurred while resizing "No picture" image to your category directory.</source>
<target>An error occurred while resizing "No picture" image to your category directory.</target>
<note>Line: 483</note>
</trans-unit>
<trans-unit id="fea874a66e2e09d727c76264844ff688">
<source>An error occurred while resizing "No picture" image to your brand directory.</source>
<target>An error occurred while resizing "No picture" image to your brand directory.</target>
<note>Line: 486</note>
</trans-unit>
<trans-unit id="5f17acb89d2ab83c9138774bfd05ab16">
<source>An error occurred during image deletion process.</source>
<target>An error occurred during image deletion process.</target>
<note>Line: 518</note>
</trans-unit>
<trans-unit id="7aa19852b281887173d096f6700cdebf">
<source>Iso code is not valid</source>
<target>Iso code is not valid</target>
<note>Line: 545</note>
</trans-unit>
<trans-unit id="da7e8b45fda5783ed027b88cc33fdfc1">
<source>Technical Error: ps_version is not valid</source>
<target>Technical Error: ps_version is not valid</target>
<note>Line: 551</note>
</trans-unit>
<trans-unit id="29298b5d89d0bbdfa92fb1d6e27188bd">
<source>Wrong ISO code, or the selected language pack is unavailable.</source>
<target>Wrong ISO code, or the selected language pack is unavailable.</target>
<note>Line: 564</note>
</trans-unit>
<trans-unit id="dc2dde59d57d3bfd6881be1392c54280">
<source>Technical Error: translation server unreachable.</source>
<target>Technical Error: translation server unreachable.</target>
<note>Line: 568</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="aa28d701be690425c5518b723668f6f7">
<source>This ISO code already exists. You cannot create two states with the same ISO code.</source>
<target>This ISO code already exists. You cannot create two states with the same ISO code.</target>
<note>Line: 229</note>
</trans-unit>
<trans-unit id="dae008137b79aa8e5c0f2aed6d1db503">
<source>This state was used in at least one address. It cannot be removed.</source>
<target>This state was used in at least one address. It cannot be removed.</target>
<note>Line: 244</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTaxRulesGroupController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="45f3b37902e09b041709484fd75cab22">
<source>A tax rule already exists for this country/state with tax only behavior.</source>
<target>A tax rule already exists for this country/state with tax only behavior.</target>
<note>Line: 437</note>
</trans-unit>
<trans-unit id="97d8fb4588d1efe9731fd4f82e071924">
<source>The Zip/postal code is invalid. It must be typed as follows: %format% for %country%.</source>
<target>The Zip/postal code is invalid. It must be typed as follows: %format% for %country%.</target>
<note>Line: 465</note>
</trans-unit>
<trans-unit id="2ff5095fd8289ccdaeca9c5e7d379fd2">
<source>An error has occurred: Cannot save the current tax rule.</source>
<target>An error has occurred: Cannot save the current tax rule.</target>
<note>Line: 491</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTaxesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3311c10f0830ae7b6ad64674777c3f34">
<source>This tax is currently in use as a tax rule. Are you sure you'd like to continue?</source>
<target>This tax is currently in use as a tax rule. Are you sure you'd like to continue?</target>
<note>Line: 152</note>
</trans-unit>
<trans-unit id="8eeccbbbc36b19ed4e82d2eca4055d4d">
<source>This tax is currently in use as a tax rule. If you continue, this tax will be removed from the tax rule. Are you sure you'd like to continue?</source>
<target>This tax is currently in use as a tax rule. If you continue, this tax will be removed from the tax rule. Are you sure you'd like to continue?</target>
<note>Line: 177</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminTranslationsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c4e5aa158727e2041778d545424797da">
<source>An error occurred while copying data.</source>
<target>An error occurred while copying data.</target>
<note>Line: 402</note>
</trans-unit>
<trans-unit id="b5f3291b6db7481e8ca0da4a00718cf9">
<source>Impossible to create the directory "%folder%".</source>
<target>Impossible to create the directory "%folder%".</target>
<note>Line: 427</note>
</trans-unit>
<trans-unit id="ec531fd2b656df91f11e8f94b2bd2f9b">
<source>An error occurred while creating archive.</source>
<target>An error occurred while creating archive.</target>
<note>Line: 546</note>
</trans-unit>
<trans-unit id="b10dfa68dec5e313508a4a55eedae7d1">
<source>Please select a language and a theme.</source>
<target>Please select a language and a theme.</target>
<note>Line: 548</note>
</trans-unit>
<trans-unit id="02ae08296d544eb7c674182122645631">
<source>Tab "%s" is not valid</source>
<target>Tab "%s" is not valid</target>
<note>Line: 708</note>
</trans-unit>
<trans-unit id="737b7d8e0108e60b272f6e5a0eaf6ef2">
<source>Validation failed for: %file%</source>
<target>Validation failed for: %file%</target>
<note>Line: 790</note>
</trans-unit>
<trans-unit id="e7e5ca2e62158b89d7583ac6936830a5">
<source>Unidentified file found: %file%</source>
<target>Unidentified file found: %file%</target>
<note>Line: 793</note>
</trans-unit>
<trans-unit id="9831c9e35b4d39d939363aa5629e00f2">
<source>The archive cannot be extracted.</source>
<target>The archive cannot be extracted.</target>
<note>Line: 851</note>
</trans-unit>
<trans-unit id="6f2981f3239ff532c94509a6f98e11c3">
<source>ISO CODE invalid "%iso_code%" for the following file: "%file%"</source>
<target>ISO CODE invalid "%iso_code%" for the following file: "%file%"</target>
<note>Line: 853</note>
</trans-unit>
<trans-unit id="299dd7d59920216689a1749def7fd939">
<source>Cannot write to the theme's language file (%s). Please check writing permissions.</source>
<target>Cannot write to the theme's language file (%s). Please check writing permissions.</target>
<note>Line: 963</note>
</trans-unit>
<trans-unit id="78973deca6d26ce225f6f66c6c30dd54">
<source>Invalid theme "%theme%"</source>
<target>Invalid theme "%theme%"</target>
<note>Line: 1813</note>
</trans-unit>
<trans-unit id="7d65d1400b9d08c5c638682170ff4d7c">
<source>Invalid iso code "%iso_code%"</source>
<target>Invalid iso code "%iso_code%"</target>
<note>Line: 1418</note>
</trans-unit>
<trans-unit id="b399fb01ee4e0a8ec1681fb9bcb31ce0">
<source>This %type_content% file extension is not accepted.</source>
<target>This %type_content% file extension is not accepted.</target>
<note>Line: 1651</note>
</trans-unit>
<trans-unit id="1e5ec3cd42b5bac1b06b99f67cba41dd">
<source>Invalid module name "%module%"</source>
<target>Invalid module name "%module%"</target>
<note>Line: 1660</note>
</trans-unit>
<trans-unit id="c68e9fe9015c5779289f32e2bdef0a7b">
<source>Invalid mail name "%mail%"</source>
<target>Invalid mail name "%mail%"</target>
<note>Line: 1664</note>
</trans-unit>
<trans-unit id="40f5c232e433d178a4f912b3092d7df1">
<source>Directory "%folder%" cannot be created</source>
<target>Directory "%folder%" cannot be created</target>
<note>Line: 1686</note>
</trans-unit>
<trans-unit id="ccdf1aa6f4cb029f9846e53006115905">
<source>Your email translations contain some invalid HTML and cannot be saved. Please check your content.</source>
<target>Your email translations contain some invalid HTML and cannot be saved. Please check your content.</target>
<note>Line: 1692</note>
</trans-unit>
<trans-unit id="f1c030f2fd8f1b382a4bffd04af59c2d">
<source>Your HTML email templates cannot contain JavaScript code.</source>
<target>Your HTML email templates cannot contain JavaScript code.</target>
<note>Line: 1698</note>
</trans-unit>
<trans-unit id="5dc4babbd10d00e89d8e46a12942d394">
<source>Empty string found, please edit: "%file%"</source>
<target>Empty string found, please edit: "%file%"</target>
<note>Line: 1847</note>
</trans-unit>
<trans-unit id="f2aca97fb94315864fd2fa52f3100f1e">
<source>There is an error in template, an empty string has been found. Please edit: "%file%"</source>
<target>There is an error in template, an empty string has been found. Please edit: "%file%"</target>
<note>Line: 2118</note>
</trans-unit>
<trans-unit id="616d8e7e6c0dc755a7e932c4db698317">
<source>The module directory must be writable.</source>
<target>The module directory must be writable.</target>
<note>Line: 2181</note>
</trans-unit>
<trans-unit id="1078d7e980a5a2fe78762cafd8480f0a">
<source>A mail directory exists for the "%iso_code%" language, but not for the default language (%language%) in %folder%</source>
<target>A mail directory exists for the "%iso_code%" language, but not for the default language (%language%) in %folder%</target>
<note>Line: 2445</note>
</trans-unit>
<trans-unit id="7cf50c9ffecf05f3befc1134eba0ef45">
<source>missing translation(s)</source>
<target>missing translation(s)</target>
<note>Line: 2507</note>
</trans-unit>
<trans-unit id="fda679a1f72b8a9676b6926a81c5e139">
<source>No Subject was found for %mail_name% in the database.</source>
<target>No Subject was found for %mail_name% in the database.</target>
<note>Line: 2546</note>
</trans-unit>
<trans-unit id="a662aa2e6538df75742383c7db8f3bd5">
<source>There was a problem getting the mail files.</source>
<target>There was a problem getting the mail files.</target>
<note>Line: 2583</note>
</trans-unit>
<trans-unit id="3eefb74a46023e6c9152c92803750f2b">
<source>English language files must exist in %folder% folder</source>
<target>English language files must exist in %folder% folder</target>
<note>Line: 2584</note>
</trans-unit>
<trans-unit id="c4c005678d26a593268006bc4a44c179">
<source>Cannot write language file for email subjects. Path is: %folder%</source>
<target>Cannot write language file for email subjects. Path is: %folder%</target>
<note>Line: 2981</note>
</trans-unit>
<trans-unit id="05b17ff64944116b14a3ec88f2080a5e">
<source>Cannot write into the "%file%"</source>
<target>Cannot write into the "%file%"</target>
<note>Line: 3183</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Language/LanguageCopier.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4d7541fb66c9fc832a20a6f48b4d5613">
<source>Cannot create the folder "%folder%". Please check your directory writing permissions.</source>
<target>Cannot create the folder "%folder%". Please check your directory writing permissions.</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="102c75f83994f206179912d118b8bc3c">
<source>You must select two languages in order to copy data from one to another.</source>
<target>You must select two languages in order to copy data from one to another.</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="fc15f62c244c6d8035874d556e6a7f7b">
<source>You must select two themes in order to copy data from one to another.</source>
<target>You must select two themes in order to copy data from one to another.</target>
<note>Line: 181</note>
</trans-unit>
<trans-unit id="0a7402299bf78a7624da443a12cd78ab">
<source>There is nothing to copy (same language and theme).</source>
<target>There is nothing to copy (same language and theme).</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="6b5324e2e711f17c4d3db1f625178e86">
<source>Theme(s) not found</source>
<target>Theme(s) not found</target>
<note>Line: 213</note>
</trans-unit>
<trans-unit id="434464e4353199dd20af7bd3cf8e6c64">
<source>Impossible to copy "%source%" to "%dest%".</source>
<target>Impossible to copy "%source%" to "%dest%".</target>
<note>Line: 116</note>
</trans-unit>
<trans-unit id="07b33077111c506cf81b6cc5ef42a170">
<source>Impossible to translate "%dest%".</source>
<target>Impossible to translate "%dest%".</target>
<note>Line: 136</note>
</trans-unit>
<trans-unit id="c7254dc1193c25493aa0a09df285b43c">
<source>A part of the data has been copied but some of the language files could not be found.</source>
<target>A part of the data has been copied but some of the language files could not be found.</target>
<note>Line: 148</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Language/LanguagePackInstaller.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="52326ecbfcdff77b4bc9dcf7f055c2eb">
<source>Fatal error: ISO code is not correct</source>
<target>Fatal error: ISO code is not correct</target>
<note>Line: 71</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Localization/Pack/Import/LocalizationPackImporter.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="34f9488516199cf18114f12369c71a59">
<source>Cannot load the localization pack.</source>
<target>Cannot load the localization pack.</target>
<note>Line: 109</note>
</trans-unit>
<trans-unit id="ecb8838ce98cd126849fc083f0070bcd">
<source>Please select at least one item to import.</source>
<target>Please select at least one item to import.</target>
<note>Line: 143</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/CurrencyController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8246d0c794e7db090587c4797b2a234f">
<source>You cannot delete the default currency</source>
<target>You cannot delete the default currency</target>
<note>Line: 424</note>
</trans-unit>
<trans-unit id="7c77e53206853cb381e91e037554faa3">
<source>You cannot disable the default currency</source>
<target>You cannot disable the default currency</target>
<note>Line: 428</note>
</trans-unit>
<trans-unit id="9289665482a13fc74be054caef49b63e">
<source>This currency already exists.</source>
<target>This currency already exists.</target>
<note>Line: 384</note>
</trans-unit>
<trans-unit id="0bb1c64dda8dcd3473e0eee6c06c8a4e">
<source>%currency% is the default currency for shop %shop_name%, and therefore cannot be removed from shop association</source>
<target>%currency% is the default currency for shop %shop_name%, and therefore cannot be removed from shop association</target>
<note>Line: 399</note>
</trans-unit>
<trans-unit id="d51f13fb7e04f0002b08f14370e565a9">
<source>%currency% is the default currency for shop %shop_name%, and therefore cannot be disabled</source>
<target>%currency% is the default currency for shop %shop_name%, and therefore cannot be disabled</target>
<note>Line: 407</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/LanguageController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8bd94436fa6738863292fb9823368694">
<source>You cannot delete the default language.</source>
<target>You cannot delete the default language.</target>
<note>Line: 362</note>
</trans-unit>
<trans-unit id="f25eedbf89efbd0cfce488fe01f9c4cb">
<source>You cannot delete the language currently in use. Please select a different language.</source>
<target>You cannot delete the language currently in use. Please select a different language.</target>
<note>Line: 370</note>
</trans-unit>
<trans-unit id="2f236f9450ce8714611e468181064659">
<source>You cannot change the status of the default language.</source>
<target>You cannot change the status of the default language.</target>
<note>Line: 366</note>
</trans-unit>
<trans-unit id="59382adebc7f0d65c42fe773d443e4c7">
<source>This ISO code is already linked to another language.</source>
<target>This ISO code is already linked to another language.</target>
<note>Line: 352</note>
</trans-unit>
<trans-unit id="8037670f9e6df1f09e040ff8ab047fac">
<source>An error occurred while copying "No Picture" image to your product folder.</source>
<target>An error occurred while copying "No Picture" image to your product folder.</target>
<note>Line: 318</note>
</trans-unit>
<trans-unit id="0773497a933e6c2b618678b02cbdf7a1">
<source>An error occurred while copying "No picture" image to your category folder.</source>
<target>An error occurred while copying "No picture" image to your category folder.</target>
<note>Line: 322</note>
</trans-unit>
<trans-unit id="6509c8bfa3f06725a6016e6a429dbcd9">
<source>An error occurred while copying "No picture" image to your brand folder.</source>
<target>An error occurred while copying "No picture" image to your brand folder.</target>
<note>Line: 326</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c9468b4bd45a165049277af6756db10e">
<source>Localization pack imported successfully.</source>
<target>Localization pack imported successfully.</target>
<note>Line: 138</note>
</trans-unit>
<trans-unit id="53802fa30d7e83f77eccfa376c33e6fa">
<source>Importing a new language may fail without the OpenSSL module. Please enable "openssl.so" on your server configuration.</source>
<target>Importing a new language may fail without the OpenSSL module. Please enable "openssl.so" on your server configuration.</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/TranslationsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f22def68c5c456936078623b6dcd27ff">
<source>The translations have been successfully added.</source>
<target>The translations have been successfully added.</target>
<note>Line: 159</note>
</trans-unit>
<trans-unit id="6cfb80c26b415f8f6467cf07b0c700dd">
<source>The translation was successfully copied.</source>
<target>The translation was successfully copied.</target>
<note>Line: 241</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Improve/International/Geolocation/GeolocationFormDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7e093dcb7a9f75c8124b2adc265c5302">
<source>The geolocation database is unavailable.</source>
<target>The geolocation database is unavailable.</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="493ce56d58c4880dc32df56f12585a23">
<source>Country selection is invalid.</source>
<target>Country selection is invalid.</target>
<note>Line: 113</note>
</trans-unit>
<trans-unit id="0861a67f819158c5690a1844d95390b4">
<source>Invalid whitelist</source>
<target>Invalid whitelist</target>
<note>Line: 121</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Currency/Blocks/exchange_rates.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0f4a4ca4bdfda88bb59a4ba4814a5f78">
<source>Please install the %module_name% module before using this feature.</source>
<target>Please install the %module_name% module before using this feature.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Language/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cc83a240095b0a0b6e1840bb7d43830c">
<source>When you delete a language, all related translations in the database will be deleted.</source>
<target>When you delete a language, all related translations in the database will be deleted.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="1214646a8e239537981e729a0f16f3e9">
<source>Your .htaccess file must be writable.</source>
<target>Your .htaccess file must be writable.</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Localization/Blocks/configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7da16b055b9db528a9b4aa9c4ad674ca">
<source>Before changing the default currency, we strongly recommend that you enable maintenance mode. Indeed, any change on the default currency requires a manual adjustment of the price of each product and its combinations.</source>
<target>Before changing the default currency, we strongly recommend that you enable maintenance mode. Indeed, any change on the default currency requires a manual adjustment of the price of each product and its combinations.</target>
<note>Line: 76</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Translations/Blocks/copy_language.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3c529160fd0337c151d35e7a3809d427">
<source>Language files must be complete to allow copying of translations.</source>
<target>Language files must be complete to allow copying of translations.</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Twig/TranslationsExtension.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="41ca3d8439f6e8beab7af312714e37f0">
<source>Translation successfully updated</source>
<target>Translation successfully updated</target>
<note>Line: 219</note>
</trans-unit>
<trans-unit id="b3991113a051bbeb759a923bc636ad8d">
<source>Failed to update translation</source>
<target>Failed to update translation</target>
<note>Line: 224</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/login/content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bffe9a3c9a7e00ba00a11749e022d911">
<source>Log in</source>
<target>Log in</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="77dcc4123443269bb7d3e1e5912439df">
<source>Stay logged in</source>
<target>Stay logged in</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="b05d72142020283dc6812fd3a9bc691c">
<source>I forgot my password</source>
<target>I forgot my password</target>
<note>Line: 85</note>
</trans-unit>
<trans-unit id="32fe59513f5bbdd353b4527cc6af55ce">
<source>Reset your password</source>
<target>Reset your password</target>
<note>Line: 93</note>
</trans-unit>
<trans-unit id="3544848f820b9d94a3f3871a382cf138">
<source>New password</source>
<target>New password</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="6ab96a5df54aa6aae2bab9ea75ab76c9">
<source>Confirm new password</source>
<target>Confirm new password</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="4c231e0da3eaaa6a9752174f7f9cfb31">
<source>Confirm password</source>
<target>Confirm password</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="3b5b0f1e26d98a827ef82af202c2e85b">
<source>Reset password</source>
<target>Reset password</target>
<note>Line: 109</note>
</trans-unit>
<trans-unit id="733ae3eecadd5777cea5ce9a32379d7a">
<source>Send reset link</source>
<target>Send reset link</target>
<note>Line: 138</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/login/content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7860cb5f5994f37f332dda3f250e035b">
<source>You will be redirected to the login page in a few seconds.</source>
<target>You will be redirected to the login page in a few seconds.</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="d2bd0a6c92a4501d3459335139825d21">
<source>Please, check your mailbox.</source>
<target>Please, check your mailbox.</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="95faaabab0eea73e0dddecfb101e9c59">
<source>A link to reset your password has been sent to you.</source>
<target>A link to reset your password has been sent to you.</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="d84626aafd2ead966ff2f5c2e0bca73f">
<source>For security reasons, you cannot connect to the back office until you have:</source>
<target>For security reasons, you cannot connect to the back office until you have:</target>
<note>Line: 150</note>
</trans-unit>
<trans-unit id="362b56674d07160fab60725a927bbf13">
<source>deleted the /install folder</source>
<target>deleted the /install folder</target>
<note>Line: 153</note>
</trans-unit>
<trans-unit id="83c8a48abe6dd9b6fcc44986069b36dd">
<source>renamed the /admin folder (e.g. %s)</source>
<target>renamed the /admin folder (e.g. %s)</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="1a728f70318152b93421d59a6f7b4110">
<source>Please then access this page by the new URL (e.g. %s)</source>
<target>Please then access this page by the new URL (e.g. %s)</target>
<note>Line: 161</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9ff082251dea737459c9f32e73ca7a62">
<source>For security reasons, you must also delete the /install folder.</source>
<target>For security reasons, you must also delete the /install folder.</target>
<note>Line: 397</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminLoginController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="64bebbfcf422901ff5898cd0d0f92ba4">
<source>SSL is activated. However, your IP is allowed to enter unsecure mode for maintenance or local IP issues.</source>
<target>SSL is activated. However, your IP is allowed to enter unsecure mode for maintenance or local IP issues.</target>
<note>Line: 72</note>
</trans-unit>
<trans-unit id="0c38dbc5d2689404ee34e0fc2da845cf">
<source>SSL is activated. Please connect using the following link to [1]log in to secure mode (https://)[/1]</source>
<target>SSL is activated. Please connect using the following link to [1]log in to secure mode (https://)[/1]</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="1414e6b52fb36401e73871528bfb074d">
<source>The employee does not exist, or the password provided is incorrect.</source>
<target>The employee does not exist, or the password provided is incorrect.</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="54a27a9a29b0e113daa86220ba7e7880">
<source>This employee does not manage the shop anymore (either the shop has been deleted or permissions have been revoked).</source>
<target>This employee does not manage the shop anymore (either the shop has been deleted or permissions have been revoked).</target>
<note>Line: 203</note>
</trans-unit>
<trans-unit id="f197511588fa1467e957bf6c48539e88">
<source>This account does not exist.</source>
<target>This account does not exist.</target>
<note>Line: 331
Comment: check matching employee id with its email</note>
</trans-unit>
<trans-unit id="b2e73e907ab40d78981c8bbfd0e0881f">
<source>You can reset your password every %interval% minute(s) only. Please try again later.</source>
<target>You can reset your password every %interval% minute(s) only. Please try again later.</target>
<note>Line: 333</note>
</trans-unit>
<trans-unit id="70888a5d7f35d91f8085cba884f7298e">
<source>Please, check your mailbox. A link to reset your password has been sent to you.</source>
<target>Please, check your mailbox. A link to reset your password has been sent to you.</target>
<note>Line: 295</note>
</trans-unit>
<trans-unit id="61c79423624504f70ce7b16f76587aac">
<source>An error occurred while attempting to reset your password.</source>
<target>An error occurred while attempting to reset your password.</target>
<note>Line: 300</note>
</trans-unit>
<trans-unit id="eed80aefc5a34c94db6274505d68d151">
<source>Some identification information is missing.</source>
<target>Some identification information is missing.</target>
<note>Line: 318</note>
</trans-unit>
<trans-unit id="375dee52ced3330cd3496340b32098ca">
<source>The password is missing: please enter your new password.</source>
<target>The password is missing: please enter your new password.</target>
<note>Line: 321
Comment: password (twice)</note>
</trans-unit>
<trans-unit id="f01fb987f60542e0bff1bf7bed42d142">
<source>The password is not in a valid format.</source>
<target>The password is not in a valid format.</target>
<note>Line: 323</note>
</trans-unit>
<trans-unit id="76e08a16ce116959f282955d33c51aa0">
<source>The confirmation is empty: please fill in the password confirmation as well.</source>
<target>The confirmation is empty: please fill in the password confirmation as well.</target>
<note>Line: 325</note>
</trans-unit>
<trans-unit id="3b065e732222a25050ced52f7fca85c0">
<source>The password and its confirmation do not match. Please double check both passwords.</source>
<target>The password and its confirmation do not match. Please double check both passwords.</target>
<note>Line: 327</note>
</trans-unit>
<trans-unit id="56f5aa17fc3a9c5d9827bb148f072cd2">
<source>Your password reset request expired. Please start again.</source>
<target>Your password reset request expired. Please start again.</target>
<note>Line: 336
Comment: To update password, we must have the temporary reset token that matches.</note>
</trans-unit>
<trans-unit id="2a8fac0ed3799588798c1b531a2b65ef">
<source>An error occurred while attempting to change your password.</source>
<target>An error occurred while attempting to change your password.</target>
<note>Line: 384</note>
</trans-unit>
<trans-unit id="30d1a8e4c44146dcccec7b7a11db6d6e">
<source>The password has been changed successfully.</source>
<target>The password has been changed successfully.</target>
<note>Line: 378</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,540 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/modules/configure.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a785bc36e9e9468712517690ab9b95fb">
<source>Check update</source>
<target>Check update</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="db7c4e6b5be6dd888962b943e77b29ee">
<source>RTL Module</source>
<target>RTL Module</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="53103fcc4656f55c219b600ded3c7438">
<source>Manage hooks</source>
<target>Manage hooks</target>
<note>Line: 109</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_buybuttonlite/ps_buybuttonlite.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="76e60dee2f9ea84713034839f1974d60">
<source>Discover on Addons Marketplace</source>
<target>Discover on Addons Marketplace</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:167</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_mbo/views/templates/admin/include/action_menu.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="349838fb1d851d3e2014b9fe39203275">
<source>Install</source>
<target>Install</target>
<note>Line: 34</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_mbo/views/templates/admin/include/modal_import.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5d863819c3f3055dd8fca884f087caf7">
<source>Drop your module archive here or</source>
<target>Drop your module archive here or</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="ec2dab4ec46156a390cbe0652004f410">
<source>select file</source>
<target>select file</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="modules/watermark/views/templates/admin/addons-suggestion.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="25131b831e5832d70365d17471b6326d">
<source>Discover all modules</source>
<target>Discover all modules</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="31edfec531c02c0cfe522ed5ca726e2f">
<source>Want to go further?</source>
<target>Want to go further?</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="7c6a169b9017895a118d7cb18b7b788e">
<source>To go further:</source>
<target>To go further:</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="ca9d568dc040c1a1efccc71c07984cf0">
<source><![CDATA[Labels, Stickers & Logos]]></source>
<target><![CDATA[Labels, Stickers & Logos]]></target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="c3782cf09e0f24e3a31a2dda9d9de9b9">
<source>Addons Marketplace</source>
<target>Addons Marketplace</target>
<note>Line: 55</note>
</trans-unit>
</body>
</file>
<file original="modules/watermark/watermark.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0dd948e4d25b3f02772adf5b1663de6e">
<source>For example, you can add "Free shipping", "-30%", "New", "Last parts in stock", "No. 1 of sales" badges to make your products more visible and to differentiate them. And also propose badges indicating the composition (100% cotton, 100% organic...) or icons highlighting the strengths of each product. So you customize your shop in just a few clicks.</source>
<target>For example, you can add "Free shipping", "-30%", "New", "Last parts in stock", "No. 1 of sales" badges to make your products more visible and to differentiate them. And also propose badges indicating the composition (100% cotton, 100% organic...) or icons highlighting the strengths of each product. So you customize your shop in just a few clicks.</target>
<note>Line: 608</note>
</trans-unit>
<trans-unit id="3da6c86f2fce98d47d8681582b0fc858">
<source>https://addons.prestashop.com/en/309-labels-stickers-logos</source>
<target>https://addons.prestashop.com/en/309-labels-stickers-logos</target>
<note>Line: 610</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/ModuleController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8b1a3613ac33a07ab788b2656755110c">
<source>Enable Mobile</source>
<target>Enable Mobile</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="038bd38b5172a9ba90468070bdc4d4f3">
<source>Disable Mobile</source>
<target>Disable Mobile</target>
<note>Line: 125</note>
</trans-unit>
<trans-unit id="e699cbe9208f8353248889781f83d636">
<source>Module manager</source>
<target>Module manager</target>
<note>Line: 134</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Modules/ModuleAbstractController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="17e0ca27e686200d42e478e2457052aa">
<source>Module notifications</source>
<target>Module notifications</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/PaymentMethods/Blocks/payment_modules_list.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2693dd71600631eed47725291fe5da19">
<source>v%version% - by %author%</source>
<target>v%version% - by %author%</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/action_menu.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="abfc3a65538a6ec86502b2b498b6b4a6">
<source>Discover</source>
<target>Discover</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="90406afefae30826692e7f7480f7467c">
<source>Toggle Dropdown</source>
<target>Toggle Dropdown</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/card_grid_addons.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3aaeb3f0458cf2580c5f75fefdb86ab6">
<source>PrestaShop Addons Marketplace</source>
<target>PrestaShop Addons Marketplace</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="24a25a6b874647087c51ea00b7992def">
<source>Exit to PrestaShop Addons Marketplace</source>
<target>Exit to PrestaShop Addons Marketplace</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="754475030b0733378b9347e8f9da8bf9">
<source>See all results for your search on</source>
<target>See all results for your search on</target>
<note>Line: 30</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/card_list.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="decbe415d8accca7c2c16d48a79ee934">
<source>Read More</source>
<target>Read More</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="031f3657c3601889e98df488db139b75">
<source>Service by %author%</source>
<target>Service by %author%</target>
<note>Line: 76</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/dropdown_categories_catalog.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a6a2a55bea8760389dfca77132905b7c">
<source>All Categories</source>
<target>All Categories</target>
<note>Line: 39</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/dropdown_status.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8a8efaec2f6f2bc692ad99b34e2070c9">
<source>Show all modules</source>
<target>Show all modules</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="dfe6e46e2d3e3ba76b5d9aee197c0747">
<source>Enabled Modules</source>
<target>Enabled Modules</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="a0f454ebaee933c7791ffcdda76944b3">
<source>Disabled Modules</source>
<target>Disabled Modules</target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="12b67546923388cd92b5876ae067d283">
<source>You do not have module in « %categoryName% ».</source>
<target>You do not have module in « %categoryName% ».</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="10dc2676c1cfa668956517a07c6405bf">
<source>Discover the best-selling modules of this category in the %link% page.</source>
<target>Discover the best-selling modules of this category in the %link% page.</target>
<note>Line: 30</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_recently_used.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1ad8e342d5f04a220e73a90d33d98c2a">
<source>Recently Used</source>
<target>Recently Used</target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_addons_connect.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7234d2a9a27b5e8dba609efe02ee9548">
<source>Link your shop to your Addons account to automatically receive important updates for the modules you purchased. Don't have an account yet?</source>
<target>Link your shop to your Addons account to automatically receive important updates for the modules you purchased. Don't have an account yet?</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="cedcf6fe65a8f2849fe11e316d6c9923">
<source>Sign up now</source>
<target>Sign up now</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="b09249132bbed9baecd987cf73200b44">
<source>Confirm logout</source>
<target>Confirm logout</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="6be2c07aa891bbaafc828e43e336abb4">
<source>Yes, log out</source>
<target>Yes, log out</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="1c0b7f4d79e06a46c12312615fc4ab14">
<source>Connect to Addons marketplace</source>
<target>Connect to Addons marketplace</target>
<note>Line: 30</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_confirm.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="16c65b710bd0c33e9439b2603ee6e672">
<source>Disable module?</source>
<target>Disable module?</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="10ad116a3eb7b6e5382ada40c393102c">
<source>Uninstall module?</source>
<target>Uninstall module?</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="8916ba4927ba1516017e5ddb6409fac0">
<source>Reset module?</source>
<target>Reset module?</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="8ffc312c0ad3aebfa25b900f353d4650">
<source>Yes, disable it</source>
<target>Yes, disable it</target>
<note>Line: 95</note>
</trans-unit>
<trans-unit id="b8551bde0a3a5cee1ab95a3b64c09863">
<source>Yes, uninstall it</source>
<target>Yes, uninstall it</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="ae89782365cf87322e7a400afb448cb5">
<source>Yes, reset it</source>
<target>Yes, reset it</target>
<note>Line: 115</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_confirm_bulk_action.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bd166984f81578eb60b1420587dd9aeb">
<source>Bulk action confirmation</source>
<target>Bulk action confirmation</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="3d42b7bc80c4e9ca72b37f0796f4fe5f">
<source>Yes, I want to do it</source>
<target>Yes, I want to do it</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="27788383c9407ea06c2c275ee21c86c5">
<source>Optional: delete module folder after uninstall.</source>
<target>Optional: delete module folder after uninstall.</target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_confirm_prestatrust.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="80c1f30ef63bc79dd32b654e7b85c112">
<source>Module verification</source>
<target>Module verification</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="a517747c3d12f99244ae598910d979c5">
<source>Author</source>
<target>Author</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="249212ebba2907c6087887db076179e6">
<source>Back to modules list</source>
<target>Back to modules list</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="34afcb42ab73990082d328d9b34811b5">
<source>Proceed with the installation</source>
<target>Proceed with the installation</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="0c18217e480e74369a0b21d29052574e">
<source>Buy module</source>
<target>Buy module</target>
<note>Line: 68</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_import.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="76ab1ee2aacc1b9bbc0a70bf6cca7004">
<source>Upload a module</source>
<target>Upload a module</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="7c8701c300f85e9799c74e83f4adea64">
<source>Drop your module archive here or [1]select file[/1]</source>
<target>Drop your module archive here or [1]select file[/1]</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_read_more_content.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b24ce0cd392a5b0b8dedc66c25213594">
<source>Free</source>
<target>Free</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="bc3b3665bd89d8eb6e3c7b0789fa98c5">
<source>v%version% by %author%</source>
<target>v%version% by %author%</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="3b878279a04dc47d60932cb294d96259">
<source>Overview</source>
<target>Overview</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="0f68b904e33d9ac04605aecc958bcf52">
<source>Additional information</source>
<target>Additional information</target>
<note>Line: 85</note>
</trans-unit>
<trans-unit id="e654f7a86a4458b9cd662267e0f29b52">
<source>Benefits</source>
<target>Benefits</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="98f770b0af18ca763421bac22b4b6805">
<source>Features</source>
<target>Features</target>
<note>Line: 95</note>
</trans-unit>
<trans-unit id="a5ad64d595144c185c9cf2065162dec3">
<source>Demo video</source>
<target>Demo video</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="c49182dc0c7a70b9cd2e10853d9ec6c7">
<source>Changelog</source>
<target>Changelog</target>
<note>Line: 105</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/sorting.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9adfc354d13f70ca8172da3cd2d9c06e">
<source>%nbModules% modules and services selected for you</source>
<target>%nbModules% modules and services selected for you</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="6ff9dd0d34f65181173c1e4bc39939de">
<source>Selection</source>
<target>Selection</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="3d7c1883e8f497290c2aafa2086f49ff">
<source>Increasing Price</source>
<target>Increasing Price</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="8e7cce37e14aea45d6d88e8c4aaa1b98">
<source>Decreasing Price</source>
<target>Decreasing Price</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="e22269bb51f9f2394e148716babbafbb">
<source>Popularity</source>
<target>Popularity</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/alerts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="798f81115f0cdbe07b699cdf392e9408">
<source>%nbModules% modules to configure</source>
<target>%nbModules% modules to configure</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="1f39a37212f03c5976e447cb62975024">
<source>Modules to configure</source>
<target>Modules to configure</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7258e7251413465e0a3eb58094430bde">
<source>Administration</source>
<target>Administration</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="181c576d1a34553e320762dd8387e970">
<source><![CDATA[Design & Navigation]]></source>
<target><![CDATA[Design & Navigation]]></target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="86a632681202aa019f254fe5b07fc99c">
<source><![CDATA[Promotions & Marketing]]></source>
<target><![CDATA[Promotions & Marketing]]></target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="235e8d1a54ecddcf1d3ff533331ed416">
<source>Product Page</source>
<target>Product Page</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="c453a4b8e8d98e82f35b67f433e3b4da">
<source>Payment</source>
<target>Payment</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="8b875b0fceeb6000f40332b9e0c8df36">
<source><![CDATA[Shipping & Logistics]]></source>
<target><![CDATA[Shipping & Logistics]]></target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="064e7103ebd4e57d19783b09f44567fa">
<source><![CDATA[Traffic & Marketplaces]]></source>
<target><![CDATA[Traffic & Marketplaces]]></target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="e6d0e1c8fc6a4fcf47869df87e04cd88">
<source>Customers</source>
<target>Customers</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="1e1fb0b2fbc7a713dff01ae9890d3315">
<source><![CDATA[Facebook & Social Networks]]></source>
<target><![CDATA[Facebook & Social Networks]]></target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="2e670c24f60ad3b71edf290bad66ba0e">
<source>Specialized Platforms</source>
<target>Specialized Platforms</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="f44ba76b3113bb0f0fcbd52ab002e924">
<source>Theme modules</source>
<target>Theme modules</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
<trans-unit id="6311ae17c1ee52b36e68aaf4ad066387">
<source>Other</source>
<target>Other</target>
<note>Context:
File: src/PrestaShopBundle/Resources/views/Admin/Module/manage.html.twig:4</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/updates.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="34c81422df0c92bb4d72f8629cc53f03">
<source>%nbModules% modules to update</source>
<target>%nbModules% modules to update</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="0c81f6a8e4b7b1d0a812d7285289f17d">
<source>Modules to update</source>
<target>Modules to update</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="910144fc8b8d5c1d2cb59cbe5c04a01b">
<source>Upgrade All</source>
<target>Upgrade All</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminModulesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5ea77a701ee37e948810656ccde89075">
<source>Click here to log in.</source>
<target>Click here to log in.</target>
<note>Line: 812</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/menu_top.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9e3c05bc84491dcd2464d72fae22e6b6">
<source>Search modules: keyword, name, author...</source>
<target>Search modules: keyword, name, author...</target>
<note>Line: 68</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_import.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2b11276d6a162d7c1b9894abe5febfdc">
<source>Please upload one file at a time, .zip or tarball format (.tar, .tar.gz or .tgz).</source>
<target>Please upload one file at a time, .zip or tarball format (.tar, .tar.gz or .tgz).</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="e781acd6cefcfbbfce5aa2804d59a4c5">
<source>Your module will be installed right after that.</source>
<target>Your module will be installed right after that.</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="fa692d85f08c92a585ed8b3fed7f1d52">
<source>What happened?</source>
<target>What happened?</target>
<note>Line: 75</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/sorting.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="677b5abd7f9265257543a0f7258bc477">
<source>Customize your store with this selection of modules recommended for your shop, based on your country, language and version of PrestaShop. It includes the most popular modules from our Addons marketplace, and free partner modules.</source>
<target>Customize your store with this selection of modules recommended for your shop, based on your country, language and version of PrestaShop. It includes the most popular modules from our Addons marketplace, and free partner modules.</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/tab-module-line.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ba6b1bc4d8bfe5e6e835afa72f102a02">
<source>You bought this module on PrestaShop Addons. Thank You.</source>
<target>You bought this module on PrestaShop Addons. Thank You.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="fe5a7fc9d9c907efdf6a384a71cd53fc">
<source>Bought</source>
<target>Bought</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="aaf8966ccff4445461fe8bcfab2d318d">
<source>This module is available on PrestaShop Addons.</source>
<target>This module is available on PrestaShop Addons.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="2cc1943d4c0b46bfcf503a75c44f988b">
<source>Popular</source>
<target>Popular</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="f248df0d4d7e4ae98485c5df8af58945">
<source>This module is available for free thanks to our partner.</source>
<target>This module is available for free thanks to our partner.</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="0008feba81a131902ece95d59f1b8f21">
<source>Official</source>
<target>Official</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="28f60d4760851bab00345a3cb86871f7">
<source>Need update</source>
<target>Need update</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/alerts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5117b40edade2ab3a4f738db0542ca03">
<source>These modules require your attention: you need to take some action to ensure they are fully operational.</source>
<target>These modules require your attention: you need to take some action to ensure they are fully operational.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/updates.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="94fcfae9285e19b611afe17a8565a394">
<source>Update these modules to enjoy their latest versions.</source>
<target>Update these modules to enjoy their latest versions.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,866 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/modules/configuration_bar.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="74b5807fcdcf929e5f827d32e8af0524">
<source>Activate module for this shop context: %s.</source>
<target>Activate module for this shop context: %s.</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/modules/configure.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c0d19e251d0ff55ecb860e7349f779a4">
<source>Confirm reset</source>
<target>Confirm reset</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="45e06e5610d29d675a875a6f7731b73d">
<source>Would you like to delete the content related to this module ?</source>
<target>Would you like to delete the content related to this module ?</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="d65c99010166606287266e4af4f0b934">
<source>No - reset only the parameters</source>
<target>No - reset only the parameters</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="0426ba52f94430cf093652d1ea18fedf">
<source>Yes - reset everything</source>
<target>Yes - reset everything</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="classes/Validate.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f996dce5bdfb1b1094e41cf996c5fdae">
<source>Please specify module URL</source>
<target>Please specify module URL</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/AdminController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9bbf45a624c880d590d7b6796e5a7a9c">
<source>The module was successfully downloaded.</source>
<target>The module was successfully downloaded.</target>
<note>Line: 477</note>
</trans-unit>
<trans-unit id="6832d3339f3238558d9e290f4ff36bb8">
<source>Module(s) installed successfully.</source>
<target>Module(s) installed successfully.</target>
<note>Line: 481</note>
</trans-unit>
<trans-unit id="0be078b247fde4986e320cd2684e7ab9">
<source>Module(s) uninstalled successfully.</source>
<target>Module(s) uninstalled successfully.</target>
<note>Line: 482</note>
</trans-unit>
<trans-unit id="7f31b58c32d9112f9bb160a481f6a911">
<source>Module reset successfully.</source>
<target>Module reset successfully.</target>
<note>Line: 490</note>
</trans-unit>
<trans-unit id="3270965aab0523dca0351cefc83e40b0">
<source>Module deleted successfully.</source>
<target>Module deleted successfully.</target>
<note>Line: 491</note>
</trans-unit>
<trans-unit id="35a596598c0477aea67abfa33b053697">
<source>Successfully signed in to PrestaShop Addons.</source>
<target>Successfully signed in to PrestaShop Addons.</target>
<note>Line: 501</note>
</trans-unit>
<trans-unit id="cf28eac3f0fdd7e3d2d705282948f2b9">
<source>Error found : %1$s in country_module_list.xml file.</source>
<target>Error found : %1$s in country_module_list.xml file.</target>
<note>Line: 2264</note>
</trans-unit>
<trans-unit id="ce7d2844bfe39db351171add1d7348cd">
<source>Error found : %1$s in must_have_module_list.xml file.</source>
<target>Error found : %1$s in must_have_module_list.xml file.</target>
<note>Line: 2279</note>
</trans-unit>
</body>
</file>
<file original="classes/module/Module.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cda10a1476bc741e9cec7b0a4fd2cb7d">
<source>Unable to install the module (Module name is not valid).</source>
<target>Unable to install the module (Module name is not valid).</target>
<note>Line: 341</note>
</trans-unit>
<trans-unit id="5a6d75d2128c9e038623b0eecbf70cfb">
<source>The version of your module is not compliant with your PrestaShop version.</source>
<target>The version of your module is not compliant with your PrestaShop version.</target>
<note>Line: 348</note>
</trans-unit>
<trans-unit id="bdc79db372bbf5800052e41b5dbab04c">
<source>Before installing this module, you have to install this/these module(s) first:</source>
<target>Before installing this module, you have to install this/these module(s) first:</target>
<note>Line: 357</note>
</trans-unit>
<trans-unit id="7ae364c250c9b28880e13e2c4edae218">
<source>This module has already been installed.</source>
<target>This module has already been installed.</target>
<note>Line: 371</note>
</trans-unit>
<trans-unit id="4c15c8d9982596e224487cab7b4d51f5">
<source>Could not install module controllers.</source>
<target>Could not install module controllers.</target>
<note>Line: 377</note>
</trans-unit>
<trans-unit id="5bd632bbdcdfb6aece20bdf1ae8fea52">
<source>Technical error: PrestaShop could not install this module.</source>
<target>Technical error: PrestaShop could not install this module.</target>
<note>Line: 386</note>
</trans-unit>
<trans-unit id="071fd3819a08e165553f33babf3dc334">
<source>Current version: %s</source>
<target>Current version: %s</target>
<note>Line: 457</note>
</trans-unit>
<trans-unit id="05ded2ffdbd90e0471135709e1174d23">
<source>%d file upgrade applied</source>
<target>%d file upgrade applied</target>
<note>Line: 458</note>
</trans-unit>
<trans-unit id="c909cdf836f5769c5ab8b709220c1488">
<source>No upgrade has been applied</source>
<target>No upgrade has been applied</target>
<note>Line: 461</note>
</trans-unit>
<trans-unit id="d9ba34f2df7e39d1c5c0d8feb6fc951a">
<source>Upgraded from: %s to %s</source>
<target>Upgraded from: %s to %s</target>
<note>Line: 463</note>
</trans-unit>
<trans-unit id="7a4a33538734a49e1136547dea5792df">
<source>%d upgrade left</source>
<target>%d upgrade left</target>
<note>Line: 464</note>
</trans-unit>
<trans-unit id="a448cf0c04e337b9ca99cf83c5afb183">
<source>Module %s cannot be upgraded this time: please refresh this page to update it.</source>
<target>Module %s cannot be upgraded this time: please refresh this page to update it.</target>
<note>Line: 468</note>
</trans-unit>
<trans-unit id="f79dcf8179bb9d8fa72d169f71702b44">
<source>To prevent any problem, this module has been turned off</source>
<target>To prevent any problem, this module has been turned off</target>
<note>Line: 470</note>
</trans-unit>
<trans-unit id="4762b130ddcc0e4d2eacf0c59a8b17a2">
<source>The module is not installed.</source>
<target>The module is not installed.</target>
<note>Line: 683</note>
</trans-unit>
<trans-unit id="6869dc1977dbff7c5749120241f74ff0">
<source>Unable to install override: %s</source>
<target>Unable to install override: %s</target>
<note>Line: 799</note>
</trans-unit>
<trans-unit id="e8f98f4457c87a8aad1d4d625ad1a9f3">
<source>%1$s is not a valid module name.</source>
<target>%1$s is not a valid module name.</target>
<note>Line: 1109</note>
</trans-unit>
<trans-unit id="8f62a26bf441ad698c2c562ec10448c4">
<source>All modules cannot be loaded due to memory limit restrictions, please increase your memory_limit value on your server configuration</source>
<target>All modules cannot be loaded due to memory limit restrictions, please increase your memory_limit value on your server configuration</target>
<note>Line: 1463</note>
</trans-unit>
<trans-unit id="2cff6a926907204ad5c1916ba96ed815">
<source>%s could not be loaded.</source>
<target>%s could not be loaded.</target>
<note>Line: 1300</note>
</trans-unit>
<trans-unit id="db0275528fda19c75f79d296ded0c6e7">
<source>Error found in config file:</source>
<target>Error found in config file:</target>
<note>Line: 1308</note>
</trans-unit>
<trans-unit id="f9c47597596f7159815c61957f4f8ec2">
<source>%1$s (parse error in %2$s)</source>
<target>%1$s (parse error in %2$s)</target>
<note>Line: 1362</note>
</trans-unit>
<trans-unit id="8014d5d92e09a563588869c623bd0abf">
<source>%1$s (class missing in %2$s)</source>
<target>%1$s (class missing in %2$s)</target>
<note>Line: 1429</note>
</trans-unit>
<trans-unit id="a0b8a508d6ca8113e6439f623e7bf7cf">
<source>The following module(s) could not be loaded</source>
<target>The following module(s) could not be loaded</target>
<note>Line: 1575</note>
</trans-unit>
<trans-unit id="ed6daad0747953284ea086d8cc5652de">
<source>Trusted and Untrusted XML have not been generated properly</source>
<target>Trusted and Untrusted XML have not been generated properly</target>
<note>Line: 1875</note>
</trans-unit>
<trans-unit id="eddeabd79f8ca673d888fa2ffe9cf69a">
<source>No template found for module</source>
<target>No template found for module</target>
<note>Line: 2397</note>
</trans-unit>
<trans-unit id="45e26faecce815f7e1ac16b32ac5278e">
<source>The method %1$s in the class %2$s is already overridden by the module %3$s version %4$s at %5$s.</source>
<target>The method %1$s in the class %2$s is already overridden by the module %3$s version %4$s at %5$s.</target>
<note>Line: 3026</note>
</trans-unit>
<trans-unit id="03c32a7a2568d41e186d59293b02f662">
<source>The method %1$s in the class %2$s is already overridden.</source>
<target>The method %1$s in the class %2$s is already overridden.</target>
<note>Line: 3029</note>
</trans-unit>
<trans-unit id="71bf68c93ca29a72a3a5080a30e20ecc">
<source>Failed to override method %1$s in class %2$s.</source>
<target>Failed to override method %1$s in class %2$s.</target>
<note>Line: 3094</note>
</trans-unit>
<trans-unit id="a08302edbf2d9f7ddd43ae8bd1de5caa">
<source>The property %1$s in the class %2$s is already defined.</source>
<target>The property %1$s in the class %2$s is already defined.</target>
<note>Line: 3041</note>
</trans-unit>
<trans-unit id="7893f5f2917811b37c628f787c83af8a">
<source>Failed to override property %1$s in class %2$s.</source>
<target>Failed to override property %1$s in class %2$s.</target>
<note>Line: 3102</note>
</trans-unit>
<trans-unit id="6f89d5bc3c94e885d4a3716accc12983">
<source>The constant %1$s in the class %2$s is already defined.</source>
<target>The constant %1$s in the class %2$s is already defined.</target>
<note>Line: 3052</note>
</trans-unit>
<trans-unit id="d27626d5c768d3782dcc6343e8a0c0f6">
<source>Failed to override constant %1$s in class %2$s.</source>
<target>Failed to override constant %1$s in class %2$s.</target>
<note>Line: 3110</note>
</trans-unit>
</body>
</file>
<file original="classes/module/ModuleGraph.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cb20447a4bf5ff9bec717ec68a357a93">
<source>No graph engine selected</source>
<target>No graph engine selected</target>
<note>Line: 278</note>
</trans-unit>
<trans-unit id="a78ac92432df02a17a667fdc15764454">
<source>Graph engine selected is unavailable.</source>
<target>Graph engine selected is unavailable.</target>
<note>Line: 284</note>
</trans-unit>
</body>
</file>
<file original="classes/module/ModuleGrid.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ccacacd12f75e1ab3f9ce3e234ed5777">
<source>No grid engine selected</source>
<target>No grid engine selected</target>
<note>Line: 99</note>
</trans-unit>
<trans-unit id="b7be351a5a41ea3d022dc18f5f16239a">
<source>Grid engine selected is unavailable.</source>
<target>Grid engine selected is unavailable.</target>
<note>Line: 105</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminModulesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="723aac54d8b88c84ca0c9328f3912bf9">
<source>There was an error while extracting the module (file may be corrupted).</source>
<target>There was an error while extracting the module (file may be corrupted).</target>
<note>Line: 424</note>
</trans-unit>
<trans-unit id="2d2c4b710382f05c8cb697187f381f7c">
<source>The module %1$s that you uploaded is not a valid module.</source>
<target>The module %1$s that you uploaded is not a valid module.</target>
<note>Line: 429</note>
</trans-unit>
<trans-unit id="c09b8da183ec54308a4c59ab1f1ab792">
<source>You do not have the permission to use this module.</source>
<target>You do not have the permission to use this module.</target>
<note>Line: 690</note>
</trans-unit>
<trans-unit id="7cbb3ce25a6d0abd528dbd744da03e7f">
<source>Cannot reset this module.</source>
<target>Cannot reset this module.</target>
<note>Line: 536</note>
</trans-unit>
<trans-unit id="d765d45adba914dc9006cc7ec0b2faf5">
<source>Cannot install this module.</source>
<target>Cannot install this module.</target>
<note>Line: 543</note>
</trans-unit>
<trans-unit id="f973e6a744c0c50d212b7fd1430153f7">
<source>Cannot uninstall this module.</source>
<target>Cannot uninstall this module.</target>
<note>Line: 546</note>
</trans-unit>
<trans-unit id="08da26423466f4cadc0fd6e201711dcd">
<source>Cannot load the module's object.</source>
<target>Cannot load the module's object.</target>
<note>Line: 670</note>
</trans-unit>
<trans-unit id="8969f3823d6bbf4cff9ea8118d8b3ecb">
<source>An error occurred while copying the archive to the module directory.</source>
<target>An error occurred while copying the archive to the module directory.</target>
<note>Line: 607</note>
</trans-unit>
<trans-unit id="4654007119386a8ace934133208feed5">
<source>Sorry, the module cannot be deleted. Please check if you have the right permissions on this folder.</source>
<target>Sorry, the module cannot be deleted. Please check if you have the right permissions on this folder.</target>
<note>Line: 704</note>
</trans-unit>
<trans-unit id="8875d822d9402acb528eb9c55401a573">
<source>You need to be logged in to your PrestaShop Addons account in order to update the %s module. %s</source>
<target>You need to be logged in to your PrestaShop Addons account in order to update the %s module. %s</target>
<note>Line: 808</note>
</trans-unit>
<trans-unit id="af67db57c79006fd9464c65865f36a44">
<source>Module %s cannot be upgraded: Error while downloading the latest version.</source>
<target>Module %s cannot be upgraded: Error while downloading the latest version.</target>
<note>Line: 835</note>
</trans-unit>
<trans-unit id="e6148a0bace3c593e161009060a7da99">
<source>Module %s cannot be upgraded: Error while extracting the latest version.</source>
<target>Module %s cannot be upgraded: Error while extracting the latest version.</target>
<note>Line: 837</note>
</trans-unit>
<trans-unit id="408e2019e00a54bbaace8e6ea29a736b">
<source>You do not have the rights to update the %s module. Please make sure you are logged in to the PrestaShop Addons account that purchased the module.</source>
<target>You do not have the rights to update the %s module. Please make sure you are logged in to the PrestaShop Addons account that purchased the module.</target>
<note>Line: 843</note>
</trans-unit>
<trans-unit id="811c568a06f4f5f038609a98512e9416">
<source>You do not have permission to access this module.</source>
<target>You do not have permission to access this module.</target>
<note>Line: 862</note>
</trans-unit>
<trans-unit id="81d2521b93f4b3abdc3877f76e04005a">
<source>You do not have permission to install this module.</source>
<target>You do not have permission to install this module.</target>
<note>Line: 866</note>
</trans-unit>
<trans-unit id="d7569980257d11fbd66deb501f5efab8">
<source>You do not have permission to delete this module.</source>
<target>You do not have permission to delete this module.</target>
<note>Line: 868</note>
</trans-unit>
<trans-unit id="5a69d1cb0ef4096b272b3b441555d737">
<source>You do not have permission to configure this module.</source>
<target>You do not have permission to configure this module.</target>
<note>Line: 870</note>
</trans-unit>
<trans-unit id="2c465b2a1769653563dcacfc83ab61d0">
<source>This module is already installed: %s.</source>
<target>This module is already installed: %s.</target>
<note>Line: 872</note>
</trans-unit>
<trans-unit id="0ec73cc5b2910764fc221acb633c20bc">
<source>This module has already been uninstalled: %s.</source>
<target>This module has already been uninstalled: %s.</target>
<note>Line: 874</note>
</trans-unit>
<trans-unit id="ee043fd10baac04e50a4256d7406e93c">
<source>This module needs to be installed in order to be updated: %s.</source>
<target>This module needs to be installed in order to be updated: %s.</target>
<note>Line: 876</note>
</trans-unit>
<trans-unit id="4e03a50f18350f93b8ec321b488a4a8c">
<source>You do not have permission to uninstall this module.</source>
<target>You do not have permission to uninstall this module.</target>
<note>Line: 900</note>
</trans-unit>
<trans-unit id="d3c1a921b833767f27ffcc401a87d93b">
<source>The following module(s) could not be uninstalled properly: %s.</source>
<target>The following module(s) could not be uninstalled properly: %s.</target>
<note>Line: 1039</note>
</trans-unit>
<trans-unit id="89bbb6a140e2fc5ff52b2211083a2721">
<source>The following module(s) could not be installed properly: %s.</source>
<target>The following module(s) could not be installed properly: %s.</target>
<note>Line: 1041</note>
</trans-unit>
<trans-unit id="8095c31813f8e77d292bf6bec964169b">
<source>Unknown archive type.</source>
<target>Unknown archive type.</target>
<note>Line: 605</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminModulesPositionsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="63bc456afcd9d4c6285718e34ee8fed9">
<source>This module has already been transplanted to this hook.</source>
<target>This module has already been transplanted to this hook.</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="9ce4606635f2118f9d10d1f323f73fe2">
<source>This module cannot be transplanted to this hook.</source>
<target>This module cannot be transplanted to this hook.</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="0ce2f4a4f40a2d23525b5b02bcfe611f">
<source>An error occurred while transplanting the module to its hook.</source>
<target>An error occurred while transplanting the module to its hook.</target>
<note>Line: 188</note>
</trans-unit>
<trans-unit id="b7d38f9dd64d92d6132e0c520a2d68a8">
<source>Please select a module to unhook.</source>
<target>Please select a module to unhook.</target>
<note>Line: 221</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_faviconnotificationbo/ps_faviconnotificationbo.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bb8956c67b82c7444a80c6b2433dd8b4">
<source>Are you sure you want to uninstall this module?</source>
<target>Are you sure you want to uninstall this module?</target>
<note>Line: 71
Comment: Confirm uninstall</note>
</trans-unit>
<trans-unit id="faaa79afdd5385b4ff3db080a88b0dc8">
<source>There was an error during the uninstallation.</source>
<target>There was an error during the uninstallation.</target>
<note>Line: 101</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_mbo/views/templates/admin/module-toolbar.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="957c752dd2c9466beff247b9cae7f715">
<source>Synchronized with Addons marketplace</source>
<target>Synchronized with Addons marketplace</target>
<note>Line: 10</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Module/ModuleDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="429cc2fb9f1cb16782b0af5ba748096d">
<source>Parse error detected in main class of module %module%!</source>
<target>Parse error detected in main class of module %module%!</target>
<note>Line: 213</note>
</trans-unit>
<trans-unit id="e03545a6c414502e72d232b4c30d9fdd">
<source>Error while loading file of module %module%. %error_message%</source>
<target>Error while loading file of module %module%. %error_message%</target>
<note>Line: 252</note>
</trans-unit>
<trans-unit id="97aaa428796fc523aae22098428c8a6f">
<source>Parse error detected in main class of module %module%: %parse_error%</source>
<target>Parse error detected in main class of module %module%: %parse_error%</target>
<note>Line: 228</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Module/ModuleZipManager.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="08859ef1a837ae429ff2e4decc952cbe">
<source>Unable to find uploaded module at the following path: %file%</source>
<target>Unable to find uploaded module at the following path: %file%</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="848578a1a363f2c2443b3989154bf646">
<source>Cannot extract module in %path% to get its name. %error%</source>
<target>Cannot extract module in %path% to get its name. %error%</target>
<note>Line: 110</note>
</trans-unit>
<trans-unit id="a85499f3d020141df9b6203b7585a9bf">
<source>This file does not seem to be a valid module zip</source>
<target>This file does not seem to be a valid module zip</target>
<note>Line: 153</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Module/Tab/ModuleTabRegister.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ee34aeaa570c9f1c206b8401d6eaa58d">
<source>Failed to install admin tab "%name%".</source>
<target>Failed to install admin tab "%name%".</target>
<note>Line: 295</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Module/Tab/ModuleTabUnregister.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e85403d2e654955b45105b9929924c89">
<source>Failed to uninstall admin tab "%name%".</source>
<target>Failed to uninstall admin tab "%name%".</target>
<note>Line: 102</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Addon/Module/ModuleManager.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f2715f72988009e4f50e94d88b3df89f">
<source>You are not allowed to install modules.</source>
<target>You are not allowed to install modules.</target>
<note>Line: 282</note>
</trans-unit>
<trans-unit id="21f1ba3ca9bb026443f8dea1127f2f0b">
<source>You are not allowed to uninstall the module %module%.</source>
<target>You are not allowed to uninstall the module %module%.</target>
<note>Line: 332</note>
</trans-unit>
<trans-unit id="ea328981d19b5b379639f915341bc4ad">
<source>You are not allowed to upgrade the module %module%.</source>
<target>You are not allowed to upgrade the module %module%.</target>
<note>Line: 372</note>
</trans-unit>
<trans-unit id="87c10be2be869072e9d1e7cbca858445">
<source>You are not allowed to disable the module %module%.</source>
<target>You are not allowed to disable the module %module%.</target>
<note>Line: 417</note>
</trans-unit>
<trans-unit id="b58f4b4f4f870b40e52c42c161df0d60">
<source>Error when disabling module %module%. %error_details%.</source>
<target>Error when disabling module %module%. %error_details%.</target>
<note>Line: 435</note>
</trans-unit>
<trans-unit id="42874189778a946c2a51911076474ad4">
<source>You are not allowed to enable the module %module%.</source>
<target>You are not allowed to enable the module %module%.</target>
<note>Line: 465</note>
</trans-unit>
<trans-unit id="fbaf1c9434442c780f3eddff4406603c">
<source>Error when enabling module %module%. %error_details%.</source>
<target>Error when enabling module %module%. %error_details%.</target>
<note>Line: 483</note>
</trans-unit>
<trans-unit id="9fa7ea0487a785b31f48977415f3324a">
<source>You are not allowed to disable the module %module% on mobile.</source>
<target>You are not allowed to disable the module %module% on mobile.</target>
<note>Line: 529</note>
</trans-unit>
<trans-unit id="976dc5c6fc2fe73b2c43c7776847e593">
<source>Error when disabling module %module% on mobile. %error_details%</source>
<target>Error when disabling module %module% on mobile. %error_details%</target>
<note>Line: 547</note>
</trans-unit>
<trans-unit id="c74f0e8fe4da4e6dcb5a051f0eef1ec3">
<source>You are not allowed to enable the module %module% on mobile.</source>
<target>You are not allowed to enable the module %module% on mobile.</target>
<note>Line: 592</note>
</trans-unit>
<trans-unit id="416bc5074d9b9944a51797b081492442">
<source>Error when enabling module %module% on mobile. %error_details%</source>
<target>Error when enabling module %module% on mobile. %error_details%</target>
<note>Line: 610</note>
</trans-unit>
<trans-unit id="e65dccd7380f1af807453a7afdf3f427">
<source>You are not allowed to reset the module %module%.</source>
<target>You are not allowed to reset the module %module%.</target>
<note>Line: 639</note>
</trans-unit>
<trans-unit id="387aeee114093679248f936ba36ee416">
<source>Error when resetting module %module%. %error_details%</source>
<target>Error when resetting module %module%. %error_details%</target>
<note>Line: 663</note>
</trans-unit>
<trans-unit id="c111e1387c9a6c5c98635ecdbbcb26af">
<source>The module is invalid and cannot be loaded.</source>
<target>The module is invalid and cannot be loaded.</target>
<note>Line: 744</note>
</trans-unit>
<trans-unit id="c913de38eb118ce08ddae76f27063126">
<source>Unfortunately, the module did not return additional details.</source>
<target>Unfortunately, the module did not return additional details.</target>
<note>Line: 752</note>
</trans-unit>
<trans-unit id="83a812de8784135990c57d25d0f9b34b">
<source>The module %module% must be installed first</source>
<target>The module %module% must be installed first</target>
<note>Line: 777</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Addon/Module/ModuleRepository.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a3214c22fd9d21c988d9bb06748d6d9f">
<source>Parse error on module %module%. %error_details%</source>
<target>Parse error on module %module%. %error_details%</target>
<note>Line: 392</note>
</trans-unit>
<trans-unit id="bcc1e7daae2727b6d7a32567086cd84f">
<source>Unexpected exception on module %module%. %error_details%</source>
<target>Unexpected exception on module %module%. %error_details%</target>
<note>Line: 403</note>
</trans-unit>
<trans-unit id="9fcc3446d55e632b5f3ca13fc810c83b">
<source>Loading data from Addons failed. %error_details%</source>
<target>Loading data from Addons failed. %error_details%</target>
<note>Line: 451</note>
</trans-unit>
<trans-unit id="0554e4a4ddb313c3962088dc32647e90">
<source>Parse error detected in module %module%. %error_details%.</source>
<target>Parse error detected in module %module%. %error_details%.</target>
<note>Line: 577</note>
</trans-unit>
<trans-unit id="40e7db035e09d8f198b96a7d5d9e821f">
<source>Exception detected while loading module %module%. %error_details%.</source>
<target>Exception detected while loading module %module%. %error_details%.</target>
<note>Line: 587</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Command/ModuleCommand.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1ff626f78b7506f340c7b2ce3398367a">
<source>Cannot %action% module %module%. %error_details%</source>
<target>Cannot %action% module %module%. %error_details%</target>
<note>Line: 180</note>
</trans-unit>
<trans-unit id="9dca2e42fe7a0db763b8737e9a8f9133">
<source>%action% action on module %module% succeeded.</source>
<target>%action% action on module %module% succeeded.</target>
<note>Line: 166</note>
</trans-unit>
<trans-unit id="6867740141667a3da88ac51e48ed1d9d">
<source>Unknown module action. It must be one of these values: %actions%</source>
<target>Unknown module action. It must be one of these values: %actions%</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="e92af04f3580fee9164214abd4b621a4">
<source>Validation of configuration details failed:</source>
<target>Validation of configuration details failed:</target>
<note>Line: 140</note>
</trans-unit>
<trans-unit id="87167266fbdef818ec8508ea125915aa">
<source>Configuration successfully applied.</source>
<target>Configuration successfully applied.</target>
<note>Line: 152</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/PositionsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1c1824ce21df05df8689641c516c9d75">
<source>This module cannot be loaded.</source>
<target>This module cannot be loaded.</target>
<note>Line: 169</note>
</trans-unit>
<trans-unit id="0c01b89a049f95e9eb10cfeb2a2901f0">
<source>Hook cannot be loaded.</source>
<target>Hook cannot be loaded.</target>
<note>Line: 178</note>
</trans-unit>
<trans-unit id="c40924509e257aa0e73ccc576bd6b953">
<source>An error occurred while deleting the module from its hook.</source>
<target>An error occurred while deleting the module from its hook.</target>
<note>Line: 187</note>
</trans-unit>
<trans-unit id="80e868e8d753c3ec4066aab283e66cbc">
<source>The module was successfully removed from the hook.</source>
<target>The module was successfully removed from the hook.</target>
<note>Line: 224</note>
</trans-unit>
<trans-unit id="980b6caee06822f8c5df45eb7db277be">
<source>The module transplanted successfully to the hook.</source>
<target>The module transplanted successfully to the hook.</target>
<note>Line: 223</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/ModuleController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="385b04e1b2442530341b51c2d3b216a3">
<source>Cannot get catalog data, please try again later. Reason: %error_details%</source>
<target>Cannot get catalog data, please try again later. Reason: %error_details%</target>
<note>Line: 339</note>
</trans-unit>
<trans-unit id="71d827dd0d049981403f27fb7af0991c">
<source>%module% did not return a valid response on %action% action.</source>
<target>%module% did not return a valid response on %action% action.</target>
<note>Line: 424</note>
</trans-unit>
<trans-unit id="8e7e1a7e5fa9edcd7139f569d07fc5b9">
<source>Confirmation needed by module %module% on %action% (%subject%).</source>
<target>Confirmation needed by module %module% on %action% (%subject%).</target>
<note>Line: 592</note>
</trans-unit>
<trans-unit id="bf0edb2da5a51620141bff55d3060a63">
<source>Exception thrown by module %module% on %action%. %error_details%</source>
<target>Exception thrown by module %module% on %action%. %error_details%</target>
<note>Line: 458</note>
</trans-unit>
<trans-unit id="89d371deca1b2b50a933fabc8005ccfb">
<source>%module% did not return a valid response on installation.</source>
<target>%module% did not return a valid response on installation.</target>
<note>Line: 558</note>
</trans-unit>
<trans-unit id="35e839bc1864dd50a75500028c3ebb33">
<source>Installation of module %module% was successful.</source>
<target>Installation of module %module% was successful.</target>
<note>Line: 564</note>
</trans-unit>
<trans-unit id="f52c6f7b6fcbd586aee22044aeb6c897">
<source>Installation of module %module% failed. %error%</source>
<target>Installation of module %module% failed. %error%</target>
<note>Line: 575</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Modules/ModuleAbstractController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fc7da9518fbe20ebcaccbf5f8fd0e7df">
<source>Synchronized with Addons marketplace!</source>
<target>Synchronized with Addons marketplace!</target>
<note>Line: 112</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/card_notification_update.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fca2f02b01daced572256506d1054f4a">
<source>No changelog provided</source>
<target>No changelog provided</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_addons_connect.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="df776a9024ce6c10ec1d1d763cee0301">
<source>You are about to log out your Addons account. You might miss important updates of Addons you've bought.</source>
<target>You are about to log out your Addons account. You might miss important updates of Addons you've bought.</target>
<note>Line: 98</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_confirm.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b8e063d2ad26dfc0a659410294caf74b">
<source>You are about to disable %moduleName% module.</source>
<target>You are about to disable %moduleName% module.</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="c5209889e18199fb2a2c50958d3212b8">
<source>Your current settings will be saved, but the module will no longer be active.</source>
<target>Your current settings will be saved, but the module will no longer be active.</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="eb641425b425f906c54cb55319ec3e25">
<source>You are about to uninstall %moduleName% module.</source>
<target>You are about to uninstall %moduleName% module.</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="db0769970bbd476188bfc1c5d9d6a2bd">
<source>This will disable the module and delete all its files. For good.</source>
<target>This will disable the module and delete all its files. For good.</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="36fbfc01d63e4b57d18991077535c6e0">
<source>This action cannot be undone.</source>
<target>This action cannot be undone.</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="634b5d0d5ec8e481321b1d776f312388">
<source>You're about to reset %moduleName% module.</source>
<target>You're about to reset %moduleName% module.</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="58ce7123c3789e3c51cb3ffd42883df1">
<source>This will restore the defaults settings.</source>
<target>This will restore the defaults settings.</target>
<note>Line: 77</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_confirm_bulk_action.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a7f0cf21776c1a6ed951c58620b4507a">
<source>You are about to [1] the following modules:</source>
<target>You are about to [1] the following modules:</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_import.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c3dbf8925ec4c77ef5317e1e27317b70">
<source>Installing module...</source>
<target>Installing module...</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="a26f56145fea2d3af35bf0d6ac83c28a">
<source>It will close as soon as the module is installed. It won't be long!</source>
<target>It will close as soon as the module is installed. It won't be long!</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="f48a5ae14fa2b0c85442d1199a08b3b4">
<source>Module installed!</source>
<target>Module installed!</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="824e2fcb263ee94399a6a261ee1ec7c1">
<source>Oops... Upload failed.</source>
<target>Oops... Upload failed.</target>
<note>Line: 74</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/Includes/modal_read_more_content.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="87ad4793c12c9f9e5d56cc81386f77b8">
<source>No description found for this module :(</source>
<target>No description found for this module :(</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="a76e4258e8695991d6f5f62efdba70d6">
<source>No additional description provided for this module :(</source>
<target>No additional description provided for this module :(</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="1ed02f805424aac96756b590d51e2038">
<source>No feature list provided for this module :(</source>
<target>No feature list provided for this module :(</target>
<note>Line: 138</note>
</trans-unit>
<trans-unit id="f2a854a84903f5f29c0b7a40ccbf4ee5">
<source>No customer benefits notes found for this module :(</source>
<target>No customer benefits notes found for this module :(</target>
<note>Line: 148</note>
</trans-unit>
<trans-unit id="94d27c2e2294ddfe66621b814f2ac3e0">
<source>No demonstration video found for this module :(</source>
<target>No demonstration video found for this module :(</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="3072d199d2a0269893376e8c7d0049d6">
<source>No changelog provided for this module :(</source>
<target>No changelog provided for this module :(</target>
<note>Line: 176</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Module/common.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="634ec4fb81df959627996a95fa0e799c">
<source>You need to select at least one module to use the bulk action.</source>
<target>You need to select at least one module to use the bulk action.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="09f9472ec012d502e9cc3ab0e31c24e8">
<source>The action "[1]" is not available, impossible to perform your request.</source>
<target>The action "[1]" is not available, impossible to perform your request.</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="6e37e943fed80ec5f0629bbea4c81e1a">
<source>The action [1] is not available for module [2]. Skipped.</source>
<target>The action [1] is not available for module [2]. Skipped.</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/footer.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3dd9c50a1e72020b9cc83e92aa7d07b9">
<source>Load time: </source>
<target>Load time: </target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="bbaff12800505b22a853e8b7f4eb6a22">
<source>Contact</source>
<target>Contact</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="74baec1f24fb00ec864d0344e73347d6">
<source>User Club</source>
<target>User Club</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="a1a53ee7ff379c1df8dd0d299ee67bc6">
<source>Feature Requests</source>
<target>Feature Requests</target>
<note>Line: 72</note>
</trans-unit>
<trans-unit id="e6a7f8a2f42cc35979973da8dfb10720">
<source>Forum</source>
<target>Forum</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="b3f252777a69b110667756babe83a98f">
<source>Addons</source>
<target>Addons</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="cf270e40d273f9e7fd7c3061729060c3">
<source>Training</source>
<target>Training</target>
<note>Line: 87</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,295 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0a71c80de89d7b2d3e6b22974a4a7548">
<source>A new order has been placed on your shop.</source>
<target>A new order has been placed on your shop.</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="3df406952f3377a5e419d4d63abb1b1d">
<source>Order number:</source>
<target>Order number:</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="d2d2000f7fa636acd871f43c085a75dc">
<source>A new customer registered on your shop.</source>
<target>A new customer registered on your shop.</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="d48549659ae6cc81e7d4729b068ba4b9">
<source>A new message was posted on your shop.</source>
<target>A new message was posted on your shop.</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="6fab17d3dc1147f9b170fb8e1aac2fa8">
<source>Read this message</source>
<target>Read this message</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="4f32a32dea642737580dd71cdfd8d3c0">
<source>Quick Access</source>
<target>Quick Access</target>
<note>Line: 129</note>
</trans-unit>
<trans-unit id="f5c26758149849ee0f84a2eceaf0acfd">
<source>Remove from QuickAccess</source>
<target>Remove from QuickAccess</target>
<note>Line: 144</note>
</trans-unit>
<trans-unit id="383247a8cb198be4042d128986100cea">
<source>Add current page to QuickAccess</source>
<target>Add current page to QuickAccess</target>
<note>Line: 151</note>
</trans-unit>
<trans-unit id="165122309e15dc09c30b78951e53cb5a">
<source>Manage quick accesses</source>
<target>Manage quick accesses</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="6f7579a25b7aba443386a5b86a7900b4">
<source>Please name this shortcut:</source>
<target>Please name this shortcut:</target>
<note>Line: 173</note>
</trans-unit>
<trans-unit id="ec3028a12402ab7f43962a6f3a667b6e">
<source>Debug mode</source>
<target>Debug mode</target>
<note>Line: 227</note>
</trans-unit>
<trans-unit id="38a27c0c7ef7a05e13efa2798ee21533">
<source>Maintenance mode</source>
<target>Maintenance mode</target>
<note>Line: 242</note>
</trans-unit>
<trans-unit id="d70861cbe7f8c9a1241c39b3e7ef5ef2">
<source>View my shop</source>
<target>View my shop</target>
<note>Line: 266</note>
</trans-unit>
<trans-unit id="1558db2a9e35b7898e0b2a4a777ed2f9">
<source>Latest orders</source>
<target>Latest orders</target>
<note>Line: 289</note>
</trans-unit>
<trans-unit id="3d8de6fcc09baf73f7175fe59f278ced">
<source>Your profile</source>
<target>Your profile</target>
<note>Line: 363</note>
</trans-unit>
<trans-unit id="65e81c540f5af5f5c59901a076f9b024">
<source>My PrestaShop account</source>
<target>My PrestaShop account</target>
<note>Line: 372</note>
</trans-unit>
<trans-unit id="c87aacf5673fada1108c9f809d354311">
<source>Sign out</source>
<target>Sign out</target>
<note>Line: 375</note>
</trans-unit>
<trans-unit id="5dc5aba5187b03594ed0512efb6a8d4f">
<source>New customers</source>
<target>New customers</target>
<note>Line: 295</note>
</trans-unit>
<trans-unit id="60434fac312a307d4f9b9eb03a6c1694">
<source>Welcome back %name%</source>
<target>Welcome back %name%</target>
<note>Line: 362</note>
</trans-unit>
<trans-unit id="ddcf50c29294d4414f3f7c1bbc892cb5">
<source>Resources</source>
<target>Resources</target>
<note>Line: 366</note>
</trans-unit>
<trans-unit id="bb19647badc9df09a2e0993fc4a7cef0">
<source><![CDATA[https://www.prestashop.com/en/training?utm_source=back-office&utm_medium=profile&utm_campaign=training-en&utm_content=download17]]></source>
<target><![CDATA[https://www.prestashop.com/en/training?utm_source=back-office&utm_medium=profile&utm_campaign=training-en&utm_content=download17]]></target>
<note>Line: 367</note>
</trans-unit>
<trans-unit id="cf270e40d273f9e7fd7c3061729060c3">
<source>Training</source>
<target>Training</target>
<note>Line: 367</note>
</trans-unit>
<trans-unit id="ec7680ca4761810a0c702c4c286f0030">
<source><![CDATA[https://www.prestashop.com/en/experts?utm_source=back-office&utm_medium=profile&utm_campaign=expert-en&utm_content=download17]]></source>
<target><![CDATA[https://www.prestashop.com/en/experts?utm_source=back-office&utm_medium=profile&utm_campaign=expert-en&utm_content=download17]]></target>
<note>Line: 368</note>
</trans-unit>
<trans-unit id="1611190db36358b26ea894c16023ab12">
<source>Find an Expert</source>
<target>Find an Expert</target>
<note>Line: 368</note>
</trans-unit>
<trans-unit id="d2230abc096f6c1383ce1b4993099e2e">
<source><![CDATA[https://addons.prestashop.com?utm_source=back-office&utm_medium=profile&utm_campaign=addons-en&utm_content=download17]]></source>
<target><![CDATA[https://addons.prestashop.com?utm_source=back-office&utm_medium=profile&utm_campaign=addons-en&utm_content=download17]]></target>
<note>Line: 369</note>
</trans-unit>
<trans-unit id="1862c358989cfbd20d38ca9adf69e27a">
<source>PrestaShop Marketplace</source>
<target>PrestaShop Marketplace</target>
<note>Line: 369</note>
</trans-unit>
<trans-unit id="1d0b7a7027c367c8aa2dcb9170fe6769">
<source><![CDATA[https://www.prestashop.com/en/contact?utm_source=back-office&utm_medium=profile&utm_campaign=help-center-en&utm_content=download17]]></source>
<target><![CDATA[https://www.prestashop.com/en/contact?utm_source=back-office&utm_medium=profile&utm_campaign=help-center-en&utm_content=download17]]></target>
<note>Line: 370</note>
</trans-unit>
<trans-unit id="012065927bff8fcbce602e741a2d663e">
<source><![CDATA[https://www.prestashop.com/en/resources/documentations?utm_source=back-office&utm_medium=profile&utm_campaign=resources-en&utm_content=download17
]]></source>
<target><![CDATA[https://www.prestashop.com/en/resources/documentations?utm_source=back-office&utm_medium=profile&utm_campaign=resources-en&utm_content=download17
]]></target>
<note>Line: 365</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/search_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2e67c0a79d35c15af2436c8d80ca072d">
<source>What are you looking for?</source>
<target>What are you looking for?</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="13787cfb1a15ae6690a29d3895c54de9">
<source>Everywhere</source>
<target>Everywhere</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="7f704ff8964f7b5f3f9a6444d450b5f7">
<source>Product name, SKU, reference...</source>
<target>Product name, SKU, reference...</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="a3681587c5320489b6a3dd21282e254d">
<source>Email, name...</source>
<target>Email, name...</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="f53c56a189f5670f997915484f96f388">
<source>Customers by name</source>
<target>Customers by name</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="627f312c03624bf40f0656d5e7da6983">
<source>Customers by IP address</source>
<target>Customers by IP address</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="d79cf3f429596f77db95c65074663a54">
<source>Order ID</source>
<target>Order ID</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="4e065ba1bec1d62b2d5450256612fa96">
<source>Invoice Number</source>
<target>Invoice Number</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="fc6dfe4f8b07fc04c99e27425f780754">
<source>Cart ID</source>
<target>Cart ID</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="07403a8bc81d7865c8e040e718ec7828">
<source>Module name</source>
<target>Module name</target>
<note>Line: 69</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/new-theme/template/components/layout/employee_dropdown.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="efdaf9f44ce968366fa78277263abc1d">
<source>Help Center</source>
<target>Help Center</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="5adcdddcf74f0e406c8ec667e34c9cd0">
<source><![CDATA[https://www.prestashop.com/en/resources/documentations?utm_source=back-office&utm_medium=profile&utm_campaign=resources-en&utm_content=download17]]></source>
<target><![CDATA[https://www.prestashop.com/en/resources/documentations?utm_source=back-office&utm_medium=profile&utm_campaign=resources-en&utm_content=download17]]></target>
<note>Line: 42</note>
</trans-unit>
</body>
</file>
<file original="classes/lang/KeysReference/QuickAccessLang.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e7a908d79d3758c911692ba791da9c70">
<source>Catalog evaluation</source>
<target>Catalog evaluation</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="8cf04a9734132302f96da8e113e80ce5">
<source>Home</source>
<target>Home</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="bf4e361cd7132e11e34d34124bb04291">
<source>My Shop</source>
<target>My Shop</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="52015afb6ec8b940ef903ff73f4c4058">
<source>New category</source>
<target>New category</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="656c3be690ee43df4b845bd2a2ebe587">
<source>New product</source>
<target>New product</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="a0d555e459a8227e786d2bfaf99b9974">
<source>New voucher</source>
<target>New voucher</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="7442e29d7d53e549b78d93c46b8cdcfc">
<source>Orders</source>
<target>Orders</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="f388bc3eaa4b9f72756a75693a12559d">
<source>Installed modules</source>
<target>Installed modules</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminQuickAccessesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="97e7c9a7d06eac006a28bf05467fcc8b">
<source>Link</source>
<target>Link</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="fe501f6dab88efcbde9b3f062a5ae781">
<source>Quick Access menu</source>
<target>Quick Access menu</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="55e4a48ac94061c93174d67635445e69">
<source>If it's a URL that comes from your back office, you MUST remove the security token.</source>
<target>If it's a URL that comes from your back office, you MUST remove the security token.</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="2959ce8aed67d6b6e6f5cefd601f1091">
<source>Open in new window</source>
<target>Open in new window</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="35c2475e5e8a5a14f8c1d9c1238e4cef">
<source>Add new quick access</source>
<target>Add new quick access</target>
<note>Line: 135</note>
</trans-unit>
<trans-unit id="e5dc8e5afea0a065948622039358de37">
<source>New window</source>
<target>New window</target>
<note>Line: 69</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,739 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/page_header_toolbar.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b61541208db7fa7dba42c85224405911">
<source>Menu</source>
<target>Menu</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/search_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c32516babc5b6c47eb8ce1bfc223253c">
<source>Catalog</source>
<target>Catalog</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="fce9a6a1bd2a2050eb86d33103f46fd3">
<source>Invoices</source>
<target>Invoices</target>
<note>Line: 60</note>
</trans-unit>
</body>
</file>
<file original="classes/lang/KeysReference/TabLang.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="27ce7f8b5623b2e2df568d64cf051607">
<source>Stock</source>
<target>Stock</target>
<note>Line: 119</note>
</trans-unit>
<trans-unit id="3068c5a98c003498f1fec0c489212e8b">
<source>Sell</source>
<target>Sell</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="10ac42c4d7dca450a66e8efbe8b00799">
<source>Improve</source>
<target>Improve</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="f1206f9fadc5ce41694f69129aecac26">
<source>Configure</source>
<target>Configure</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="d3da97e2d9aee5c8fbe03156ad051c99">
<source>More</source>
<target>More</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="284b47b0bb63ae2df3b29f0e691d6fcf">
<source>Addresses</source>
<target>Addresses</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="d5f0ba6e06dd63bcb2b101779a024f97">
<source><![CDATA[Modules & Services]]></source>
<target><![CDATA[Modules & Services]]></target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="c9d7eedc8be4380c02106619824b8449">
<source>Advanced Parameters</source>
<target>Advanced Parameters</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="91f3a2c0e4424c87689525da44c4db11">
<source>Files</source>
<target>Files</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="20ad345341cfd791c1a3f9ef20c35577">
<source><![CDATA[Attributes & Features]]></source>
<target><![CDATA[Attributes & Features]]></target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="287234a1ff35a314b5b6bc4e5828e745">
<source>Attributes</source>
<target>Attributes</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="1d6af794b2599c1407a83029a09d1ecf">
<source>Carriers</source>
<target>Carriers</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="914419aa32f04011357d3b604a86d7eb">
<source>Carrier</source>
<target>Carrier</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="65b7eaeb9ba4e9903f82297face9f7cd">
<source>Cart Rules</source>
<target>Cart Rules</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="8540df06444445760abd0583233b6367">
<source>Catalog Price Rules</source>
<target>Catalog Price Rules</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="2e0c0842b88031fa2594c2fc231a0c22">
<source>Module Catalog</source>
<target>Module Catalog</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="efcf628091b527cc576784186ac97de9">
<source>Page Categories</source>
<target>Page Categories</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="453aceb005ceaf54a47da15fee8b2a26">
<source>Pages</source>
<target>Pages</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="f647e3f65d2df0358ad2eff6a6d85c15">
<source>Combinations Generator</source>
<target>Combinations Generator</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="254f642527b45bc260048e30704edb39">
<source>Configuration</source>
<target>Configuration</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="bbaff12800505b22a853e8b7f4eb6a22">
<source>Contact</source>
<target>Contact</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="790d59ef178acbc75d233bf4211763c6">
<source>Countries</source>
<target>Countries</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="33f595542d01643570908b6ecac7b521">
<source>Credit Slips</source>
<target>Credit Slips</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="d5552e0564007d93ff5937a9cb3bc491">
<source>Customer Service</source>
<target>Customer Service</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="e693ba8db5bd43c8b27cf2eca19215ab">
<source>Customer Settings</source>
<target>Customer Settings</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="2938c7f7e560ed972f8a4f68e80ff834">
<source>Dashboard</source>
<target>Dashboard</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="e307db07b3975fef922a80d07455ee5e">
<source>Database</source>
<target>Database</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="eb626c94531ec554f93b2b78a77c8b1b">
<source>Employees</source>
<target>Employees</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="ac848fa228f49ba2b8a5fbd76596817d">
<source>Team</source>
<target>Team</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="98f770b0af18ca763421bac22b4b6805">
<source>Features</source>
<target>Features</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="0db377921f4ce762c62526131097968f">
<source>General</source>
<target>General</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="a37ede293936e29279ed543129451ec3">
<source>Groups</source>
<target>Groups</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="4c99c66c65d5cc7f1c5ef76302aa9988">
<source>Image Settings</source>
<target>Image Settings</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="fff0d600f8a0b5e19e88bfb821dd1157">
<source>Images</source>
<target>Images</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="b9c1c003e8bf1de207824b5766413840">
<source>Instant Stock Status</source>
<target>Instant Stock Status</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="3a08e2e340ab29fd9263af48193cbf8e">
<source>Languages</source>
<target>Languages</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="eebd338ddbd547e41e4a1296de82963a">
<source>Locations</source>
<target>Locations</target>
<note>Line: 75</note>
</trans-unit>
<trans-unit id="99dea78007133396a7b8ed70578ac6ae">
<source>Login</source>
<target>Login</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="1afa74da05ca145d3418aad9af510109">
<source>Design</source>
<target>Design</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="aa1550e5c6de2f5e7867edbf0f019118">
<source><![CDATA[Brands & Suppliers]]></source>
<target><![CDATA[Brands & Suppliers]]></target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="84be54bb4bd1b755a27d86388700d097">
<source>Brands</source>
<target>Brands</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="7cb15e416d62919b1b40298324fbe30b">
<source>Marketing</source>
<target>Marketing</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="06145a21dcec7395085b033e6e169b61">
<source>Menus</source>
<target>Menus</target>
<note>Line: 83</note>
</trans-unit>
<trans-unit id="979640f579db842e61902ca061153965">
<source>Merchandise Returns</source>
<target>Merchandise Returns</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="bf17ac149e2e7a530c677e9bd51d3fd2">
<source>Modules</source>
<target>Modules</target>
<note>Line: 138
Comment: subtab</note>
</trans-unit>
<trans-unit id="423e555c5ec3885f2bb5d9d2d6627f63">
<source>Monitoring</source>
<target>Monitoring</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="c103bafd6451f1f08200bebff539606f">
<source>Multistore</source>
<target>Multistore</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="127458a6096e6f3224228922cfd45c49">
<source>Order Messages</source>
<target>Order Messages</target>
<note>Line: 88</note>
</trans-unit>
<trans-unit id="d72eaa592e6b1b6f30787d67a70422b7">
<source>Order Settings</source>
<target>Order Settings</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="7442e29d7d53e549b78d93c46b8cdcfc">
<source>Orders</source>
<target>Orders</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="a860ed9926b241b7d4dca2d00610ab2c">
<source>Outstanding</source>
<target>Outstanding</target>
<note>Line: 91</note>
</trans-unit>
<trans-unit id="c453a4b8e8d98e82f35b67f433e3b4da">
<source>Payment</source>
<target>Payment</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="d08ccf52b4cdd08e41cfb99ec42e0b29">
<source>Permissions</source>
<target>Permissions</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="9d5bf15117441a1b52eb1f0808e4aad3">
<source>Discounts</source>
<target>Discounts</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="068f80c7519d0528fb08e82137a72131">
<source>Products</source>
<target>Products</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="4f32a32dea642737580dd71cdfd8d3c0">
<source>Quick Access</source>
<target>Quick Access</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="ff398a1c3434e160c655aa1613e0eace">
<source>Referrers</source>
<target>Referrers</target>
<note>Line: 103</note>
</trans-unit>
<trans-unit id="13348442cc6a27032d2b4aa28b75a5d3">
<source>Search</source>
<target>Search</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="60d744a6a3775f721ca67718b9c38295">
<source>Search Engines</source>
<target>Search Engines</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="ea9cf7e47ff33b2be14e6dd07cbcefc6">
<source>Shipping</source>
<target>Shipping</target>
<note>Line: 107</note>
</trans-unit>
<trans-unit id="cf39aaa3dadb081e301236a4abf5e5f4">
<source>Shop Parameters</source>
<target>Shop Parameters</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="ae92e4c41ccb386880cda8880c64c6f5">
<source>Shop URLs</source>
<target>Shop URLs</target>
<note>Line: 109</note>
</trans-unit>
<trans-unit id="2c3a8560142d9921c9de12d0a9403fa4">
<source>Shopping Carts</source>
<target>Shopping Carts</target>
<note>Line: 110</note>
</trans-unit>
<trans-unit id="12a521af593422cd508f7707662c9eb2">
<source>Shops</source>
<target>Shops</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="b8464cdd84b5f068ad72bf5c4f32163d">
<source>States</source>
<target>States</target>
<note>Line: 113</note>
</trans-unit>
<trans-unit id="452a7601dbc6f2c38aa89e68bda8b603">
<source>Stats</source>
<target>Stats</target>
<note>Line: 114</note>
</trans-unit>
<trans-unit id="61fe9018991004014d12b8d81568df90">
<source>Statuses</source>
<target>Statuses</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="89de17fb747c585a81e444f70312de3f">
<source>Stock Coverage</source>
<target>Stock Coverage</target>
<note>Line: 116</note>
</trans-unit>
<trans-unit id="491b992b9b809f4b8797ad1d5e89c93f">
<source>Stock Management</source>
<target>Stock Management</target>
<note>Line: 117</note>
</trans-unit>
<trans-unit id="7a88c0e00abd9ea4220cc8fd00892306">
<source>Stock Movement</source>
<target>Stock Movement</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="821b8ee6937cec96c30fdafbfe836d68">
<source>Stores</source>
<target>Stores</target>
<note>Line: 120</note>
</trans-unit>
<trans-unit id="570f64eae55bf16de04f20757969d5cf">
<source>Supply orders</source>
<target>Supply orders</target>
<note>Line: 122</note>
</trans-unit>
<trans-unit id="189f63f277cd73395561651753563065">
<source>Tags</source>
<target>Tags</target>
<note>Line: 123</note>
</trans-unit>
<trans-unit id="719fec04166d6fa75f89cd29ad61fa8c">
<source>Taxes</source>
<target>Taxes</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="8d4ae51b8b5831db49a6dcde1b83e175">
<source>Tax Rules</source>
<target>Tax Rules</target>
<note>Line: 125</note>
</trans-unit>
<trans-unit id="6ab9fb0c40f36bc078afaacf74c91215">
<source>Theme Catalog</source>
<target>Theme Catalog</target>
<note>Line: 126</note>
</trans-unit>
<trans-unit id="8612579044efe457f11398b5a2377226">
<source>Titles</source>
<target>Titles</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="c11004c9bfd6ca3b95f052f0df3e8f21">
<source><![CDATA[Traffic & SEO]]></source>
<target><![CDATA[Traffic & SEO]]></target>
<note>Line: 129</note>
</trans-unit>
<trans-unit id="3020c78ae45aff9a35b95856af076765">
<source>Warehouses</source>
<target>Warehouses</target>
<note>Line: 131</note>
</trans-unit>
<trans-unit id="dad1f8d794ee0dd7753fe75e73b78f31">
<source>Zones</source>
<target>Zones</target>
<note>Line: 133</note>
</trans-unit>
<trans-unit id="58366edba8b92e2955f237fe5897dad5">
<source>Modules Catalog</source>
<target>Modules Catalog</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="e699cbe9208f8353248889781f83d636">
<source>Module manager</source>
<target>Module manager</target>
<note>Line: 135</note>
</trans-unit>
<trans-unit id="9ac41b6a577daadd588f0fcde0071e8b">
<source>Updates</source>
<target>Updates</target>
<note>Line: 139</note>
</trans-unit>
<trans-unit id="df583ae7ba964fd4806b55904da81813">
<source>Alerts</source>
<target>Alerts</target>
<note>Line: 140</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/BackupDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="eb5782af6c84c44ab4147000928cbb78">
<source>DB Backup</source>
<target>DB Backup</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CmsPageCategoryDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="af1b98adf7f686b84cd0b443e022b7a0">
<source>Categories</source>
<target>Categories</target>
<note>Line: 105</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/ContactGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9aa698f602b1e5694855cee73a683488">
<source>Contacts</source>
<target>Contacts</target>
<note>Line: 89</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CurrencyGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dfcfc43722eef1eab1e4a12e50a068b1">
<source>Currencies</source>
<target>Currencies</target>
<note>Line: 66</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/EmailLogsDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1e884e3078d9978e216a027ecd57fb34">
<source>E-mail</source>
<target>E-mail</target>
<note>Line: 100</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/LogGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b2d37ae1cedf42ff874289b721860af2">
<source>Logs</source>
<target>Logs</target>
<note>Line: 90</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/MetaGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="194506bb3f2a5aea2ced4ea98cb22fb4">
<source><![CDATA[SEO & URLs]]></source>
<target><![CDATA[SEO & URLs]]></target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/ProfileGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d0f25115288c15321ecf672f0d6a83ea">
<source>Profiles</source>
<target>Profiles</target>
<note>Line: 98</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/RequestSqlGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e836c2a96e7ef38a39afe4be2beddddd">
<source>SQL Manager</source>
<target>SQL Manager</target>
<note>Line: 88</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/SupplierGridDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1814d65a76028fdfbadab64a5a8076df">
<source>Suppliers</source>
<target>Suppliers</target>
<note>Line: 68</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7258e7251413465e0a3eb58094430bde">
<source>Administration</source>
<target>Administration</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/ImportController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="72d6d7a1885885bb55a565fd1070581a">
<source>Import</source>
<target>Import</target>
<note>Line: 314</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9446a98ad14416153cc4d45ab8b531bf">
<source>Performance</source>
<target>Performance</target>
<note>Line: 68</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SystemInformationController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a82be0f551b8708bc08eb33cd9ded0cf">
<source>Information</source>
<target>Information</target>
<note>Line: 56</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/CustomerPreferencesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e6d0e1c8fc6a4fcf47869df87e04cd88">
<source>Customers</source>
<target>Customers</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="10d0de28911c5f66463b9c8783f8148a">
<source>Maintenance</source>
<target>Maintenance</target>
<note>Line: 60</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6f23811c1a55219e38a63b7a8520f842">
<source>Order settings</source>
<target>Order settings</target>
<note>Line: 54</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3821c92eff2643b0d1ccdce26d2e8e48">
<source>Product Settings</source>
<target>Product Settings</target>
<note>Line: 55</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/MailThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9312b7e2a7e98ff341ddb219397c0d9c">
<source>Email Theme</source>
<target>Email Theme</target>
<note>Line: 84</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/PositionsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3160eb21973806e4291c3979d4aa242e">
<source>Positions</source>
<target>Positions</target>
<note>Line: 125</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/ThemeCatalogController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e407e3879ca4125520f85ab0c57c3a5c">
<source>Themes Catalog</source>
<target>Themes Catalog</target>
<note>Line: 54</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="323d4eb70b252acb4a04eaf9e0882597">
<source>Geolocation</source>
<target>Geolocation</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="369686331c93d55e587441143ccdf427">
<source>Localization</source>
<target>Localization</target>
<note>Line: 66</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/ModuleController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6ea7071301eeb50e00bf88f5a46ded8e">
<source>Modules catalog</source>
<target>Modules catalog</target>
<note>Line: 71</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Modules/AddonsStoreController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8e750875217fe72ff73cda7e57e4d61f">
<source>Module selection</source>
<target>Module selection</target>
<note>Line: 61</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Payment/PaymentMethodsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="af01f8c298aa063d9c7490f00eddd2df">
<source>Payment Methods</source>
<target>Payment Methods</target>
<note>Line: 64</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d0834fcec6337785ee749c8f5464f6f6">
<source>Preferences</source>
<target>Preferences</target>
<note>Line: 55</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Sell/Order/DeliveryController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8fddfc8225dcf89be0e15709c671af4e">
<source>Delivery Slips</source>
<target>Delivery Slips</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/TranslationsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0b8d92bc19b720bb1065649535463409">
<source>Translations</source>
<target>Translations</target>
<note>Line: 106</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Webservice/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a80d5e18649d829bda78450f7c862711">
<source>Webservice</source>
<target>Webservice</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fcf3b725bb6ebb0e635b0f0902ade451">
<source><![CDATA[Theme & Logo]]></source>
<target><![CDATA[Theme & Logo]]></target>
<note>Line: 28</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8189ecf686157db0c0274c1f49373318">
<source>International</source>
<target>International</target>
<note>Line: 50</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,134 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a2b8ed9c305b8ea86116b603cca78a97">
<source>registered</source>
<target>registered</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="91a52a2a855d5abd5597a481c20f3972">
<source>No new order for now :(</source>
<target>No new order for now :(</target>
<note>Line: 313</note>
</trans-unit>
<trans-unit id="235a11509f6bd6143ddf165affbf7dad">
<source>No new customer for now :(</source>
<target>No new customer for now :(</target>
<note>Line: 323</note>
</trans-unit>
<trans-unit id="b7c3bb1b80422ee7587d604b1a97ce3c">
<source>No new message for now.</source>
<target>No new message for now.</target>
<note>Line: 333</note>
</trans-unit>
<trans-unit id="c821206b336b401bccf058f664f8255d">
<source>Your shop is in debug mode.</source>
<target>Your shop is in debug mode.</target>
<note>Line: 223</note>
</trans-unit>
<trans-unit id="13886bc255a80b7c11e0585013feeb30">
<source>All the PHP errors and messages are displayed. When you no longer need it, [1]turn off[/1] this mode.</source>
<target>All the PHP errors and messages are displayed. When you no longer need it, [1]turn off[/1] this mode.</target>
<note>Line: 223</note>
</trans-unit>
<trans-unit id="67a33d40bef41c3b79d6b973bfcbc89a">
<source>Your shop is in maintenance.</source>
<target>Your shop is in maintenance.</target>
<note>Line: 239</note>
</trans-unit>
<trans-unit id="929f5283d0fa1e9eecf20cc294f981e5">
<source><![CDATA[Your visitors and customers cannot access your shop while in maintenance mode.%s To manage the maintenance settings, go to Shop Parameters > Maintenance tab.]]></source>
<target><![CDATA[Your visitors and customers cannot access your shop while in maintenance mode.%s To manage the maintenance settings, go to Shop Parameters > Maintenance tab.]]></target>
<note>Line: 239</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/new-theme/template/components/layout/notifications_center.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="00843f41bd87586508e233b4b4947cf2">
<source>Orders[1][/1]</source>
<target>Orders[1][/1]</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="6ff813b90fea117cb8981d26b0df548c">
<source>Customers[1][/1]</source>
<target>Customers[1][/1]</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="ced94ea851437be7264f84648dbe3c7d">
<source>Messages[1][/1]</source>
<target>Messages[1][/1]</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="d98a07f84921b24ee30f86fd8cd85c3c">
<source>from</source>
<target>from</target>
<note>Line: 123</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/AdminController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7338d1654d0dd5e156c4ad6d2a6a80a5">
<source>Did you check your conversion rate lately?</source>
<target>Did you check your conversion rate lately?</target>
<note>Line: 1997</note>
</trans-unit>
<trans-unit id="2e93cdcdff918d01a48fa1f1fdd7d0cd">
<source>How about some seasonal discounts?</source>
<target>How about some seasonal discounts?</target>
<note>Line: 1998</note>
</trans-unit>
<trans-unit id="7c56f525288d680c6efa0c2d07d79d13">
<source>Have you checked your [1][2]abandoned carts[/2][/1]?[3]Your next order could be hiding there!</source>
<target>Have you checked your [1][2]abandoned carts[/2][/1]?[3]Your next order could be hiding there!</target>
<note>Line: 2000</note>
</trans-unit>
<trans-unit id="164458d092e10375ec3068e610fe5d10">
<source>Have you sent any acquisition email lately?</source>
<target>Have you sent any acquisition email lately?</target>
<note>Line: 2012</note>
</trans-unit>
<trans-unit id="70821661a53b31c40fdd6c9f3bbff741">
<source>Are you active on social media these days?</source>
<target>Are you active on social media these days?</target>
<note>Line: 2013</note>
</trans-unit>
<trans-unit id="f588a396cc917d42d3dc0dd61d9e339b">
<source>Have you considered selling on marketplaces?</source>
<target>Have you considered selling on marketplaces?</target>
<note>Line: 2014</note>
</trans-unit>
<trans-unit id="e0b6918caa922c992efb3343d11470c9">
<source>That's more time for something else!</source>
<target>That's more time for something else!</target>
<note>Line: 2017</note>
</trans-unit>
<trans-unit id="9a6493e17f94595cb54a16f60866d9fd">
<source>No news is good news, isn't it?</source>
<target>No news is good news, isn't it?</target>
<note>Line: 2018</note>
</trans-unit>
<trans-unit id="b5ffb1ab1fe4ad00831c65b8dab60c0c">
<source>Seems like all your customers are happy :)</source>
<target>Seems like all your customers are happy :)</target>
<note>Line: 2019</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminQuickAccessesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c059561b30601ffaf8759ae84f2b44b9">
<source>An error occurred while updating new window property.</source>
<target>An error occurred while updating new window property.</target>
<note>Line: 241</note>
</trans-unit>
<trans-unit id="aeaf2891ec065451798dc21794358950">
<source>An error occurred while updating the new window property for this object.</source>
<target>An error occurred while updating the new window property for this object.</target>
<note>Line: 244</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/search/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1eafe1bac879d838ee6d25eccfc9cb35">
<source>There are no results matching your query "%s".</source>
<target>There are no results matching your query "%s".</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="71eb31b250c9248c64a08e1efad5f6d9">
<source>%d results match your query "%s".</source>
<target>%d results match your query "%s".</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="7728ad63f14ad095862fd765b7a74fe6">
<source>1 result matches your query "%s".</source>
<target>1 result matches your query "%s".</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="81609118f8ea6dc02664998181345416">
<source>1 feature</source>
<target>1 feature</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="6827f95aead7a463cac2c673591edf7e">
<source>%d features</source>
<target>%d features</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="c4a6a84a33c055a2f92c8f3d52718100">
<source>1 module</source>
<target>1 module</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="d64f66187ca2535e8aa5eccac54e7013">
<source>%d modules</source>
<target>%d modules</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="59a2104ef3237945cd8378a51f853ca8">
<source>1 category</source>
<target>1 category</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="593dafa821d7cebf6e76bf592110ba32">
<source>%d categories</source>
<target>%d categories</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="702085cd8b96c1e778c9e59ffba0394d">
<source>1 product</source>
<target>1 product</target>
<note>Line: 116</note>
</trans-unit>
<trans-unit id="864c665aea5e824772fda0e678c3ac4d">
<source>%d products</source>
<target>%d products</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="f08f35ebaebc5e5037a0b2a3474de8c4">
<source>1 customer</source>
<target>1 customer</target>
<note>Line: 130</note>
</trans-unit>
<trans-unit id="d5865d192ae31edead7bdea6ed1c85d9">
<source>%d customers</source>
<target>%d customers</target>
<note>Line: 132</note>
</trans-unit>
<trans-unit id="6febfe29360949ae825d828fa095b6df">
<source>1 order</source>
<target>1 order</target>
<note>Line: 143</note>
</trans-unit>
<trans-unit id="c0115153d45d00a4510d71e2605196a3">
<source>%d orders</source>
<target>%d orders</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="1b339eb691ebd4d2103b8b76de41d321">
<source>1 addon</source>
<target>1 addon</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="0cbcb09148c0538edfccc2b40d606ae7">
<source>%d addons</source>
<target>%d addons</target>
<note>Line: 158</note>
</trans-unit>
<trans-unit id="e77449fd1e8fd61e78e99eac35791ed7">
<source>Show more results...</source>
<target>Show more results...</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="fdbb3dd95d543d67dc19d9fb3f6c46f4">
<source>Search doc.prestashop.com</source>
<target>Search doc.prestashop.com</target>
<note>Line: 183</note>
</trans-unit>
<trans-unit id="14bd5dfadc5c57da66495ebc2c8c020b">
<source>Go to the documentation</source>
<target>Go to the documentation</target>
<note>Line: 184</note>
</trans-unit>
<trans-unit id="9d6f008f9c1e0446e23b253ecc7b311a">
<source>Search addons.prestashop.com</source>
<target>Search addons.prestashop.com</target>
<note>Line: 189</note>
</trans-unit>
<trans-unit id="a68b46728e83ba2fd535a25e8216bdb7">
<source>Go to Addons</source>
<target>Go to Addons</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="96b65991d3a699bf3e83cec22339b620">
<source>Search prestashop.com forum</source>
<target>Search prestashop.com forum</target>
<note>Line: 195</note>
</trans-unit>
<trans-unit id="550b342104e3b39d04e56c346bc6f014">
<source>Go to the Forum</source>
<target>Go to the Forum</target>
<note>Line: 196</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="75d3b3db03124cd6196c021686bda791">
<source>%d result matches your query "%s".</source>
<target>%d result matches your query "%s".</target>
<note>Line: 57
Comment: %d can be 0 or 1</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2fc6204d2ca7e856d9e4844d2786f053">
<source>This field will be modified for all your shops.</source>
<target>This field will be modified for all your shops.</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="7ac170f2b47dbf7d4c5cd38449093c2b">
<source>This field will be modified for all shops in this shop group:</source>
<target>This field will be modified for all shops in this shop group:</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="fe0ae15c8f93a5335f0991accadd13ca">
<source>This field will be modified for this shop:</source>
<target>This field will be modified for this shop:</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarriersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d3b206d196cd6be3a2764c1fb90b200f">
<source>Delete selected</source>
<target>Delete selected</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="e25f0ecd41211b01c83e5fec41df4fe7">
<source>Delete selected items?</source>
<target>Delete selected items?</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="1412292b09d3cd39f32549afb1f5f102">
<source>Delete selected item?</source>
<target>Delete selected item?</target>
<note>Line: 703</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b3ebc4fbc081856600b6b9ecbb0a99fb">
<source>Delete the selected item?</source>
<target>Delete the selected item?</target>
<note>Line: 1048</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminQuickAccessesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3e053943605d9e4bf7dd7588ea19e9d2">
<source>Forbidden characters:</source>
<target>Forbidden characters:</target>
<note>Line: 90</note>
</trans-unit>
</body>
</file>
<file original="modules/statsbestmanufacturers/statsbestmanufacturers.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="58ef962a87e6fbbea6027c17a954a18d">
<source>Empty recordset returned.</source>
<target>Empty recordset returned.</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="modules/statsbestsuppliers/statsbestsuppliers.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4f29d8c727dcf2022ac241cb96c31083">
<source>Empty recordset returned</source>
<target>Empty recordset returned</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/International/Tax/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6252c0f2c2ed83b7b06dfca86d4650bb">
<source>Invalid characters:</source>
<target>Invalid characters:</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f6916f4f1a268d4d0014ce47a2dfc3e4">
<source>Password should be at least %length% characters long.</source>
<target>Password should be at least %length% characters long.</target>
<note>Line: 62</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,209 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/access/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="151648106e4bf98297882ea2ea1c4b0e">
<source>Update successful</source>
<target>Update successful</target>
<note>Line: 228</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b4a34d3f58b039e7685c2e39b5413757">
<source>Successful update.</source>
<target>Successful update.</target>
<note>Line: 83</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/AdminController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e9d71289fdbe4799d4fe91ccc17be0af">
<source>The thumbnails were successfully regenerated.</source>
<target>The thumbnails were successfully regenerated.</target>
<note>Line: 478</note>
</trans-unit>
<trans-unit id="4a6c326f3ec43e638da38a44a21b5eb7">
<source>Comment successfully added.</source>
<target>Comment successfully added.</target>
<note>Line: 480</note>
</trans-unit>
<trans-unit id="1b73f0da557b7b0773d0fc6b5fd0a3b4">
<source>Successful upload.</source>
<target>Successful upload.</target>
<note>Line: 487</note>
</trans-unit>
<trans-unit id="759d07e8bdf6d3a5863ed521009b3ac1">
<source>Duplication was completed successfully.</source>
<target>Duplication was completed successfully.</target>
<note>Line: 488</note>
</trans-unit>
<trans-unit id="13f1ce18a02ac5293cf5a4274f9300de">
<source>The selected images have successfully been moved.</source>
<target>The selected images have successfully been moved.</target>
<note>Line: 494</note>
</trans-unit>
<trans-unit id="714903406a224ca68890e377ea111388">
<source>Your cover image selection has been saved.</source>
<target>Your cover image selection has been saved.</target>
<note>Line: 495</note>
</trans-unit>
<trans-unit id="b2266c7007fff254b1a9373f8a648a1c">
<source>The image's shop association has been modified.</source>
<target>The image's shop association has been modified.</target>
<note>Line: 496</note>
</trans-unit>
<trans-unit id="3a627484fcb2a5d110b44a390d5ee7c1">
<source>A zone has been assigned to the selection successfully.</source>
<target>A zone has been assigned to the selection successfully.</target>
<note>Line: 497</note>
</trans-unit>
<trans-unit id="be3af9d697c193da1a7dbfcf195050ea">
<source>Successful upgrade.</source>
<target>Successful upgrade.</target>
<note>Line: 498</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCategoriesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="de360c8b5dd9a9fdd592b1c08b3b4a62">
<source>The status has been updated successfully</source>
<target>The status has been updated successfully</target>
<note>Line: 1024</note>
</trans-unit>
<trans-unit id="f86f7b91afe27e79305a6b07bdb0d3c0">
<source>Failed to update the status</source>
<target>Failed to update the status</target>
<note>Line: 1025</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatusesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="79f062391903591d68e514a400e136cf">
<source>The status has been updated successfully.</source>
<target>The status has been updated successfully.</target>
<note>Line: 688</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_checkpayment/ps_checkpayment.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c888438d14855d7d96a2724ee9c306bd">
<source>Settings updated</source>
<target>Settings updated</target>
<note>Line: 116</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_featuredproducts/ps_featuredproducts.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="efc226b17e0532afff43be870bff0de7">
<source>The settings have been updated.</source>
<target>The settings have been updated.</target>
<note>Line: 152</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_imageslider/ps_imageslider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="20015706a8cbd457cbb6ea3e7d5dc9b3">
<source>Configuration updated</source>
<target>Configuration updated</target>
<note>Line: 434</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Product/AdminProductWrapper.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7173e38e8a10ed379625687638ddfe74">
<source>Successful deletion</source>
<target>Successful deletion</target>
<note>Line: 548</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/MailThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9dcfab12c54723f05853ee9d1581ce67">
<source>Successfully overwrote email templates for theme %s with locale %s</source>
<target>Successfully overwrote email templates for theme %s with locale %s</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="fee15218c634e6df3e3409b28730db7c">
<source>Successfully generated email templates for theme %s with locale %s</source>
<target>Successfully generated email templates for theme %s with locale %s</target>
<note>Line: 157</note>
</trans-unit>
<trans-unit id="65a97071cf50d7bcca3efd2c8d3a5ccc">
<source>Email theme configuration saved successfully</source>
<target>Email theme configuration saved successfully</target>
<note>Line: 214</note>
</trans-unit>
<trans-unit id="807ca4c2efc56c5ccb79b408d828283a">
<source>Test email for layout %layout% was successfully sent to %email%</source>
<target>Test email for layout %layout% was successfully sent to %email%</target>
<note>Line: 335</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/ThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ebc7584c0a97bc4aa867c11fc4760b3f">
<source>Your theme has been correctly exported: %path%</source>
<target>Your theme has been correctly exported: %path%</target>
<note>Line: 185</note>
</trans-unit>
<trans-unit id="6483df61619946ebf2427ba360df7ce5">
<source>The settings have been successfully updated.</source>
<target>The settings have been successfully updated.</target>
<note>Line: 147</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/International/LanguageController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fb52feac670f0252be93737558eebdb7">
<source>Successful creation.</source>
<target>Successful creation.</target>
<note>Line: 122</note>
</trans-unit>
<trans-unit id="1802a23025825ae791c1eea0118ee5f0">
<source>The status has been successfully updated.</source>
<target>The status has been successfully updated.</target>
<note>Line: 291</note>
</trans-unit>
<trans-unit id="149cd107b688af7a007e739fd51ac919">
<source>Successful deletion.</source>
<target>Successful deletion.</target>
<note>Line: 199</note>
</trans-unit>
<trans-unit id="02d5b938505dcda41a52ef3abcbd354a">
<source>The selection has been successfully deleted.</source>
<target>The selection has been successfully deleted.</target>
<note>Line: 226</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Sell/Catalog/CategoryController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="893a9104a7f0ebd94a7f4171d1996c7d">
<source>The image was successfully deleted.</source>
<target>The image was successfully deleted.</target>
<note>Line: 412</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f38f5974cdc23279ffe6d203641a8bdf">
<source>Settings updated.</source>
<target>Settings updated.</target>
<note>Line: 341</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,127 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/orders/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="729a51874fe901b092899e9e8b31c97a">
<source>Are you sure?</source>
<target>Are you sure?</target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/stats/menu.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="34ddce12eacd79ced0e326360863888f">
<source>No module has been installed.</source>
<target>No module has been installed.</target>
<note>Line: 35</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="358cc9ee3a3d23d3390e5043122d9bea">
<source>PrestaShop was unable to log in to Addons. Please check your credentials and your Internet connection.</source>
<target>PrestaShop was unable to log in to Addons. Please check your credentials and your Internet connection.</target>
<note>Line: 84</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/invalid_token.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="db26e10564e958809d798e8048fcbc0a">
<source>Invalid security token</source>
<target>Invalid security token</target>
<note>Line: 85</note>
</trans-unit>
<trans-unit id="a4da6f31ab268a5310bc475e63ab92db">
<source>I understand the risks and I really want to display this page</source>
<target>I understand the risks and I really want to display this page</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="5196611ad1bf27e9cef5375b038c04db">
<source>Take me out of here!</source>
<target>Take me out of here!</target>
<note>Line: 92</note>
</trans-unit>
</body>
</file>
<file original="modules/gsitemap/gsitemap.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bb8956c67b82c7444a80c6b2433dd8b4">
<source>Are you sure you want to uninstall this module?</source>
<target>Are you sure you want to uninstall this module?</target>
<note>Line: 53</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Grid/Definition/Factory/CmsPageDefinitionFactory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e25f0ecd41211b01c83e5fec41df4fe7">
<source>Delete selected items?</source>
<target>Delete selected items?</target>
<note>Line: 348</note>
</trans-unit>
<trans-unit id="1412292b09d3cd39f32549afb1f5f102">
<source>Delete selected item?</source>
<target>Delete selected item?</target>
<note>Line: 190</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Team/Employee/Configuration/EmployeeOptionsConfiguration.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="69163c4320b04b309f70f6ab6096657a">
<source>You cannot change the value of this configuration field in the context of this shop.</source>
<target>You cannot change the value of this configuration field in the context of this shop.</target>
<note>Line: 75</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Improve/Design/ThemeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5887e86df08049bc0eab95e975e057c4">
<source>Please select theme's import source.</source>
<target>Please select theme's import source.</target>
<note>Line: 229</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/preferences.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a157a50f5a421a7dfbdf280f3ff9d56e">
<source>You can't change the value of this configuration field in the context of this shop.</source>
<target>You can't change the value of this configuration field in the context of this shop.</target>
<note>Line: 155</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="71a0384942a58e7418c2098eaea4fe0f">
<source>Are you sure to delete this?</source>
<target>Are you sure to delete this?</target>
<note>Line: 350</note>
</trans-unit>
<trans-unit id="0eaadb4fcb48a0a0ed7bc9868be9fbaa">
<source>Warning</source>
<target>Warning</target>
<note>Line: 269</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Translation/Api/InternationalApi.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6557717352c9b5d28da3b96bf546a389">
<source>Leave anyway</source>
<target>Leave anyway</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="f58375e52c1f1329c29c474cd8b34ec7">
<source>Your modifications are not saved yet. Do you wish to save it before leaving?</source>
<target>Your modifications are not saved yet. Do you wish to save it before leaving?</target>
<note>Line: 42</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,314 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/customer_threads/helpers/view/modal.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2605a817441c19cc88eb9e5d17845dc0">
<source>You can add a comment here.</source>
<target>You can add a comment here.</target>
<note>Line: 56</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_discount_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="576e650084068ed747fb3b22196dcd70">
<source>If you chooses to create this discount for all invoices, only one discount will be created per order invoice.</source>
<target>If you chooses to create this discount for all invoices, only one discount will be created per order invoice.</target>
<note>Line: 92</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_new_product.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dca6b819ed4897f93a1a8531df9b282a">
<source>If you don't select "Free shipping," the normal shipping costs will be applied.</source>
<target>If you don't select "Free shipping," the normal shipping costs will be applied.</target>
<note>Line: 121</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_product_line.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5728ff6d5efd64ef7db72028eefc7262">
<source>(Max %amount_refundable% %tax_method%)</source>
<target>(Max %amount_refundable% %tax_method%)</target>
<note>Line: 192</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="28a996f23ec7c4f6cf75da6bf30670bd">
<source>Search for an existing customer by typing the first letters of his/her name.</source>
<target>Search for an existing customer by typing the first letters of his/her name.</target>
<note>Line: 1117</note>
</trans-unit>
<trans-unit id="73af90a8372beea9f81a3c3ca77a4aa8">
<source>Send an email to the customer with the link to process the payment.</source>
<target>Send an email to the customer with the link to process the payment.</target>
<note>Line: 1546</note>
</trans-unit>
<trans-unit id="9f38710d8e9ee2338dafa9ae484b0d85">
<source>Go on payment page to process the payment.</source>
<target>Go on payment page to process the payment.</target>
<note>Line: 1549</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f741fe9d353085c596e3c3610101e245">
<source>Resend this email to the customer</source>
<target>Resend this email to the customer</target>
<note>Line: 229</note>
</trans-unit>
<trans-unit id="f9a5775d7def0b6c57393fc86bb7a730">
<source>Do not forget to update your exchange rate before making this change.</source>
<target>Do not forget to update your exchange rate before making this change.</target>
<note>Line: 561</note>
</trans-unit>
<trans-unit id="883370e6a8360f9ffe2e658db153fd74">
<source>This feature will generate a random password and send an email to the customer.</source>
<target>This feature will generate a random password and send an email to the customer.</target>
<note>Line: 599</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/return/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d17f6ab68839ef4a39ead0638cae47a2">
<source>View details on the customer page</source>
<target>View details on the customer page</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="a901cc409fe745be1a29a311b57880ce">
<source>View details on the order page</source>
<target>View details on the order page</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a43fd5e0338751959686921566de352e">
<source>Leave this field blank if there's no change.</source>
<target>Leave this field blank if there's no change.</target>
<note>Line: 401</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminReturnController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ed4bfa76b661f4b6bc94d32fe6147d57">
<source>Would you like to allow merchandise returns in your shop?</source>
<target>Would you like to allow merchandise returns in your shop?</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="c503a53add0f47d2497ca363f9ad1b76">
<source>How many days after the delivery date does the customer have to return a product?</source>
<target>How many days after the delivery date does the customer have to return a product?</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="095fcccad5a4585fdc2fe1f97fc89561">
<source>Prefix used for return name (e.g. RE00001).</source>
<target>Prefix used for return name (e.g. RE00001).</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="2bf0a7ee96f0cba7f7d530ff08f01bf8">
<source>Merchandise return (RMA) status.</source>
<target>Merchandise return (RMA) status.</target>
<note>Line: 129</note>
</trans-unit>
<trans-unit id="a3d008a6e1f75882761e48de1b001497">
<source>List of products in return package.</source>
<target>List of products in return package.</target>
<note>Line: 137</note>
</trans-unit>
<trans-unit id="db21428a343da97c41ced5ad9ef17d56">
<source>The link is only available after validation and before the parcel gets delivered.</source>
<target>The link is only available after validation and before the parcel gets delivered.</target>
<note>Line: 145</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSlipController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0ecbd7a341049250b3da531530e42622">
<source>Prefix used for credit slips.</source>
<target>Prefix used for credit slips.</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="e07ffcdf6051874b295597fb64b62635">
<source>Format: 2012-12-31 (inclusive).</source>
<target>Format: 2012-12-31 (inclusive).</target>
<note>Line: 126</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_emailsubscription/ps_emailsubscription.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3c1c7064989da051f0b4b904bcb408cf">
<source>This customer will receive your newsletter via email.</source>
<target>This customer will receive your newsletter via email.</target>
<note>Line: 1253</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Sell/Customer/CustomerController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f6916f4f1a268d4d0014ce47a2dfc3e4">
<source>Password should be at least %length% characters long.</source>
<target>Password should be at least %length% characters long.</target>
<note>Line: 755</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/Index/required_fields.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="81f32b96f6626b8968e6a0f4a9bce62e">
<source>Select the fields you would like to be required for this section.</source>
<target>Select the fields you would like to be required for this section.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="a75835a6fe4329ee7884694415c2d46d">
<source>Please make sure you are complying with the opt-in legislation applicable in your country.</source>
<target>Please make sure you are complying with the opt-in legislation applicable in your country.</target>
<note>Line: 36</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/View/personal_information.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fef9632f39b66ba488e163a665bb0e99">
<source>This feature generates a random password before sending an email to your customer.</source>
<target>This feature generates a random password before sending an email to your customer.</target>
<note>Line: 177</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/View/private_note.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="566d26ec62e9c51270b7243440227dbb">
<source>This note will be displayed to all employees but not to customers.</source>
<target>This note will be displayed to all employees but not to customers.</target>
<note>Line: 34</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6010127763b917fdc47eb0c50a86a6f6">
<source>Enable or disable customer login.</source>
<target>Enable or disable customer login.</target>
<note>Line: 72</note>
</trans-unit>
<trans-unit id="8c7a8f24423b8519d38fb3ff380e020f">
<source>This customer will receive your ads via email.</source>
<target>This customer will receive your ads via email.</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="e7608efcc5a10b78e3a98c438c2a1b7f">
<source>Select all the groups that you would like to apply to this customer.</source>
<target>Select all the groups that you would like to apply to this customer.</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="395b64636636e968c756f7514313f760">
<source>This group will be the user's default group.</source>
<target>This group will be the user's default group.</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="8b7fc06b213f4fb343c72af878e5c64b">
<source>Only the discount for the selected group will be applied to this customer.</source>
<target>Only the discount for the selected group will be applied to this customer.</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="75bf7b6b951d3183f7c8f96bdb4fa74c">
<source>Valid characters:</source>
<target>Valid characters:</target>
<note>Line: 114</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Delivery/slip.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8a7a048a67746f3877ab6cb1bc1d4afd">
<source>Format: 2011-12-31 (inclusive).</source>
<target>Format: 2011-12-31 (inclusive).</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="67342320cb8798c3a911e0c6d8bd026a">
<source>Prefix used for delivery slips.</source>
<target>Prefix used for delivery slips.</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="6998acbd3739a7200586b4421d0ca508">
<source>The next delivery slip will begin with this number and then increase with each additional slip.</source>
<target>The next delivery slip will begin with this number and then increase with each additional slip.</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="8cf7df5b4b5858e73a7f4e75cc658cc3">
<source>Adds an image before product name on Delivery-slip</source>
<target>Adds an image before product name on Delivery-slip</target>
<note>Line: 93</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Invoices/Blocks/generate_by_status.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fef8859b22e06e4d4918f091612bf958">
<source>You can also export orders which have not been charged yet.</source>
<target>You can also export orders which have not been charged yet.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Invoices/Blocks/invoice_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="60422879211a12247e5da14751a59ac3">
<source>If enabled, your customers will receive an invoice for the purchase.</source>
<target>If enabled, your customers will receive an invoice for the purchase.</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="afda8f59762167c6720a8afe24345df1">
<source>If required, show the total amount per rate of the corresponding tax.</source>
<target>If required, show the total amount per rate of the corresponding tax.</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="0e963c5b7a1b6bb67429c7d0e7f45741">
<source>Adds an image in front of the product name on the invoice</source>
<target>Adds an image in front of the product name on the invoice</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="7b87585267aed27676374641013ab66e">
<source>Freely definable prefix for invoice number (e.g. #IN00001).</source>
<target>Freely definable prefix for invoice number (e.g. #IN00001).</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="a93c4ec4b8ef325acf067112d7437c59">
<source>The next invoice will begin with this number, and then increase with each additional invoice. Set to 0 if you want to keep the current number (which is #%number%).</source>
<target>The next invoice will begin with this number, and then increase with each additional invoice. Set to 0 if you want to keep the current number (which is #%number%).</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="7a490daaa2605a4a5be08b30a0c6fe24">
<source>Use this field to show additional information on the invoice, below the payment methods summary (like specific legal information).</source>
<target>Use this field to show additional information on the invoice, below the payment methods summary (like specific legal information).</target>
<note>Line: 101</note>
</trans-unit>
<trans-unit id="e3501dec19c50333c49b4d7d66931abc">
<source>This text will appear at the bottom of the invoice, below your company details.</source>
<target>This text will appear at the bottom of the invoice, below your company details.</target>
<note>Line: 108</note>
</trans-unit>
<trans-unit id="4e00dcdfbf2f4a6156c01fb15ded75c5">
<source>Choose an invoice model.</source>
<target>Choose an invoice model.</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="41d8a2a057a1e1b9663d49896d3162f3">
<source>Saves memory but slows down the PDF generation.</source>
<target>Saves memory but slows down the PDF generation.</target>
<note>Line: 122</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,981 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/carts/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="764368526633c5baf14291ba7fbb9e05">
<source>For this particular customer group, prices are displayed as:</source>
<target>For this particular customer group, prices are displayed as:</target>
<note>Line: 221</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_discount_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4d734cc32a5cac86597621969696baa8">
<source>This value must include taxes.</source>
<target>This value must include taxes.</target>
<note>Line: 62</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_documents.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5db361171166373b9694fc4aeb0932b5">
<source>There is no available document</source>
<target>There is no available document</target>
<note>Line: 165</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_product_line.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="65247263c6ea1d91027b28a41db8cb4b">
<source>Editing this product line will remove the reduction and base price.</source>
<target>Editing this product line will remove the reduction and base price.</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_shipping.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2e66149518ba8dc45a9e51c4f153cebf">
<source><![CDATA[Please note that carrier change will not recalculate your shipping costs, if you want to change this please visit Shop Parameters > Order Settings]]></source>
<target><![CDATA[Please note that carrier change will not recalculate your shipping costs, if you want to change this please visit Shop Parameters > Order Settings]]></target>
<note>Line: 101</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c6ba3f7beac8724d025d570d002b1579">
<source>No voucher was found</source>
<target>No voucher was found</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="afdbd71037839ec5a581febacab7bad7">
<source>No customers found</source>
<target>No customers found</target>
<note>Line: 519</note>
</trans-unit>
<trans-unit id="29c14e1df15d10b73ec9605fd146b9fe">
<source>No carrier can be applied to this order</source>
<target>No carrier can be applied to this order</target>
<note>Line: 616</note>
</trans-unit>
<trans-unit id="b9af8635591dc44009ccd8e5389722ec">
<source>No products found</source>
<target>No products found</target>
<note>Line: 704</note>
</trans-unit>
<trans-unit id="43c2b5547b84d3fe632a8297c27ed20e">
<source>You must add at least one address to process the order.</source>
<target>You must add at least one address to process the order.</target>
<note>Line: 1067</note>
</trans-unit>
<trans-unit id="453c92894f48764318534163c2bb2830">
<source>The prices are without taxes.</source>
<target>The prices are without taxes.</target>
<note>Line: 1287</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e1b638a956fae226de3740f63a4e7d48">
<source>Are you sure you want to add this quantity?</source>
<target>Are you sure you want to add this quantity?</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="e2103a9e878a2280b3163e5ee098cbdf">
<source>Are you sure you want to create a new invoice?</source>
<target>Are you sure you want to create a new invoice?</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="bcab2ed7cab19f8e119317a7e59d316a">
<source>Error: No product has been selected</source>
<target>Error: No product has been selected</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="cd5cb1c932fc6f41a4fb3f6ec2f0c2da">
<source>Error: Quantity of products must be set</source>
<target>Error: Quantity of products must be set</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="894fdeeda7d3575fd6775732d026992c">
<source>Error: Product price must be set</source>
<target>Error: Product price must be set</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="c4832c266d52c6cef340a9c656ddda26">
<source>Error. You cannot refund a negative amount.</source>
<target>Error. You cannot refund a negative amount.</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="14c7a12fdbf437a0545aed3365ce3f84">
<source>No merchandise returned yet</source>
<target>No merchandise returned yet</target>
<note>Line: 380</note>
</trans-unit>
<trans-unit id="153c7809e6b00b6cbfa01b8aa9db43e3">
<source>paid instead of</source>
<target>paid instead of</target>
<note>Line: 407</note>
</trans-unit>
<trans-unit id="7137dec9b59978006f8b0ec036099346">
<source>This warning also concerns order </source>
<target>This warning also concerns order </target>
<note>Line: 412</note>
</trans-unit>
<trans-unit id="f38c718d5cc5ea7331d8acf533f9bf0d">
<source>This warning also concerns the next orders:</source>
<target>This warning also concerns the next orders:</target>
<note>Line: 414</note>
</trans-unit>
<trans-unit id="de78da3154b793d64d302db27e65baec">
<source>No payment methods are available</source>
<target>No payment methods are available</target>
<note>Line: 497</note>
</trans-unit>
<trans-unit id="ecd2046a1d4a6e46c11914c04b9559e4">
<source>A registered customer account has already claimed this email address</source>
<target>A registered customer account has already claimed this email address</target>
<note>Line: 603</note>
</trans-unit>
<trans-unit id="341ee6bf57abde84135c32f55a607de2">
<source>Do you want to send this message to the customer?</source>
<target>Do you want to send this message to the customer?</target>
<note>Line: 827</note>
</trans-unit>
<trans-unit id="dc8d1b4e8c9bdf1eed97eb9ed5877a43">
<source>Do you want to overwrite your existing message?</source>
<target>Do you want to overwrite your existing message?</target>
<note>Line: 832</note>
</trans-unit>
<trans-unit id="44f36e0e113ab5d842c47691364f6eb4">
<source>This product cannot be returned.</source>
<target>This product cannot be returned.</target>
<note>Line: 892</note>
</trans-unit>
<trans-unit id="b8d649752e2493d7d761b05cc255c3fd">
<source>Quantity to cancel is greater than quantity available.</source>
<target>Quantity to cancel is greater than quantity available.</target>
<note>Line: 892</note>
</trans-unit>
<trans-unit id="49641a1085f245fe45d45881544d1cec">
<source>For this customer group, prices are displayed as: [1]%tax_method%[/1]</source>
<target>For this customer group, prices are displayed as: [1]%tax_method%[/1]</target>
<note>Line: 997</note>
</trans-unit>
<trans-unit id="ef5f330df17f8c955005c26466c2463c">
<source>Merchandise returns are disabled</source>
<target>Merchandise returns are disabled</target>
<note>Line: 1007</note>
</trans-unit>
</body>
</file>
<file original="classes/controller/AdminController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9cdca3c7972c48111e79648c942ac672">
<source>The message was successfully sent to the customer.</source>
<target>The message was successfully sent to the customer.</target>
<note>Line: 479</note>
</trans-unit>
<trans-unit id="1923e1e610686f1182bf54f573b86921">
<source>A partial refund was successfully created.</source>
<target>A partial refund was successfully created.</target>
<note>Line: 499</note>
</trans-unit>
</body>
</file>
<file original="classes/order/OrderHistory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f22b1baf8dcfb014646921be9841cb41">
<source>expires on %s.</source>
<target>expires on %s.</target>
<note>Line: 142</note>
</trans-unit>
<trans-unit id="0db24e725e6876d0fc7467554e8b6c03">
<source>downloadable %d time(s)</source>
<target>downloadable %d time(s)</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="e1e95b3cea70730a922b35808ca3dce3">
<source>Invalid new order status</source>
<target>Invalid new order status</target>
<note>Line: 352</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminAddressesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1c623b291d95f4f1b1d0c03d0dc0ffa1">
<source>This email address is not registered.</source>
<target>This email address is not registered.</target>
<note>Line: 377</note>
</trans-unit>
<trans-unit id="a58058b92c1584b1bdc413ac3d2e6699">
<source>This customer ID is not recognized.</source>
<target>This customer ID is not recognized.</target>
<note>Line: 384</note>
</trans-unit>
<trans-unit id="02c1c5ece60602356e41d407a81cb1fe">
<source>This email address is not valid. Please use an address like bob@example.com.</source>
<target>This email address is not valid. Please use an address like bob@example.com.</target>
<note>Line: 387</note>
</trans-unit>
<trans-unit id="7c77177e0084c27161d63e7de535a1c6">
<source>The identification number is incorrect or has already been used.</source>
<target>The identification number is incorrect or has already been used.</target>
<note>Line: 390</note>
</trans-unit>
<trans-unit id="27ac5352d430b82c99157e2dc13a96e3">
<source>You have selected a state for a country that does not contain states.</source>
<target>You have selected a state for a country that does not contain states.</target>
<note>Line: 398</note>
</trans-unit>
<trans-unit id="86de674d7405670db52e79ec1665b0b1">
<source>An address located in a country containing states must have a state selected.</source>
<target>An address located in a country containing states must have a state selected.</target>
<note>Line: 403</note>
</trans-unit>
<trans-unit id="03c123f62aad70a9533f5049cf3af959">
<source>An error occurred while linking this address to its order.</source>
<target>An error occurred while linking this address to its order.</target>
<note>Line: 443</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCartsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="53a60d3bbec32a4bf2777704834dc35e">
<source>You must add a minimum quantity of %d</source>
<target>You must add a minimum quantity of %d</target>
<note>Line: 490</note>
</trans-unit>
<trans-unit id="996a45aa702d041706f6388d54c53b12">
<source>Invalid order</source>
<target>Invalid order</target>
<note>Line: 571</note>
</trans-unit>
<trans-unit id="5125d7cea2749d85f13a55a023a56c71">
<source>The order cannot be renewed.</source>
<target>The order cannot be renewed.</target>
<note>Line: 578</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomerThreadsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b3d571edf77b87b3be5cb3db48d88aa6">
<source>An error occurred. Your message was not sent. Please contact your system administrator.</source>
<target>An error occurred. Your message was not sent. Please contact your system administrator.</target>
<note>Line: 504</note>
</trans-unit>
<trans-unit id="d9c93c77e4f2eb90e8457f586e0c5cb3">
<source>Cannot create message in a new thread.</source>
<target>Cannot create message in a new thread.</target>
<note>Line: 1109</note>
</trans-unit>
<trans-unit id="142c7111dc9e81f5cf273851ccce9fcc">
<source>The message body is empty, cannot import it.</source>
<target>The message body is empty, cannot import it.</target>
<note>Line: 1177</note>
</trans-unit>
<trans-unit id="5d1cbbd2b78574a8cfac676d8bdb9ea4">
<source>Invalid message content for subject: %s</source>
<target>Invalid message content for subject: %s</target>
<note>Line: 1185</note>
</trans-unit>
<trans-unit id="f70f856f6d471d374aaf5080afeb1e53">
<source>The message content is not valid, cannot import it.</source>
<target>The message content is not valid, cannot import it.</target>
<note>Line: 1191</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="03552140a267acc27f494dc3ab368067">
<source>Unknown delete mode:</source>
<target>Unknown delete mode:</target>
<note>Line: 870</note>
</trans-unit>
<trans-unit id="7298a088a582ffc05f2c777afb3115cb">
<source>Password cannot be empty.</source>
<target>Password cannot be empty.</target>
<note>Line: 900</note>
</trans-unit>
<trans-unit id="0a53e9e61f2a9bf59e9028b42fbd8166">
<source>An error occurred while loading the object.</source>
<target>An error occurred while loading the object.</target>
<note>Line: 929</note>
</trans-unit>
<trans-unit id="77ae44aa6c998166fcf1a87496278ad5">
<source>(cannot load object)</source>
<target>(cannot load object)</target>
<note>Line: 930</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminOrdersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="aea807cc550550acd7b8d9a7bc469f6a">
<source>You have to select a shop before creating new orders.</source>
<target>You have to select a shop before creating new orders.</target>
<note>Line: 225</note>
</trans-unit>
<trans-unit id="accfc34fe6c65228a926b524870161ab">
<source>This cart does not exists</source>
<target>This cart does not exists</target>
<note>Line: 231</note>
</trans-unit>
<trans-unit id="3d4d2d9627d3f1b1c0d22b9e85c687d1">
<source>The cart must have a customer</source>
<target>The cart must have a customer</target>
<note>Line: 234</note>
</trans-unit>
<trans-unit id="a42a075994b3ee0f6fe5956110d85889">
<source>Order status #%id% cannot be loaded</source>
<target>Order status #%id% cannot be loaded</target>
<note>Line: 388</note>
</trans-unit>
<trans-unit id="4fe1644600a7dad640143da346a9211b">
<source>Order #%d cannot be loaded</source>
<target>Order #%d cannot be loaded</target>
<note>Line: 393</note>
</trans-unit>
<trans-unit id="409f3dfd9f910287f86fd6c25c94c4d8">
<source>Order #%d has already been assigned this status.</source>
<target>Order #%d has already been assigned this status.</target>
<note>Line: 397</note>
</trans-unit>
<trans-unit id="18893a82469e2cd9492fc8d46fa8ac01">
<source>An error occurred while changing the status for order #%d, or we were unable to send an email to the customer.</source>
<target>An error occurred while changing the status for order #%d, or we were unable to send an email to the customer.</target>
<note>Line: 422</note>
</trans-unit>
<trans-unit id="45d4b3afac71a54470a6cbf828e8cb0d">
<source>The order carrier ID is invalid.</source>
<target>The order carrier ID is invalid.</target>
<note>Line: 476</note>
</trans-unit>
<trans-unit id="e52d022f0fb2160ec1cf7b4122ab9589">
<source>The tracking number is incorrect.</source>
<target>The tracking number is incorrect.</target>
<note>Line: 478</note>
</trans-unit>
<trans-unit id="561918c3c49ff748f543e28f5c405d3c">
<source>An error occurred while sending an email to the customer.</source>
<target>An error occurred while sending an email to the customer.</target>
<note>Line: 678</note>
</trans-unit>
<trans-unit id="f465ea6c7866853ecc49286449720ac9">
<source>The order carrier cannot be updated.</source>
<target>The order carrier cannot be updated.</target>
<note>Line: 518</note>
</trans-unit>
<trans-unit id="c2572d1fee836c06c88e0bdc9fa7ffa1">
<source>The new order status is invalid.</source>
<target>The new order status is invalid.</target>
<note>Line: 530</note>
</trans-unit>
<trans-unit id="4f51deabdeba4ee61b998d3b0cf188b4">
<source>An error occurred while changing order status, or we were unable to send an email to the customer.</source>
<target>An error occurred while changing order status, or we were unable to send an email to the customer.</target>
<note>Line: 564</note>
</trans-unit>
<trans-unit id="c5e4a57d9572678ffbb124db39542928">
<source>The order has already been assigned this status.</source>
<target>The order has already been assigned this status.</target>
<note>Line: 566</note>
</trans-unit>
<trans-unit id="f61c60ff8d82ebd1012606e5bc3a2002">
<source>The customer is invalid.</source>
<target>The customer is invalid.</target>
<note>Line: 577</note>
</trans-unit>
<trans-unit id="3dc245110e1f3601860c20299d97c01d">
<source>The message cannot be blank.</source>
<target>The message cannot be blank.</target>
<note>Line: 579</note>
</trans-unit>
<trans-unit id="204c3558e41366f3d558ce8e01426a22">
<source>field %s is required.</source>
<target>field %s is required.</target>
<note>Line: 586</note>
</trans-unit>
<trans-unit id="c4d82e8095bb903683e0b0e73887aef0">
<source>Please enter a quantity to proceed with your refund.</source>
<target>Please enter a quantity to proceed with your refund.</target>
<note>Line: 880</note>
</trans-unit>
<trans-unit id="8a5f368eac3aab699cf8e6e1ec28b695">
<source>Please enter an amount to proceed with your refund.</source>
<target>Please enter an amount to proceed with your refund.</target>
<note>Line: 882</note>
</trans-unit>
<trans-unit id="598db0342f11f89d4268942b9491c455">
<source>You cannot generate a partial credit slip.</source>
<target>You cannot generate a partial credit slip.</target>
<note>Line: 768</note>
</trans-unit>
<trans-unit id="b1db8cec4ec0de83c3934a22bc758a3b">
<source>You cannot generate a voucher.</source>
<target>You cannot generate a voucher.</target>
<note>Line: 1126</note>
</trans-unit>
<trans-unit id="bd4457c0f19f796f3d66726f9fadc041">
<source>The partial refund data is incorrect.</source>
<target>The partial refund data is incorrect.</target>
<note>Line: 891</note>
</trans-unit>
<trans-unit id="991bbcc5660531bc1a1c8f1c235794c0">
<source>You must select a product.</source>
<target>You must select a product.</target>
<note>Line: 900</note>
</trans-unit>
<trans-unit id="6d3fd0eb289900145d482634d6e86b90">
<source>You must enter a quantity.</source>
<target>You must enter a quantity.</target>
<note>Line: 902</note>
</trans-unit>
<trans-unit id="8001500c3284edd9c4dd07ae508e5a95">
<source>No quantity has been selected for this product.</source>
<target>No quantity has been selected for this product.</target>
<note>Line: 966</note>
</trans-unit>
<trans-unit id="38eaecfc1ef14b98b5d6e4eb77494369">
<source>An invalid quantity was selected for this product.</source>
<target>An invalid quantity was selected for this product.</target>
<note>Line: 970</note>
</trans-unit>
<trans-unit id="bf772d53e730d2e0169ed2f746044606">
<source>An error occurred while attempting to delete the product.</source>
<target>An error occurred while attempting to delete the product.</target>
<note>Line: 987</note>
</trans-unit>
<trans-unit id="77d97f5686dfef72ee577e779d5bb74f">
<source>An error occurred while attempting to delete product customization.</source>
<target>An error occurred while attempting to delete product customization.</target>
<note>Line: 1009</note>
</trans-unit>
<trans-unit id="edeff0d68d3d20ce1f6189f6070cb2ba">
<source>A credit slip cannot be generated.</source>
<target>A credit slip cannot be generated.</target>
<note>Line: 1047</note>
</trans-unit>
<trans-unit id="b81f0a0540938a2e7daa684f02866696">
<source>No product or quantity has been selected.</source>
<target>No product or quantity has been selected.</target>
<note>Line: 1156</note>
</trans-unit>
<trans-unit id="fdb259bd3d5479c25f5d23af490b5ec3">
<source>The order cannot be found</source>
<target>The order cannot be found</target>
<note>Line: 1181</note>
</trans-unit>
<trans-unit id="9391de9e24bd71839f6f72a1517de2d6">
<source>The amount is invalid.</source>
<target>The amount is invalid.</target>
<note>Line: 1183</note>
</trans-unit>
<trans-unit id="6ab061ec12504fab2c41f0689579d623">
<source>The selected payment method is invalid.</source>
<target>The selected payment method is invalid.</target>
<note>Line: 1185</note>
</trans-unit>
<trans-unit id="7d0d71a3e577be4c20799b52286191d6">
<source>The transaction ID is invalid.</source>
<target>The transaction ID is invalid.</target>
<note>Line: 1187</note>
</trans-unit>
<trans-unit id="3b512b6c31ef4f46605159612691eb56">
<source>The selected currency is invalid.</source>
<target>The selected currency is invalid.</target>
<note>Line: 1189</note>
</trans-unit>
<trans-unit id="06fc8d486e9f83c5810a21857da7b656">
<source>The invoice is invalid.</source>
<target>The invoice is invalid.</target>
<note>Line: 1191</note>
</trans-unit>
<trans-unit id="f50c7cba4df874039d73ee480d678f5e">
<source>The date is invalid</source>
<target>The date is invalid</target>
<note>Line: 1193</note>
</trans-unit>
<trans-unit id="04e3713831c71d70817d4a69eadbc53c">
<source>An error occurred during payment.</source>
<target>An error occurred during payment.</target>
<note>Line: 1196</note>
</trans-unit>
<trans-unit id="0d906d12a6321e5f13e69dab92e39a4e">
<source>The invoice note was not saved.</source>
<target>The invoice note was not saved.</target>
<note>Line: 1213</note>
</trans-unit>
<trans-unit id="7f5a75ac350db917dc60cfbd8299da5b">
<source>Failed to upload the invoice and edit its note.</source>
<target>Failed to upload the invoice and edit its note.</target>
<note>Line: 1219</note>
</trans-unit>
<trans-unit id="68b7afe49451dbdab7cbeff4f66be369">
<source>This delivery address country is not active.</source>
<target>This delivery address country is not active.</target>
<note>Line: 1239</note>
</trans-unit>
<trans-unit id="a9320eb7be798958cba0a93262521ede">
<source>This invoice address country is not active.</source>
<target>This invoice address country is not active.</target>
<note>Line: 1241</note>
</trans-unit>
<trans-unit id="95aa605fa7f396d370b4c87afad9201c">
<source>This address can't be loaded</source>
<target>This address can't be loaded</target>
<note>Line: 1283</note>
</trans-unit>
<trans-unit id="b0535e1868ad530e5faadf295516a724">
<source>You cannot change the currency.</source>
<target>You cannot change the currency.</target>
<note>Line: 1378</note>
</trans-unit>
<trans-unit id="8dcb8970b8eeeac73c8d312d1db3d1f9">
<source>Invoice management has been disabled.</source>
<target>Invoice management has been disabled.</target>
<note>Line: 1385</note>
</trans-unit>
<trans-unit id="f98321e34948f600959c5c4200c953c8">
<source>This order already has an invoice.</source>
<target>This order already has an invoice.</target>
<note>Line: 1387</note>
</trans-unit>
<trans-unit id="0da1c0afe7d3d89a53a5d00998bb4295">
<source>You cannot edit this cart rule.</source>
<target>You cannot edit this cart rule.</target>
<note>Line: 1427</note>
</trans-unit>
<trans-unit id="db7cb022c7b6058d0f1668faa22a54fa">
<source>You must specify a name in order to create a new discount.</source>
<target>You must specify a name in order to create a new discount.</target>
<note>Line: 1435</note>
</trans-unit>
<trans-unit id="7b56734426bcdd50629f41c58cb1f241">
<source>The discount value is invalid.</source>
<target>The discount value is invalid.</target>
<note>Line: 1474</note>
</trans-unit>
<trans-unit id="8dc19f50ae30ac7d61e67c795b32fd47">
<source>The discount value is greater than the order invoice total.</source>
<target>The discount value is greater than the order invoice total.</target>
<note>Line: 1495</note>
</trans-unit>
<trans-unit id="574875d4553bada6682a07ae86298bc6">
<source>The discount value is greater than the order total.</source>
<target>The discount value is greater than the order total.</target>
<note>Line: 1506</note>
</trans-unit>
<trans-unit id="9a9d54664b6ba23a9588f6b795dc03ab">
<source>The discount type is invalid.</source>
<target>The discount type is invalid.</target>
<note>Line: 1544</note>
</trans-unit>
<trans-unit id="b046e96ee00ad2ef4ed135eab1c13df4">
<source>An error occurred during the OrderCartRule creation</source>
<target>An error occurred during the OrderCartRule creation</target>
<note>Line: 1597</note>
</trans-unit>
<trans-unit id="0fa578512847280157dd62ae18e92979">
<source>An error occurred while loading order status.</source>
<target>An error occurred while loading order status.</target>
<note>Line: 1608</note>
</trans-unit>
<trans-unit id="fded441ef916f653d49abf142b535b52">
<source>An error occurred while sending the e-mail to the customer.</source>
<target>An error occurred while sending the e-mail to the customer.</target>
<note>Line: 1621</note>
</trans-unit>
<trans-unit id="aeddc664f1e95691c69ea44a5c1c18f5">
<source>This product is out of stock: </source>
<target>This product is out of stock:</target>
<note>Line: 1814</note>
</trans-unit>
<trans-unit id="4174f012bc63b679f092acd1a933bf5c">
<source>The email was sent to your customer.</source>
<target>The email was sent to your customer.</target>
<note>Line: 2072</note>
</trans-unit>
<trans-unit id="773b660773e6106c248814fa87b480f7">
<source>Error in sending the email to your customer.</source>
<target>Error in sending the email to your customer.</target>
<note>Line: 2076</note>
</trans-unit>
<trans-unit id="4dc1c8fa2f766c5e201155ee3737ed3f">
<source>The order object cannot be loaded.</source>
<target>The order object cannot be loaded.</target>
<note>Line: 2848</note>
</trans-unit>
<trans-unit id="7152cf69405fd47a8bd2f7b625ce324e">
<source>You cannot add products to delivered orders.</source>
<target>You cannot add products to delivered orders.</target>
<note>Line: 2096</note>
</trans-unit>
<trans-unit id="9b7508b5ee1050d5c5efb9b1cf76fd36">
<source>The product object cannot be loaded.</source>
<target>The product object cannot be loaded.</target>
<note>Line: 2458</note>
</trans-unit>
<trans-unit id="74bd055cec720c9f41563ff6a6a40b7b">
<source>The combination object cannot be loaded.</source>
<target>The combination object cannot be loaded.</target>
<note>Line: 2119</note>
</trans-unit>
<trans-unit id="0d38c90d843c787c0be14f790998210c">
<source>You must add %d minimum quantity</source>
<target>You must add %d minimum quantity</target>
<note>Line: 2203</note>
</trans-unit>
<trans-unit id="de10fc28511b894f704c1a67fcff7b4f">
<source>You already have the maximum quantity available for this product.</source>
<target>You already have the maximum quantity available for this product.</target>
<note>Line: 2205</note>
</trans-unit>
<trans-unit id="6a94d8492279c2bfd3e81f3158658980">
<source>[Generated] CartRule for Free Shipping</source>
<target>[Generated] CartRule for Free Shipping</target>
<note>Line: 2220</note>
</trans-unit>
<trans-unit id="4e670964e358534a827dc7e0359281b0">
<source>The OrderDetail object cannot be loaded.</source>
<target>The OrderDetail object cannot be loaded.</target>
<note>Line: 2450</note>
</trans-unit>
<trans-unit id="0c8a625097a9b711bfca4724517eeb01">
<source>The address object cannot be loaded.</source>
<target>The address object cannot be loaded.</target>
<note>Line: 2466</note>
</trans-unit>
<trans-unit id="7da127d075ca24fec224c1d497aac11f">
<source>An error occurred while editing the product line.</source>
<target>An error occurred while editing the product line.</target>
<note>Line: 2657</note>
</trans-unit>
<trans-unit id="fde52aaef1e1e23770e40a458a1cac46">
<source>An error occurred while attempting to delete the product line.</source>
<target>An error occurred while attempting to delete the product line.</target>
<note>Line: 2726</note>
</trans-unit>
<trans-unit id="e3a212006776535d5da7d11f7c62d727">
<source>The Order Detail object could not be loaded.</source>
<target>The Order Detail object could not be loaded.</target>
<note>Line: 2841</note>
</trans-unit>
<trans-unit id="823eba6da615c2a384cf8e13cd70980b">
<source>The invoice object cannot be loaded.</source>
<target>The invoice object cannot be loaded.</target>
<note>Line: 2775</note>
</trans-unit>
<trans-unit id="0af3cc300f35caff086e21bf2f865960">
<source>You cannot edit the order detail for this order.</source>
<target>You cannot edit the order detail for this order.</target>
<note>Line: 2789</note>
</trans-unit>
<trans-unit id="7ea9212dcdaccc580b9e6b548609e7fd">
<source>You cannot edit a delivered order.</source>
<target>You cannot edit a delivered order.</target>
<note>Line: 2863</note>
</trans-unit>
<trans-unit id="675b81dace2c99f5ef5eb6ac3f69dbe4">
<source>You cannot use this invoice for the order</source>
<target>You cannot use this invoice for the order</target>
<note>Line: 2804</note>
</trans-unit>
<trans-unit id="2591b6d46f45d8f60e24c6c9c96a2a11">
<source>Invalid price</source>
<target>Invalid price</target>
<note>Line: 2815</note>
</trans-unit>
<trans-unit id="01816dd287bcb3b88ad3f63970ce045f">
<source>Invalid quantity</source>
<target>Invalid quantity</target>
<note>Line: 2829</note>
</trans-unit>
<trans-unit id="c181d4415ea3fd71c407da3697be421f">
<source>You cannot delete the order detail.</source>
<target>You cannot delete the order detail.</target>
<note>Line: 2855</note>
</trans-unit>
<trans-unit id="671cd4e79283dd9931f0452000bf2744">
<source>This product cannot be re-stocked.</source>
<target>This product cannot be re-stocked.</target>
<note>Line: 3011</note>
</trans-unit>
<trans-unit id="1244f34e7f971d0b80cd2fd7cbbfb22c">
<source>The order cannot be found within your database.</source>
<target>The order cannot be found within your database.</target>
<note>Line: 1706</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminPdfController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f193c3dd6da8a06a610c632db03d55c8">
<source>The order ID -- or the invoice order ID -- is missing.</source>
<target>The order ID -- or the invoice order ID -- is missing.</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="48607ff5af8c52b5efbc057b852a37ee">
<source>No invoice was found.</source>
<target>No invoice was found.</target>
<note>Line: 140</note>
</trans-unit>
<trans-unit id="57bf4b0dd7dd3e5af10533785a343f88">
<source>No order slips were found.</source>
<target>No order slips were found.</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="f2e9d5988718c8a3dde49c6bcb55125b">
<source>The supply order ID is missing.</source>
<target>The supply order ID is missing.</target>
<note>Line: 149</note>
</trans-unit>
<trans-unit id="4fc152e203df7a77fa3c1bc7f1249f36">
<source>The supply order cannot be found within your database.</source>
<target>The supply order cannot be found within your database.</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="d7e5dfc920c9871caaf7562d8ba9ab36">
<source>The order invoice cannot be found within your database.</source>
<target>The order invoice cannot be found within your database.</target>
<note>Line: 199</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminReturnController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7582ef2f5b5de8a479994d0412986bc2">
<source>An error occurred while deleting the details of your order return.</source>
<target>An error occurred while deleting the details of your order return.</target>
<note>Line: 227</note>
</trans-unit>
<trans-unit id="d4430672c8b3c123ae5f4c2f4b5b458d">
<source>You need at least one product.</source>
<target>You need at least one product.</target>
<note>Line: 230</note>
</trans-unit>
<trans-unit id="e7a58e52e848f513c3e9185d34d61a50">
<source>The order return is invalid.</source>
<target>The order return is invalid.</target>
<note>Line: 233</note>
</trans-unit>
<trans-unit id="5431bd88788ce2df4278c84f402e3cb6">
<source>The order return content is invalid.</source>
<target>The order return content is invalid.</target>
<note>Line: 236</note>
</trans-unit>
<trans-unit id="16f2adf6c4fd1317acba5871267a60f2">
<source>No order return ID has been specified.</source>
<target>No order return ID has been specified.</target>
<note>Line: 285</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSearchController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5844cf5e9f752e6eb7cc1166a3022183">
<source>No order was found with this ID:</source>
<target>No order was found with this ID:</target>
<note>Line: 151</note>
</trans-unit>
<trans-unit id="3b27bc623d860beacbe5d5cde18fdec0">
<source>No invoice was found with this ID:</source>
<target>No invoice was found with this ID:</target>
<note>Line: 161</note>
</trans-unit>
<trans-unit id="ec79affe41245b47969a2451211b263a">
<source>No cart was found with this ID:</source>
<target>No cart was found with this ID:</target>
<note>Line: 169</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSlipController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cdbb58c797028e137b1ebf1dcc9efe92">
<source>No order slips were found for this period.</source>
<target>No order slips were found for this period.</target>
<note>Line: 160</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatusesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="35af021c4bdb02cad86c917022e053da">
<source>An error has occurred: Can't save the current order's return status.</source>
<target>An error has occurred: Can't save the current order's return status.</target>
<note>Line: 556</note>
</trans-unit>
<trans-unit id="ca215ff3d829e3a6a9c0c672987d5959">
<source>An error has occurred: Can't delete the current order's return status.</source>
<target>An error has occurred: Can't delete the current order's return status.</target>
<note>Line: 576</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Customer/QueryHandler/GetCustomerForViewingHandler.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bde13610a2ae2521b30aa7821d553862">
<source>There is no status defined for this order.</source>
<target>There is no status defined for this order.</target>
<note>Line: 252</note>
</trans-unit>
<trans-unit id="14542f5997c4a02d4276da364657f501">
<source>Direct link</source>
<target>Direct link</target>
<note>Line: 481</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Order/Delivery/SlipPdfConfiguration.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3ffd1b6c5e4ab9c98104475480477307">
<source>No delivery slip was found for this period.</source>
<target>No delivery slip was found for this period.</target>
<note>Line: 82</note>
</trans-unit>
</body>
</file>
<file original="src/Core/Form/ChoiceProvider/CustomerDeleteMethodChoiceProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ecace08642e28fc9c2704b5f73605b6d">
<source>I want my customers to be able to register again with the same email address. All data will be removed from the database.</source>
<target>I want my customers to be able to register again with the same email address. All data will be removed from the database.</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="fd5b3faeaab816c19b1337785c0b531b">
<source>I do not want my customer(s) to register again with the same email address. All selected customer(s) will be removed from this list but their corresponding data will be kept in the database.</source>
<target>I do not want my customer(s) to register again with the same email address. All selected customer(s) will be removed from this list but their corresponding data will be kept in the database.</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/EmployeeController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9e2dcf2660b82a0204f668565417010a">
<source>An account already exists for this email address:</source>
<target>An account already exists for this email address:</target>
<note>Line: 512</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/Sell/Customer/CustomerController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c0498039cc042a1109b53933dc33b2e7">
<source>A default customer group must be selected in group box.</source>
<target>A default customer group must be selected in group box.</target>
<note>Line: 750</note>
</trans-unit>
<trans-unit id="8562db06e3931e51ac8c456b56088b02">
<source>This customer does not exist.</source>
<target>This customer does not exist.</target>
<note>Line: 741</note>
</trans-unit>
<trans-unit id="4383b950a18d0fd893e237148f5f58ca">
<source>This customer already exists as a non-guest.</source>
<target>This customer already exists as a non-guest.</target>
<note>Line: 787</note>
</trans-unit>
<trans-unit id="beaa75cbedc3443661b894ed66c76b13">
<source>An error occurred while updating customer information.</source>
<target>An error occurred while updating customer information.</target>
<note>Line: 791</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Sell/Order/Invoices/InvoiceByStatusFormHandler.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7af95cd9cbe318a15ef10e5e30000501">
<source>No invoice has been found for this status.</source>
<target>No invoice has been found for this status.</target>
<note>Line: 95</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Sell/Order/Invoices/InvoiceOptionsDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="599b433088f71a8712de225a693ce20e">
<source>Invalid invoice number.</source>
<target>Invalid invoice number.</target>
<note>Line: 95</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Sell/Order/Invoices/InvoicesByDateDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9178a1a9fc82617864593a784163d86a">
<source>Invalid "From" date</source>
<target>Invalid "From" date</target>
<note>Line: 88</note>
</trans-unit>
<trans-unit id="915bd2c5cf6e420095a64d309e443849">
<source>Invalid "To" date</source>
<target>Invalid "To" date</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="f775c161c8662af8f70a128ad5779036">
<source>No invoice has been found for this period.</source>
<target>No invoice has been found for this period.</target>
<note>Line: 104</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Sell/Order/Invoices/InvoicesByStatusDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="eb9173ba78d315a23d8978a2b772bd9a">
<source>You must select at least one order status.</source>
<target>You must select at least one order status.</target>
<note>Line: 67</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/View/carts.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1c28cbdd010068123432a5885ebfdb65">
<source>No cart is available</source>
<target>No cart is available</target>
<note>Line: 73</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/View/personal_information.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c7b085efe30557dbc76c2ba487506049">
<source>A registered customer account using the defined email address already exists. </source>
<target>A registered customer account using the defined email address already exists.</target>
<note>Line: 170</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/Blocks/delete_modal.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a37bf274ad160c76e7d17b9178bc1f57">
<source>How do you want to delete the selected customers?</source>
<target>How do you want to delete the selected customers?</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="6513e5e8645f98d950d6174b30c151b8">
<source>There are two ways of deleting a customer. Please choose your preferred method.</source>
<target>There are two ways of deleting a customer. Please choose your preferred method.</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="df46bf546fc69b1cda65afe1001b73fc">
<source>You have to select a shop if you want to create a customer.</source>
<target>You have to select a shop if you want to create a customer.</target>
<note>Line: 71</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="src/PrestaShopBundle/Form/Admin/Improve/Payment/Preferences/PaymentModulePreferencesType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3e15057a39314e679d553bd9b6522ec8">
<source>Customer currency</source>
<target>Customer currency</target>
<note>Line: 254</note>
</trans-unit>
<trans-unit id="cdf4c2da827655c1ea74209dd683c903">
<source>Shop default currency</source>
<target>Shop default currency</target>
<note>Line: 255</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/PaymentMethods/payment_methods.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c2aa74ac66698f48002031386e2d8776">
<source>Active payment</source>
<target>Active payment</target>
<note>Line: 35</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/Preferences/Blocks/payment_preferences_form_block.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d3f9cb6a35595b8e7d9c0cd2f5e14929">
<source>Currency restrictions</source>
<target>Currency restrictions</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="52b7e372bca509e26e66340426dc8531">
<source>Country restrictions</source>
<target>Country restrictions</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="442d9a7c585a4eb14334a32decaee21b">
<source>Group restrictions</source>
<target>Group restrictions</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="1aa915c48859b4638d4048d533bad273">
<source>Carrier restrictions</source>
<target>Carrier restrictions</target>
<note>Line: 114</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/Preferences/Blocks/payment_preferences_form_block.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c4d74515416a5d1be75cfcd3e148e8e5">
<source>Please mark each checkbox for the currency, or currencies, for which you want the payment module(s) to be available.</source>
<target>Please mark each checkbox for the currency, or currencies, for which you want the payment module(s) to be available.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="b193f3e27f6936fd26746b39aca66587">
<source>Please mark each checkbox for the customer group(s), for which you want the payment module(s) to be available.</source>
<target>Please mark each checkbox for the customer group(s), for which you want the payment module(s) to be available.</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="a8fc3e8b2c61a74ac9b50e36604525c8">
<source>Please mark each checkbox for the country, or countries, in which you want the payment module(s) to be available.</source>
<target>Please mark each checkbox for the country, or countries, in which you want the payment module(s) to be available.</target>
<note>Line: 92</note>
</trans-unit>
<trans-unit id="27acfbd58a7ff9f12c9ac05dd94733c5">
<source>Please mark each checkbox for the carrier, or carrier, for which you want the payment module(s) to be available.</source>
<target>Please mark each checkbox for the carrier, or carrier, for which you want the payment module(s) to be available.</target>
<note>Line: 119</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/Preferences/payment_preferences.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bf300d92910197db357bc70d62143559">
<source>This is where you decide what payment modules are available for different variations like your customers' currency, group, and country.</source>
<target>This is where you decide what payment modules are available for different variations like your customers' currency, group, and country.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="faf0cf10ced3f7e6202c929d8633a616">
<source>A check mark indicates you want the payment module available.</source>
<target>A check mark indicates you want the payment module available.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="2bae052f842849e596b0c6bf6adec2bf">
<source>If it is not checked then this means that the payment module is disabled.</source>
<target>If it is not checked then this means that the payment module is disabled.</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/payment/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6fc908ba63932d2ea0c58d994b9b6312">
<source>You have more than one shop and must select one to configure payment.</source>
<target>You have more than one shop and must select one to configure payment.</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="classes/PaymentModule.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ed9b5732158eef63ac4d236e04101d2b">
<source>No currency mode for payment module</source>
<target>No currency mode for payment module</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="3a6e70059673992f825826f7cf89278d">
<source>The cart rule named "%1s" (ID %2s) used in this cart is not valid and has been withdrawn from cart</source>
<target>The cart rule named "%1s" (ID %2s) used in this cart is not valid and has been withdrawn from cart</target>
<note>Line: 305</note>
</trans-unit>
<trans-unit id="3a1048f8aa3a9f6b604fcf7982811752">
<source>Warning: the secure key is empty, check your payment account before validation</source>
<target>Warning: the secure key is empty, check your payment account before validation</target>
<note>Line: 383</note>
</trans-unit>
<trans-unit id="0791970c961c09eb8caaa61aba6a3ca4">
<source>An error occurred while saving message</source>
<target>An error occurred while saving message</target>
<note>Line: 518</note>
</trans-unit>
<trans-unit id="ed13b3693357ebed3751cb71cb639e65">
<source>No carrier</source>
<target>No carrier</target>
<note>Line: 612</note>
</trans-unit>
<trans-unit id="b08d3867be98e6fff3233cd40ab8134a">
<source>Order creation failed</source>
<target>Order creation failed</target>
<note>Line: 697</note>
</trans-unit>
<trans-unit id="43423b4056880b08f2c9aa50d8670531">
<source>Cart cannot be loaded or an order has already been placed using this cart</source>
<target>Cart cannot be loaded or an order has already been placed using this cart</target>
<note>Line: 714</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/MailTemplate/MailPreviewVariablesBuilder.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="26beb437d3323bd4bfb0811b3e891315">
<source>%d image(s)</source>
<target>%d image(s)</target>
<note>Line: 331</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/PaymentMethods/Blocks/payment_modules_list.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="98a52c00a9fb228601f8b423436d36e0">
<source>It seems there are no recommended payment solutions for your country.</source>
<target>It seems there are no recommended payment solutions for your country.</target>
<note>Line: 65</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Payment/Preferences/payment_preferences.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cf7da676516ac041a93fd91755fa40f9">
<source>No payment module installed</source>
<target>No payment module installed</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,371 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="07018153f387118b1dacafee609f13b1">
<source>Will be applied when the price is</source>
<target>Will be applied when the price is</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="4c687ab170e51c6eaa65be3b621c7205">
<source>Will be applied when the weight is</source>
<target>Will be applied when the weight is</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="574539ea519352ea60375ee0a3edbf16">
<source>Add new range</source>
<target>Add new range</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/form/form_ranges.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="92711ef5b0215a076fef4a3abbfc2258">
<source>Ranges</source>
<target>Ranges</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="19d3894f53ce79c3f836f26cf8a3be3b">
<source>inactive</source>
<target>inactive</target>
<note>Line: 98</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/summary.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2eee774899a3338d423fe081beea6451">
<source>This carrier is %1$s and the transit time is %2$s.</source>
<target>This carrier is %1$s and the transit time is %2$s.</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="aa2d6e4f578eb0cfaba23beef76c2194">
<source>free</source>
<target>free</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="43aca442af5353cb54151e4a94fcd0b5">
<source>not free</source>
<target>not free</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="b6fbfa40ef6e8d15ec69cb2da0dcd662">
<source>This carrier can deliver orders from %1$s to %2$s.</source>
<target>This carrier can deliver orders from %1$s to %2$s.</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="2a28ff68d6e69bd4d2ee2d8c11a78823">
<source>If the order is out of range, the behavior is to %3$s.</source>
<target>If the order is out of range, the behavior is to %3$s.</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="343bf3bbd8b70fd2d04bb095ad2418f9">
<source>The shipping cost is calculated %1$s and the tax rule %2$s will be applied.</source>
<target>The shipping cost is calculated %1$s and the tax rule %2$s will be applied.</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="0ea5b002f2959687c7ff926ca01a47a3">
<source>according to the price</source>
<target>according to the price</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="c2908ded92c5ab4bd42c02e608d0b981">
<source>according to the weight</source>
<target>according to the weight</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="ba44d024ba9eec02cc432a36dcffb9d9">
<source>Carrier name:</source>
<target>Carrier name:</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="7f9508fc09a86a59fbcea84da182b12a">
<source>This carrier will be proposed for those delivery zones:</source>
<target>This carrier will be proposed for those delivery zones:</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="7d705fb35c90599d918e0a619c69e17b">
<source>And it will be proposed for those client groups:</source>
<target>And it will be proposed for those client groups:</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="272175e18b4f5f142e1afc94698df9e3">
<source>Finally, this carrier will be proposed in those shops:</source>
<target>Finally, this carrier will be proposed in those shops:</target>
<note>Line: 55</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carriers/helpers/list/list_footer.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5e6b7c069d71052ffc8c4410c0c46992">
<source>Use one of our recommended carrier modules</source>
<target>Use one of our recommended carrier modules</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="39efbaa2f3600dd82a031d7ab5138f73">
<source>Do you think there should be one? Let us know!</source>
<target>Do you think there should be one? Let us know!</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="80a305c8cb9737ef8474472aaa65026e">
<source>It seems there are no recommended carriers for your country.</source>
<target>It seems there are no recommended carriers for your country.</target>
<note>Line: 31</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/_shipping.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="552a0d8c17d95d5dbdc0c28217024f5a">
<source>Shipping cost</source>
<target>Shipping cost</target>
<note>Line: 42</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="29aa46cc3d2677c7e0f216910df600ff">
<source>Free shipping</source>
<target>Free shipping</target>
<note>Line: 1438</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/orders/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="914419aa32f04011357d3b604a86d7eb">
<source>Carrier</source>
<target>Carrier</target>
<note>Line: 338</note>
</trans-unit>
<trans-unit id="5068c162a60b5859f973f701333f45c5">
<source>Tracking number</source>
<target>Tracking number</target>
<note>Line: 339</note>
</trans-unit>
</body>
</file>
<file original="classes/lang/KeysReference/CarrierLang.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a8bbb000124c9697aa5d63e7e758b64d">
<source>Pick up in-store</source>
<target>Pick up in-store</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="5d671531babe55fff4ae63b94c80ea38">
<source>Delivery next day!</source>
<target>Delivery next day!</target>
<note>Line: 27</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarrierWizardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="de62775a71fc2bf7a13d7530ae24a7ed">
<source>General settings</source>
<target>General settings</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="756eb8cebeb953f5ae47235ff2e183b5">
<source>Shipping locations and costs</source>
<target>Shipping locations and costs</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="e2fb9fa6091dd9f779b98efdf998a00a">
<source>Size, weight, and group access</source>
<target>Size, weight, and group access</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="c91e596246bbf8fdff9dae7b349d71d9">
<source>Carrier name</source>
<target>Carrier name</target>
<note>Line: 184</note>
</trans-unit>
<trans-unit id="0979779c4569141b98591d326d343ec2">
<source>Tracking URL</source>
<target>Tracking URL</target>
<note>Line: 217</note>
</trans-unit>
<trans-unit id="829c7cc5ed48e11df7ac9b05e236a12c">
<source>Add handling costs</source>
<target>Add handling costs</target>
<note>Line: 260</note>
</trans-unit>
<trans-unit id="0f696253cf9dacf6079bf5060e60da06">
<source>According to total price.</source>
<target>According to total price.</target>
<note>Line: 309</note>
</trans-unit>
<trans-unit id="a083cb6637472c81ec701d3342320adf">
<source>According to total weight.</source>
<target>According to total weight.</target>
<note>Line: 314</note>
</trans-unit>
<trans-unit id="482836cce404046ca7dc34fb0a6fc526">
<source>Apply the cost of the highest defined range</source>
<target>Apply the cost of the highest defined range</target>
<note>Line: 340</note>
</trans-unit>
<trans-unit id="9c3448f86be5ee19015f4ecce4bbd6fe">
<source>Maximum package width (%s)</source>
<target>Maximum package width (%s)</target>
<note>Line: 391</note>
</trans-unit>
<trans-unit id="65a0cd2bca5d0a980a5582a548d79900">
<source>Maximum package height (%s)</source>
<target>Maximum package height (%s)</target>
<note>Line: 398</note>
</trans-unit>
<trans-unit id="8317f5bb182c1e92c11221955592b518">
<source>Maximum package depth (%s)</source>
<target>Maximum package depth (%s)</target>
<note>Line: 405</note>
</trans-unit>
<trans-unit id="da5c987cbda47de7a6b09406b0840ec4">
<source>Maximum package weight (%s)</source>
<target>Maximum package weight (%s)</target>
<note>Line: 412</note>
</trans-unit>
<trans-unit id="920bd1fb6d54c93fca528ce941464225">
<source>Group access</source>
<target>Group access</target>
<note>Line: 419</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarriersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8f497c1a3d15af9e0c215019f26b887d">
<source>Delay</source>
<target>Delay</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="b00b85425e74ed2c85dc3119b78ff2c3">
<source>Free Shipping</source>
<target>Free Shipping</target>
<note>Line: 96</note>
</trans-unit>
<trans-unit id="c26732c157d7b353c1be9f7ba8962e57">
<source>Add new carrier</source>
<target>Add new carrier</target>
<note>Line: 128</note>
</trans-unit>
<trans-unit id="1c0e287237d8c352c6ead633b019c047">
<source>Apply shipping cost</source>
<target>Apply shipping cost</target>
<note>Line: 249</note>
</trans-unit>
<trans-unit id="7589dfa9a5a899e9701335164c9ab520">
<source>Shipping and handling</source>
<target>Shipping and handling</target>
<note>Line: 283</note>
</trans-unit>
<trans-unit id="590f6d9a5885f042982c9a911f76abda">
<source>Default behavior</source>
<target>Default behavior</target>
<note>Line: 313</note>
</trans-unit>
<trans-unit id="e3d29a6f3d7588301aa04429e686b260">
<source>According to total price</source>
<target>According to total price</target>
<note>Line: 318</note>
</trans-unit>
<trans-unit id="49fec5c86a3b43821fdf0d9aa7bbd935">
<source>According to total weight</source>
<target>According to total weight</target>
<note>Line: 323</note>
</trans-unit>
<trans-unit id="324029d06c6bfe85489099f6e69b7637">
<source>Maximum package height</source>
<target>Maximum package height</target>
<note>Line: 349</note>
</trans-unit>
<trans-unit id="3e86ececa46af50900510892f94c4ed6">
<source>Maximum package width</source>
<target>Maximum package width</target>
<note>Line: 356</note>
</trans-unit>
<trans-unit id="1935671a637346f67b485596b9fcba2c">
<source>Maximum package depth</source>
<target>Maximum package depth</target>
<note>Line: 363</note>
</trans-unit>
<trans-unit id="0cce6348a3d85f52a44d053f542afcbc">
<source>Maximum package weight</source>
<target>Maximum package weight</target>
<note>Line: 370</note>
</trans-unit>
<trans-unit id="4e140ba723a03baa6948340bf90e2ef6">
<source>Name:</source>
<target>Name:</target>
<note>Line: 707</note>
</trans-unit>
<trans-unit id="1d6af794b2599c1407a83029a09d1ecf">
<source>Carriers</source>
<target>Carriers</target>
<note>Line: 165</note>
</trans-unit>
<trans-unit id="dde695268ea519ababd83f0ca3d274fc">
<source>Transit time</source>
<target>Transit time</target>
<note>Line: 188</note>
</trans-unit>
<trans-unit id="c8b462f779749d2e27abed2e9501b2bd">
<source>Speed grade</source>
<target>Speed grade</target>
<note>Line: 197</note>
</trans-unit>
<trans-unit id="780c462e85ba4399a5d42e88f69a15ca">
<source>Billing</source>
<target>Billing</target>
<note>Line: 304</note>
</trans-unit>
<trans-unit id="082ebbb29b5ba59c293a00a55581679b">
<source>Out-of-range behavior</source>
<target>Out-of-range behavior</target>
<note>Line: 329</note>
</trans-unit>
<trans-unit id="4f890cf6a72112cad95093baecf39831">
<source>Disable carrier</source>
<target>Disable carrier</target>
<note>Line: 339</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Shipping/Preferences/Blocks/shipping_preferences_carrier_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8430a7b1b81635e3df949c2845303303">
<source>Carrier options</source>
<target>Carrier options</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="bff13ed1cd5b83b03f024f1eb6524337">
<source>Default carrier</source>
<target>Default carrier</target>
<note>Line: 37</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Shipping/Preferences/Blocks/shipping_preferences_handling.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1d8ca7f442e6d4ad3da5cb61b84284fc">
<source>Handling charges</source>
<target>Handling charges</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="c9722f74f95451816de0f8ca3259ae44">
<source>Free shipping starts at</source>
<target>Free shipping starts at</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="2605fbb693837be42d0cd0e701cb5aa3">
<source>Handling</source>
<target>Handling</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,247 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5e543256c480ac577d30f76f9120eb74">
<source>undefined</source>
<target>undefined</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="fb2ea703b13d059f6b7ea5da806021df">
<source>Format:</source>
<target>Format:</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="b908c2f34052b5276e0bf50f0e042211">
<source>Filesize:</source>
<target>Filesize:</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="2f972dbb48435d9b8087d7e3c22daa09">
<source>MB max.</source>
<target>MB max.</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="c32587b909ccc2187659ca665dbb06be">
<source>Current size:</source>
<target>Current size:</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carriers/helpers/list/list_header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="401c8f6635d231c5360f31ce548c4462">
<source>Your online store needs to have a proper carrier registered in PrestaShop as soon as you start shipping your products. This means sending yours parcels using your local postal service, or having a contract with a private carrier which in turn will ship your parcels to your customers. In order to have PrestaShop suggest the most adequate carrier to your customers during their order checkout process, you need to register all the carriers with which you have chosen to work.</source>
<target>Your online store needs to have a proper carrier registered in PrestaShop as soon as you start shipping your products. This means sending yours parcels using your local postal service, or having a contract with a private carrier which in turn will ship your parcels to your customers. In order to have PrestaShop suggest the most adequate carrier to your customers during their order checkout process, you need to register all the carriers with which you have chosen to work.</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="c751fd51e685dd8c071f8535be0d0d8f">
<source>PrestaShop comes with a number of carrier modules that you can activate. You can also buy carrier modules on the PrestaShop Addons marketplace. Recommended modules are listed below: install the module that matches your carrier, and configure it!</source>
<target>PrestaShop comes with a number of carrier modules that you can activate. You can also buy carrier modules on the PrestaShop Addons marketplace. Recommended modules are listed below: install the module that matches your carrier, and configure it!</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="5bacfd2dc472feddb875fc29134b03bb">
<source>If there is no existing module for your carrier, then you can register that carrier by hand using the information that it can provide you: shipping rates, regional zones, size and weight limits, etc. Click on the "Add new carrier" button below to open the Carrier Wizard, which will help you register a new carrier in a few steps.</source>
<target>If there is no existing module for your carrier, then you can register that carrier by hand using the information that it can provide you: shipping rates, regional zones, size and weight limits, etc. Click on the "Add new carrier" button below to open the Carrier Wizard, which will help you register a new carrier in a few steps.</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="12a118b904361ef7a25365b2ff29cfa9">
<source>Note: DO NOT register a new carrier if there already exists a module for it! Using a module will be much faster and more accurate!</source>
<target>Note: DO NOT register a new carrier if there already exists a module for it! Using a module will be much faster and more accurate!</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarrierWizardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="95be6960ce35a5d972b7314203b312be">
<source>The carrier's name will be displayed during checkout.</source>
<target>The carrier's name will be displayed during checkout.</target>
<note>Line: 189</note>
</trans-unit>
<trans-unit id="d2eee8992bbabe7e76562a015ecf0d7f">
<source>The delivery time will be displayed during checkout.</source>
<target>The delivery time will be displayed during checkout.</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="ff9058a791d671d3cb7ce3117b3f989d">
<source>Delivery tracking URL: Type '@' where the tracking number should appear. It will be automatically replaced by the tracking number.</source>
<target>Delivery tracking URL: Type '@' where the tracking number should appear. It will be automatically replaced by the tracking number.</target>
<note>Line: 219</note>
</trans-unit>
<trans-unit id="e4cb2dbfdc6b5b71c8aef1b781712b03">
<source>For example: 'http://example.com/track.php?num=@' with '@' where the tracking number should appear.</source>
<target>For example: 'http://example.com/track.php?num=@' with '@' where the tracking number should appear.</target>
<note>Line: 220</note>
</trans-unit>
<trans-unit id="0668ec4bb8d6bcb27d283b2af9bc5888">
<source><![CDATA[Include the handling costs (as set in Shipping > Preferences) in the final carrier price.]]></source>
<target><![CDATA[Include the handling costs (as set in Shipping > Preferences) in the final carrier price.]]></target>
<note>Line: 277</note>
</trans-unit>
<trans-unit id="0d93d79832d9f31a18045afabb105de1">
<source>Out-of-range behavior occurs when no defined range matches the customer's cart (e.g. when the weight of the cart is greater than the highest weight limit defined by the weight ranges).</source>
<target>Out-of-range behavior occurs when no defined range matches the customer's cart (e.g. when the weight of the cart is greater than the highest weight limit defined by the weight ranges).</target>
<note>Line: 350</note>
</trans-unit>
<trans-unit id="2f79e7f703f8cd0258b0ef7e0237a4be">
<source>Maximum width managed by this carrier. Set the value to "0", or leave this field blank to ignore.</source>
<target>Maximum width managed by this carrier. Set the value to "0", or leave this field blank to ignore.</target>
<note>Line: 394</note>
</trans-unit>
<trans-unit id="497876c111e98a20564817545518f829">
<source>The value must be an integer.</source>
<target>The value must be an integer.</target>
<note>Line: 408</note>
</trans-unit>
<trans-unit id="5929a4e1d04d4653b6dbe2aac59d8a41">
<source>Maximum height managed by this carrier. Set the value to "0", or leave this field blank to ignore.</source>
<target>Maximum height managed by this carrier. Set the value to "0", or leave this field blank to ignore.</target>
<note>Line: 401</note>
</trans-unit>
<trans-unit id="aacaecfacce577935cf83eeb01bcac40">
<source>Maximum depth managed by this carrier. Set the value to "0", or leave this field blank to ignore.</source>
<target>Maximum depth managed by this carrier. Set the value to "0", or leave this field blank to ignore.</target>
<note>Line: 408</note>
</trans-unit>
<trans-unit id="82ef5a4b25d9debf587900797b0b9619">
<source>Maximum weight managed by this carrier. Set the value to "0", or leave this field blank to ignore.</source>
<target>Maximum weight managed by this carrier. Set the value to "0", or leave this field blank to ignore.</target>
<note>Line: 415</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarriersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="07b693f09040dc64d3c36b5daf95caae">
<source>Allowed characters: letters, spaces and "%special_chars%".</source>
<target>Allowed characters: letters, spaces and "%special_chars%".</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="a788f81b3aa0ef9c9efcb1fb67708d82">
<source>For in-store pickup, enter 0 to replace the carrier name with your shop name.</source>
<target>For in-store pickup, enter 0 to replace the carrier name with your shop name.</target>
<note>Line: 177</note>
</trans-unit>
<trans-unit id="4ca4a355318f45dac9fb0ee632d8dc3c">
<source>Enter "0" for a longest shipping delay, or "9" for the shortest shipping delay.</source>
<target>Enter "0" for a longest shipping delay, or "9" for the shortest shipping delay.</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="d7049d8a068769eb32177e404639b8ce">
<source>Mark the groups that are allowed access to this carrier.</source>
<target>Mark the groups that are allowed access to this carrier.</target>
<note>Line: 224</note>
</trans-unit>
<trans-unit id="1c6c9d089ce4b751673e3dd09e97b935">
<source>Enable the carrier in the front office.</source>
<target>Enable the carrier in the front office.</target>
<note>Line: 245</note>
</trans-unit>
<trans-unit id="3194ebe40c7a8c29c78ea79066b6e05c">
<source>Carrier name displayed during checkout</source>
<target>Carrier name displayed during checkout</target>
<note>Line: 176</note>
</trans-unit>
<trans-unit id="9e93aab109e30d26aa231a49385c99db">
<source>Upload a logo from your computer.</source>
<target>Upload a logo from your computer.</target>
<note>Line: 184</note>
</trans-unit>
<trans-unit id="e81c4e4f2b7b93b481e13a8553c2ae1b">
<source>or</source>
<target>or</target>
<note>Line: 184</note>
</trans-unit>
<trans-unit id="cdaa245d6e50b5647bfd9fcb77ac9a21">
<source>Estimated delivery time will be displayed during checkout.</source>
<target>Estimated delivery time will be displayed during checkout.</target>
<note>Line: 193</note>
</trans-unit>
<trans-unit id="7a753d72397847025d0a91c564fa0fdc">
<source>Delivery tracking URL: Type '@' where the tracking number should appear. It will then be automatically replaced by the tracking number.</source>
<target>Delivery tracking URL: Type '@' where the tracking number should appear. It will then be automatically replaced by the tracking number.</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="f8af50e8f2eb39dc8581b4943d6ec59f">
<source>The zones in which this carrier will be used.</source>
<target>The zones in which this carrier will be used.</target>
<note>Line: 217</note>
</trans-unit>
<trans-unit id="920bd1fb6d54c93fca528ce941464225">
<source>Group access</source>
<target>Group access</target>
<note>Line: 221</note>
</trans-unit>
<trans-unit id="8a52ca34a90eb8486886815e62958ac1">
<source>Apply both regular shipping cost and product-specific shipping costs.</source>
<target>Apply both regular shipping cost and product-specific shipping costs.</target>
<note>Line: 265</note>
</trans-unit>
<trans-unit id="91aa2e3b1cd071ba7031bf4263e11821">
<source>Include the shipping and handling costs in the carrier price.</source>
<target>Include the shipping and handling costs in the carrier price.</target>
<note>Line: 300</note>
</trans-unit>
<trans-unit id="482836cce404046ca7dc34fb0a6fc526">
<source>Apply the cost of the highest defined range</source>
<target>Apply the cost of the highest defined range</target>
<note>Line: 335</note>
</trans-unit>
<trans-unit id="b73438685f91ee3e3afbb725fb8f948a">
<source>Out-of-range behavior occurs when none is defined (e.g. when a customer's cart weight is greater than the highest range limit).</source>
<target>Out-of-range behavior occurs when none is defined (e.g. when a customer's cart weight is greater than the highest range limit).</target>
<note>Line: 345</note>
</trans-unit>
<trans-unit id="0687bb4ca6cc1c51d79684159f91ff11">
<source>Maximum height managed by this carrier. Set the value to "0," or leave this field blank to ignore.</source>
<target>Maximum height managed by this carrier. Set the value to "0," or leave this field blank to ignore.</target>
<note>Line: 352</note>
</trans-unit>
<trans-unit id="ff5e2cfc010955358f7ff264d9e58398">
<source>Maximum width managed by this carrier. Set the value to "0," or leave this field blank to ignore.</source>
<target>Maximum width managed by this carrier. Set the value to "0," or leave this field blank to ignore.</target>
<note>Line: 359</note>
</trans-unit>
<trans-unit id="049de64decc4aa8fa5aa89cf8b17470c">
<source>Maximum depth managed by this carrier. Set the value to "0," or leave this field blank to ignore.</source>
<target>Maximum depth managed by this carrier. Set the value to "0," or leave this field blank to ignore.</target>
<note>Line: 366</note>
</trans-unit>
<trans-unit id="a414ac63c6b29218661d1fa2c6e21b5b">
<source>Maximum weight managed by this carrier. Set the value to "0," or leave this field blank to ignore.</source>
<target>Maximum weight managed by this carrier. Set the value to "0," or leave this field blank to ignore.</target>
<note>Line: 373</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Shipping/Preferences/Blocks/shipping_preferences_carrier_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ece6bb2586fa84042edde479c6a6ce6b">
<source>Your shop's default carrier</source>
<target>Your shop's default carrier</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="4f309c91cb82ce5d20c15d015759a21e">
<source>This will only be visible in the front office.</source>
<target>This will only be visible in the front office.</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Shipping/Preferences/Blocks/shipping_preferences_handling.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2be1ec70444ccaf2b74bd55f3aabdead">
<source>If you set these parameters to 0, they will be disabled.</source>
<target>If you set these parameters to 0, they will be disabled.</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="e99c83da35c2a39bf9dc72273d350272">
<source>Coupons are not taken into account when calculating free shipping.</source>
<target>Coupons are not taken into account when calculating free shipping.</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e23375136c63fb5936352717f495bc82">
<source>Ranges are not correctly ordered:</source>
<target>Ranges are not correctly ordered:</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="11a5324fcccfa07ed027b0226bbf5ee1">
<source>Reordering</source>
<target>Reordering</target>
<note>Line: 35</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/helpers/view/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d6bdbfede9754a46df1a5b801f7a6c04">
<source>Please validate the last range before creating a new one.</source>
<target>Please validate the last range before creating a new one.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="d9c830e9dc70798aef5634594d183f1c">
<source>Are you sure to delete this range ?</source>
<target>Are you sure to delete this range ?</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="8a896dc0288ba4be64367f3006d51b98">
<source>This range is not valid</source>
<target>This range is not valid</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="f3fb906c0bd487b3341bc200d23e8faf">
<source>Ranges are overlapping</source>
<target>Ranges are overlapping</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="1add5d6b48d9f20ab77e9900918999ff">
<source>Please select at least one zone</source>
<target>Please select at least one zone</target>
<note>Line: 45</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/carrier_wizard/logo.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b9bc8a98f12d9decfe96d41c44513157">
<source>Are you sure you want to delete the logo?</source>
<target>Are you sure you want to delete the logo?</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarrierWizardController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c2cbc795de8a7691ec0e4c55fd61fe43">
<source>You do not have permission to use this wizard.</source>
<target>You do not have permission to use this wizard.</target>
<note>Line: 760</note>
</trans-unit>
<trans-unit id="6305822e6fd3b92120ee6f23552164c4">
<source>You must choose at least one shop or group shop.</source>
<target>You must choose at least one shop or group shop.</target>
<note>Line: 649</note>
</trans-unit>
<trans-unit id="9ef70769595c35cca03dae49ac1f31d1">
<source>An error occurred while saving this carrier.</source>
<target>An error occurred while saving this carrier.</target>
<note>Line: 805</note>
</trans-unit>
<trans-unit id="cfabe09befdc8289f6ca5fbc6887ffe5">
<source>An error occurred while saving carrier groups.</source>
<target>An error occurred while saving carrier groups.</target>
<note>Line: 818</note>
</trans-unit>
<trans-unit id="2222c64a45d69edbf16dd5fb81db904b">
<source>An error occurred while saving carrier zones.</source>
<target>An error occurred while saving carrier zones.</target>
<note>Line: 823</note>
</trans-unit>
<trans-unit id="bae6cceb9789ee48445a0ddc8c143f0b">
<source>An error occurred while saving carrier ranges.</source>
<target>An error occurred while saving carrier ranges.</target>
<note>Line: 829</note>
</trans-unit>
<trans-unit id="be78233fdb6fe537e065a0d8650c0e84">
<source>An error occurred while saving associations of shops.</source>
<target>An error occurred while saving associations of shops.</target>
<note>Line: 835</note>
</trans-unit>
<trans-unit id="5b26cf06b6165264574bf9e097f062bc">
<source>An error occurred while saving the tax rules group.</source>
<target>An error occurred while saving the tax rules group.</target>
<note>Line: 840</note>
</trans-unit>
<trans-unit id="08c490a8c2d633b012b63dccd00cc719">
<source>An error occurred while saving carrier logo.</source>
<target>An error occurred while saving carrier logo.</target>
<note>Line: 850</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCarriersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="407ec7ad396ed1f5fc78bc006946af12">
<source>An error occurred while updating carrier information.</source>
<target>An error occurred while updating carrier information.</target>
<note>Line: 525</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,831 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/referrers/form_settings.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ce162159505d90c37be3dd2b464c3360">
<source>There is a huge quantity of data, so each connection corresponding to a referrer is indexed. You can also refresh this index by clicking the "Refresh index" button. This process may take a while, and it's only needed if you modified or added a referrer, or if you want changes to be retroactive.</source>
<target>There is a huge quantity of data, so each connection corresponding to a referrer is indexed. You can also refresh this index by clicking the "Refresh index" button. This process may take a while, and it's only needed if you modified or added a referrer, or if you want changes to be retroactive.</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="6c4defc21d9e7428d7fe81a81f8eb05d">
<source>Your data is cached in order to sort it and filter it. You can refresh the cache by clicking on the "Refresh cache" button.</source>
<target>Your data is cached in order to sort it and filter it. You can refresh the cache by clicking on the "Refresh cache" button.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="42bb6e7b5d150acfa5243c250d864cbc">
<source>Direct traffic can be quite resource-intensive. You should consider enabling it only if you have a strong need for it.</source>
<target>Direct traffic can be quite resource-intensive. You should consider enabling it only if you have a strong need for it.</target>
<note>Line: 58</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/referrers/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="711136b10e4f46ca38be4363bfd809ce">
<source>Show me more</source>
<target>Show me more</target>
<note>Line: 33</note>
</trans-unit>
<trans-unit id="a1b58c5793a9c4b1596f555d3c46ca7c">
<source>Definitions:</source>
<target>Definitions:</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="b0194c3357e1b561284a08ba9c8625c7">
<source>The "http_referer" field is the website from which your customers arrive.</source>
<target>The "http_referer" field is the website from which your customers arrive.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="e1bc4efa13a13333c86fdf2eb70a0c38">
<source>For example, visitors coming from Google will have an "http_referer" value like this one: "http://www.google.com/search?q=prestashop".</source>
<target>For example, visitors coming from Google will have an "http_referer" value like this one: "http://www.google.com/search?q=prestashop".</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="9b3c4e3b2a8a95bcaad9b816a925fca5">
<source>If the visitor arrives directly (by typing the URL of your shop, or by using their bookmarks, for example), the http_referer will be empty.</source>
<target>If the visitor arrives directly (by typing the URL of your shop, or by using their bookmarks, for example), the http_referer will be empty.</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="6f0aa1b11f44e45dbbd01546e6726424">
<source>If you'd like to view all the visitors coming from Google, you can type "%google%" in this field. Alternatively, you can type "%google.fr%" if you want to view visitors coming from Google France, only.</source>
<target>If you'd like to view all the visitors coming from Google, you can type "%google%" in this field. Alternatively, you can type "%google.fr%" if you want to view visitors coming from Google France, only.</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="41b06c521ee2d1075f9bd3b12e8758a5">
<source>The "request_uri" field is the URL from which the customers come to your website.</source>
<target>The "request_uri" field is the URL from which the customers come to your website.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="aa9eb9d62ab328d8da04b77469fbb6c8">
<source>For example, if the visitor accesses a product page, the URL will be like this one: "%smusic-ipods/1-ipod-nano.html".</source>
<target>For example, if the visitor accesses a product page, the URL will be like this one: "%smusic-ipods/1-ipod-nano.html".</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="4451a0228098136036ced8d9b7478ed9">
<source>This is helpful because you can add tags or tokens in the links pointing to your website.</source>
<target>This is helpful because you can add tags or tokens in the links pointing to your website.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="6ca25929481cee3aef9cda0f7d309f9d">
<source>For example, you can post a link (such as "%sindex.php?myuniquekeyword" -- note that you added "?myuniquekeyword" at the end of the URL) in an online forum or as a blog comment, and get visitors statistics for that unique link by entering "%%myuniquekeyword" in the "request_uri" field.</source>
<target>For example, you can post a link (such as "%sindex.php?myuniquekeyword" -- note that you added "?myuniquekeyword" at the end of the URL) in an online forum or as a blog comment, and get visitors statistics for that unique link by entering "%%myuniquekeyword" in the "request_uri" field.</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="07d199fdf852bd9dc4d899b6cd2a16e7">
<source>This method is more reliable than the "http_referer" one, but there is one disadvantage: if a search engine references a page with your link, then it will be displayed in the search results and you will not only indicate visitors from the places where you posted the link, but also those from the search engines that picked up that link.</source>
<target>This method is more reliable than the "http_referer" one, but there is one disadvantage: if a search engine references a page with your link, then it will be displayed in the search results and you will not only indicate visitors from the places where you posted the link, but also those from the search engines that picked up that link.</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="2a7510ee054a824a06c67cb30a9dc85f">
<source>The "Include" fields indicate what has to be included in the URL.</source>
<target>The "Include" fields indicate what has to be included in the URL.</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="7047f6cd037224af5ef028de15a0b844">
<source>The "Exclude" fields indicate what has to be excluded from the URL.</source>
<target>The "Exclude" fields indicate what has to be excluded from the URL.</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="fec5647b486079a90ea4667d6125a03e">
<source>When using simple mode, you can use a wide variety of generic characters to replace other characters:</source>
<target>When using simple mode, you can use a wide variety of generic characters to replace other characters:</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="19e6272904f9f449ae490d69aa36cd6c">
<source>"_" will replace one character. If you want to use the real "_", you should type this: "\\_".</source>
<target>"_" will replace one character. If you want to use the real "_", you should type this: "\\_".</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="900b3ed6d62723c673b427a3f6e66669">
<source>"%" will replace any number of characters. If you want to use the real "%", you should type this: "\\%".</source>
<target>"%" will replace any number of characters. If you want to use the real "%", you should type this: "\\%".</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="5d23fb29ee98e1f050bc9dabbcca667d">
<source>The Simple mode uses the MySQL "LIKE" pattern matching, but for a higher potency you can use MySQL's regular expressions in the Expert mode.</source>
<target>The Simple mode uses the MySQL "LIKE" pattern matching, but for a higher potency you can use MySQL's regular expressions in the Expert mode.</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="88b3441035077ae06f817c3b4afb8d2a">
<source>Take a look at MySQL's documentation for more details.</source>
<target>Take a look at MySQL's documentation for more details.</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="2d0c2b736fa1ab8ce149d26fc36e453a">
<source>Get help!</source>
<target>Get help!</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/stores/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e734ed12d2c2026532f66e0ebeedfc8c">
<source>e.g. 10:00AM - 9:30PM</source>
<target>e.g. 10:00AM - 9:30PM</target>
<note>Line: 67</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminContactsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a2b086325f59e6c2fbd410511f4fdfb3">
<source>Further information regarding this contact.</source>
<target>Further information regarding this contact.</target>
<note>Line: 124</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminGendersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="62c7ceb6de5c4d39e49c9762af6ddb4d">
<source>Image width in pixels. Enter "0" to use the original size.</source>
<target>Image width in pixels. Enter "0" to use the original size.</target>
<note>Line: 162</note>
</trans-unit>
<trans-unit id="aec8651b033be4d4056785d43763d7ca">
<source>Image height in pixels. Enter "0" to use the original size.</source>
<target>Image height in pixels. Enter "0" to use the original size.</target>
<note>Line: 169</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminGroupsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0822f76515fa1d9ce38504176cb23bae">
<source>The group defined for your un-identified visitors.</source>
<target>The group defined for your un-identified visitors.</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="e3e0c764f81f1a3677d59aa238fddd14">
<source>The group defined for your identified guest customers (used in guest checkout).</source>
<target>The group defined for your identified guest customers (used in guest checkout).</target>
<note>Line: 119</note>
</trans-unit>
<trans-unit id="e820b12959b64dfff397100db68cd951">
<source>The group defined for your identified registered customers.</source>
<target>The group defined for your identified registered customers.</target>
<note>Line: 127</note>
</trans-unit>
<trans-unit id="a5fa9ffd3ddf89fe263675358032e7fb">
<source>Automatically apply this value as a discount on all products for members of this customer group.</source>
<target>Automatically apply this value as a discount on all products for members of this customer group.</target>
<note>Line: 327</note>
</trans-unit>
<trans-unit id="21e445ba767d4fd41332b6eceab2be1a">
<source>How prices are displayed in the order summary for this customer group.</source>
<target>How prices are displayed in the order summary for this customer group.</target>
<note>Line: 334</note>
</trans-unit>
<trans-unit id="eaf74fe1658ada757063c8ddc4381ef9">
<source>Customers in this group can view prices.</source>
<target>Customers in this group can view prices.</target>
<note>Line: 369</note>
</trans-unit>
<trans-unit id="d38245fbe312b2dafef8450b67e94f50">
<source>%group_name% - All persons without a customer account or customers that are not logged in.</source>
<target>%group_name% - All persons without a customer account or customers that are not logged in.</target>
<note>Line: 615</note>
</trans-unit>
<trans-unit id="5125d0fd7b81fee95b7e4b7689a878a9">
<source>%group_name% - All persons who placed an order through Guest Checkout.</source>
<target>%group_name% - All persons who placed an order through Guest Checkout.</target>
<note>Line: 616</note>
</trans-unit>
<trans-unit id="96f090b06e329e3d192c0ea3701f8cb5">
<source>%group_name% - All persons who created an account on this site.</source>
<target>%group_name% - All persons who created an account on this site.</target>
<note>Line: 617</note>
</trans-unit>
<trans-unit id="a2ce271cf6d8afe81168fbfc4ccb492c">
<source>PrestaShop has three default customer groups:</source>
<target>PrestaShop has three default customer groups:</target>
<note>Line: 619</note>
</trans-unit>
<trans-unit id="c7a5c6872a29383d6ab0db08e6b40e15">
<source>Need to hide prices for all groups? Save time, enable catalog mode in Product Settings instead.</source>
<target>Need to hide prices for all groups? Save time, enable catalog mode in Product Settings instead.</target>
<note>Line: 370</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminReferrersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6ca725316d3577fb24218119380f38fe">
<source>Leave blank if no change.</source>
<target>Leave blank if no change.</target>
<note>Line: 199</note>
</trans-unit>
<trans-unit id="4181de604675ec0fb8d12202ec23964c">
<source>Fee given for each visit.</source>
<target>Fee given for each visit.</target>
<note>Line: 236</note>
</trans-unit>
<trans-unit id="4b11cf76a471c13ba29b799772c90ddf">
<source>Fee given for each order placed.</source>
<target>Fee given for each order placed.</target>
<note>Line: 242</note>
</trans-unit>
<trans-unit id="d3d12bc1b7512d954444ec7c368d7176">
<source>If you know how to use MySQL regular expressions, you can use the [1]expert mode[/1].</source>
<target>If you know how to use MySQL regular expressions, you can use the [1]expert mode[/1].</target>
<note>Line: 301</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSearchConfController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="12399d580627a1a5889cdc44e6e48b5a">
<source>Enable the automatic indexing of products. If you enable this feature, the products will be indexed in the search automatically when they are saved. If the feature is disabled, you will have to index products manually by using the links provided in the field set.</source>
<target>Enable the automatic indexing of products. If you enable this feature, the products will be indexed in the search automatically when they are saved. If the feature is disabled, you will have to index products manually by using the links provided in the field set.</target>
<note>Line: 119</note>
</trans-unit>
<trans-unit id="a5cb89e5bcb48c0708ee6837a5944d3e">
<source>By default, to search for “blouse”, you have to enter “blous”, “blo”, etc (beginning of the word) but not “lous” (within the word).</source>
<target>By default, to search for “blouse”, you have to enter “blous”, “blo”, etc (beginning of the word) but not “lous” (within the word).</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="d2e38e24e467d35cc5881e083e05b823">
<source>With this option enabled, it also gives the good result if you search for “lous”, “ouse”, or anything contained in the word.</source>
<target>With this option enabled, it also gives the good result if you search for “lous”, “ouse”, or anything contained in the word.</target>
<note>Line: 139</note>
</trans-unit>
<trans-unit id="9110055bdc92744713baa237b26f8ac7">
<source>Enable search within a whole word, rather than from its beginning only.</source>
<target>Enable search within a whole word, rather than from its beginning only.</target>
<note>Line: 145</note>
</trans-unit>
<trans-unit id="0e665a9cf278d49f43c4bb4cb9a7c29f">
<source>It checks if the searched term is contained in the indexed word. This may be resource-consuming.</source>
<target>It checks if the searched term is contained in the indexed word. This may be resource-consuming.</target>
<note>Line: 150</note>
</trans-unit>
<trans-unit id="1122eba5946331d2709712f64fa1d66b">
<source>By default, if you search "book", you will have "book", "bookcase" and "bookend".</source>
<target>By default, if you search "book", you will have "book", "bookcase" and "bookend".</target>
<note>Line: 162</note>
</trans-unit>
<trans-unit id="0b1d71ac92f27198d2bd1e6cd49cec1b">
<source>With this option enabled, it only gives one result “book”, as exact end of the indexed word is matching.</source>
<target>With this option enabled, it only gives one result “book”, as exact end of the indexed word is matching.</target>
<note>Line: 167</note>
</trans-unit>
<trans-unit id="c4474326e7d8129b7c04ada10f34f5b1">
<source>Enable more precise search with the end of the word.</source>
<target>Enable more precise search with the end of the word.</target>
<note>Line: 173</note>
</trans-unit>
<trans-unit id="efb6bc8d1ee1c5527d494ba15ee3109d">
<source>It checks if the searched term is the exact end of the indexed word.</source>
<target>It checks if the searched term is the exact end of the indexed word.</target>
<note>Line: 178</note>
</trans-unit>
<trans-unit id="645115aba5ef431a04da95c746477544">
<source>Only words this size or larger will be indexed.</source>
<target>Only words this size or larger will be indexed.</target>
<note>Line: 191</note>
</trans-unit>
<trans-unit id="2c2666c9eee818342b0aff77dda51990">
<source>Please enter the index words separated by a "|".</source>
<target>Please enter the index words separated by a "|".</target>
<note>Line: 203</note>
</trans-unit>
<trans-unit id="786471035f60ea5955fd93f6998e8637">
<source>Enter each alias separated by a comma (e.g. 'prestshop,preztashop,prestasohp').</source>
<target>Enter each alias separated by a comma (e.g. 'prestshop,preztashop,prestasohp').</target>
<note>Line: 363</note>
</trans-unit>
<trans-unit id="259b411f284388d228a30c1e2ed0c61d">
<source><![CDATA[Forbidden characters: <>;=#{}]]></source>
<target><![CDATA[Forbidden characters: <>;=#{}]]></target>
<note>Line: 364</note>
</trans-unit>
<trans-unit id="01d2aac5d20787a1e873f2bdc79b514a">
<source>Search this word instead.</source>
<target>Search this word instead.</target>
<note>Line: 372</note>
</trans-unit>
<trans-unit id="88851f53412ccb796508fd5f48e7a44f">
<source><![CDATA[Forbidden characters: <>;=#{}]]></source>
<target><![CDATA[Forbidden characters: <>;=#{}]]></target>
<note>Line: 364</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5c85aec638229f60a035c7a6ab3623c8">
<source>This field does not refer to the shop name visible in the front office.</source>
<target>This field does not refer to the shop name visible in the front office.</target>
<note>Line: 373</note>
</trans-unit>
<trans-unit id="1561fa99e3814c72f5206ab48b472335">
<source>Follow [1]this link[/1] to edit the shop name used on the front office.</source>
<target>Follow [1]this link[/1] to edit the shop name used on the front office.</target>
<note>Line: 374</note>
</trans-unit>
<trans-unit id="92aaf3cf7e8f1434886a8887e102391b">
<source>You can't edit the shop group because the current shop belongs to a group with the "share" option enabled.</source>
<target>You can't edit the shop group because the current shop belongs to a group with the "share" option enabled.</target>
<note>Line: 432</note>
</trans-unit>
<trans-unit id="fce5f624e66bd2e2f0296fc3bd2a8f64">
<source>This is the root category of the store that you've created. To define a new root category for your store, [1]please click here[/1].</source>
<target>This is the root category of the store that you've created. To define a new root category for your store, [1]please click here[/1].</target>
<note>Line: 442</note>
</trans-unit>
<trans-unit id="f0f7416fad0a9c9fc3163cabe68393c1">
<source>By selecting associated categories, you are choosing to share the categories between shops. Once associated between shops, any alteration of this category will impact every shop.</source>
<target>By selecting associated categories, you are choosing to share the categories between shops. Once associated between shops, any alteration of this category will impact every shop.</target>
<note>Line: 496</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatusesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="83b262520a65657b95fd686817c56a09">
<source>Order status (e.g. 'Pending').</source>
<target>Order status (e.g. 'Pending').</target>
<note>Line: 281</note>
</trans-unit>
<trans-unit id="a4bb440d400f4dc30f148b44d08680b4">
<source>Invalid characters: numbers and</source>
<target>Invalid characters: numbers and</target>
<note>Line: 484</note>
</trans-unit>
<trans-unit id="a9c2e14555131d68a4ac37b604ee52a8">
<source>Upload an icon from your computer (File type: .gif, suggested size: 16x16).</source>
<target>Upload an icon from your computer (File type: .gif, suggested size: 16x16).</target>
<note>Line: 289</note>
</trans-unit>
<trans-unit id="00b963b1cb1aad2142ae67ce65329944">
<source>Status will be highlighted in this color. HTML colors only.</source>
<target>Status will be highlighted in this color. HTML colors only.</target>
<note>Line: 491</note>
</trans-unit>
<trans-unit id="f0fe1aebeace842330fb048126151e06">
<source>Only letters, numbers and underscores ("_") are allowed.</source>
<target>Only letters, numbers and underscores ("_") are allowed.</target>
<note>Line: 408</note>
</trans-unit>
<trans-unit id="3d034f43e44ee495a11005507185a0a0">
<source>Email template for both .html and .txt.</source>
<target>Email template for both .html and .txt.</target>
<note>Line: 409</note>
</trans-unit>
<trans-unit id="43f4ac702eaf88267f6946aeb559b251">
<source>Order's return status name.</source>
<target>Order's return status name.</target>
<note>Line: 483</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStoresController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f45ed1483cf46972b5f225656c9c8991">
<source>Whether or not to display this store.</source>
<target>Whether or not to display this store.</target>
<note>Line: 271</note>
</trans-unit>
<trans-unit id="b950eb0054205bc67aa88899eadded22">
<source>Storefront picture.</source>
<target>Storefront picture.</target>
<note>Line: 280</note>
</trans-unit>
<trans-unit id="d42de30e9e03274c5c83bd6ce5c27a6f">
<source>Displayed in emails sent to customers.</source>
<target>Displayed in emails sent to customers.</target>
<note>Line: 457</note>
</trans-unit>
<trans-unit id="49aaf34d99febc7c13881d121288cd8a">
<source>Shop registration information (e.g. SIRET or RCS).</source>
<target>Shop registration information (e.g. SIRET or RCS).</target>
<note>Line: 464</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Configure/ShopParameters/ProductPreferences/GeneralType.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2593c7ce3ff937293feb1e61c152e551">
<source>characters</source>
<target>characters</target>
<note>Line: 56</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Blocks/customer_preferences_general.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b9716d3d87447a2275318bf88ced7bf8">
<source>After a customer logs in, you can recall and display the content of his/her last shopping cart.</source>
<target>After a customer logs in, you can recall and display the content of his/her last shopping cart.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="751e29d82b27256878d1a38f2be4e118">
<source>Send an email with summary of the account information (email, password) after registration.</source>
<target>Send an email with summary of the account information (email, password) after registration.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="59a84d54ad58aa4bea8aeacd11e47ab2">
<source>Minimum time required between two requests for a password reset.</source>
<target>Minimum time required between two requests for a password reset.</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="e0cf416b39580f321e4641721698560f">
<source>Activate or deactivate B2B mode. When this option is enabled, B2B features will be made available.</source>
<target>Activate or deactivate B2B mode. When this option is enabled, B2B features will be made available.</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="69b3bcd0dba13c9f1188ab86480afca4">
<source>Display or not the birth date field.</source>
<target>Display or not the birth date field.</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="3bc07e4ecf0660962221cf030b935d9d">
<source>Display or not the partner offers tick box, to receive offers from the store's partners.</source>
<target>Display or not the partner offers tick box, to receive offers from the store's partners.</target>
<note>Line: 73</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Blocks/product_preferences_general.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="54ae4e3e39f5a1f636cfcf2744433678">
<source>The catalog mode is actually to disable products checkout (prices, add to cart, etc.) on your shop, like a retail website does.</source>
<target>The catalog mode is actually to disable products checkout (prices, add to cart, etc.) on your shop, like a retail website does.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="80af0f0b70143f575fdfd6fa3ca3cb89">
<source>Set the maximum size of the summary of your product description (in characters).</source>
<target>Set the maximum size of the summary of your product description (in characters).</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="fc216bdfbaab3c5e3e87c70720110a08">
<source>How to calculate quantity discounts.</source>
<target>How to calculate quantity discounts.</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="07d295aa9281a95bf9c27348393f688a">
<source>When active, friendly URL will be updated on every save.</source>
<target>When active, friendly URL will be updated on every save.</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="3f141565d26297ff4449250743dba137">
<source>When active, new products will be activated by default during creation.</source>
<target>When active, new products will be activated by default during creation.</target>
<note>Line: 83</note>
</trans-unit>
<trans-unit id="bd92437d0543aa142ccea7c021c9efe9">
<source>Catalog mode disables the shopping cart on your store. Visitors will be able to browse your products catalog, but not buy them.</source>
<target>Catalog mode disables the shopping cart on your store. Visitors will be able to browse your products catalog, but not buy them.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="2f00a538942083503dd09c585cc6d91c">
<source>Have specific needs? Edit particular groups to let them see prices or not.</source>
<target>Have specific needs? Edit particular groups to let them see prices or not.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="bbaceb858ee14af2da60e07d63fd8678">
<source>Display product prices when in catalog mode.</source>
<target>Display product prices when in catalog mode.</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Blocks/product_preferences_page.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9175b705bec9604985209d1f2d88c785">
<source>Set to "0" to disable this feature.</source>
<target>Set to "0" to disable this feature.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="265b491d10a9a79c9b43655659826614">
<source>Display or hide the "add to cart" button on category pages for products that have attributes forcing customers to see product details.</source>
<target>Display or hide the "add to cart" button on category pages for products that have attributes forcing customers to see product details.</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="f70d03fbb967b69ef8222c4a2b4ab334">
<source>In the volume discounts board, display the new price with the applied discount instead of showing the discount (ie. "-5%").</source>
<target>In the volume discounts board, display the new price with the applied discount instead of showing the discount (ie. "-5%").</target>
<note>Line: 85</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Blocks/product_preferences_pagination.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2724aaa50fa52662bc9b244cab7afcae">
<source>Number of products displayed per page. Default is 10.</source>
<target>Number of products displayed per page. Default is 10.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="c18179baaeadd4a2fc27fafd3d6f40b1">
<source>The order in which products are displayed in the product list.</source>
<target>The order in which products are displayed in the product list.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="043781290780f9b67e98fc277d7608ba">
<source>Default order method for product list.</source>
<target>Default order method for product list.</target>
<note>Line: 52</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Blocks/product_preferences_stock.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="885af23392ddb34eaabf65d3b86b216c">
<source>By default, the Add to Cart button is hidden when a product is unavailable. You can choose to have it displayed in all cases.</source>
<target>By default, the Add to Cart button is hidden when a product is unavailable. You can choose to have it displayed in all cases.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="4b7f36059725914c3abe3fe69a42d860">
<source>Advised for European merchants to be legally compliant (eg: Delivered within 3-4 days)</source>
<target>Advised for European merchants to be legally compliant (eg: Delivered within 3-4 days)</target>
<note>Line: 81</note>
</trans-unit>
<trans-unit id="29474c2b0b3e4d053abd526ed118b420">
<source>Advised for European merchants to be legally compliant (eg: Delivered within 5-7 days)</source>
<target>Advised for European merchants to be legally compliant (eg: Delivered within 5-7 days)</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="f9a436259aa8fcb0e45a2081a259e90d">
<source>When selling packs of products, how do you want your stock to be calculated?</source>
<target>When selling packs of products, how do you want your stock to be calculated?</target>
<note>Line: 97</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/Contact/Contacts/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9cd9efd3eb168071eb0a199972c54aab">
<source>Contact name (e.g. Customer Support).</source>
<target>Contact name (e.g. Customer Support).</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="daedf9c5c8f38ac4cf641f3fb3e1bdc4">
<source>Emails will be sent to this address.</source>
<target>Emails will be sent to this address.</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="0f28459fa87b1b3ce6e8b17932f08c3a">
<source>If enabled, all messages will be saved in the "Customer Service" page under the "Customer" menu.</source>
<target>If enabled, all messages will be saved in the "Customer Service" page under the "Customer" menu.</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/OrderPreferences/Blocks/order_preferences_general.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="406fff3ade73ad2eb4c4fefa8a1c2702">
<source>Display an overview of the addresses, shipping method and cart just before the order button (required in some European countries).</source>
<target>Display an overview of the addresses, shipping method and cart just before the order button (required in some European countries).</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="e7c9a42ec01114dcd98e47bb1cb1ace6">
<source>Allow guest visitors to place an order without registering.</source>
<target>Allow guest visitors to place an order without registering.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="8690429442758955469bd5eb14c3db72">
<source>Disable the option to allow customers to reorder in one click from the order history page (required in some European countries).</source>
<target>Disable the option to allow customers to reorder in one click from the order history page (required in some European countries).</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="96b2f955774aee5f11e61646b7d5ae43">
<source>Set to 0 to disable this feature.</source>
<target>Set to 0 to disable this feature.</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="5ed533875d7388ffdbb60818e9596bdc">
<source>Automatically updates the shipping costs when you edit an order.</source>
<target>Automatically updates the shipping costs when you edit an order.</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="df2a562b17ec12920cee57e20b02ab67">
<source>Allow the customer to ship orders to multiple addresses. This option will convert the customer's cart into one or more orders.</source>
<target>Allow the customer to ship orders to multiple addresses. This option will convert the customer's cart into one or more orders.</target>
<note>Line: 74</note>
</trans-unit>
<trans-unit id="86d8ec764d429d4ebe6e39de9ff8c4a4">
<source>Allows you to delay shipping at your customers' request.</source>
<target>Allows you to delay shipping at your customers' request.</target>
<note>Line: 82</note>
</trans-unit>
<trans-unit id="fff92cdf417b8a468af180474057a575">
<source>Require customers to accept or decline terms of service before processing an order.</source>
<target>Require customers to accept or decline terms of service before processing an order.</target>
<note>Line: 89</note>
</trans-unit>
<trans-unit id="38cb366ab3534fefcbc7d051a3b122fd">
<source>Choose the page which contains your store's terms and conditions of use.</source>
<target>Choose the page which contains your store's terms and conditions of use.</target>
<note>Line: 96</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/OrderPreferences/Blocks/order_preferences_gift_options.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8be74244c8fe462cb6d967a5ebdc57cb">
<source>Suggest gift-wrapping to customers.</source>
<target>Suggest gift-wrapping to customers.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="f2e28db133063334eb23fad936947493">
<source>Set a price for gift wrapping.</source>
<target>Set a price for gift wrapping.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="3993942430a9f4e82e50b2c39048d6b6">
<source>Set a tax for gift wrapping.</source>
<target>Set a tax for gift wrapping.</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="f8aacaf7661fefb62d929d691b6bcfbe">
<source>Suggest recycled packaging to customer.</source>
<target>Suggest recycled packaging to customer.</target>
<note>Line: 63</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/domain_name_management.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="55ed6eb3effe909461f682de73f89f82">
<source>You can search for a new domain name or add a domain name that you already own. You will be redirected to your PrestaShop account.</source>
<target>You can search for a new domain name or add a domain name that you already own. You will be redirected to your PrestaShop account.</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6252c0f2c2ed83b7b06dfca86d4650bb">
<source>Invalid characters:</source>
<target>Invalid characters:</target>
<note>Line: 71</note>
</trans-unit>
<trans-unit id="219985722a429b6aaceef7d363e6a565">
<source>Name of the related page.</source>
<target>Name of the related page.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="14bc1d17bbcf8fb45debf11fb7c5f80b">
<source>Title of this page.</source>
<target>Title of this page.</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="79c06fd4269a36582767dc4525699148">
<source>A short description of your shop.</source>
<target>A short description of your shop.</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="d9f600637f31b203b55f6c91dabd4fde">
<source>List of keywords for search engines.</source>
<target>List of keywords for search engines.</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="99de37a1ed381af8c01ccb18f70b1427">
<source>For instance, "contacts" for http://example.com/shop/contacts to redirect to http://example.com/shop/contact-form.php</source>
<target>For instance, "contacts" for http://example.com/shop/contacts to redirect to http://example.com/shop/contact-form.php</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="7aa534250fe76a40d96078a07b6f44e8">
<source>Only letters and hyphens are allowed.</source>
<target>Only letters and hyphens are allowed.</target>
<note>Line: 81</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/seo_options_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6d6348525df68625d9758d6d071ac505">
<source>Enable this option if you want to display your product's attributes in its meta title.</source>
<target>Enable this option if you want to display your product's attributes in its meta title.</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/set_up_urls_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3ff4fabe93bbb10c32a27c54ea13a5e1">
<source>Enable this option only if your server allows URL rewriting (recommended).</source>
<target>Enable this option only if your server allows URL rewriting (recommended).</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="6a9bb0bb3f61904834f4f436bbcaa1d2">
<source>URL rewriting (mod_rewrite) is not active on your server, or it is not possible to check your server configuration. If you want to use Friendly URLs, you must activate this mod.</source>
<target>URL rewriting (mod_rewrite) is not active on your server, or it is not possible to check your server configuration. If you want to use Friendly URLs, you must activate this mod.</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="1ccf825d454faaa7f8141830469fab8f">
<source>Enable this option if you want to allow accented characters in your friendly URLs.</source>
<target>Enable this option if you want to allow accented characters in your friendly URLs.</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="37d06ba898faba724d13f931b1642b06">
<source>You should only activate this option if you are using non-latin characters ; for all the latin charsets, your SEO will be better without this option.</source>
<target>You should only activate this option if you are using non-latin characters ; for all the latin charsets, your SEO will be better without this option.</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="7dcc0875a9e200be4d760155c09c2945">
<source>Enable this option only if you have problems with URL rewriting.</source>
<target>Enable this option only if you have problems with URL rewriting.</target>
<note>Line: 87</note>
</trans-unit>
<trans-unit id="9e9ad9fb2adc8da0aaec808b3d4e73e4">
<source>Some of PrestaShop's features might not work correctly with a specific configuration of Apache's mod_security module. We recommend to turn it off.</source>
<target>Some of PrestaShop's features might not work correctly with a specific configuration of Apache's mod_security module. We recommend to turn it off.</target>
<note>Line: 97</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/maintenance.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="23d2e4d116d9d457eed9dd3a29f7ac51">
<source>Activate or deactivate your shop (It is a good idea to deactivate your shop while you perform maintenance. Please note that the webservice will not be disabled).</source>
<target>Activate or deactivate your shop (It is a good idea to deactivate your shop while you perform maintenance. Please note that the webservice will not be disabled).</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="c3e680954da4b0bbf8e4d380287f4a76">
<source>IP addresses allowed to access the front office even if the shop is disabled. Please use a comma to separate them (e.g. 42.24.4.2,127.0.0.1,99.98.97.96)</source>
<target>IP addresses allowed to access the front office even if the shop is disabled. Please use a comma to separate them (e.g. 42.24.4.2,127.0.0.1,99.98.97.96)</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="c1c418380f12430665f311652395eb11">
<source>Custom text displayed on maintenance page while shop is deactivated.</source>
<target>Custom text displayed on maintenance page while shop is deactivated.</target>
<note>Line: 57</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/preferences.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="500294c9fd031bb4f00a82b5d27dc22c">
<source>If you own an SSL certificate for your shop's domain name, you can activate SSL encryption (https://) for customer account identification and order processing.</source>
<target>If you own an SSL certificate for your shop's domain name, you can activate SSL encryption (https://) for customer account identification and order processing.</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="a3a0f3b2f4c12d1c11b9916c8c10c48c">
<source>If you want to enable SSL on all the pages of your shop, activate the "Enable on all the pages" option below.</source>
<target>If you want to enable SSL on all the pages of your shop, activate the "Enable on all the pages" option below.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="d86a9baf93dba6b27dbbb04cef8d3aae">
<source>When enabled, all the pages of your shop will be SSL-secured.</source>
<target>When enabled, all the pages of your shop will be SSL-secured.</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="a1202480ddcd8665114515ca380c0e5b">
<source>Enable or disable token in the Front Office to improve PrestaShop's security.</source>
<target>Enable or disable token in the Front Office to improve PrestaShop's security.</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="4f70bd9998bb35643fa3dfc88d6a6373">
<source>Allow iframes on text fields like product description. We recommend that you leave this option disabled.</source>
<target>Allow iframes on text fields like product description. We recommend that you leave this option disabled.</target>
<note>Line: 94</note>
</trans-unit>
<trans-unit id="7ba34b929c8241268ab5eac35a772ab1">
<source>Clean the HTML content on text fields. We recommend that you leave this option enabled.</source>
<target>Clean the HTML content on text fields. We recommend that you leave this option enabled.</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="71958504714b867b7f6f00f43b9c9bd0">
<source>You can choose among 6 different ways of rounding prices. "Round up away from zero ..." is the recommended behavior.</source>
<target>You can choose among 6 different ways of rounding prices. "Round up away from zero ..." is the recommended behavior.</target>
<note>Line: 110</note>
</trans-unit>
<trans-unit id="2b116a3c74c816d853b7d86abf838ebb">
<source>You can choose when to round prices: either on each item, each line or the total (of an invoice, for example).</source>
<target>You can choose when to round prices: either on each item, each line or the total (of an invoice, for example).</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="2d21e9a3fe59f46db5ffdc26448e3ab6">
<source>Choose how many decimals you want to display</source>
<target>Choose how many decimals you want to display</target>
<note>Line: 126</note>
</trans-unit>
<trans-unit id="b6d90c5c27a4d2d48ead626c17be303c">
<source>Enable brands and suppliers pages on your front office even when their respective modules are disabled.</source>
<target>Enable brands and suppliers pages on your front office even when their respective modules are disabled.</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="0678cf17f202cb7fd14d79054a2e628c">
<source>Enable best sellers page on your front office even when its respective module is disabled.</source>
<target>Enable best sellers page on your front office even when its respective module is disabled.</target>
<note>Line: 142</note>
</trans-unit>
<trans-unit id="d8942e5679a9104ae58333b9b4778b71">
<source>The multistore feature allows you to manage several e-shops with one Back Office. If this feature is enabled, a "Multistore" page will be available in the "Advanced Parameters" menu.</source>
<target>The multistore feature allows you to manage several e-shops with one Back Office. If this feature is enabled, a "Multistore" page will be available in the "Advanced Parameters" menu.</target>
<note>Line: 150</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Cms/Blocks/form.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0210e7a00cf2cd3cca0e4d7ed3bdf86f">
<source>To add tags, click in the field, write something, and then press the "Enter" key.</source>
<target>To add tags, click in the field, write something, and then press the "Enter" key.</target>
<note>Line: 76</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,303 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/groups/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="57f51ca7c7ae71c5ac955cbce1942622">
<source>Caution: The discount applied to a category does not stack with the overall reduction but instead replaces it.</source>
<target>Caution: The discount applied to a category does not stack with the overall reduction but instead replaces it.</target>
<note>Line: 154</note>
</trans-unit>
<trans-unit id="30de5dc59697ad3a8b60a3290a67de6c">
<source>Only products that have this category as the default category will be affected.</source>
<target>Only products that have this category as the default category will be affected.</target>
<note>Line: 155</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/referrers/form_settings.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="60496e92d8c44007e78f095a1cb6adc2">
<source>The module '%s' must be activated and configurated in order to have all the statistics</source>
<target>The module '%s' must be activated and configurated in order to have all the statistics</target>
<note>Line: 133</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/shop/helpers/list/list_action_delete.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b869af59d40b52d2ad275c9f5ed81461">
<source>You cannot delete this shop (customer and/or order dependency)</source>
<target>You cannot delete this shop (customer and/or order dependency)</target>
<note>Line: 27</note>
</trans-unit>
</body>
</file>
<file original="admin-dev/themes/default/template/controllers/shop/helpers/list/list_content.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c2cdad0778bdd9995afb2b4d27387675">
<source>Click here to set a URL for this shop.</source>
<target>Click here to set a URL for this shop.</target>
<note>Line: 41</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminGendersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f164e438206718c5539f6761d83e26b7">
<source>Width and height must be numeric values.</source>
<target>Width and height must be numeric values.</target>
<note>Line: 200</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminGroupsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="2a266db001f17e9fdcbc17ac7f169922">
<source>The discount value is incorrect (must be a percentage).</source>
<target>The discount value is incorrect (must be a percentage).</target>
<note>Line: 525</note>
</trans-unit>
<trans-unit id="5f455758d7337262fdeedba6d54ec89f">
<source>Wrong category ID.</source>
<target>Wrong category ID.</target>
<note>Line: 522</note>
</trans-unit>
<trans-unit id="14d9080664b90f7ff1bcd739aa34f5d0">
<source>The discount value is incorrect.</source>
<target>The discount value is incorrect.</target>
<note>Line: 576</note>
</trans-unit>
<trans-unit id="5d4aa63b116fb3fe40589e20c1574661">
<source>You cannot save group reductions.</source>
<target>You cannot save group reductions.</target>
<note>Line: 585</note>
</trans-unit>
<trans-unit id="a5ee25b466967f2e940d8c7f973a6906">
<source>An error occurred while updating this group.</source>
<target>An error occurred while updating this group.</target>
<note>Line: 603</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminReferrersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="787e0ec1d05653f65a03b10c179356e1">
<source>Please install the "%modulename%" module in order to give your affiliates access to their own statistics.</source>
<target>Please install the "%modulename%" module in order to give your affiliates access to their own statistics.</target>
<note>Line: 217</note>
</trans-unit>
<trans-unit id="ab20dd433a5e44c6166509b6c0075b9d">
<source>Percent of the sales.</source>
<target>Percent of the sales.</target>
<note>Line: 248</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSearchConfController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d2317f906b956432eebb5c8814bfb65e">
<source>Aliases and results are both required.</source>
<target>Aliases and results are both required.</target>
<note>Line: 391</note>
</trans-unit>
<trans-unit id="a43994b123cc1e321a83cd6d10edb6a5">
<source>Is not a valid result</source>
<target>Is not a valid result</target>
<note>Line: 394</note>
</trans-unit>
<trans-unit id="3b50177d99c96fbf78912e239d59804a">
<source>Is not a valid alias</source>
<target>Is not a valid alias</target>
<note>Line: 398</note>
</trans-unit>
<trans-unit id="84b4d8c8cdd02488c0f868e97b22a3c2">
<source>Creation successful</source>
<target>Creation successful</target>
<note>Line: 410</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminSearchController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ef553500695e07c58644bbdd166581be">
<source>This is not a valid IP address:</source>
<target>This is not a valid IP address:</target>
<note>Line: 191</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminShopController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="837e57427bf283453398a561c9516398">
<source>You cannot delete this shop (customer and/or order dependency).</source>
<target>You cannot delete this shop (customer and/or order dependency).</target>
<note>Line: 274</note>
</trans-unit>
<trans-unit id="e3651705f1156de17be5bf1943c480b3">
<source>Please create some sub-categories for this root category.</source>
<target>Please create some sub-categories for this root category.</target>
<note>Line: 316</note>
</trans-unit>
<trans-unit id="cf52c411b5659457074fd9962435307f">
<source>You need to select at least the root category.</source>
<target>You need to select at least the root category.</target>
<note>Line: 324</note>
</trans-unit>
<trans-unit id="18f086b62387b20309c709bbf9fe4fdb">
<source>Warning: You won't be able to change the group of this shop if this shop belongs to a group with one of these options activated: Share Customers, Share Quantities or Share Orders.</source>
<target>Warning: You won't be able to change the group of this shop if this shop belongs to a group with one of these options activated: Share Customers, Share Quantities or Share Orders.</target>
<note>Line: 407</note>
</trans-unit>
<trans-unit id="1ff40978236e0d196983386376b0a5e3">
<source>You can only move your shop to a shop group with all "share" options disabled -- or to a shop group with no customers/orders.</source>
<target>You can only move your shop to a shop group with all "share" options disabled -- or to a shop group with no customers/orders.</target>
<note>Line: 409</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatusesController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="510f6a8fda6eb21f9ff01954e034a29a">
<source>For security reasons, you cannot delete default order statuses.</source>
<target>For security reasons, you cannot delete default order statuses.</target>
<note>Line: 611</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStoresController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="86de674d7405670db52e79ec1665b0b1">
<source>An address located in a country containing states must have a state selected.</source>
<target>An address located in a country containing states must have a state selected.</target>
<note>Line: 361</note>
</trans-unit>
<trans-unit id="60e8343766afd5e69c5797ea7380ce8e">
<source>Latitude and longitude are required.</source>
<target>Latitude and longitude are required.</target>
<note>Line: 368</note>
</trans-unit>
<trans-unit id="1ae9a82096a0077dde65dec6b1344792">
<source>The specified state is not located in this country.</source>
<target>The specified state is not located in this country.</target>
<note>Line: 564</note>
</trans-unit>
</body>
</file>
<file original="src/Adapter/Meta/SetUpUrlsDataConfiguration.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b8a27e47e64caa3e36c8894c3745357b">
<source>Before being able to use this tool, you need to:</source>
<target>Before being able to use this tool, you need to:</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="d7faa8eb2f73f2c764e387d3d7c57556">
<source>Create a blank .htaccess in your root directory.</source>
<target>Create a blank .htaccess in your root directory.</target>
<note>Line: 112</note>
</trans-unit>
<trans-unit id="5dab5160dfb25b3a4d6c51416dac5c87">
<source>Give it write permissions (CHMOD 666 on Unix system).</source>
<target>Give it write permissions (CHMOD 666 on Unix system).</target>
<note>Line: 120</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Configure/AdvancedParameters/Email/EmailConfigurationFormDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4f0c0475f4b0b0b2b0def4256b8e2300">
<source>You must define an SMTP server and an SMTP port. If you do not know it, use the PHP mail() function instead.</source>
<target>You must define an SMTP server and an SMTP port. If you do not know it, use the PHP mail() function instead.</target>
<note>Line: 100</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Form/Admin/Configure/ShopParameters/OrderPreferences/OrderPreferencesFormDataProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="85a1ca0031f114f8409d15c6790856f5">
<source>Assign a valid page if you want it to be read.</source>
<target>Assign a valid page if you want it to be read.</target>
<note>Line: 140</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/robots_file_generation.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="10ebcb160107c452a2fc3c51804fc780">
<source>Your robots.txt file MUST be in your website's root directory and nowhere else (e.g. http://www.example.com/robots.txt).</source>
<target>Your robots.txt file MUST be in your website's root directory and nowhere else (e.g. http://www.example.com/robots.txt).</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="54a81582e2ea2a98cebaabab9c454957">
<source>Generate your "robots.txt" file by clicking on the following button (this will erase the old robots.txt file)</source>
<target>Generate your "robots.txt" file by clicking on the following button (this will erase the old robots.txt file)</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="d999a32b68fd420ce389f774c231c637">
<source>1) Create a blank robots.txt file in your root directory.</source>
<target>1) Create a blank robots.txt file in your root directory.</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/set_up_urls_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="73ca86c0d6a5d58e868c54c3a1524c6c">
<source>Before you can use this tool, you need to:</source>
<target>Before you can use this tool, you need to:</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="636fc324804393cc1d3306a541cc871f">
<source>1) Create a blank .htaccess file in your root directory.</source>
<target>1) Create a blank .htaccess file in your root directory.</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="1a53c64bc79e181125e94976211eb401">
<source>2) Give it write permissions (CHMOD 666 on Unix system).</source>
<target>2) Give it write permissions (CHMOD 666 on Unix system).</target>
<note>Line: 46</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/shop_urls_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4836c0b3d56db59ba29844b8bcec084d">
<source>Here you can set the URL for your shop. If you migrate your shop to a new URL, remember to change the values below.</source>
<target>Here you can set the URL for your shop. If you migrate your shop to a new URL, remember to change the values below.</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="117fb47c0109ce0c9415a7f60f084c39">
<source>The multistore option is enabled. If you want to change the URL of your shop, you must go to the "Multistore" page under the "Advanced Parameters" menu.</source>
<target>The multistore option is enabled. If you want to change the URL of your shop, you must go to the "Multistore" page under the "Advanced Parameters" menu.</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/Blocks/url_schema_configuration.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="488acc51322abb701f50f1e753f7c19e">
<source>This section enables you to change the default pattern of your links. In order to use this functionality, PrestaShop's "Friendly URL" option must be enabled, and Apache's URL rewriting module (mod_rewrite) must be activated on your web server.</source>
<target>This section enables you to change the default pattern of your links. In order to use this functionality, PrestaShop's "Friendly URL" option must be enabled, and Apache's URL rewriting module (mod_rewrite) must be activated on your web server.</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="3ecf3d1a434ba446f75b21deb67826c6">
<source>There are several available keywords for each route listed below; note that keywords with * are required!</source>
<target>There are several available keywords for each route listed below; note that keywords with * are required!</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="e3fc732382d81895d218614e841ea222">
<source>To add a keyword in your URL, use the {keyword} syntax. If the keyword is not empty, you can add text before or after the keyword with syntax {prepend:keyword:append}. For example {-hey-:meta_title} will add "-hey-my-title" in the URL if the meta title is set.</source>
<target>To add a keyword in your URL, use the {keyword} syntax. If the keyword is not empty, you can add text before or after the keyword with syntax {prepend:keyword:append}. For example {-hey-:meta_title} will add "-hey-my-title" in the URL if the meta title is set.</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
<file original="src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/TrafficSeo/Meta/index.html.twig" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="843afaeb1d84245d7cf7d0877a7258dd">
<source>You can only display the page list in a shop context.</source>
<target>You can only display the page list in a shop context.</target>
<note>Line: 40</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminStatsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bbe8aef37d99eeb6f34a17f939ffa6f0">
<source>%value%% of your Catalog</source>
<target>%value%% of your Catalog</target>
<note>Line: 768</note>
</trans-unit>
<trans-unit id="82ad4f0be97f8f36d31e2540aacb155d">
<source>No customers</source>
<target>No customers</target>
<note>Line: 785</note>
</trans-unit>
<trans-unit id="a0e9b94006c36be97ce9fa908fdff7d8">
<source>%percentage%% Female Customers</source>
<target>%percentage%% Female Customers</target>
<note>Line: 787</note>
</trans-unit>
<trans-unit id="7870d39845089cddec99f55bef4ca3bb">
<source>%percentage%% Male Customers</source>
<target>%percentage%% Male Customers</target>
<note>Line: 789</note>
</trans-unit>
<trans-unit id="70f3bf1ba6a40018f2b5139e4721bae1">
<source>%percentage%% Neutral Customers</source>
<target>%percentage%% Neutral Customers</target>
<note>Line: 791</note>
</trans-unit>
<trans-unit id="ac72cc56077f4fcf5c0fd3d6e0902264">
<source>%value% years</source>
<target>%value% years</target>
<note>Line: 803</note>
</trans-unit>
<trans-unit id="d48e7c1fd584c90dad7cd24e8f65be6d">
<source>%average% hours</source>
<target>%average% hours</target>
<note>Line: 820</note>
</trans-unit>
<trans-unit id="08cfa7751d1812e961560f623e082aba">
<source>No orders</source>
<target>No orders</target>
<note>Line: 905</note>
</trans-unit>
<trans-unit id="9aee5f7903fbed5f7d715e4011961b59">
<source>%d%% %s</source>
<target>%d%% %s</target>
<note>Line: 909</note>
</trans-unit>
<trans-unit id="d79de24a931cdfd25615c068f1f2765a">
<source>No category</source>
<target>No category</target>
<note>Line: 1010</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatsTabController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="452a7601dbc6f2c38aa89e68bda8b603">
<source>Stats</source>
<target>Stats</target>
<note>Line: 43</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="controllers/admin/AdminStatsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9d6effc7093fb65fd4d16a6d3c38d54f">
<source>%value% of your products for sale are out of stock.</source>
<target>%value% of your products for sale are out of stock.</target>
<note>Line: 718</note>
</trans-unit>
<trans-unit id="599abbd2bcf079c9963669b35d9dfdd0">
<source>Gross margin expressed in percentage assesses how cost-effectively you sell your goods. Out of $100, you will retain $%value% to cover profit and expenses.</source>
<target>Gross margin expressed in percentage assesses how cost-effectively you sell your goods. Out of $100, you will retain $%value% to cover profit and expenses.</target>
<note>Line: 730</note>
</trans-unit>
<trans-unit id="ae77fb0c47ab2d94996be0c6c78b1951">
<source>%value% of your products are disabled and not visible to your customers</source>
<target>%value% of your products are disabled and not visible to your customers</target>
<note>Line: 752</note>
</trans-unit>
<trans-unit id="091c657283a379962fa01591dea197df">
<source>Within your catalog, %value% of your products have had sales in the last 30 days</source>
<target>Within your catalog, %value% of your products have had sales in the last 30 days</target>
<note>Line: 764</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="admin-dev/themes/default/template/controllers/stats/stats.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8290fb626ffacf21450997f25967efeb">
<source>Module not found</source>
<target>Module not found</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="9f8ba2077f4e7338b68934afe22b4ad9">
<source>Please select a module from the left column.</source>
<target>Please select a module from the left column.</target>
<note>Line: 34</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminStatsTabController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="afa9e719ed5259554b0647d035eaecb8">
<source>The specified date is invalid.</source>
<target>The specified date is invalid.</target>
<note>Line: 241</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,179 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="classes/Customer.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="32e8a8d9ed872f16d6dae0dc5fd4bb71">
<source>Your guest account has been transformed into a customer account</source>
<target>Your guest account has been transformed into a customer account</target>
<note>Line: 1132</note>
</trans-unit>
</body>
</file>
<file original="classes/PaymentModule.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fca7e8d1c86db11246e429e40aa10c81">
<source>New voucher for your order %s</source>
<target>New voucher for your order %s</target>
<note>Line: 1142</note>
</trans-unit>
<trans-unit id="fb077ecba55e5552916bde26d8b9e794">
<source>Order confirmation</source>
<target>Order confirmation</target>
<note>Line: 655</note>
</trans-unit>
</body>
</file>
<file original="classes/PrestaShopLogger.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="caedcb9e2005bf6e522cf4536a1885bd">
<source>Log: You have a new alert from your shop</source>
<target>Log: You have a new alert from your shop</target>
<note>Line: 93</note>
</trans-unit>
</body>
</file>
<file original="classes/form/CustomerPersister.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9a843f20677a52ca79af903123147af0">
<source>Welcome!</source>
<target>Welcome!</target>
<note>Line: 219</note>
</trans-unit>
</body>
</file>
<file original="classes/order/OrderCarrier.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="87405e011a2c4166bb685336827fbe81">
<source>Package in transit</source>
<target>Package in transit</target>
<note>Line: 149</note>
</trans-unit>
</body>
</file>
<file original="classes/order/OrderHistory.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3cf100d3725155b75779945680651f3d">
<source>The virtual product that you bought is available for download</source>
<target>The virtual product that you bought is available for download</target>
<note>Line: 165</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminCustomerThreadsController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4f55e8d67e33d354a5273eb87c903980">
<source>Fwd: Customer message</source>
<target>Fwd: Customer message</target>
<note>Line: 408</note>
</trans-unit>
<trans-unit id="26fabd8660373b86b9288dd72fd40e13">
<source>An answer to your message is available #ct%thread_id% #tc%thread_token%</source>
<target>An answer to your message is available #ct%thread_id% #tc%thread_token%</target>
<note>Line: 478</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminImportController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a218495ad30949e8ea1f64a261e37463">
<source>Import complete</source>
<target>Import complete</target>
<note>Line: 4887</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminOrdersController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="abe01af80b6bc9f1fa34feaa068336b2">
<source>New message regarding your order</source>
<target>New message regarding your order</target>
<note>Line: 658</note>
</trans-unit>
<trans-unit id="10e7889bf2e6fd95e25936d2c11e92be">
<source>New credit slip regarding your order</source>
<target>New credit slip regarding your order</target>
<note>Line: 1055</note>
</trans-unit>
<trans-unit id="b360ddde7a5a70304c005e45e141cf9d">
<source>New voucher for your order #%s</source>
<target>New voucher for your order #%s</target>
<note>Line: 1136</note>
</trans-unit>
<trans-unit id="cad374f43e79ca774b2e8e00dcd8b842">
<source>Process the payment of your order</source>
<target>Process the payment of your order</target>
<note>Line: 2055</note>
</trans-unit>
</body>
</file>
<file original="controllers/admin/AdminReturnController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f2328a3f139e31d53016f94ea9477124">
<source>Your order return status has changed</source>
<target>Your order return status has changed</target>
<note>Line: 261</note>
</trans-unit>
</body>
</file>
<file original="controllers/front/OrderDetailController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="381fc38b470ed543424afbd43f224453">
<source>Message from a customer</source>
<target>Message from a customer</target>
<note>Line: 108</note>
</trans-unit>
</body>
</file>
<file original="controllers/front/PasswordController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="61afad00abe3639b3ead655a1e8696d9">
<source>Password query confirmation</source>
<target>Password query confirmation</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="c5f4622e4a63b41e7c0ddc100583ee6b">
<source>Your new password</source>
<target>Your new password</target>
<note>Line: 187</note>
</trans-unit>
</body>
</file>
<file original="modules/contactform/contactform.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9e03c4150db1c72add84ba520ee589aa">
<source>Message from contact form</source>
<target>Message from contact form</target>
<note>Line: 614</note>
</trans-unit>
<trans-unit id="55c19f9aec68a1a320cbeba663f1e4c0">
<source>Your message has been correctly sent #ct%thread_id% #tc%thread_token%</source>
<target>Your message has been correctly sent #ct%thread_id% #tc%thread_token%</target>
<note>Line: 643</note>
</trans-unit>
<trans-unit id="d40cb87db94e750405e7b20a8a043d81">
<source>Your message has been correctly sent</source>
<target>Your message has been correctly sent</target>
<note>Line: 649</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_emailsubscription/ps_emailsubscription.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="a95bc59685fb4546de3884a5fbe474ea">
<source>Newsletter voucher</source>
<target>Newsletter voucher</target>
<note>Line: 661</note>
</trans-unit>
<trans-unit id="efabbb0eb84d3c8e487a72e879953673">
<source>Newsletter confirmation</source>
<target>Newsletter confirmation</target>
<note>Line: 695</note>
</trans-unit>
<trans-unit id="732f1aa49f17856ff55a5aa0a88374d9">
<source>Email verification</source>
<target>Email verification</target>
<note>Line: 734</note>
</trans-unit>
</body>
</file>
</xliff>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_advertising/ps_advertising.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="bedd646b07e65f588b06f275bd47be07">
<source>Advertising block</source>
<target>Advertising block</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:58</note>
</trans-unit>
<trans-unit id="dc23a0e1424eda56d0700f7ebe628c78">
<source>Adds an advertisement block to selected sections of your e-commerce website.</source>
<target>Adds an advertisement block to selected sections of your e-commerce website.</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:59</note>
</trans-unit>
<trans-unit id="33476c93475bba83cdcaac18e09b95ec">
<source>This module needs to be hooked to a column, but your theme does not implement one</source>
<target>This module needs to be hooked to a column, but your theme does not implement one</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:116</note>
</trans-unit>
<trans-unit id="070e16b4f77b90e802f789b5be583cfa">
<source>File upload error.</source>
<target>File upload error.</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:175</note>
</trans-unit>
<trans-unit id="a15e4232c6c1fc1e67816dd517e0e966">
<source>Image for the advertisement</source>
<target>Image for the advertisement</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:240</note>
</trans-unit>
<trans-unit id="351ec5e81711303a312e244ec952f8e9">
<source>By default the image will appear in the left column. The recommended dimensions are 155 x 163px.</source>
<target>By default the image will appear in the left column. The recommended dimensions are 155 x 163px.</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:242</note>
</trans-unit>
<trans-unit id="4163f94824da4886254e88de13fbb863">
<source>Target link for the image</source>
<target>Target link for the image</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:247</note>
</trans-unit>
<trans-unit id="24c28ef67324898298e45026d8efabaf">
<source>Title of the target link</source>
<target>Title of the target link</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:252</note>
</trans-unit>
<trans-unit id="78315dd2b27ef8037115b9f66351c155">
<source>This title will be displayed when you mouse over the advertisement block in your shop.</source>
<target>This title will be displayed when you mouse over the advertisement block in your shop.</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:254</note>
</trans-unit>
<trans-unit id="3de9c835a99cd5bdb004ebfa5701a624">
<source>Display in the left column</source>
<target>Display in the left column</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:258</note>
</trans-unit>
<trans-unit id="c03e9c1176e79e5334c05b6e502d8d9a">
<source>Display in the right column</source>
<target>Display in the right column</target>
<note>Context:
File: modules/ps_advertising/ps_advertising.php:276</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_banner/ps_banner.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6ff29916f99fff9d2494d28e721ae77e">
<source>Banner</source>
<target>Banner</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="3e1d9fcbd3d3493d53cf9594c983d754">
<source>Displays a banner on your shop.</source>
<target>Displays a banner on your shop.</target>
<note>Line: 48</note>
</trans-unit>
<trans-unit id="137d2d6f01b4762e90938fbe1c053a74">
<source>Banner image</source>
<target>Banner image</target>
<note>Line: 167</note>
</trans-unit>
<trans-unit id="154050410754c33dadde1a9c558ed349">
<source>Upload an image for your top banner. The recommended dimensions are 1110 x 214px if you are using the default theme.</source>
<target>Upload an image for your top banner. The recommended dimensions are 1110 x 214px if you are using the default theme.</target>
<note>Line: 169</note>
</trans-unit>
<trans-unit id="46fae48f998058600248a16100acfb7e">
<source>Banner Link</source>
<target>Banner Link</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="084fa1da897dfe3717efa184616ff91c">
<source>Enter the link associated to your banner. When clicking on the banner, the link opens in the same window. If no link is entered, it redirects to the homepage.</source>
<target>Enter the link associated to your banner. When clicking on the banner, the link opens in the same window. If no link is entered, it redirects to the homepage.</target>
<note>Line: 177</note>
</trans-unit>
<trans-unit id="ff09729bee8a82c374f6b61e14a4af76">
<source>Banner description</source>
<target>Banner description</target>
<note>Line: 182</note>
</trans-unit>
<trans-unit id="112f6f9a1026d85f440e5ca68d8e2ec5">
<source>Please enter a short but meaningful description for the banner.</source>
<target>Please enter a short but meaningful description for the banner.</target>
<note>Line: 184</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_banner/views/templates/admin/_configure/helpers/form/form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="92fbf0e5d97b8afd7e73126b52bdc4bb">
<source>Choose a file</source>
<target>Choose a file</target>
<note>Line: 42</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_bestsellers/ps_bestsellers.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="9862f1949f776f69155b6e6b330c7ee1">
<source>Top-sellers block</source>
<target>Top-sellers block</target>
<note>Context:
File: modules/ps_bestsellers/ps_bestsellers.php:60</note>
</trans-unit>
<trans-unit id="94f6b12d006c2b82c1306e53910109f8">
<source>Adds a block displaying your store's top-selling products.</source>
<target>Adds a block displaying your store's top-selling products.</target>
<note>Context:
File: modules/ps_bestsellers/ps_bestsellers.php:61</note>
</trans-unit>
<trans-unit id="26986c3388870d4148b1b5375368a83d">
<source>Products to display</source>
<target>Products to display</target>
<note>Context:
File: modules/ps_bestsellers/ps_bestsellers.php:141</note>
</trans-unit>
<trans-unit id="2b21378492166b0e5a855e2da611659c">
<source>Determine the number of product to display in this block</source>
<target>Determine the number of product to display in this block</target>
<note>Context:
File: modules/ps_bestsellers/ps_bestsellers.php:143</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d7b2933ba512ada478c97fa43dd7ebe6">
<source>Best Sellers</source>
<target>Best Sellers</target>
<note>Context:
File: modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl:26</note>
</trans-unit>
<trans-unit id="eae99cd6a931f3553123420b16383812">
<source>All best sellers</source>
<target>All best sellers</target>
<note>Context:
File: modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl:32</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/blockreassurance/blockreassurance.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="659e8e7501bea2ab8c35659fc321525d">
<source>Customer reassurance</source>
<target>Customer reassurance</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="7e7f70db3c75e428db8e2d0a1765c4e9">
<source>Adds an information block aimed at offering helpful information to reassure customers that your store is trustworthy.</source>
<target>Adds an information block aimed at offering helpful information to reassure customers that your store is trustworthy.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="0366c7b2ea1bb228cd44aec7e3e26a3e">
<source>The block configuration has been updated.</source>
<target>The block configuration has been updated.</target>
<note>Line: 224</note>
</trans-unit>
<trans-unit id="8363eee01f4da190a4cef9d26a36750c">
<source>New reassurance block</source>
<target>New reassurance block</target>
<note>Line: 246</note>
</trans-unit>
<trans-unit id="23498d91b6017e5d7f4ddde70daba286">
<source>ID Shop</source>
<target>ID Shop</target>
<note>Line: 326</note>
</trans-unit>
<trans-unit id="338ff4d33d460df0bf7643c3e0a706bc">
<source>blockreassurance</source>
<target>blockreassurance</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="aaf4c38c28ee16f82b3084a836c5afb5">
<source>Connect with your customers and reassure them by highlighting your services: secure payment, free shipping, returns, etc.</source>
<target>Connect with your customers and reassure them by highlighting your services: secure payment, free shipping, returns, etc.</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="bb8956c67b82c7444a80c6b2433dd8b4">
<source>Are you sure you want to uninstall this module?</source>
<target>Are you sure you want to uninstall this module?</target>
<note>Line: 92
Comment: Confirm uninstall</note>
</trans-unit>
<trans-unit id="b910df7ea2e47820d60286ba15a8b9d0">
<source>There was an error during the installation. Please contact us through Addons website.</source>
<target>There was an error during the installation. Please contact us through Addons website.</target>
<note>Line: 129</note>
</trans-unit>
<trans-unit id="e9415612c1d72517733c98e6877a6b46">
<source>There was an error during the uninstallation. Please contact us through Addons website.</source>
<target>There was an error during the uninstallation. Please contact us through Addons website.</target>
<note>Line: 154</note>
</trans-unit>
<trans-unit id="a596edf2f0e5ae9c2372c93e1c8fcc24">
<source>Block updated</source>
<target>Block updated</target>
<note>Line: 268</note>
</trans-unit>
<trans-unit id="f2f5589389027c1c6d63d2cec51afde5">
<source>Oops... looks like an error occurred</source>
<target>Oops... looks like an error occurred</target>
<note>Line: 269</note>
</trans-unit>
<trans-unit id="da755c5b9609e21d2f7c0e542fa02cf0">
<source>Configuration updated successfully!</source>
<target>Configuration updated successfully!</target>
<note>Line: 270</note>
</trans-unit>
<trans-unit id="81f6a0f1aaedeb8d2c35617f53c90aaa">
<source>Position changed successfully!</source>
<target>Position changed successfully!</target>
<note>Line: 271</note>
</trans-unit>
<trans-unit id="939d7906a02e747900bc9a6e06109e06">
<source>An error occurred when switching position</source>
<target>An error occurred when switching position</target>
<note>Line: 272</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/blockreassurance/lang/ReassuranceLang.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c71c3bd188354139cfc0f710d8f01710">
<source>Security policy (edit with Customer reassurance module)</source>
<target>Security policy (edit with Customer reassurance module)</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="88d14965d6085734430a5215a1a1f18c">
<source>Delivery policy (edit with Customer reassurance module)</source>
<target>Delivery policy (edit with Customer reassurance module)</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="da5cbc8f71f0b5e024c3b252572f014d">
<source>Return policy (edit with Customer reassurance module)</source>
<target>Return policy (edit with Customer reassurance module)</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_brandlist/ps_brandlist.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="67c2b2e2172f6d03a44c4a93adbb4845">
<source>Brand list</source>
<target>Brand list</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:49</note>
</trans-unit>
<trans-unit id="052ff68a216c9550049fb08ad31e8c72">
<source>Displays a block listing product brands.</source>
<target>Displays a block listing product brands.</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:54</note>
</trans-unit>
<trans-unit id="f8c922e47935b3b76a749334045d61cf">
<source>There is an invalid number of elements.</source>
<target>There is an invalid number of elements.</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:94</note>
</trans-unit>
<trans-unit id="5b2e13ff6fa0da895d14bd56f2cb2d2d">
<source>Please activate at least one system list.</source>
<target>Please activate at least one system list.</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:100</note>
</trans-unit>
<trans-unit id="afabc99b211a08e3b5fd912cc3fdfc17">
<source>Type of display</source>
<target>Type of display</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:160</note>
</trans-unit>
<trans-unit id="bfdff752293014f11f17122c92909ad5">
<source>Use a plain-text list</source>
<target>Use a plain-text list</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:171</note>
</trans-unit>
<trans-unit id="b0fa976774d2acf72f9c62e9ab73de38">
<source>Use a drop-down list</source>
<target>Use a drop-down list</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:179</note>
</trans-unit>
<trans-unit id="2eef734f174a02ae3d7aaafefeeedb42">
<source>Number of elements to display</source>
<target>Number of elements to display</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:192</note>
</trans-unit>
<trans-unit id="9b52fcf71a5cc28e580f9f8b247ee912">
<source>Only apply in plain-text mode</source>
<target>Only apply in plain-text mode</target>
<note>Context:
File: modules/ps_brandlist/ps_brandlist.php:197</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_brandlist/views/templates/_partials/brand_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e18a22d145b38e4fff582663b5b4ec1e">
<source>All brands</source>
<target>All brands</target>
<note>Context:
File: modules/ps_brandlist/views/templates/_partials/brand_form.tpl:3</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="84be54bb4bd1b755a27d86388700d097">
<source>Brands</source>
<target>Brands</target>
<note>Context:
File: modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl:29</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_buybuttonlite/ps_buybuttonlite.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="fa27118f8a45d32578f88d495905f692">
<source>Buy button lite</source>
<target>Buy button lite</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:49</note>
</trans-unit>
<trans-unit id="b6fc6adf920ff6307628b7fa4a9f1132">
<source>Increase your conversion rate and boost your sales, generate links and add them to your content so that visitors can easily proceed to checkout</source>
<target>Increase your conversion rate and boost your sales, generate links and add them to your content so that visitors can easily proceed to checkout</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:50</note>
</trans-unit>
<trans-unit id="fa0e92ab3c39a4fbdf81351af8d377ef">
<source>Select a product</source>
<target>Select a product</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:150</note>
</trans-unit>
<trans-unit id="0a5938195834d4ddc74c6a6216af7f38">
<source>Get sharable link</source>
<target>Get sharable link</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:153</note>
</trans-unit>
<trans-unit id="f017b414aaf4fa4b432bbd3a6764a13b">
<source>Please select a product</source>
<target>Please select a product</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:154</note>
</trans-unit>
<trans-unit id="2e50055f487617fea2c0e3f65d52aef1">
<source>Please select an action</source>
<target>Please select an action</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:155</note>
</trans-unit>
<trans-unit id="d328b03f556f4b4a1f1d92bd694fcc5c">
<source>Please select a product and an action</source>
<target>Please select a product and an action</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:157</note>
</trans-unit>
<trans-unit id="fb9428bdb91ca93c4d24340baad94369">
<source>Link copied to clipboard</source>
<target>Link copied to clipboard</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:158</note>
</trans-unit>
<trans-unit id="31edfec531c02c0cfe522ed5ca726e2f">
<source>Want to go further?</source>
<target>Want to go further?</target>
<note>Context:
File: modules/ps_buybuttonlite/ps_buybuttonlite.php:165</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_carriercomparison/ps_carriercomparison.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c65b3289df9c2c54a493dcd271d24df0">
<source>Shipping Estimate</source>
<target>Shipping Estimate</target>
<note>Context:
File: modules/ps_carriercomparison/ps_carriercomparison.php:50</note>
</trans-unit>
<trans-unit id="369f88ec14d06a2166f5fcd4e7c919f1">
<source>Compares carrier choices before checkout.</source>
<target>Compares carrier choices before checkout.</target>
<note>Context:
File: modules/ps_carriercomparison/ps_carriercomparison.php:55</note>
</trans-unit>
<trans-unit id="57d1936edb715b45f971985f444bf98b">
<source>How to refresh the carrier list?</source>
<target>How to refresh the carrier list?</target>
<note>Context:
File: modules/ps_carriercomparison/ps_carriercomparison.php:406</note>
</trans-unit>
<trans-unit id="faf5148e1ec87fc7d6acc89a81168831">
<source>Automatically with each field change</source>
<target>Automatically with each field change</target>
<note>Context:
File: modules/ps_carriercomparison/ps_carriercomparison.php:424</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_carriercomparison/template/ps_carriercomparison.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="533bf2149f935df1f934e5ee55f68d20">
<source><![CDATA[Estimate the cost of shipping & taxes.]]></source>
<target><![CDATA[Estimate the cost of shipping & taxes.]]></target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:31</note>
</trans-unit>
<trans-unit id="59716c97497eb9694541f7c3d37b1a4d">
<source>Country</source>
<target>Country</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:32</note>
</trans-unit>
<trans-unit id="46a2a41cc6e552044816a2d04634545d">
<source>State</source>
<target>State</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:39</note>
</trans-unit>
<trans-unit id="5e178542b85fb18ca3c459e9a95f4f2e">
<source>Zip Code</source>
<target>Zip Code</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:44</note>
</trans-unit>
<trans-unit id="9207f4078f515ecc8256bae33fa1f497">
<source>Needed for certain carriers.</source>
<target>Needed for certain carriers.</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:45</note>
</trans-unit>
<trans-unit id="914419aa32f04011357d3b604a86d7eb">
<source>Carrier</source>
<target>Carrier</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:51</note>
</trans-unit>
<trans-unit id="a82be0f551b8708bc08eb33cd9ded0cf">
<source>Information</source>
<target>Information</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:52</note>
</trans-unit>
<trans-unit id="3601146c4e948c32b6424d2c0a7f0118">
<source>Price</source>
<target>Price</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:53</note>
</trans-unit>
<trans-unit id="1de0f9fcbe30b056483fe964aed55adc">
<source>Update cart</source>
<target>Update cart</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:61</note>
</trans-unit>
<trans-unit id="a305b69f91e8c50117cc540114b9ba06">
<source>Estimate Shipping Cost</source>
<target>Estimate Shipping Cost</target>
<note>Context:
File: modules/ps_carriercomparison/template/ps_carriercomparison.tpl:62</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_cashondelivery/ps_cashondelivery.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1f9497d3e8bac9b50151416f04119cec">
<source>Cash on delivery (COD)</source>
<target>Cash on delivery (COD)</target>
<note>Context:
File: modules/ps_cashondelivery/ps_cashondelivery.php:49</note>
</trans-unit>
<trans-unit id="7a3ef27eb0b1895ebf263ad7dd949fb6">
<source>Accept cash on delivery payments</source>
<target>Accept cash on delivery payments</target>
<note>Context:
File: modules/ps_cashondelivery/ps_cashondelivery.php:50</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_cashondelivery/ps_cashondelivery.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1cb7685045c8f8adbdcecab8d9737d05">
<source>Pay by Cash on Delivery</source>
<target>Pay by Cash on Delivery</target>
<note>Context:
File: modules/ps_cashondelivery/ps_cashondelivery.php:100</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_cashondelivery/views/templates/hook/payment_return.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="88526efe38fd18179a127024aba8c1d7">
<source>Your order on %s is complete.</source>
<target>Your order on %s is complete.</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/payment_return.tpl:27</note>
</trans-unit>
<trans-unit id="8861c5d3fa54b330d1f60ba50fcc4aab">
<source>You have chosen the cash on delivery method.</source>
<target>You have chosen the cash on delivery method.</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/payment_return.tpl:29</note>
</trans-unit>
<trans-unit id="e6dc7945b557a1cd949bea92dd58963e">
<source>Your order will be sent very soon.</source>
<target>Your order will be sent very soon.</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/payment_return.tpl:30</note>
</trans-unit>
<trans-unit id="0db71da7150c27142eef9d22b843b4a9">
<source>For any questions or for further information, please contact our</source>
<target>For any questions or for further information, please contact our</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/payment_return.tpl:31</note>
</trans-unit>
<trans-unit id="64430ad2835be8ad60c59e7d44e4b0b1">
<source>customer support</source>
<target>customer support</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/payment_return.tpl:31</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_cashondelivery/views/templates/hook/ps_cashondelivery_intro.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="536dc7424180872c8c2488ae0286fb53">
<source>You pay for the merchandise upon delivery</source>
<target>You pay for the merchandise upon delivery</target>
<note>Context:
File: modules/ps_cashondelivery/views/templates/hook/ps_cashondelivery_intro.tpl:28</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_categoryproducts/ps_categoryproducts.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="8a4f5a66d0fcc9d13614516db6e3d47a">
<source>Products in the same category</source>
<target>Products in the same category</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:56</note>
</trans-unit>
<trans-unit id="1d269d7f013c3d9d891a146f4379eb02">
<source>Adds a block on the product page that displays products from the same category.</source>
<target>Adds a block on the product page that displays products from the same category.</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:57</note>
</trans-unit>
<trans-unit id="99c93d11327982eab5757fc9536f9d78">
<source>Invalid value for display price.</source>
<target>Invalid value for display price.</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:92</note>
</trans-unit>
<trans-unit id="f56128667cde6e32aad912826bbf743b">
<source>Display products' prices</source>
<target>Display products' prices</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:148</note>
</trans-unit>
<trans-unit id="1d986024f548d57b1d743ec7ea9b09d9">
<source>Show the prices of the products displayed in the block.</source>
<target>Show the prices of the products displayed in the block.</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:167</note>
</trans-unit>
<trans-unit id="0c2b8e1165c90e0bb3e6510eb3b670c6">
<source>Number of product to display</source>
<target>Number of product to display</target>
<note>Context:
File: modules/ps_categoryproducts/ps_categoryproducts.php:166</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f55e0a28b86c2ab66ac632ab9ddf1833">
<source>%s other product in the same category:</source>
<target>%s other product in the same category:</target>
<note>Context:
File: modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl:28</note>
</trans-unit>
<trans-unit id="bebb44f38b03407098d48198c1d0aaa5">
<source>%s other products in the same category:</source>
<target>%s other products in the same category:</target>
<note>Context:
File: modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl:30</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_categorytree/ps_categorytree.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="60cc52727703ddd6792698d958ef76aa">
<source>Category tree links</source>
<target>Category tree links</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="15a6f5841d9e4d7e62bec3319b4b7036">
<source>Adds a block featuring product categories.</source>
<target>Adds a block featuring product categories.</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="1379a6b19242372c1f23cc9adedfcdd6">
<source>Category root</source>
<target>Category root</target>
<note>Line: 168</note>
</trans-unit>
<trans-unit id="c6d333d07d30f7b4c31a94bbd510bf88">
<source>Select which category is displayed in the block. The current category is the one the visitor is currently browsing.</source>
<target>Select which category is displayed in the block. The current category is the one the visitor is currently browsing.</target>
<note>Line: 170</note>
</trans-unit>
<trans-unit id="89b278a71f2be5f620307502326587a0">
<source>Home category</source>
<target>Home category</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="62381fc27e62649a16182a616de3f7ea">
<source>Current category</source>
<target>Current category</target>
<note>Line: 180</note>
</trans-unit>
<trans-unit id="52b68aaa602d202c340d9e4e9157f276">
<source>Parent category</source>
<target>Parent category</target>
<note>Line: 185</note>
</trans-unit>
<trans-unit id="f225631c1a6f71e99cc779f6bbf06dd4">
<source>Current category, unless it has no subcategories, in which case the parent category of the current category is used</source>
<target>Current category, unless it has no subcategories, in which case the parent category of the current category is used</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="19561e33450d1d3dfe6af08df5710dd0">
<source>Maximum depth</source>
<target>Maximum depth</target>
<note>Line: 196</note>
</trans-unit>
<trans-unit id="584d4e251b6f778eda9cfc2fc756b0b0">
<source>Set the maximum depth of category sublevels displayed in this block (0 = infinite).</source>
<target>Set the maximum depth of category sublevels displayed in this block (0 = infinite).</target>
<note>Line: 198</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_checkpayment/ps_checkpayment.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7b4cc4f79be9aae43efd53b4ae5cba4d">
<source>Payments by check</source>
<target>Payments by check</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="e09484ba6c16bc20236b63cc0d87ee95">
<source>Are you sure you want to delete these details?</source>
<target>Are you sure you want to delete these details?</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="eb7ee09497f2bb2a5c766c4e5ef0cc4b">
<source>The "Payee" and "Address" fields must be configured before using this module.</source>
<target>The "Payee" and "Address" fields must be configured before using this module.</target>
<note>Line: 70</note>
</trans-unit>
<trans-unit id="a02758d758e8bec77a33d7f392eb3f8a">
<source>No currency has been set for this module.</source>
<target>No currency has been set for this module.</target>
<note>Line: 73</note>
</trans-unit>
<trans-unit id="a6911ad28a15bf35c506e46c3a613c68">
<source>The "Payee" field is required.</source>
<target>The "Payee" field is required.</target>
<note>Line: 103</note>
</trans-unit>
<trans-unit id="00a369029140cfd18857425d49b472f8">
<source>The "Address" field is required.</source>
<target>The "Address" field is required.</target>
<note>Line: 105</note>
</trans-unit>
<trans-unit id="a60468657881aa431a0a5fccc76258e2">
<source>Pay by Check</source>
<target>Pay by Check</target>
<note>Line: 160</note>
</trans-unit>
<trans-unit id="5dd532f0a63d89c5af0243b74732f63c">
<source>Contact details</source>
<target>Contact details</target>
<note>Line: 216</note>
</trans-unit>
<trans-unit id="84649906133e37fefda33a301de8cd4f">
<source>Payee (name)</source>
<target>Payee (name)</target>
<note>Line: 222</note>
</trans-unit>
<trans-unit id="dd7bf230fde8d4836917806aff6a6b27">
<source>Address</source>
<target>Address</target>
<note>Line: 228</note>
</trans-unit>
<trans-unit id="0fe62049ad5246bc188ec1bae347269e">
<source>Address where the check should be sent to.</source>
<target>Address where the check should be sent to.</target>
<note>Line: 229</note>
</trans-unit>
<trans-unit id="bb56f3a51352fe2ddce129260770c440">
<source>%amount% (tax incl.)</source>
<target>%amount% (tax incl.)</target>
<note>Line: 268</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_checkpayment/views/templates/hook/infos.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="14e41f4cfd99b10766cc15676d8cda66">
<source>This module allows you to accept payments by check.</source>
<target>This module allows you to accept payments by check.</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="22df5428ca8a4d0f5ec081d4815c86f6">
<source>If the client chooses this payment method, the order status will change to 'Waiting for payment'.</source>
<target>If the client chooses this payment method, the order status will change to 'Waiting for payment'.</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="8c88bbf5712292b26e2a6bbeb0a7b5c4">
<source>You will need to manually confirm the order as soon as you receive a check.</source>
<target>You will need to manually confirm the order as soon as you receive a check.</target>
<note>Line: 30</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_checkpayment/controllers/front/validation.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e2b7dec8fa4b498156dfee6e4c84b156">
<source>This payment method is not available.</source>
<target>This payment method is not available.</target>
<note>Line: 50</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_checkpayment/views/templates/front/payment_infos.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="84a25ff3edb86f9b9fd4f6238cd54e51">
<source>Please send us your check following these rules:</source>
<target>Please send us your check following these rules:</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="b2f40690858b404ed10e62bdf422c704">
<source>Amount</source>
<target>Amount</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="961c4d5afb146e7ad1dba22951450e3c">
<source>Payee</source>
<target>Payee</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="a0335a127854df8e1138f1a42151f484">
<source>Send your check to this address</source>
<target>Send your check to this address</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_checkpayment/views/templates/hook/payment.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="4b80fae2153218ed763bdadc418e8589">
<source>Pay by check</source>
<target>Pay by check</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="4e1fb9f4b46556d64db55d50629ee301">
<source>(order processing will be longer)</source>
<target>(order processing will be longer)</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_checkpayment/views/templates/hook/payment_return.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="88526efe38fd18179a127024aba8c1d7">
<source>Your order on %s is complete.</source>
<target>Your order on %s is complete.</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="61da27a5dd1f8ced46c77b0feaa9e159">
<source>Your check must include:</source>
<target>Your check must include:</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="621455d95c5de701e05900a98aaa9c66">
<source>Payment amount.</source>
<target>Payment amount.</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="9b8f932b1412d130ece5045ecafd1b42">
<source>Payable to the order of</source>
<target>Payable to the order of</target>
<note>Line: 31</note>
</trans-unit>
<trans-unit id="9a94f1d749a3de5d299674d6c685e416">
<source>Mail to</source>
<target>Mail to</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="e1c54fdba2544646684f41ace03b5fda">
<source>Do not forget to insert your order number #%d.</source>
<target>Do not forget to insert your order number #%d.</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="4761b03b53bc2b3bd948bb7443a26f31">
<source>Do not forget to insert your order reference %s.</source>
<target>Do not forget to insert your order reference %s.</target>
<note>Line: 36</note>
</trans-unit>
<trans-unit id="610abe74e72f00210e3dcb91a0a3f717">
<source>An email has been sent to you with this information.</source>
<target>An email has been sent to you with this information.</target>
<note>Line: 38</note>
</trans-unit>
<trans-unit id="ffd2478830ca2f519f7fe7ee259d4b96">
<source>Your order will be sent as soon as we receive your payment.</source>
<target>Your order will be sent as soon as we receive your payment.</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="0db71da7150c27142eef9d22b843b4a9">
<source>For any questions or for further information, please contact our</source>
<target>For any questions or for further information, please contact our</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="decce112a9e64363c997b04aa71b7cb8">
<source>customer service department.</source>
<target>customer service department.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="9bdf695c5a30784327137011da6ef568">
<source>We have noticed that there is a problem with your order. If you think this is an error, you can contact our</source>
<target>We have noticed that there is a problem with your order. If you think this is an error, you can contact our</target>
<note>Line: 44</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/contactform/contactform.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c661cf76442d8d2cb318d560285a2a57">
<source>Contact form</source>
<target>Contact form</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="3d720dee87296628c1479b39b2cb6f5a">
<source>Adds a contact form to the "Contact us" page.</source>
<target>Adds a contact form to the "Contact us" page.</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="212b06350965b6aa7339b5bee457dda9">
<source><![CDATA[For even more security on your website forms, consult our Security & Access modules category on the %link%]]></source>
<target><![CDATA[For even more security on your website forms, consult our Security & Access modules category on the %link%]]></target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="3225a10b07f1580f10dee4abc3779e6c">
<source>Parameters</source>
<target>Parameters</target>
<note>Line: 160</note>
</trans-unit>
<trans-unit id="d2c0b054e117c70cefb10a911da903ea">
<source>Send confirmation email to your customers</source>
<target>Send confirmation email to your customers</target>
<note>Line: 167</note>
</trans-unit>
<trans-unit id="80780f42b7844f0860b04ea392e45993">
<source>Choose Yes and your customers will receive a generic confirmation email including a tracking number after their message is sent. Note: to discourage spam, the content of their message won't be included in the email.</source>
<target>Choose Yes and your customers will receive a generic confirmation email including a tracking number after their message is sent. Note: to discourage spam, the content of their message won't be included in the email.</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="30944f0a539cd549bb24c4e92966b875">
<source>Receive customers' messages by email</source>
<target>Receive customers' messages by email</target>
<note>Line: 195</note>
</trans-unit>
<trans-unit id="8ab6e7e84d344c8cb79798fee5605638">
<source>By default, you will only receive contact messages through your Customer service tab.</source>
<target>By default, you will only receive contact messages through your Customer service tab.</target>
<note>Line: 200</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/contactform/contactform.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="79cedb1d1acf680c3dba79dc679aa249">
<source>Please select a subject from the list provided. </source>
<target>Please select a subject from the list provided.</target>
<note>Line: 460</note>
</trans-unit>
<trans-unit id="ee9f24e2aebc1da18ffd88823144437b">
<source>An error occurred during the file-upload process.</source>
<target>An error occurred during the file-upload process.</target>
<note>Line: 466</note>
</trans-unit>
<trans-unit id="d1a9295d276a65933e0a7334a12e6f41">
<source>Bad file extension</source>
<target>Bad file extension</target>
<note>Line: 475</note>
</trans-unit>
<trans-unit id="56682052b2576fd6944f23dcad609107">
<source>An error occurred while sending the message, please try again.</source>
<target>An error occurred while sending the message, please try again.</target>
<note>Line: 485</note>
</trans-unit>
<trans-unit id="881ae7c0ea0a71b12b4548d4268464f7">
<source>An error occurred while sending the message.</source>
<target>An error occurred while sending the message.</target>
<note>Line: 664</note>
</trans-unit>
<trans-unit id="4ec1c39345fe8820d68463eea8803b0f">
<source>Your message has been successfully sent to our team.</source>
<target>Your message has been successfully sent to our team.</target>
<note>Line: 674</note>
</trans-unit>
</body>
</file>
<file original="modules/contactform/views/templates/widget/contactform.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d85236bf435afbc0060dec82b9ef80b3">
<source>Customer service - Contact us</source>
<target>Customer service - Contact us</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="cc5fd9b9f1cad59fcff97a1f21f34304">
<source>Send a message</source>
<target>Send a message</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="d93651d012e77dac5581b08db33195b2">
<source>If you would like to add a comment about your order, please write it in the field below.</source>
<target>If you would like to add a comment about your order, please write it in the field below.</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="6c27c08f40e1b0d9901deb9ff5f722f7">
<source>Subject Heading</source>
<target>Subject Heading</target>
<note>Line: 52</note>
</trans-unit>
<trans-unit id="b357b524e740bc85b9790a0712d84a30">
<source>Email address</source>
<target>Email address</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="5d4710f9a8250b13164a82c94d5b00d1">
<source>Order reference</source>
<target>Order reference</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="863cf84b34def228394c03c156bff42c">
<source>Select reference</source>
<target>Select reference</target>
<note>Line: 69</note>
</trans-unit>
<trans-unit id="13d6078da2e6592822ede083931d6826">
<source>Attach File</source>
<target>Attach File</target>
<note>Line: 79</note>
</trans-unit>
<trans-unit id="4c2a8fe7eaf24721cc7a9f0175115bd4">
<source>Message</source>
<target>Message</target>
<note>Line: 85</note>
</trans-unit>
<trans-unit id="94966d90747b97d1f0f206c98a8b1ac3">
<source>Send</source>
<target>Send</target>
<note>Line: 102</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_contactinfo/ps_contactinfo.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5e3d6d040d8a81befd75127d526646bc">
<source>Contact information</source>
<target>Contact information</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="3bef52cd2426ac538e6230c70d7b5929">
<source>Allows you to display additional information about your store's customer service.</source>
<target>Allows you to display additional information about your store's customer service.</target>
<note>Line: 51</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_contactinfo/nav.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="02d4482d332e1aef3437cd61c9bcc624">
<source>Contact us</source>
<target>Contact us</target>
<note>Line: 26</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_contactinfo/ps_contactinfo-rich.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3aea774cdcd8f2c45549f10758a71323">
<source>Store information</source>
<target>Store information</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="da6eb684bd77243a780629a180c9d19b">
<source>Fax: [1]%fax%[/1]</source>
<target>Fax: [1]%fax%[/1]</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="077d21d48dae9586405c0d264f6d32e7">
<source>Email us: [1]%email%[/1]</source>
<target>Email us: [1]%email%[/1]</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="c6359db4a43cb7267a84b389229fd073">
<source>Call us: [1]%phone%[/1]</source>
<target>Call us: [1]%phone%[/1]</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_contactinfo/ps_contactinfo.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0bda3a05a6be2f106eb4f1da481bc7ce">
<source>Tel: %phone%</source>
<target>Tel: %phone%</target>
<note>Line: 32</note>
</trans-unit>
<trans-unit id="1b1c1c8cc58a5c2d05bd4cb61a9c9e0d">
<source>Fax: %fax%</source>
<target>Fax: %fax%</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="a41346e4da379842644de7448cd7424e">
<source>Email: [1]%email%[/1]</source>
<target>Email: [1]%email%[/1]</target>
<note>Line: 54</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_crossselling/ps_crossselling.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="46532f43e161343763ff815e5208f7e9">
<source>Cross-selling</source>
<target>Cross-selling</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:56</note>
</trans-unit>
<trans-unit id="83bcd48a4b3938f7cd10c898ece01adf">
<source>Adds a "Customers who bought this product also bought..." section to every product page.</source>
<target>Adds a "Customers who bought this product also bought..." section to every product page.</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:57</note>
</trans-unit>
<trans-unit id="605d8c1863252399adedffd35be5de9f">
<source>You must fill in the "Number of displayed products" field.</source>
<target>You must fill in the "Number of displayed products" field.</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:90</note>
</trans-unit>
<trans-unit id="73293a024e644165e9bf48f270af63a0">
<source>Invalid number.</source>
<target>Invalid number.</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:92</note>
</trans-unit>
<trans-unit id="b6bf131edd323320bac67303a3f4de8a">
<source>Display price on products</source>
<target>Display price on products</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:129</note>
</trans-unit>
<trans-unit id="70f9a895dc3273d34a7f6d14642708ec">
<source>Show the price on the products in the block.</source>
<target>Show the price on the products in the block.</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:131</note>
</trans-unit>
<trans-unit id="19a799a6afd0aaf89bc7a4f7588bbf2c">
<source>Number of displayed products</source>
<target>Number of displayed products</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:147</note>
</trans-unit>
<trans-unit id="02128de6a3b085c72662973cd3448df2">
<source>Set the number of products displayed in this block.</source>
<target>Set the number of products displayed in this block.</target>
<note>Context:
File: modules/ps_crossselling/ps_crossselling.php:150</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ef2b66b0b65479e08ff0cce29e19d006">
<source>Customers who bought this product also bought:</source>
<target>Customers who bought this product also bought:</target>
<note>Context:
File: modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl:27</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_currencyselector/ps_currencyselector.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f7a31ae8f776597d4282bd3b1013f08b">
<source>Currency block</source>
<target>Currency block</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="80ed40ee905b534ee85ce49a54380107">
<source>Adds a block allowing customers to choose their preferred shopping currency.</source>
<target>Adds a block allowing customers to choose their preferred shopping currency.</target>
<note>Line: 48</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_customeraccountlinks/ps_customeraccountlinks.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ecf3e4f8f34a293099620cc25d5b4d93">
<source>My Account block</source>
<target>My Account block</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="03ffbea7542d050afa18fdc857e86462">
<source>Displays a block with links relative to a user's account.</source>
<target>Displays a block with links relative to a user's account.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="d1a365ea7809ae5831c6d9f86886630c">
<source>Credit slips</source>
<target>Credit slips</target>
<note>Line: 107</note>
</trans-unit>
<trans-unit id="0fd8dc8abb2404ad11af4182f10643c1">
<source>Personal info</source>
<target>Personal info</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="e06d7593c1cd6dabef450be6c3da7091">
<source>Merchandise returns</source>
<target>Merchandise returns</target>
<note>Line: 122</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_customersignin/ps_customersignin.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5f3209b28ac0403f72c912ce1392c870">
<source>Customer "Sign in" link</source>
<target>Customer "Sign in" link</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="970a31aa19d205f92ccfd1913ca04dc0">
<source>Adds a block that displays information about the customer.</source>
<target>Adds a block that displays information about the customer.</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="c131c3e08e3f4780e204fcbd8d0eb6e6">
<source>%firstname% %lastname%</source>
<target>%firstname% %lastname%</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_customtext/ps_customtext.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="da8afa303fe717440d352e7dd7081680">
<source>Custom text blocks</source>
<target>Custom text blocks</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="9b5d9c91c9e2cc8d6d3fe78113824ac1">
<source>Integrates custom text blocks anywhere in your store front</source>
<target>Integrates custom text blocks anywhere in your store front</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="ca3e06233b736d289df9f4580a4ab19a">
<source>CMS block</source>
<target>CMS block</target>
<note>Line: 196</note>
</trans-unit>
<trans-unit id="7ef25f7b93adc8bf024ed532d722f697">
<source>Text block</source>
<target>Text block</target>
<note>Line: 205</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,156 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dashactivity/dashactivity.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0369e7f54bf8a30b2766e6a9a708de0b">
<source>Dashboard Activity</source>
<target>Dashboard Activity</target>
<note>Line: 46</note>
</trans-unit>
<trans-unit id="02b5205ddff3073efc5c8b5b9cc165ba">
<source>(from %s to %s)</source>
<target>(from %s to %s)</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="914030b0a079e4eec3b3f5090c0fc35a">
<source>Active cart</source>
<target>Active cart</target>
<note>Line: 422</note>
</trans-unit>
<trans-unit id="78fa968db0e87c6fc302614b26f93b5d">
<source>How long (in minutes) a cart is to be considered as active after the last recorded change (default: 30 min).</source>
<target>How long (in minutes) a cart is to be considered as active after the last recorded change (default: 30 min).</target>
<note>Line: 423</note>
</trans-unit>
<trans-unit id="47b8a33a5335cce8d4e353c4d1743f31">
<source>Online visitor</source>
<target>Online visitor</target>
<note>Line: 440</note>
</trans-unit>
<trans-unit id="b13a895857368f29e5e127767388b0ab">
<source>How long (in minutes) a visitor is to be considered as online after their last action (default: 30 min).</source>
<target>How long (in minutes) a visitor is to be considered as online after their last action (default: 30 min).</target>
<note>Line: 441</note>
</trans-unit>
<trans-unit id="6ad366c171531a83ffbc5625e159f340">
<source>Abandoned cart (min)</source>
<target>Abandoned cart (min)</target>
<note>Line: 458</note>
</trans-unit>
<trans-unit id="8f1f252cfd3cbbcba7a2325f12e3dbc4">
<source>How long (in hours) after the last action a cart is to be considered as abandoned (default: 24 hrs).</source>
<target>How long (in hours) after the last action a cart is to be considered as abandoned (default: 24 hrs).</target>
<note>Line: 459</note>
</trans-unit>
<trans-unit id="c760237f74bcc7e3f90ad956086edb66">
<source>hrs</source>
<target>hrs</target>
<note>Line: 469</note>
</trans-unit>
<trans-unit id="a5493eb7cba36f452249d093e7757adc">
<source>Abandoned cart (max)</source>
<target>Abandoned cart (max)</target>
<note>Line: 465</note>
</trans-unit>
<trans-unit id="45e9c82415a3bee4413485c6bcb4347f">
<source>How long (in hours) after the last action a cart is no longer to be considered as abandoned (default: 24 hrs).</source>
<target>How long (in hours) after the last action a cart is no longer to be considered as abandoned (default: 24 hrs).</target>
<note>Line: 466</note>
</trans-unit>
</body>
</file>
<file original="modules/dashactivity/views/templates/hook/dashboard_zone_one.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="91b1b529580f2bb429493a51a1af932b">
<source>Activity overview</source>
<target>Activity overview</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="edfc5fccc0439856b5bd432522ef47aa">
<source>Online Visitors</source>
<target>Online Visitors</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="962b7da7912bc637b03626e23b5832b5">
<source>in the last %d minutes</source>
<target>in the last %d minutes</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="7aaacf26dbf7d8929916618bb57d81f8">
<source>Active Shopping Carts</source>
<target>Active Shopping Carts</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="24042b0e4b783724dac4178df4db5d68">
<source>Currently Pending</source>
<target>Currently Pending</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="247d96cbab5bfc79dff10eb2ce6d8897">
<source>Return/Exchanges</source>
<target>Return/Exchanges</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="1c4407dd95b9ef941d30c2838208977e">
<source>Out of Stock Products</source>
<target>Out of Stock Products</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="a644e8cd597f2b92aa52861632c0363d">
<source>New Messages</source>
<target>New Messages</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="56d4e9a4c8e9f47549e8129393b3740f">
<source>Product Reviews</source>
<target>Product Reviews</target>
<note>Line: 109</note>
</trans-unit>
<trans-unit id="e539ae01694149c9e12295fe564a376b">
<source><![CDATA[Customers & Newsletters]]></source>
<target><![CDATA[Customers & Newsletters]]></target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="8471314b4a53476fbf2379d9a0f7ac28">
<source>New Customers</source>
<target>New Customers</target>
<note>Line: 121</note>
</trans-unit>
<trans-unit id="d833d1b3c98b980090f79ad42badcf9f">
<source>New Subscriptions</source>
<target>New Subscriptions</target>
<note>Line: 127</note>
</trans-unit>
<trans-unit id="e42bc03dcf18091455cb8a06ce1d56e9">
<source>Total Subscribers</source>
<target>Total Subscribers</target>
<note>Line: 133</note>
</trans-unit>
<trans-unit id="e7935ae6c516d89405ec532359d2d75a">
<source>Traffic</source>
<target>Traffic</target>
<note>Line: 142</note>
</trans-unit>
<trans-unit id="1a4aeb4ca6cd736a4a7b25d8657d9972">
<source>Link to your Google Analytics account</source>
<target>Link to your Google Analytics account</target>
<note>Line: 148</note>
</trans-unit>
<trans-unit id="d7e637a6e9ff116de2fa89551240a94d">
<source>Visits</source>
<target>Visits</target>
<note>Line: 153</note>
</trans-unit>
<trans-unit id="945f170a18e4894c90381a3d01bdef8b">
<source>Unique Visitors</source>
<target>Unique Visitors</target>
<note>Line: 159</note>
</trans-unit>
<trans-unit id="0fcff541ec15c6ed895d5dec49436488">
<source>Traffic Sources</source>
<target>Traffic Sources</target>
<note>Line: 165</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dashgoals/dashgoals.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="50698c5b8ffaf2b7dd089898a244a668">
<source>Dashboard Goals</source>
<target>Dashboard Goals</target>
<note>Line: 49</note>
</trans-unit>
<trans-unit id="ac73c1d4a6befbca8cecf2171cd45d4f">
<source>Adds a block with your store's forecast.</source>
<target>Adds a block with your store's forecast.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="86f5978d9b80124f509bdb71786e929e">
<source>January</source>
<target>January</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="659e59f062c75f81259d22786d6c44aa">
<source>February</source>
<target>February</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="fa3e5edac607a88d8fd7ecb9d6d67424">
<source>March</source>
<target>March</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="3fcf026bbfffb63fb24b8de9d0446949">
<source>April</source>
<target>April</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="195fbb57ffe7449796d23466085ce6d8">
<source>May</source>
<target>May</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="688937ccaf2a2b0c45a1c9bbba09698d">
<source>June</source>
<target>June</target>
<note>Line: 59</note>
</trans-unit>
<trans-unit id="1b539f6f34e8503c97f6d3421346b63c">
<source>July</source>
<target>July</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="41ba70891fb6f39327d8ccb9b1dafb84">
<source>August</source>
<target>August</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="cc5d90569e1c8313c2b1c2aab1401174">
<source>September</source>
<target>September</target>
<note>Line: 62</note>
</trans-unit>
<trans-unit id="eca60ae8611369fe28a02e2ab8c5d12e">
<source>October</source>
<target>October</target>
<note>Line: 63</note>
</trans-unit>
<trans-unit id="7e823b37564da492ca1629b4732289a8">
<source>November</source>
<target>November</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="82331503174acbae012b2004f6431fa5">
<source>December</source>
<target>December</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="71241798130f714cbd2786df3da2cf0b">
<source>Average cart value</source>
<target>Average cart value</target>
<note>Line: 193</note>
</trans-unit>
<trans-unit id="9ac642c5ef334ea05256563f921bb304">
<source>Goal exceeded</source>
<target>Goal exceeded</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="7c103c9bbbaecee07ca898ed65667cbf">
<source>Goal not reached</source>
<target>Goal not reached</target>
<note>Line: 199</note>
</trans-unit>
<trans-unit id="eb233580dc419f03df5905f175606e4d">
<source>Goal set:</source>
<target>Goal set:</target>
<note>Line: 489</note>
</trans-unit>
</body>
</file>
<file original="modules/dashgoals/views/templates/hook/config.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e4c3da18c66c0147144767efeb59198f">
<source>Conversion Rate</source>
<target>Conversion Rate</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="modules/dashgoals/views/templates/hook/dashboard_zone_two.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e7935ae6c516d89405ec532359d2d75a">
<source>Traffic</source>
<target>Traffic</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="3bb1503332637805beddb73a2dd1fe1b">
<source>Conversion</source>
<target>Conversion</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="8c804960da61b637c548c951652b0cac">
<source>Average Cart Value</source>
<target>Average Cart Value</target>
<note>Line: 64</note>
</trans-unit>
<trans-unit id="89c1265be62d3ba835a3d963db5956b0">
<source>Forecast</source>
<target>Forecast</target>
<note>Line: 38</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dashproducts/dashproducts.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="6655df4af87b2038afd507a33545a56d">
<source>Dashboard Products</source>
<target>Dashboard Products</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="4a528e24be5aca96e8a15b256efe1f31">
<source>Adds a block with a table of your latest orders and a ranking of your products</source>
<target>Adds a block with a table of your latest orders and a ranking of your products</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="2ea989f83006e233627987293f4bde0a">
<source>Customer Name</source>
<target>Customer Name</target>
<note>Line: 104</note>
</trans-unit>
<trans-unit id="3ec365dd533ddb7ef3d1c111186ce872">
<source>Details</source>
<target>Details</target>
<note>Line: 150</note>
</trans-unit>
<trans-unit id="2aed3d711270a6ed67d21ec2d7cd4af8">
<source>Total sold</source>
<target>Total sold</target>
<note>Line: 180</note>
</trans-unit>
<trans-unit id="9e79098315622e58529d664b9a8b3cf8">
<source>Net profit</source>
<target>Net profit</target>
<note>Line: 190</note>
</trans-unit>
<trans-unit id="ed4832a84ee072b00a6740f657183598">
<source>Views</source>
<target>Views</target>
<note>Line: 289</note>
</trans-unit>
<trans-unit id="2c04f1ad7694378897b98624780327ff">
<source>Added to cart</source>
<target>Added to cart</target>
<note>Line: 294</note>
</trans-unit>
<trans-unit id="ce4ee01637f4279d02d0f232459dc9a4">
<source>Purchased</source>
<target>Purchased</target>
<note>Line: 299</note>
</trans-unit>
<trans-unit id="1eb18ea1d018abef5759cef60ddc289b">
<source>You must enable the "Save global page views" option from the "Data mining for statistics" module in order to display the most viewed products, or use the Google Analytics module.</source>
<target>You must enable the "Save global page views" option from the "Data mining for statistics" module in order to display the most viewed products, or use the Google Analytics module.</target>
<note>Line: 368</note>
</trans-unit>
<trans-unit id="cf5f3091e30dee6597885d8c0e0c357f">
<source>Term</source>
<target>Term</target>
<note>Line: 378</note>
</trans-unit>
<trans-unit id="fd69c5cf902969e6fb71d043085ddee6">
<source>Results</source>
<target>Results</target>
<note>Line: 388</note>
</trans-unit>
<trans-unit id="85bf7474324d7d02725e4dca586afcd9">
<source>Number of "Recent Orders" to display</source>
<target>Number of "Recent Orders" to display</target>
<note>Line: 546</note>
</trans-unit>
<trans-unit id="735b8c7f6d50b4c6f818deeab3cdea4a">
<source>Number of "Best Sellers" to display</source>
<target>Number of "Best Sellers" to display</target>
<note>Line: 550</note>
</trans-unit>
<trans-unit id="14d24dddc4c67abf8364b980b2ccd5a2">
<source>Number of "Most Viewed" to display</source>
<target>Number of "Most Viewed" to display</target>
<note>Line: 554</note>
</trans-unit>
<trans-unit id="f1ee1eaab342241138d45f35f4d8466a">
<source>Number of "Top Searches" to display</source>
<target>Number of "Top Searches" to display</target>
<note>Line: 558</note>
</trans-unit>
</body>
</file>
<file original="modules/dashproducts/views/templates/hook/dashboard_zone_two.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3e361ce73ecabd6524af286d55809ed7">
<source>Products and Sales</source>
<target>Products and Sales</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="fd3458547ef9c3a8bd0e1e1b4ef2b4dd">
<source>Recent Orders</source>
<target>Recent Orders</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="d7b2933ba512ada478c97fa43dd7ebe6">
<source>Best Sellers</source>
<target>Best Sellers</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="be5006eb5af9ab6dbca803f8d3065bbc">
<source>Most Viewed</source>
<target>Most Viewed</target>
<note>Line: 98</note>
</trans-unit>
<trans-unit id="1eb5e5713d7363e921dd7f5500b6d212">
<source>Top Searches</source>
<target>Top Searches</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="3d23ac9ab254a9f1014c3a859b01bcfc">
<source>Last %d orders</source>
<target>Last %d orders</target>
<note>Line: 76</note>
</trans-unit>
<trans-unit id="82f0f8d535196ce2a6ea16652d981f94">
<source>Top %d products</source>
<target>Top %d products</target>
<note>Line: 86</note>
</trans-unit>
<trans-unit id="5da618e8e4b89c66fe86e32cdafde142">
<source>From</source>
<target>From</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="01b6e20344b68835c5ed1ddedf20d531">
<source>to</source>
<target>to</target>
<note>Line: 111</note>
</trans-unit>
<trans-unit id="1daaca459ce1e6610e0b97a9ad723f27">
<source>Top %d most search terms</source>
<target>Top %d most search terms</target>
<note>Line: 110</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dashtrends/dashtrends.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ee653ade5f520037ef95e9dc2a42364c">
<source>Dashboard Trends</source>
<target>Dashboard Trends</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="f2d0efa68eb71bfd5209abeb9f4b0943">
<source>Adds a block with a graphical representation of the development of your store(s) based on selected key data.</source>
<target>Adds a block with a graphical representation of the development of your store(s) based on selected key data.</target>
<note>Line: 51</note>
</trans-unit>
<trans-unit id="2d125dc25b158f28a1960bd96a9fa8d1">
<source>%s points</source>
<target>%s points</target>
<note>Line: 198</note>
</trans-unit>
<trans-unit id="8c804960da61b637c548c951652b0cac">
<source>Average Cart Value</source>
<target>Average Cart Value</target>
<note>Line: 315</note>
</trans-unit>
<trans-unit id="e4c3da18c66c0147144767efeb59198f">
<source>Conversion Rate</source>
<target>Conversion Rate</target>
<note>Line: 317</note>
</trans-unit>
<trans-unit id="46418a037045b91e6715c4da91a2a269">
<source>%s (previous period)</source>
<target>%s (previous period)</target>
<note>Line: 338</note>
</trans-unit>
</body>
</file>
<file original="modules/dashtrends/views/templates/hook/dashboard_zone_two.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="43d729c7b81bfa5fc10e756660d877d1">
<source>Net Profit</source>
<target>Net Profit</target>
<note>Line: 71</note>
</trans-unit>
<trans-unit id="2938c7f7e560ed972f8a4f68e80ff834">
<source>Dashboard</source>
<target>Dashboard</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="e537825dd409a90ef70d8c2eb56122a1">
<source>Sum of revenue (excl. tax) generated within the date range by orders considered validated.</source>
<target>Sum of revenue (excl. tax) generated within the date range by orders considered validated.</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="8bc1c5ca521b99b87908db0bcd33ec76">
<source>Total number of orders received within the date range that are considered validated.</source>
<target>Total number of orders received within the date range that are considered validated.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="f15f2a2bf99d3dcad2cba1a2c615b9dc">
<source>Average Cart Value is a metric representing the value of an average order within the date range. It is calculated by dividing Sales by Orders.</source>
<target>Average Cart Value is a metric representing the value of an average order within the date range. It is calculated by dividing Sales by Orders.</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="791d6355d34dfaf60d68ef04d1ee5767">
<source>Cart Value</source>
<target>Cart Value</target>
<note>Line: 56</note>
</trans-unit>
<trans-unit id="4f631447981c5fa240006a5ae2c4b267">
<source>Total number of visits within the date range. A visit is the period of time a user is actively engaged with your website.</source>
<target>Total number of visits within the date range. A visit is the period of time a user is actively engaged with your website.</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="7a6e858f8c7c0b78fb4d43cefcb8c017">
<source>Ecommerce Conversion Rate is the percentage of visits that resulted in an validated order.</source>
<target>Ecommerce Conversion Rate is the percentage of visits that resulted in an validated order.</target>
<note>Line: 65</note>
</trans-unit>
<trans-unit id="8dedc1b3ee3a92212fb5b5acad7f207f">
<source>Net profit is a measure of the profitability of a venture after accounting for all Ecommerce costs. You can provide these costs by clicking on the configuration icon right above here.</source>
<target>Net profit is a measure of the profitability of a venture after accounting for all Ecommerce costs. You can provide these costs by clicking on the configuration icon right above here.</target>
<note>Line: 70</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_dataprivacy/ps_dataprivacy.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e0de5a06213f21c55ca3283c009e0907">
<source>Customer data privacy block</source>
<target>Customer data privacy block</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:45</note>
</trans-unit>
<trans-unit id="c57ce0a4286570b210ee2d3d475cdd6b">
<source>Adds a block displaying a message about a customer's privacy data.</source>
<target>Adds a block displaying a message about a customer's privacy data.</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:47</note>
</trans-unit>
<trans-unit id="c9feeeafca864c811737aad664ca87b6">
<source>Customer data privacy message for customer form:</source>
<target>Customer data privacy message for customer form:</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:142</note>
</trans-unit>
<trans-unit id="6562c511e606e80f19436ed84b2a83b4">
<source>The customer data privacy message will be displayed in the customer form</source>
<target>The customer data privacy message will be displayed in the customer form</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:147</note>
</trans-unit>
<trans-unit id="84115963f315793b00e8ee0a83c85a2a">
<source>Tip: If the customer privacy message is too long to be written directly in the form, you can add a link to one of your pages. This can easily be created via the "Pages" page under the "Design" menu.</source>
<target>Tip: If the customer privacy message is too long to be written directly in the form, you can add a link to one of your pages. This can easily be created via the "Pages" page under the "Design" menu.</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:151</note>
</trans-unit>
<trans-unit id="e9a16ce4e994539e94fab8c2d30b0811">
<source>The personal data you provide is used to answer queries, process orders or allow access to specific information. You have the right to modify and delete all the personal information found in the "My Account" page.</source>
<target>The personal data you provide is used to answer queries, process orders or allow access to specific information. You have the right to modify and delete all the personal information found in the "My Account" page.</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:210</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_dataprivacy/ps_dataprivacy.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="0118514e865ea573cdfb66091d29381b">
<source>Customer data privacy[1][2]%message%[/2]</source>
<target>Customer data privacy[1][2]%message%[/2]</target>
<note>Context:
File: modules/ps_dataprivacy/ps_dataprivacy.php:109</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,203 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dateofdelivery/dateofdelivery.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b0f76e26cffaf27784d901a64f39593e">
<source>Date of delivery</source>
<target>Date of delivery</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:45</note>
</trans-unit>
<trans-unit id="98110868b266d63c3bacdac4430169cf">
<source>Displays an approximate date of delivery</source>
<target>Displays an approximate date of delivery</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:46</note>
</trans-unit>
<trans-unit id="0ea55758c7a68c0309b915e4b718d6b8">
<source>Date format is invalid</source>
<target>Date format is invalid</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:241</note>
</trans-unit>
<trans-unit id="7ccf58c950043c9fbfed668df13ce608">
<source>Settings are updated</source>
<target>Settings are updated</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:250</note>
</trans-unit>
<trans-unit id="ecfe3ba0ff66a97029088e8e90a3f051">
<source>Minimum time is invalid</source>
<target>Minimum time is invalid</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:259</note>
</trans-unit>
<trans-unit id="0245cd1cce5ecea8eb23b043be00d80a">
<source>Maximum time is invalid</source>
<target>Maximum time is invalid</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:261</note>
</trans-unit>
<trans-unit id="e6843321c8b0edea8cf333519316ed7b">
<source>Carrier is invalid</source>
<target>Carrier is invalid</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:263</note>
</trans-unit>
<trans-unit id="3499ed6a79c0b8cd01157de23fc1cfe6">
<source>This rule has already been defined for this carrier.</source>
<target>This rule has already been defined for this carrier.</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:265</note>
</trans-unit>
<trans-unit id="50e1f1030812a9a8fd66dfff17099fcd">
<source>An error occurred on adding of carrier rule.</source>
<target>An error occurred on adding of carrier rule.</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:277</note>
</trans-unit>
<trans-unit id="240276f48ff2e0e5fe620ff311e677b5">
<source>An error occurred on updating of carrier rule.</source>
<target>An error occurred on updating of carrier rule.</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:288</note>
</trans-unit>
<trans-unit id="b9e3eda70ccb175c96a56bd79b89bd8b">
<source>Carrier rule deleted successfully</source>
<target>Carrier rule deleted successfully</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:299</note>
</trans-unit>
<trans-unit id="25e775663057cfc945da15827d972699">
<source>Carrier rule added successfully</source>
<target>Carrier rule added successfully</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:303</note>
</trans-unit>
<trans-unit id="c20585756aa4f1b448a11ce77a054e32">
<source>Carrier rule updated successfully</source>
<target>Carrier rule updated successfully</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:306</note>
</trans-unit>
<trans-unit id="0008e84621e5c9f21f8a55387a28692f">
<source>Extra time when a product is out of stock</source>
<target>Extra time when a product is out of stock</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:517</note>
</trans-unit>
<trans-unit id="225e75c29d32392d311f5dc94c792384">
<source>day(s)</source>
<target>day(s)</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:620</note>
</trans-unit>
<trans-unit id="521d02cf307201053a46e0b9c5b5170c">
<source>Extra time for preparation of the order</source>
<target>Extra time for preparation of the order</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:523</note>
</trans-unit>
<trans-unit id="cec31ec82e3bdee482baaa9f5b11eeed">
<source>Preparation option</source>
<target>Preparation option</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:529</note>
</trans-unit>
<trans-unit id="15b4020fafe2bcadf41fbdb2e7fa137a">
<source>Saturday preparation</source>
<target>Saturday preparation</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:537</note>
</trans-unit>
<trans-unit id="9685cbc6ac9090137fb087d4f48d0561">
<source>Sunday preparation</source>
<target>Sunday preparation</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:542</note>
</trans-unit>
<trans-unit id="104f1a7d59077b514d4105fcee0e42ff">
<source>Date format:</source>
<target>Date format:</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:550</note>
</trans-unit>
<trans-unit id="3dcd8484e9bd43eeaa84e114aba42048">
<source>You can see all parameters available at: %site%</source>
<target>You can see all parameters available at: %site%</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:552</note>
</trans-unit>
<trans-unit id="85140afa1c99d6b4dc10179e2c5b4151">
<source>Carrier :</source>
<target>Carrier :</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:602</note>
</trans-unit>
<trans-unit id="1b9f5204ddf0881dc9f3a7bf65d4ac15">
<source>Delivery between</source>
<target>Delivery between</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:728</note>
</trans-unit>
<trans-unit id="19dfe063714422004b75043eaf74c9b8">
<source>Delivery option</source>
<target>Delivery option</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:624</note>
</trans-unit>
<trans-unit id="fe635ae5e30a73b4390c6d2e1a41e5be">
<source>Delivery on Saturday</source>
<target>Delivery on Saturday</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:632</note>
</trans-unit>
<trans-unit id="8d57b36293565ad925dc7dc4a9d3e724">
<source>Delivery on Sunday</source>
<target>Delivery on Sunday</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:637</note>
</trans-unit>
<trans-unit id="aeae9747bcdc4f7c25aa95c2a6765952">
<source>Name of carrier</source>
<target>Name of carrier</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:724</note>
</trans-unit>
<trans-unit id="52f253c711cff509bd5e4df2b18b697a">
<source>Saturday delivery</source>
<target>Saturday delivery</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:732</note>
</trans-unit>
<trans-unit id="fcddbca356dee064438a399fc0c4c84e">
<source>Sunday delivery</source>
<target>Sunday delivery</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:738</note>
</trans-unit>
<trans-unit id="b5813d499e8a122485995dd7851c1fb2">
<source>%1$d day(s) and %2$d day(s)</source>
<target>%1$d day(s) and %2$d day(s)</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:750</note>
</trans-unit>
<trans-unit id="387a8014f530f080bf2f3be723f8c164">
<source>Link list</source>
<target>Link list</target>
<note>Context:
File: modules/dateofdelivery/dateofdelivery.php:760</note>
</trans-unit>
</body>
</file>
<file original="modules/dateofdelivery/views/templates/hook/button.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e6ff622b31d0cd1c32c775d1e1f20831">
<source>Add a new carrier rule</source>
<target>Add a new carrier rule</target>
<note>Context:
File: modules/dateofdelivery/views/templates/hook/button.tpl:28</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/dateofdelivery/beforeCarrier.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c9ed8c0b07828727ca6653924b0498d3">
<source>with direct payment methods (e.g. credit card)</source>
<target>with direct payment methods (e.g. credit card)</target>
<note>Context:
File: modules/dateofdelivery/beforeCarrier.tpl:89</note>
</trans-unit>
<trans-unit id="75261aaef97717dda0ca98743b24f8f3">
<source>Approximate date of delivery with this carrier is between</source>
<target>Approximate date of delivery with this carrier is between</target>
<note>Context:
File: modules/dateofdelivery/beforeCarrier.tpl:83</note>
</trans-unit>
<trans-unit id="c31e7bcb78c69bd37e6e77be0183567f">
<source>There are %s packages, that will be approximately delivered with the delivery option you choose between</source>
<target>There are %s packages, that will be approximately delivered with the delivery option you choose between</target>
<note>Context:
File: modules/dateofdelivery/beforeCarrier.tpl:85</note>
</trans-unit>
<trans-unit id="be5d5d37542d75f93a87094459f76678">
<source>and</source>
<target>and</target>
<note>Context:
File: modules/dateofdelivery/beforeCarrier.tpl:87</note>
</trans-unit>
</body>
</file>
<file original="modules/dateofdelivery/orderDetail.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="32dfb655a7b12a2c5662516e82f5d79b">
<source>Approximate date of delivery is between %1$s and %2$s</source>
<target>Approximate date of delivery is between %1$s and %2$s</target>
<note>Context:
File: modules/dateofdelivery/orderDetail.tpl:26</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,212 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_emailsubscription/ps_emailsubscription.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7bf7f18afabb5122fa68fbab617e509b">
<source>Newsletter subscription</source>
<target>Newsletter subscription</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="10ae246e682f91bb896dd1d8405514ed">
<source>Adds a form for newsletter subscription.</source>
<target>Adds a form for newsletter subscription.</target>
<note>Line: 54</note>
</trans-unit>
<trans-unit id="396c88991101b5ca362932952293d291">
<source>Are you sure that you want to delete all of your contacts?</source>
<target>Are you sure that you want to delete all of your contacts?</target>
<note>Line: 55</note>
</trans-unit>
<trans-unit id="808c7457c768423c5651cbf676d9f6d7">
<source>Subscribed</source>
<target>Subscribed</target>
<note>Line: 221</note>
</trans-unit>
<trans-unit id="ec59738d441f28011a81e62bdcea6200">
<source>Subscribed on</source>
<target>Subscribed on</target>
<note>Line: 231</note>
</trans-unit>
<trans-unit id="3a1205098d0a13a9c41a8d538fd6a34a">
<source>Newsletter registrations</source>
<target>Newsletter registrations</target>
<note>Line: 243</note>
</trans-unit>
<trans-unit id="4182c8f19d40c7ca236a5f4f83faeb6b">
<source>Unsubscribe</source>
<target>Unsubscribe</target>
<note>Line: 295</note>
</trans-unit>
<trans-unit id="54d2f1bab16b550e32395a7e6edb8de5">
<source>Would you like to send a verification email after subscription?</source>
<target>Would you like to send a verification email after subscription?</target>
<note>Line: 850</note>
</trans-unit>
<trans-unit id="b37f32d509cf5aabe806b16791588aa3">
<source>Would you like to send a confirmation email after subscription?</source>
<target>Would you like to send a confirmation email after subscription?</target>
<note>Line: 867</note>
</trans-unit>
<trans-unit id="506e58042922bff5bd753dc612e84f5b">
<source>Welcome voucher code</source>
<target>Welcome voucher code</target>
<note>Line: 884</note>
</trans-unit>
<trans-unit id="1d612b943b8f4792bff603384a46e5f1">
<source>Leave blank to disable by default.</source>
<target>Leave blank to disable by default.</target>
<note>Line: 901</note>
</trans-unit>
<trans-unit id="7328d85830cd590d040882106846e28d">
<source>Newsletter conditions</source>
<target>Newsletter conditions</target>
<note>Line: 891</note>
</trans-unit>
<trans-unit id="23467d023d8767effca98a537a6a0622">
<source>This text will be displayed beneath the newsletter subscribe button.</source>
<target>This text will be displayed beneath the newsletter subscribe button.</target>
<note>Line: 897</note>
</trans-unit>
<trans-unit id="f1c0e2889f04c8333beb7f4d7f87ad23">
<source>Export customers' addresses</source>
<target>Export customers' addresses</target>
<note>Line: 943</note>
</trans-unit>
<trans-unit id="5353d769bec6eb3977ef36a3d8021682">
<source>Customers' country</source>
<target>Customers' country</target>
<note>Line: 949</note>
</trans-unit>
<trans-unit id="521f7e76a7d4f9e50c50bb945559b942">
<source>Filter customers by country.</source>
<target>Filter customers by country.</target>
<note>Line: 950</note>
</trans-unit>
<trans-unit id="2198f293f5e1e95dddeff819fbca0975">
<source>Newsletter subscribers</source>
<target>Newsletter subscribers</target>
<note>Line: 962</note>
</trans-unit>
<trans-unit id="1b09c341aa487e26dac94d2467b7f7e3">
<source>Filter customers who have subscribed to the newsletter or not, and who have an account or not.</source>
<target>Filter customers who have subscribed to the newsletter or not, and who have an account or not.</target>
<note>Line: 963</note>
</trans-unit>
<trans-unit id="e4369fb2bfc3fea17ea362d1eb9e53c4">
<source>Customers can subscribe to your newsletter when registering, or by entering their email in the newsletter form.</source>
<target>Customers can subscribe to your newsletter when registering, or by entering their email in the newsletter form.</target>
<note>Line: 964</note>
</trans-unit>
<trans-unit id="847b0223c73ac0fec0d9df6539c7cad6">
<source>All subscribers</source>
<target>All subscribers</target>
<note>Line: 970</note>
</trans-unit>
<trans-unit id="a307579714b75082f3f8734971b125cd">
<source>Subscribers with account</source>
<target>Subscribers with account</target>
<note>Line: 971</note>
</trans-unit>
<trans-unit id="d0da5609e4aebc5d532de97511a5a34a">
<source>Subscribers without account</source>
<target>Subscribers without account</target>
<note>Line: 972</note>
</trans-unit>
<trans-unit id="011d8c5d94f729f013963d856cd78745">
<source>Non-subscribers</source>
<target>Non-subscribers</target>
<note>Line: 973</note>
</trans-unit>
<trans-unit id="3c094542e33d2d21a27a0f0f1be1acaf">
<source>Partner offers subscribers</source>
<target>Partner offers subscribers</target>
<note>Line: 990</note>
</trans-unit>
<trans-unit id="3c450a9c3b3d890e8e7ab06ed3de2c27">
<source>Filter customers who have agreed to receive your partners' offers or not.</source>
<target>Filter customers who have agreed to receive your partners' offers or not.</target>
<note>Line: 982</note>
</trans-unit>
<trans-unit id="511e5032ffddf444de90c630fac63567">
<source>Partner offers subscribers have agreed to receive your partners' offers.</source>
<target>Partner offers subscribers have agreed to receive your partners' offers.</target>
<note>Line: 983</note>
</trans-unit>
<trans-unit id="7e3a51a56ddd2846e21c33f05e0aea6f">
<source>All customers</source>
<target>All customers</target>
<note>Line: 989</note>
</trans-unit>
<trans-unit id="2760982525dd5028d13b0d4f6abcfa59">
<source>Partner offers non-subscribers</source>
<target>Partner offers non-subscribers</target>
<note>Line: 991</note>
</trans-unit>
<trans-unit id="f6df4ad6dc4798f26d1f2460eef4f2e9">
<source>Search for addresses</source>
<target>Search for addresses</target>
<note>Line: 1035</note>
</trans-unit>
<trans-unit id="375afa60efcc1d48300bd339cb8154b0">
<source>Email address to search</source>
<target>Email address to search</target>
<note>Line: 1041</note>
</trans-unit>
<trans-unit id="e347582d22a4ba3c822de504b23d4704">
<source>Example: contact@prestashop.com or @prestashop.com</source>
<target>Example: contact@prestashop.com or @prestashop.com</target>
<note>Line: 1044</note>
</trans-unit>
<trans-unit id="82e5e0bc0f9c776c98253d569c111c0f">
<source>No customers found with these filters!</source>
<target>No customers found with these filters!</target>
<note>Line: 1103</note>
</trans-unit>
<trans-unit id="644ecc2486a059ca16b001a77909bf40">
<source>The .CSV file has been successfully exported: %d customers found.</source>
<target>The .CSV file has been successfully exported: %d customers found.</target>
<note>Line: 1112</note>
</trans-unit>
<trans-unit id="48e3d5f66961b621c78f709afcd7d437">
<source>Download the file</source>
<target>Download the file</target>
<note>Line: 1114</note>
</trans-unit>
<trans-unit id="dca37b874cf34bd5ebcf1c2fdc59a8b4">
<source>WARNING: When opening this .csv file with Excel, choose UTF-8 encoding to avoid strange characters.</source>
<target>WARNING: When opening this .csv file with Excel, choose UTF-8 encoding to avoid strange characters.</target>
<note>Line: 1119</note>
</trans-unit>
<trans-unit id="b40866b115d74009183e06fc86b5c014">
<source>Error: Write access limited</source>
<target>Error: Write access limited</target>
<note>Line: 1220</note>
</trans-unit>
<trans-unit id="87b0ca57db642f4e7780174a6abdc37d">
<source>No result found!</source>
<target>No result found!</target>
<note>Line: 1126</note>
</trans-unit>
<trans-unit id="9896806b3fb40a73bdda4781f61052bf">
<source>-- Select associated page --</source>
<target>-- Select associated page --</target>
<note>Line: 1139</note>
</trans-unit>
<trans-unit id="d2bea8f0552d424dcb7180b873eb7b3a">
<source>Newsletter subscription: no email to delete, this customer has not registered.</source>
<target>Newsletter subscription: no email to delete, this customer has not registered.</target>
<note>Line: 1277</note>
</trans-unit>
<trans-unit id="6915ab8f41e7f6f7805fd3f94117804a">
<source>Newsletter subscription: no email to export, this customer has not registered.</source>
<target>Newsletter subscription: no email to export, this customer has not registered.</target>
<note>Line: 1287</note>
</trans-unit>
<trans-unit id="20d956f54e022848a3977b02d8498f78">
<source>Iso language</source>
<target>Iso language</target>
<note>Line: 227</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_emailsubscription/ps_emailsubscription.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1c623b291d95f4f1b1d0c03d0dc0ffa1">
<source>This email address is not registered.</source>
<target>This email address is not registered.</target>
<note>Line: 344</note>
</trans-unit>
<trans-unit id="3b1f17a6fd92e35bc744e986b8e7a61c">
<source>An error occurred while attempting to unsubscribe.</source>
<target>An error occurred while attempting to unsubscribe.</target>
<note>Line: 348</note>
</trans-unit>
<trans-unit id="d4197f3e8e8b4b5d06b599bc45d683bb">
<source>Unsubscription successful.</source>
<target>Unsubscription successful.</target>
<note>Line: 351</note>
</trans-unit>
<trans-unit id="f6618fce0acbfca15e1f2b0991ddbcd0">
<source>This email address is already registered.</source>
<target>This email address is already registered.</target>
<note>Line: 355</note>
</trans-unit>
<trans-unit id="e172cb581e84f43a3bd8ee4e3b512197">
<source>An error occurred during the subscription process.</source>
<target>An error occurred during the subscription process.</target>
<note>Line: 377</note>
</trans-unit>
<trans-unit id="ebc069b1b9a2c48edfa39e344103be1e">
<source>A verification email has been sent. Please check your inbox.</source>
<target>A verification email has been sent. Please check your inbox.</target>
<note>Line: 372</note>
</trans-unit>
<trans-unit id="77c576a354d5d6f5e2c1ba50167addf8">
<source>You have successfully subscribed to this newsletter.</source>
<target>You have successfully subscribed to this newsletter.</target>
<note>Line: 375</note>
</trans-unit>
<trans-unit id="99c8b8e5e51bf8f00f1d66820684be9a">
<source>This email is already registered and/or invalid.</source>
<target>This email is already registered and/or invalid.</target>
<note>Line: 612</note>
</trans-unit>
<trans-unit id="4e1c51e233f1ed368c58db9ef09010ba">
<source>Thank you for subscribing to our newsletter.</source>
<target>Thank you for subscribing to our newsletter.</target>
<note>Line: 623</note>
</trans-unit>
<trans-unit id="b65736001bfe3cc53a665b2e077e5653">
<source>Sign up for our newsletter[1][2]%conditions%[/2]</source>
<target>Sign up for our newsletter[1][2]%conditions%[/2]</target>
<note>Line: 814</note>
</trans-unit>
<trans-unit id="c3d67cba349c7ecb5465ae92bdb38970">
<source>You may unsubscribe at any moment. For that purpose, please find our contact info in the legal notice.</source>
<target>You may unsubscribe at any moment. For that purpose, please find our contact info in the legal notice.</target>
<note>Line: 1219</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_emailsubscription/views/templates/front/subscription_execution.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="7bf7f18afabb5122fa68fbab617e509b">
<source>Newsletter subscription</source>
<target>Newsletter subscription</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ffb7e666a70151215b4c55c6268d7d72">
<source>Newsletter</source>
<target>Newsletter</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="625f93a63da35ee7150341160460f31e">
<source>Your e-mail</source>
<target>Your e-mail</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,515 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_facetedsearch/ps_facetedsearch.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d67b7992a94709663ce72ce9c1606597">
<source>Faceted search</source>
<target>Faceted search</target>
<note>Line: 101</note>
</trans-unit>
<trans-unit id="0b3be13d3fe8cfc942ae7e8a64f3718b">
<source>Displays a block allowing multiple filters.</source>
<target>Displays a block allowing multiple filters.</target>
<note>Line: 102</note>
</trans-unit>
<trans-unit id="b3786b970611c1a3809dd51b630812a7">
<source>"%s" is not a valid url</source>
<target>"%s" is not a valid url</target>
<note>Line: 1195</note>
</trans-unit>
<trans-unit id="ccc12c5568381293a27db0232877937b">
<source>Filter template name required (cannot be empty)</source>
<target>Filter template name required (cannot be empty)</target>
<note>Line: 579</note>
</trans-unit>
<trans-unit id="8c97e587c1b4e519bec26f3903561da3">
<source>You must select at least one category.</source>
<target>You must select at least one category.</target>
<note>Line: 581</note>
</trans-unit>
<trans-unit id="817c37b9c1f5cd4a450dad384e63e6c7">
<source>Your filter</source>
<target>Your filter</target>
<note>Line: 670</note>
</trans-unit>
<trans-unit id="3185cefd67b575e582063148e4f15860">
<source>was updated successfully.</source>
<target>was updated successfully.</target>
<note>Line: 674</note>
</trans-unit>
<trans-unit id="7ccab4d8de5d6b9bb61e99c7bba343ab">
<source>was added successfully.</source>
<target>was added successfully.</target>
<note>Line: 675</note>
</trans-unit>
<trans-unit id="fe016d3b990c2a9dd72ab6b45892f2ae">
<source>Settings saved successfully</source>
<target>Settings saved successfully</target>
<note>Line: 689</note>
</trans-unit>
<trans-unit id="0d07af70081a2421e2b2972609d699db">
<source>Filter template deleted, categories updated (reverted to default Filter template).</source>
<target>Filter template deleted, categories updated (reverted to default Filter template).</target>
<note>Line: 704</note>
</trans-unit>
<trans-unit id="491f46aa6101560e9f1e0d55a063231b">
<source>Filter template not found</source>
<target>Filter template not found</target>
<note>Line: 706</note>
</trans-unit>
<trans-unit id="fa03eb688ad8aa1db593d33dabd89bad">
<source>Root</source>
<target>Root</target>
<note>Line: 1225</note>
</trans-unit>
<trans-unit id="a3868119dc6858db57127fd26e6f9656">
<source>My template - %s</source>
<target>My template - %s</target>
<note>Line: 754</note>
</trans-unit>
<trans-unit id="32d2e6cd4bb1719c572ef470a3a525b6">
<source>My template %s</source>
<target>My template %s</target>
<note>Line: 1072</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_functions/show_limit.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="af605ea55ee39e54c444f217e346048f">
<source>No limit</source>
<target>No limit</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_partials/categories-tree.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="5d9632c49fb1586eed7123afe2bd806f">
<source>Categories used for this template:</source>
<target>Categories used for this template:</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="78587049e12fb4f6b12e2bb045f2880a">
<source>Categories selection is disabled because you have no categories or you are in a "all shops" context.</source>
<target>Categories selection is disabled because you have no categories or you are in a "all shops" context.</target>
<note>Line: 32</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_partials/footer.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dc3f85827350641490287c65c0c4ddf8">
<source>You must select at least one filter</source>
<target>You must select at least one filter</target>
<note>Line: 36</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_partials/header.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="f8263d99054a4cdb3428196f078fa212">
<source>Template name:</source>
<target>Template name:</target>
<note>Line: 26</note>
</trans-unit>
<trans-unit id="4284fda63513b7da70b5d8f032900580">
<source>Only as a reminder</source>
<target>Only as a reminder</target>
<note>Line: 29</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_partials/messages.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="1f0f8b59397f34d499b181297714713a">
<source>Warning! Your hosting provider is using the Suhosin patch for PHP, which limits the maximum number of fields allowed in a form:</source>
<target>Warning! Your hosting provider is using the Suhosin patch for PHP, which limits the maximum number of fields allowed in a form:</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="9df9f71b2fc62b0ce48cbb8cb5671ee6">
<source>for suhosin.post.max_vars.</source>
<target>for suhosin.post.max_vars.</target>
<note>Line: 39</note>
</trans-unit>
<trans-unit id="961e2bc7e3f570a3209546330de84a00">
<source>for suhosin.request.max_vars.</source>
<target>for suhosin.request.max_vars.</target>
<note>Line: 40</note>
</trans-unit>
<trans-unit id="308c1cf98be9973142833c9a9dbbc2ef">
<source>Please ask your hosting provider to increase the Suhosin limit to</source>
<target>Please ask your hosting provider to increase the Suhosin limit to</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="5ad040870ae5ccaeb2d57e4d052163a4">
<source>Warning! Your PHP configuration limits the maximum number of fields allowed in a form:</source>
<target>Warning! Your PHP configuration limits the maximum number of fields allowed in a form:</target>
<note>Line: 43</note>
</trans-unit>
<trans-unit id="5607dc45ebdfc0baaab64d944aa88f47">
<source>for max_input_vars.</source>
<target>for max_input_vars.</target>
<note>Line: 44</note>
</trans-unit>
<trans-unit id="6e709babf4b5a0ed4194ad5240e1be2c">
<source>Please ask your hosting provider to increase this limit to</source>
<target>Please ask your hosting provider to increase this limit to</target>
<note>Line: 45</note>
</trans-unit>
<trans-unit id="5d27fef01a54790de11db21f1ed47892">
<source>%s at least, or you will have to edit the translation files manually.</source>
<target>%s at least, or you will have to edit the translation files manually.</target>
<note>Line: 47</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/_partials/shops.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="c2d0bf5ad42279c519cdcb4a94eb46b6">
<source>Choose shop association:</source>
<target>Choose shop association:</target>
<note>Line: 27</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/add.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="cfbc982f8fb7a0cc3abb3c85c795ab41">
<source>Sub-categories filter</source>
<target>Sub-categories filter</target>
<note>Line: 68</note>
</trans-unit>
<trans-unit id="cd50ff1c5332f9920acf8173c4aab425">
<source>Product stock filter</source>
<target>Product stock filter</target>
<note>Line: 100</note>
</trans-unit>
<trans-unit id="048c1728a0a6cf36f56c9dcdd23d8a14">
<source>Product condition filter</source>
<target>Product condition filter</target>
<note>Line: 131</note>
</trans-unit>
<trans-unit id="e581c019fe5c1b2aa8dfa18d93f88d13">
<source>Product brand filter</source>
<target>Product brand filter</target>
<note>Line: 162</note>
</trans-unit>
<trans-unit id="cc72ed9534a489b5d2e5882735bf1364">
<source>Product weight filter (slider)</source>
<target>Product weight filter (slider)</target>
<note>Line: 193</note>
</trans-unit>
<trans-unit id="0649bb392812f99ff6b0e2ba160675fa">
<source>Product price filter (slider)</source>
<target>Product price filter (slider)</target>
<note>Line: 217</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/manage.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="79c0d6cba080dc90b01c887064c9fc2f">
<source>Clear cache</source>
<target>Clear cache</target>
<note>Line: 37</note>
</trans-unit>
<trans-unit id="df2bbc994d10995dcffdf96dbb7acbb1">
<source>Indexes and caches</source>
<target>Indexes and caches</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="ad3e7eb269d8ba0ac388267627f45b5a">
<source>Indexing is in progress. Please do not leave this page</source>
<target>Indexing is in progress. Please do not leave this page</target>
<note>Line: 30</note>
</trans-unit>
<trans-unit id="5e2420d2318025812dc3e231ddb66b0b">
<source>Index all missing prices</source>
<target>Index all missing prices</target>
<note>Line: 34</note>
</trans-unit>
<trans-unit id="9612e005e96ad32b8830be4d0377e7e6">
<source>Rebuild entire price index</source>
<target>Rebuild entire price index</target>
<note>Line: 35</note>
</trans-unit>
<trans-unit id="53795c3624ae2361363780589aa2aa42">
<source>You can set a cron job that will rebuild price index using the following URL:</source>
<target>You can set a cron job that will rebuild price index using the following URL:</target>
<note>Line: 42</note>
</trans-unit>
<trans-unit id="e43b32b88c77e49f06144cd1ffaeba96">
<source>You can set a cron job that will rebuild attribute index using the following URL:</source>
<target>You can set a cron job that will rebuild attribute index using the following URL:</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="16349835364cf839e6670b0de7da6362">
<source>A nightly rebuild is recommended.</source>
<target>A nightly rebuild is recommended.</target>
<note>Line: 53</note>
</trans-unit>
<trans-unit id="dc83eb2d8601743d8111c5150b93fc71">
<source>Filters templates</source>
<target>Filters templates</target>
<note>Line: 57</note>
</trans-unit>
<trans-unit id="f7f19392da30e81c3abf433ce7b8ca38">
<source>Created on</source>
<target>Created on</target>
<note>Line: 66</note>
</trans-unit>
<trans-unit id="06df33001c1d7187fdd81ea1f5b277aa">
<source>Actions</source>
<target>Actions</target>
<note>Line: 67</note>
</trans-unit>
<trans-unit id="eb0728df77683ac0f7210ed0d4a18d62">
<source>Do you really want to delete this filter template?</source>
<target>Do you really want to delete this filter template?</target>
<note>Line: 90</note>
</trans-unit>
<trans-unit id="058eeeba77f547f8a9a295a0efd4f6cd">
<source>No filter template found.</source>
<target>No filter template found.</target>
<note>Line: 106</note>
</trans-unit>
<trans-unit id="ae2b83a081959fff7ab2e96f4ce972d1">
<source>Add new template</source>
<target>Add new template</target>
<note>Line: 110</note>
</trans-unit>
<trans-unit id="8531c73de81b9ed94322dda7cf947daa">
<source>Show the number of matching products</source>
<target>Show the number of matching products</target>
<note>Line: 118</note>
</trans-unit>
<trans-unit id="ee61c015043c79c1370fc14980dd27b9">
<source>Show products from subcategories</source>
<target>Show products from subcategories</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="a19399fa42f1ab059401a14b9f13eba1">
<source>Category filter depth (0 for no limits, 1 by default)</source>
<target>Category filter depth (0 for no limits, 1 by default)</target>
<note>Line: 150</note>
</trans-unit>
<trans-unit id="3e652bd299bb3ee3d458c0dcc7fd706e">
<source>Use tax to filter price</source>
<target>Use tax to filter price</target>
<note>Line: 156</note>
</trans-unit>
<trans-unit id="30b1f6f4369e3d0f7a0d50b5cb96aabd">
<source>Use rounding to filter price</source>
<target>Use rounding to filter price</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="56fc8142961f1f3e9f9ec0c178881b69">
<source>(in progress)</source>
<target>(in progress)</target>
<note>Line: 200</note>
</trans-unit>
<trans-unit id="8c83a87ac8ee57d9bcd79d1aa9243bc0">
<source>URL indexing finished</source>
<target>URL indexing finished</target>
<note>Line: 201</note>
</trans-unit>
<trans-unit id="49afa0d9ad5c1f8bf5413b9dc8a252c9">
<source>Attribute indexing finished</source>
<target>Attribute indexing finished</target>
<note>Line: 202</note>
</trans-unit>
<trans-unit id="9ea5bab5df9a3f3abaa64951daf07e9b">
<source>URL indexing failed</source>
<target>URL indexing failed</target>
<note>Line: 203</note>
</trans-unit>
<trans-unit id="414301b329318b3e916c5b91b0ca9126">
<source>Attribute indexing failed</source>
<target>Attribute indexing failed</target>
<note>Line: 204</note>
</trans-unit>
<trans-unit id="fa059e7a64ab37fe21b01a220b6c073f">
<source>Price indexing finished</source>
<target>Price indexing finished</target>
<note>Line: 205</note>
</trans-unit>
<trans-unit id="b55143bb1f46af4207ea4b5eb8e844ed">
<source>Price indexing failed</source>
<target>Price indexing failed</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="7cf7d150dd287df0a8e17eeb4cf2161d">
<source>(in progress, %s products price to index)</source>
<target>(in progress, %s products price to index)</target>
<note>Line: 207</note>
</trans-unit>
<trans-unit id="8524de963f07201e5c086830d370797f">
<source>Loading...</source>
<target>Loading...</target>
<note>Line: 208</note>
</trans-unit>
<trans-unit id="eb9c805f7590679f0742ba0ea0a3e77f">
<source>You selected -All categories-: all existing filter templates will be deleted. Is it OK?</source>
<target>You selected -All categories-: all existing filter templates will be deleted. Is it OK?</target>
<note>Line: 209</note>
</trans-unit>
<trans-unit id="18c6120643596bd2626f3b0720b1df3a">
<source>You must select at least one category</source>
<target>You must select at least one category</target>
<note>Line: 210</note>
</trans-unit>
<trans-unit id="fc11f4442332d8b86f01335df9d28444">
<source>Build attributes and features indexes</source>
<target>Build attributes and features indexes</target>
<note>Line: 36</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/admin/view.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="51e17eed0057675de4bde1b34206bb12">
<source>New filters template</source>
<target>New filters template</target>
<note>Line: 29</note>
</trans-unit>
<trans-unit id="88ec58dbbe7a8b727200696cfca4df3d">
<source>You can drag and drop filters to adjust position</source>
<target>You can drag and drop filters to adjust position</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="60266302eeda2ac9775c3a2036ae25ca">
<source>Filters:</source>
<target>Filters:</target>
<note>Line: 41</note>
</trans-unit>
<trans-unit id="29da3cb8b65298a3e88f5041e9fb9761">
<source>Total filters: %s</source>
<target>Total filters: %s</target>
<note>Line: 47</note>
</trans-unit>
<trans-unit id="379d3973e10dfd90c475060f31b9ae74">
<source>Filter result limit:</source>
<target>Filter result limit:</target>
<note>Line: 195</note>
</trans-unit>
<trans-unit id="284fd1ee8a33e84e08699ba0bbc44943">
<source>Filter style:</source>
<target>Filter style:</target>
<note>Line: 201</note>
</trans-unit>
<trans-unit id="4f8222964f9a317cef99dddc23a121bd">
<source>Checkbox</source>
<target>Checkbox</target>
<note>Line: 204</note>
</trans-unit>
<trans-unit id="07a9ca8c8228dd3399141e228034fedf">
<source>Radio button</source>
<target>Radio button</target>
<note>Line: 205</note>
</trans-unit>
<trans-unit id="5204077231fc7164e2269e96b584dd95">
<source>Drop-down list</source>
<target>Drop-down list</target>
<note>Line: 206</note>
</trans-unit>
<trans-unit id="ce9bd6e7a7bfa2fa2d9e43bc4fcfeb8a">
<source>List of ranges</source>
<target>List of ranges</target>
<note>Line: 77</note>
</trans-unit>
<trans-unit id="db6b86d05039c4f657a28647f8eb5140">
<source>Attribute group: %name% (%count% attributes)</source>
<target>Attribute group: %name% (%count% attributes)</target>
<note>Line: 115</note>
</trans-unit>
<trans-unit id="788a474b0e55d612b3d500743c6251a0">
<source>Attribute group: %name% (%count% attribute)</source>
<target>Attribute group: %name% (%count% attribute)</target>
<note>Line: 124</note>
</trans-unit>
<trans-unit id="ee59f74265cd7f85d0ad30206a1a89b0">
<source>This group will allow user to select a color</source>
<target>This group will allow user to select a color</target>
<note>Line: 134</note>
</trans-unit>
<trans-unit id="4127fb33c1db9597f3c881ae057f1370">
<source>Feature: %name% (%count% values)</source>
<target>Feature: %name% (%count% values)</target>
<note>Line: 174</note>
</trans-unit>
<trans-unit id="cadad7b648bb2b1d3f22421b00a14fd2">
<source>Feature: %name% (%count% value)</source>
<target>Feature: %name% (%count% value)</target>
<note>Line: 183</note>
</trans-unit>
<trans-unit id="d47f700b6db025d98cae0b340ed847e9">
<source>Build attribute index</source>
<target>Build attribute index</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/hook/attribute_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="e919c0dcca631198a18993158182c96b">
<source>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute's name, but you can change that setting using this field.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="988d04f25d03c7753f5e4752a9397e79">
<source>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this attribute. By default, PrestaShop uses the attribute's name, but you can change that setting using this field.</target>
<note>Line: 78</note>
</trans-unit>
<trans-unit id="e6b391a8d2c4d45902a23a8b6585703d">
<source>URL</source>
<target>URL</target>
<note>Line: 27</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/hook/feature_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="28034a200e932f22b324a4dda1bb9f64">
<source><![CDATA[Invalid characters: <>;=#{}_]]></source>
<target><![CDATA[Invalid characters: <>;=#{}_]]></target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="0bcff42b5aed2b0e4501ed178e4f2510">
<source>Indexable</source>
<target>Indexable</target>
<note>Line: 84</note>
</trans-unit>
<trans-unit id="4e495bf87859dbd3914919cccea139e2">
<source>Use this attribute in URL generated by the Faceted Search module.</source>
<target>Use this attribute in URL generated by the Faceted Search module.</target>
<note>Line: 99</note>
</trans-unit>
<trans-unit id="81e6451dad5734120899da86f7da4e4e">
<source>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this feature. By default, PrestaShop uses the feature's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this feature. By default, PrestaShop uses the feature's name, but you can change that setting using this field.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="78b4c0278638dd0fd4b29a05895d7891">
<source>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this feature. By default, PrestaShop uses the feature's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this feature. By default, PrestaShop uses the feature's name, but you can change that setting using this field.</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/views/templates/hook/feature_value_form.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="b0aefa9a5ca20f89372b37c2c35c1d4b">
<source>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this feature's value. By default, PrestaShop uses the value's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed URLs by choosing the word that best represent this feature's value. By default, PrestaShop uses the value's name, but you can change that setting using this field.</target>
<note>Line: 50</note>
</trans-unit>
<trans-unit id="0e6de50c32b9b10fd375ee52090b7f3e">
<source>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this feature's value. By default, PrestaShop uses the value's name, but you can change that setting using this field.</source>
<target>When the Faceted Search module is enabled, you can get more detailed page titles by choosing the word that best represent this feature's value. By default, PrestaShop uses the value's name, but you can change that setting using this field.</target>
<note>Line: 78</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_facetedsearch/ps_facetedsearch.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="3601146c4e948c32b6424d2c0a7f0118">
<source>Price</source>
<target>Price</target>
<note>Line: 1994</note>
</trans-unit>
<trans-unit id="8c489d0946f66d17d73f26366a4bf620">
<source>Weight</source>
<target>Weight</target>
<note>Line: 2038</note>
</trans-unit>
<trans-unit id="03c2e7e41ffc181a4e84080b4710e81e">
<source>New</source>
<target>New</target>
<note>Line: 2091</note>
</trans-unit>
<trans-unit id="019d1ca7d50cc54b995f60d456435e87">
<source>Used</source>
<target>Used</target>
<note>Line: 2092</note>
</trans-unit>
<trans-unit id="6da03a74721a0554b7143254225cc08a">
<source>Refurbished</source>
<target>Refurbished</target>
<note>Line: 2093</note>
</trans-unit>
<trans-unit id="9e2941b3c81256fac10392aaca4ccfde">
<source>Condition</source>
<target>Condition</target>
<note>Line: 2119</note>
</trans-unit>
<trans-unit id="2d25c72c1b18e562f6654fff8e11711e">
<source>Not available</source>
<target>Not available</target>
<note>Line: 2128</note>
</trans-unit>
<trans-unit id="fcebe56087b9373f15514831184fa572">
<source>In stock</source>
<target>In stock</target>
<note>Line: 2129</note>
</trans-unit>
<trans-unit id="faeaec9eda6bc4c8cb6e1a9156a858be">
<source>Availability</source>
<target>Availability</target>
<note>Line: 2151</note>
</trans-unit>
<trans-unit id="1be6f9eb563f3bf85c78b4219bf09de9">
<source>Brand</source>
<target>Brand</target>
<note>Line: 2174</note>
</trans-unit>
<trans-unit id="af1b98adf7f686b84cd0b443e022b7a0">
<source>Categories</source>
<target>Categories</target>
<note>Line: 2294</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_facetedsearch/src/Ps_FacetedsearchProductSearchProvider.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ad24ffca4f9e9c0c7e80fe1512df6db9">
<source>Relevance</source>
<target>Relevance</target>
<note>Line: 121</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_faviconnotificationbo/ps_faviconnotificationbo.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="87cc29282288a147a6c6a8fca50ba414">
<source>Order Notifications on the Favicon</source>
<target>Order Notifications on the Favicon</target>
<note>Line: 58</note>
</trans-unit>
<trans-unit id="30dbe7ee3d7be2e58b5e0fe6075360fa">
<source>Be notified of each new order, client or message directly in the browser tab of your back office, even when working on another page</source>
<target>Be notified of each new order, client or message directly in the browser tab of your back office, even when working on another page</target>
<note>Line: 59</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_faviconnotificationbo/views/templates/admin/menu.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="be11c74c1dd7f307bb80183a90dc2067">
<source>Get started</source>
<target>Get started</target>
<note>Line: 30</note>
</trans-unit>
</body>
</file>
<file original="modules/ps_faviconnotificationbo/views/templates/admin/tabs/faviconConfiguration.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="df47b138ef38d036367dd40804eaf281">
<source>Display notifications in the browser tab for:</source>
<target>Display notifications in the browser tab for:</target>
<note>Line: 22</note>
</trans-unit>
<trans-unit id="39f955a983e02682aeecdf0c94854c9b">
<source>New orders</source>
<target>New orders</target>
<note>Line: 28</note>
</trans-unit>
<trans-unit id="d836b5e952dee5c17b2168ee86ebe8e6">
<source>Notification background color</source>
<target>Notification background color</target>
<note>Line: 80</note>
</trans-unit>
<trans-unit id="edfc54b8273bf6358f53c1bbcfdd8fd0">
<source>Notification text color</source>
<target>Notification text color</target>
<note>Line: 90</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_featuredproducts/ps_featuredproducts.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="ca7d973c26c57b69e0857e7a0332d545">
<source>Featured products</source>
<target>Featured products</target>
<note>Line: 60</note>
</trans-unit>
<trans-unit id="6d37ec35b5b6820f90394e5ee49e8cec">
<source>Displays featured products in the central column of your homepage.</source>
<target>Displays featured products in the central column of your homepage.</target>
<note>Line: 61</note>
</trans-unit>
<trans-unit id="fddb8a1881e39ad11bfe0d0aca5becc3">
<source>The number of products is invalid. Please enter a positive number.</source>
<target>The number of products is invalid. Please enter a positive number.</target>
<note>Line: 131</note>
</trans-unit>
<trans-unit id="c284a59996a4e984b30319999a7feb1d">
<source>The category ID is invalid. Please choose an existing category ID.</source>
<target>The category ID is invalid. Please choose an existing category ID.</target>
<note>Line: 136</note>
</trans-unit>
<trans-unit id="fd2608d329d90e9a49731393427d0a5a">
<source>Invalid value for the "randomize" flag.</source>
<target>Invalid value for the "randomize" flag.</target>
<note>Line: 141</note>
</trans-unit>
<trans-unit id="abc877135a96e04fc076becb9ce6fdfa">
<source>To add products to your homepage, simply add them to the corresponding product category (default: "Home").</source>
<target>To add products to your homepage, simply add them to the corresponding product category (default: "Home").</target>
<note>Line: 168</note>
</trans-unit>
<trans-unit id="d44168e17d91bac89aab3f38d8a4da8e">
<source>Number of products to be displayed</source>
<target>Number of products to be displayed</target>
<note>Line: 172</note>
</trans-unit>
<trans-unit id="1b73f6b70a0fcd38bbc6a6e4b67e3010">
<source>Set the number of products that you would like to display on homepage (default: 8).</source>
<target>Set the number of products that you would like to display on homepage (default: 8).</target>
<note>Line: 175</note>
</trans-unit>
<trans-unit id="b773a38d8c456f7b24506c0e3cd67889">
<source>Category from which to pick products to be displayed</source>
<target>Category from which to pick products to be displayed</target>
<note>Line: 179</note>
</trans-unit>
<trans-unit id="0db2d53545e2ee088cfb3f45e618ba68">
<source>Choose the category ID of the products that you would like to display on homepage (default: 2 for "Home").</source>
<target>Choose the category ID of the products that you would like to display on homepage (default: 2 for "Home").</target>
<note>Line: 182</note>
</trans-unit>
<trans-unit id="49417670345173e7b95018b7bf976fc7">
<source>Randomly display featured products</source>
<target>Randomly display featured products</target>
<note>Line: 186</note>
</trans-unit>
<trans-unit id="3c12c1068fb0e02fe65a6c4fc40bc29a">
<source>Enable if you wish the products to be displayed randomly (default: no).</source>
<target>Enable if you wish the products to be displayed randomly (default: no).</target>
<note>Line: 189</note>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="dd8c84ae3dc95566dc071d0effc40dd2">
<source>Our Products</source>
<target>Our Products</target>
<note>Line: 27</note>
</trans-unit>
<trans-unit id="40dec546414c1ebdfde8d9858f0938c3">
<source>All products</source>
<target>All products</target>
<note>Line: 33</note>
</trans-unit>
</body>
</file>
</xliff>

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