* @copyright 2007-2017 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class LinkBlockLang extends DataLangCore { // Don't replace domain in init() with $this->domain for translation parsing protected $domain = 'Modules.Linklist.Shop'; protected $keys = array('id_link_block'); protected $fieldsToUpdate = array('name'); protected function init() { $this->fieldNames = array( 'name' => array( md5('Products') => $this->translator->trans('Products', array(), 'Modules.Linklist.Shop', $this->locale), md5('Our company') => $this->translator->trans('Our company', array(), 'Modules.Linklist.Shop', $this->locale), ), ); } }