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

View File

@@ -0,0 +1,34 @@
<?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
*/
class AttributeGroupLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Shop.Demo.Catalog';
protected $keys = array('id_attribute_group');
protected $fieldsToUpdate = array('name', 'public_name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class AttributeLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Shop.Demo.Catalog';
protected $keys = array('id_attribute');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class CarrierLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Shipping.Feature';
protected $keys = array('id_carrier', 'id_shop');
protected $fieldsToUpdate = array('delay');
}

View File

@@ -0,0 +1,53 @@
<?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
*/
class CategoryLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Catalog.Feature';
protected $keys = array('id_category', 'id_shop');
protected $fieldsToUpdate = array('name', 'link_rewrite');
public function getFieldValue($field, $value)
{
if ($field == 'link_rewrite') {
$replacements = array(
'home' => 'Home',
'root' => 'Root',
);
$value = str_replace(array_keys($replacements), array_values($replacements), $value);
}
$value = parent::getFieldValue($field, $value);
if ($field == 'link_rewrite') {
$value = $this->slugify($value);
}
return $value;
}
}

View File

@@ -0,0 +1,52 @@
<?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
*/
class CmsCategoryLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Catalog.Feature';
protected $keys = array('id_cms_category', 'id_shop');
protected $fieldsToUpdate = array('name', 'link_rewrite');
public function getFieldValue($field, $value)
{
if ($field == 'link_rewrite') {
$replacements = array(
'home' => 'Home',
);
$value = str_replace(array_keys($replacements), array_values($replacements), $value);
}
$value = parent::getFieldValue($field, $value);
if ($field == 'link_rewrite') {
$value = $this->slugify($value);
}
return $value;
}
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class ConfigurationLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Shopparameters.Feature';
protected $keys = array('id_configuration');
protected $fieldsToUpdate = array('value');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class ContactLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Shopparameters.Feature';
protected $keys = array('id_contact');
protected $fieldsToUpdate = array('name', 'description');
}

84
classes/lang/DataLang.php Normal file
View File

@@ -0,0 +1,84 @@
<?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
*/
use PrestaShop\PrestaShop\Adapter\SymfonyContainer;
use PrestaShopBundle\Translation\TranslatorComponent as Translator;
use PrestaShopBundle\Translation\TranslatorLanguageLoader;
class DataLangCore
{
/** @var Translator */
protected $translator;
/** @var string */
protected $locale;
/** @var array */
protected $keys;
/** @var array */
protected $fieldsToUpdate;
/** @var string */
protected $domain;
public function __construct($locale)
{
$this->locale = $locale;
$this->translator = SymfonyContainer::getInstance()->get('translator');
$isAdminContext = defined('_PS_ADMIN_DIR_');
if (!$this->translator->isLanguageLoaded($this->locale)) {
(new TranslatorLanguageLoader($isAdminContext))->loadLanguage($this->translator, $this->locale);
$this->translator->getCatalogue($this->locale);
}
}
public function getFieldValue($field, $value)
{
return $this->translator->trans($value, array(), $this->domain, $this->locale);
}
public function getKeys()
{
return $this->keys;
}
public function getFieldsToUpdate()
{
return $this->fieldsToUpdate;
}
public function slugify($string)
{
return strtolower(str_replace(' ', '-', Tools::replaceAccentedChars($string)));
}
public function getDomain()
{
return $this->domain;
}
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class FeatureLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Shop.Demo.Catalog';
protected $keys = array('id_feature');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class FeatureValueLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Shop.Demo.Catalog';
protected $keys = array('id_feature_value');
protected $fieldsToUpdate = array('value');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class GenderLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Shopparameters.Feature';
protected $keys = array('id_gender');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class GroupLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Shopparameters.Feature';
protected $keys = array('id_group');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,28 @@
<?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
*/
trans('Size', 'Shop.Demo.Catalog');
trans('Shoe size', 'Shop.Demo.Catalog');
trans('Color', 'Shop.Demo.Catalog');

View File

@@ -0,0 +1,49 @@
<?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
*/
trans('S', 'Shop.Demo.Catalog');
trans('M', 'Shop.Demo.Catalog');
trans('L', 'Shop.Demo.Catalog');
trans('One size', 'Shop.Demo.Catalog');
trans('Grey', 'Shop.Demo.Catalog');
trans('Taupe', 'Shop.Demo.Catalog');
trans('Beige', 'Shop.Demo.Catalog');
trans('White', 'Shop.Demo.Catalog');
trans('Off White', 'Shop.Demo.Catalog');
trans('Red', 'Shop.Demo.Catalog');
trans('Black', 'Shop.Demo.Catalog');
trans('Camel', 'Shop.Demo.Catalog');
trans('Orange', 'Shop.Demo.Catalog');
trans('Blue', 'Shop.Demo.Catalog');
trans('Green', 'Shop.Demo.Catalog');
trans('Yellow', 'Shop.Demo.Catalog');
trans('Brown', 'Shop.Demo.Catalog');
trans('35', 'Shop.Demo.Catalog');
trans('36', 'Shop.Demo.Catalog');
trans('37', 'Shop.Demo.Catalog');
trans('38', 'Shop.Demo.Catalog');
trans('39', 'Shop.Demo.Catalog');
trans('40', 'Shop.Demo.Catalog');
trans('Pink', 'Shop.Demo.Catalog');

View File

@@ -0,0 +1,27 @@
<?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
*/
trans('Pick up in-store', 'Admin.Shipping.Feature');
trans('Delivery next day!', 'Admin.Shipping.Feature');

View File

@@ -0,0 +1,27 @@
<?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
*/
trans('Root', 'Admin.Catalog.Feature');
trans('Home', 'Admin.Catalog.Feature');

View File

@@ -0,0 +1,26 @@
<?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
*/
trans('Home', 'Admin.Catalog.Feature');

View File

@@ -0,0 +1,68 @@
<?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
*/
trans(
'Dear Customer,
Regards,
Customer service',
'Admin.Shopparameters.Feature'
);
trans(
'We are currently updating our shop and will be back really soon.
Thanks for your patience.',
'Admin.Shopparameters.Feature'
);
// PS_INVOICE_PREFIX on configuration_lang table
trans('#IN', 'Admin.Shopparameters.Feature');
// PS_DELIVERY_PREFIX on configuration_lang table
trans('#DE', 'Admin.Shopparameters.Feature');
// PS_RETURN_PREFIX on configuration_lang table
trans('#RE', 'Admin.Shopparameters.Feature');
// PS_RETURN_PREFIX on configuration_lang table - No translate word per word but adapting for your language
trans(
'a|about|above|after|again|against|all|am|an|and|any|are|aren|as|at|be|because|been|before|being|below|between|both|but|by|can|cannot|could|couldn|did|didn|do|does|doesn|doing|don|down|during|each|few|for|from|further|had|hadn|has|hasn|have|haven|having|he|ll|her|here|hers|herself|him|himself|his|how|ve|if|in|into|is|isn|it|its|itself|let|me|more|most|mustn|my|myself|no|nor|not|of|off|on|once|only|or|other|ought|our|ours|ourselves|out|over|own|same|shan|she|should|shouldn|so|some|such|than|that|the|their|theirs|them|themselves|then|there|these|they|re|this|those|through|to|too|under|until|up|very|was|wasn|we|were|weren|what|when|where|which|while|who|whom|why|with|won|would|wouldn|you|your|yours|yourself|yourselves',
'Admin.Shopparameters.Feature'
);
// NW_CONDITIONS on configuration_lang table - From ps_emailsubscription module
trans(
'You may unsubscribe at any moment. For that purpose, please find our contact info in the legal notice.',
'Admin.Shopparameters.Feature'
);
// PS_LABEL_IN_STOCK_PRODUCTS on configuration_lang table
trans('In Stock', 'Admin.Shopparameters.Feature');
// PS_LABEL_OOS_PRODUCTS_BOA on configuration_lang table
trans('Product available for orders', 'Admin.Shopparameters.Feature');
// PS_LABEL_OOS_PRODUCTS_BOD on configuration_lang table
trans('Out-of-Stock', 'Admin.Shopparameters.Feature');

View File

@@ -0,0 +1,30 @@
<?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
*/
trans('Webmaster', 'Admin.Shopparameters.Feature');
trans('Customer service', 'Admin.Shopparameters.Feature');
trans('If a technical problem occurs on this website', 'Admin.Shopparameters.Feature');
trans('For any question about a product, an order', 'Admin.Shopparameters.Feature');

View File

@@ -0,0 +1,32 @@
<?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
*/
trans('Height', 'Shop.Demo.Catalog');
trans('Width', 'Shop.Demo.Catalog');
trans('Depth', 'Shop.Demo.Catalog');
trans('Weight', 'Shop.Demo.Catalog');
trans('Compositions', 'Shop.Demo.Catalog');
trans('Styles', 'Shop.Demo.Catalog');
trans('Properties', 'Shop.Demo.Catalog');

View File

@@ -0,0 +1,90 @@
<?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
*/
trans('Polyester', 'Shop.Demo.Catalog');
trans('Wool', 'Shop.Demo.Catalog');
trans('Viscose', 'Shop.Demo.Catalog');
trans('Elastane', 'Shop.Demo.Catalog');
trans('Cotton', 'Shop.Demo.Catalog');
trans('Silk', 'Shop.Demo.Catalog');
trans('Suede', 'Shop.Demo.Catalog');
trans('Straw', 'Shop.Demo.Catalog');
trans('Leather', 'Shop.Demo.Catalog');
trans('Classic', 'Shop.Demo.Catalog');
trans('Casual', 'Shop.Demo.Catalog');
trans('Military', 'Shop.Demo.Catalog');
trans('Girly', 'Shop.Demo.Catalog');
trans('Rock', 'Shop.Demo.Catalog');
trans('Basic', 'Shop.Demo.Catalog');
trans('Dressy', 'Shop.Demo.Catalog');
trans('Short Sleeve', 'Shop.Demo.Catalog');
trans('Colorful Dress', 'Shop.Demo.Catalog');
trans('Short Dress', 'Shop.Demo.Catalog');
trans('Midi Dress', 'Shop.Demo.Catalog');
trans('Maxi Dress', 'Shop.Demo.Catalog');
trans('2.75 in', 'Shop.Demo.Catalog');
trans('2.06 in', 'Shop.Demo.Catalog');
trans('49.2 g', 'Shop.Demo.Catalog');
trans('0.26 in', 'Shop.Demo.Catalog');
trans('1.07 in', 'Shop.Demo.Catalog');
trans('1.62 in', 'Shop.Demo.Catalog');
trans('15.5 g', 'Shop.Demo.Catalog');
trans('0.41 in (clip included)', 'Shop.Demo.Catalog');
trans('4.33 in', 'Shop.Demo.Catalog');
trans('2.76 in', 'Shop.Demo.Catalog');
trans('120g', 'Shop.Demo.Catalog');
trans('0.31 in', 'Shop.Demo.Catalog');

View File

@@ -0,0 +1,27 @@
<?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
*/
trans('Mr.', 'Admin.Shopparameters.Feature');
trans('Mrs.', 'Admin.Shopparameters.Feature');

View File

@@ -0,0 +1,28 @@
<?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
*/
trans('Visitor', 'Admin.Shopparameters.Feature');
trans('Guest', 'Admin.Shopparameters.Feature');
trans('Customer', 'Admin.Shopparameters.Feature');

View File

@@ -0,0 +1,92 @@
<?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
*/
trans('404 error', 'Shop.Navigation');
trans('Best sales', 'Shop.Navigation');
trans('Contact us', 'Shop.Navigation');
trans('Manufacturers', 'Shop.Navigation');
trans('New products', 'Shop.Navigation');
trans('Forgot your password', 'Shop.Navigation');
trans('Prices drop', 'Shop.Navigation');
trans('Sitemap', 'Shop.Navigation');
trans('Suppliers', 'Shop.Navigation');
trans('Address', 'Shop.Navigation');
trans('Addresses', 'Shop.Navigation');
trans('Login', 'Shop.Navigation');
trans('Cart', 'Shop.Navigation');
trans('Discount', 'Shop.Navigation');
trans('Order history', 'Shop.Navigation');
trans('Identity', 'Shop.Navigation');
trans('My account', 'Shop.Navigation');
trans('Order follow', 'Shop.Navigation');
trans('Credit slip', 'Shop.Navigation');
trans('Order', 'Shop.Navigation');
trans('Search', 'Shop.Navigation');
trans('Stores', 'Shop.Navigation');
trans('Guest tracking', 'Shop.Navigation');
trans('Order confirmation', 'Shop.Navigation');
trans('This page cannot be found', 'Shop.Navigation');
trans('Our best sales', 'Shop.Navigation');
trans('Use our form to contact us', 'Shop.Navigation');
trans('Shop powered by PrestaShop', 'Shop.Navigation');
trans('Brand list', 'Shop.Navigation');
trans('Our new products', 'Shop.Navigation');
trans('Enter the e-mail address you use to sign in to receive an e-mail with a new password', 'Shop.Navigation');
trans('On-sale products', 'Shop.Navigation');
trans('Lost ? Find what your are looking for', 'Shop.Navigation');
trans('Suppliers list', 'Shop.Navigation');
trans('page-not-found', 'Shop.Navigation');
trans('best-sales', 'Shop.Navigation');
trans('contact-us', 'Shop.Navigation');
trans('manufacturers', 'Shop.Navigation');
trans('new-products', 'Shop.Navigation');
trans('password-recovery', 'Shop.Navigation');
trans('prices-drop', 'Shop.Navigation');
trans('sitemap', 'Shop.Navigation');
trans('supplier', 'Shop.Navigation');
trans('address', 'Shop.Navigation');
trans('addresses', 'Shop.Navigation');
trans('login', 'Shop.Navigation');
trans('cart', 'Shop.Navigation');
trans('discount', 'Shop.Navigation');
trans('order-history', 'Shop.Navigation');
trans('identity', 'Shop.Navigation');
trans('my-account', 'Shop.Navigation');
trans('order-follow', 'Shop.Navigation');
trans('credit-slip', 'Shop.Navigation');
trans('order', 'Shop.Navigation');
trans('search', 'Shop.Navigation');
trans('stores', 'Shop.Navigation');
trans('guest-tracking', 'Shop.Navigation');
trans('order-confirmation', 'Shop.Navigation');

View File

@@ -0,0 +1,30 @@
<?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
*/
trans('Delay', 'Admin.Orderscustomers.Feature');
trans(
"Hi,\n\nUnfortunately, an item on your order is currently out of stock. This may cause a slight delay in delivery.\nPlease accept our apologies and rest assured that we are working hard to rectify this.\n\nBest regards,",
'Admin.Orderscustomers.Feature'
);

View File

@@ -0,0 +1,30 @@
<?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
*/
trans('Waiting for confirmation', 'Admin.Orderscustomers.Feature');
trans('Waiting for package', 'Admin.Orderscustomers.Feature');
trans('Package received', 'Admin.Orderscustomers.Feature');
trans('Return denied', 'Admin.Orderscustomers.Feature');
trans('Return completed', 'Admin.Orderscustomers.Feature');

View File

@@ -0,0 +1,50 @@
<?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
*/
trans('Awaiting check payment', 'Admin.Orderscustomers.Feature');
trans('Payment accepted', 'Admin.Orderscustomers.Feature');
trans('Processing in progress', 'Admin.Orderscustomers.Feature');
trans('Shipped', 'Admin.Orderscustomers.Feature');
trans('Delivered', 'Admin.Orderscustomers.Feature');
trans('Canceled', 'Admin.Orderscustomers.Feature');
trans('Refunded', 'Admin.Orderscustomers.Feature');
trans('Payment error', 'Admin.Orderscustomers.Feature');
trans('On backorder (paid)', 'Admin.Orderscustomers.Feature');
trans('On backorder (not paid)', 'Admin.Orderscustomers.Feature');
trans('Awaiting bank wire payment', 'Admin.Orderscustomers.Feature');
trans('Remote payment accepted', 'Admin.Orderscustomers.Feature');
trans('Awaiting Cash On Delivery validation', 'Admin.Orderscustomers.Feature');

View File

@@ -0,0 +1,29 @@
<?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
*/
trans('SuperAdmin', 'Admin.Advparameters.Feature');
trans('Logistician', 'Admin.Advparameters.Feature');
trans('Translator', 'Admin.Advparameters.Feature');
trans('Salesman', 'Admin.Advparameters.Feature');

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
*/
trans('Home', 'Admin.Navigation.Header');
trans('My Shop', 'Admin.Navigation.Header');
trans('New category', 'Admin.Navigation.Header');
trans('New product', 'Admin.Navigation.Header');
trans('New voucher', 'Admin.Navigation.Header');
trans('Orders', 'Admin.Navigation.Header');
trans('Installed modules', 'Admin.Navigation.Header');
trans('Catalog evaluation', 'Admin.Navigation.Header');

View File

@@ -0,0 +1,29 @@
<?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
*/
trans('None', 'Admin.Orderscustomers.Feature');
trans('Low', 'Admin.Orderscustomers.Feature');
trans('Medium', 'Admin.Orderscustomers.Feature');
trans('High', 'Admin.Orderscustomers.Feature');

View File

@@ -0,0 +1,42 @@
<?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
*/
trans('Increase', 'Admin.Catalog.Feature');
trans('Decrease', 'Admin.Catalog.Feature');
trans('Customer Order', 'Admin.Catalog.Feature');
trans('Adjustment following an inventory of stock', 'Admin.Catalog.Feature');
trans('Transfer to another warehouse', 'Admin.Catalog.Feature');
trans('Transfer from another warehouse', 'Admin.Catalog.Feature');
trans('Supply Order', 'Admin.Catalog.Feature');
trans('Product Return', 'Admin.Catalog.Feature');
trans('Manual Entry', 'Admin.Catalog.Feature');

View File

@@ -0,0 +1,36 @@
<?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
*/
trans('1 - Creation in progress', 'Admin.Orderscustomers.Feature');
trans('2 - Order validated', 'Admin.Orderscustomers.Feature');
trans('3 - Pending receipt', 'Admin.Orderscustomers.Feature');
trans('4 - Order received in part', 'Admin.Orderscustomers.Feature');
trans('5 - Order received completely', 'Admin.Orderscustomers.Feature');
trans('6 - Order canceled', 'Admin.Orderscustomers.Feature');

View File

@@ -0,0 +1,140 @@
<?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
*/
trans('Sell', 'Admin.Navigation.Menu');
trans('Improve', 'Admin.Navigation.Menu');
trans('Configure', 'Admin.Navigation.Menu');
trans('More', 'Admin.Navigation.Menu');
trans('Addresses', 'Admin.Navigation.Menu');
trans('Administration', 'Admin.Navigation.Menu');
trans('Modules & Services', 'Admin.Navigation.Menu');
trans('Advanced Parameters', 'Admin.Navigation.Menu');
trans('Files', 'Admin.Navigation.Menu');
trans('Attributes & Features', 'Admin.Navigation.Menu');
trans('Attributes', 'Admin.Navigation.Menu');
trans('Carriers', 'Admin.Navigation.Menu');
trans('Carrier', 'Admin.Navigation.Menu');
trans('Cart Rules', 'Admin.Navigation.Menu');
trans('Catalog Price Rules', 'Admin.Navigation.Menu');
trans('Module Catalog', 'Admin.Navigation.Menu');
trans('Categories', 'Admin.Navigation.Menu');
trans('Page Categories', 'Admin.Navigation.Menu');
trans('Pages', 'Admin.Navigation.Menu');
trans('Combinations Generator', 'Admin.Navigation.Menu');
trans('Configuration', 'Admin.Navigation.Menu');
trans('Contact', 'Admin.Navigation.Menu');
trans('Contacts', 'Admin.Navigation.Menu');
trans('Countries', 'Admin.Navigation.Menu');
trans('Credit Slips', 'Admin.Navigation.Menu');
trans('Import', 'Admin.Navigation.Menu');
trans('Currencies', 'Admin.Navigation.Menu');
trans('Customer Service', 'Admin.Navigation.Menu');
trans('Customer Settings', 'Admin.Navigation.Menu');
trans('Customers', 'Admin.Navigation.Menu');
trans('Dashboard', 'Admin.Navigation.Menu');
trans('Database', 'Admin.Navigation.Menu');
trans('DB Backup', 'Admin.Navigation.Menu');
trans('Delivery Slips', 'Admin.Navigation.Menu');
trans('E-mail', 'Admin.Navigation.Menu');
trans('Employees', 'Admin.Navigation.Menu');
trans('Team', 'Admin.Navigation.Menu');
trans('Features', 'Admin.Navigation.Menu');
trans('General', 'Admin.Navigation.Menu');
trans('Geolocation', 'Admin.Navigation.Menu');
trans('Groups', 'Admin.Navigation.Menu');
trans('Image Settings', 'Admin.Navigation.Menu');
trans('Images', 'Admin.Navigation.Menu');
trans('Information', 'Admin.Navigation.Menu');
trans('Instant Stock Status', 'Admin.Navigation.Menu');
trans('International', 'Admin.Navigation.Menu');
trans('Invoices', 'Admin.Navigation.Menu');
trans('Languages', 'Admin.Navigation.Menu');
trans('Localization', 'Admin.Navigation.Menu');
trans('Locations', 'Admin.Navigation.Menu');
trans('Login', 'Admin.Navigation.Menu');
trans('Logs', 'Admin.Navigation.Menu');
trans('Design', 'Admin.Navigation.Menu');
trans('Maintenance', 'Admin.Navigation.Menu');
trans('Brands & Suppliers', 'Admin.Navigation.Menu');
trans('Brands', 'Admin.Navigation.Menu');
trans('Marketing', 'Admin.Navigation.Menu');
trans('Menus', 'Admin.Navigation.Menu');
trans('Merchandise Returns', 'Admin.Navigation.Menu');
trans('Modules', 'Admin.Navigation.Menu');
trans('Monitoring', 'Admin.Navigation.Menu');
trans('Multistore', 'Admin.Navigation.Menu');
trans('Order Messages', 'Admin.Navigation.Menu');
trans('Order Settings', 'Admin.Navigation.Menu');
trans('Orders', 'Admin.Navigation.Menu');
trans('Outstanding', 'Admin.Navigation.Menu');
trans('Payment Methods', 'Admin.Navigation.Menu');
trans('Preferences', 'Admin.Navigation.Menu');
trans('Payment', 'Admin.Navigation.Menu');
trans('Performance', 'Admin.Navigation.Menu');
trans('Permissions', 'Admin.Navigation.Menu');
trans('Positions', 'Admin.Navigation.Menu');
trans('Discounts', 'Admin.Navigation.Menu');
trans('Product Settings', 'Admin.Navigation.Menu');
trans('Products', 'Admin.Navigation.Menu');
trans('Profiles', 'Admin.Navigation.Menu');
trans('Quick Access', 'Admin.Navigation.Menu');
trans('Referrers', 'Admin.Navigation.Menu');
trans('Search', 'Admin.Navigation.Menu');
trans('Search Engines', 'Admin.Navigation.Menu');
trans('SEO & URLs', 'Admin.Navigation.Menu');
trans('Shipping', 'Admin.Navigation.Menu');
trans('Shop Parameters', 'Admin.Navigation.Menu');
trans('Shop URLs', 'Admin.Navigation.Menu');
trans('Shopping Carts', 'Admin.Navigation.Menu');
trans('Shops', 'Admin.Navigation.Menu');
trans('SQL Manager', 'Admin.Navigation.Menu');
trans('States', 'Admin.Navigation.Menu');
trans('Stats', 'Admin.Navigation.Menu');
trans('Statuses', 'Admin.Navigation.Menu');
trans('Stock Coverage', 'Admin.Navigation.Menu');
trans('Stock Management', 'Admin.Navigation.Menu');
trans('Stock Movement', 'Admin.Navigation.Menu');
trans('Stock', 'Admin.Navigation.Menu');
trans('Stores', 'Admin.Navigation.Menu');
trans('Suppliers', 'Admin.Navigation.Menu');
trans('Supply orders', 'Admin.Navigation.Menu');
trans('Tags', 'Admin.Navigation.Menu');
trans('Taxes', 'Admin.Navigation.Menu');
trans('Tax Rules', 'Admin.Navigation.Menu');
trans('Theme Catalog', 'Admin.Navigation.Menu');
trans('Theme & Logo', 'Admin.Navigation.Menu');
trans('Titles', 'Admin.Navigation.Menu');
trans('Traffic & SEO', 'Admin.Navigation.Menu');
trans('Translations', 'Admin.Navigation.Menu');
trans('Warehouses', 'Admin.Navigation.Menu');
trans('Webservice', 'Admin.Navigation.Menu');
trans('Zones', 'Admin.Navigation.Menu');
trans('Modules Catalog', 'Admin.Navigation.Menu');
trans('Module manager', 'Admin.Navigation.Menu');
// subtab
trans('Modules', 'Admin.Navigation.Menu');
trans('Updates', 'Admin.Navigation.Menu');
trans('Alerts', 'Admin.Navigation.Menu');

View File

@@ -0,0 +1,37 @@
<?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
*/
trans('Full width', 'Admin.Design.Feature');
trans('Three columns', 'Admin.Design.Feature');
trans('Two columns, small left column', 'Admin.Design.Feature');
trans('Two columns, small right column', 'Admin.Design.Feature');
trans('No side columns, ideal for distraction-free pages such as product pages.', 'Admin.Design.Feature');
trans('One large central column and 2 side columns.', 'Admin.Design.Feature');
trans('Two columns with a small left column.', 'Admin.Design.Feature');
trans('Two columns with a small right column.', 'Admin.Design.Feature');

34
classes/lang/MetaLang.php Normal file
View File

@@ -0,0 +1,34 @@
<?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
*/
class MetaLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Shop.Navigation';
protected $keys = array('id_meta', 'id_shop');
protected $fieldsToUpdate = array('title', 'description', 'url_rewrite');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class OrderMessageLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Orderscustomers.Feature';
protected $keys = array('id_order_message');
protected $fieldsToUpdate = array('name', 'message');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class OrderReturnStateLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Orderscustomers.Feature';
protected $keys = array('id_order_return_state');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class OrderStateLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Orderscustomers.Feature';
protected $keys = array('id_order_state');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class ProfileLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Advparameters.Feature';
protected $keys = array('id_profile');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class QuickAccessLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Navigation.Header';
protected $keys = array('id_quick_access');
protected $fieldsToUpdate = array('name');
}

34
classes/lang/RiskLang.php Normal file
View File

@@ -0,0 +1,34 @@
<?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
*/
class RiskLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Orderscustomers.Feature';
protected $keys = array('id_risk');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class StockMvtReasonLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Catalog.Feature';
protected $keys = array('id_stock_mvt_reason');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class SupplyOrderStateLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Orderscustomers.Feature';
protected $keys = array('id_supply_order_state');
protected $fieldsToUpdate = array('name');
}

34
classes/lang/TabLang.php Normal file
View File

@@ -0,0 +1,34 @@
<?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
*/
class TabLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Navigation.Menu';
protected $keys = array('id_tab');
protected $fieldsToUpdate = array('name');
}

View File

@@ -0,0 +1,34 @@
<?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
*/
class ThemeLangCore extends DataLangCore
{
// Don't replace domain in init() with $this->domain for translation parsing
protected $domain = 'Admin.Design.Feature';
protected $keys = array();
protected $fieldsToUpdate = array('name', 'description');
}