موقع نصب وقتی کشور ایران را انتخاب میکردم نصب کامل نمیشد برای همین آمریکا را انتخاب کردم حالا که میخوام بومی سازی کنم این ارور را میده [PrestaShopException]Property State->name length (34) must be between 0 and 32 at line 909 in file classes/ObjectModel.php 904. } 905. 906. $message = $this->validateField($field, $this->$field); 907. if ($message !== true) { 908. if ($die) { 909. throw new PrestaShopException($message); 910. } 911. return $error_return ? $message : false; 912. } 913. } 914.ObjectModelCore->validateFields - [line 140 - classes/LocalizationPack.php]135. $id_zone = $zone->id; 136. } 137. 138. $state->id_zone = $id_zone; 139. 140. if (!$state->validateFields()) { 141. $this->_errors[] = Tools::displayError('Invalid state properties.'); 142. return false; 143. } 144. 145. $country = new Country($state->id_country);LocalizationPackCore->_installStates - [line 97 - classes/LocalizationPack.php] - [1 Arguments]92. Currency::refreshCurrencies(); 93. } 94. } else { 95. foreach ($selection as $selected) { 96. // No need to specify the install_mode because if the selection mode is used, then it's not the install 97. $res &= Validate::isLocalizationPackSelection($selected) ? $this->{'_install'.$selected}($xml) : false; 98. } 99. } 100. 101. return $res; 102. }LocalizationPackCore->loadLocalisationPack - [line 203 - controllers/admin/AdminLocalizationController.php] - [4 Arguments]198. $this->errors[] = Tools::displayError('Invalid selection'); 199. return; 200. } 201. } 202. $localization_pack = new LocalizationPack(); 203. if (!$localization_pack->loadLocalisationPack($pack, $selection, false, $iso_localization_pack)) { 204. $this->errors = array_merge($this->errors, $localization_pack->getErrors()); 205. } else { 206. Tools::redirectAdmin(self::$currentIndex.'&conf=23&token='.$this->token); 207. } 208. }AdminLocalizationControllerCore->postProcess - [line 178 - classes/controller/Controller.php]173. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 174. $this->setMedia(); 175. } 176. 177. // postProcess handles ajaxProcess 178. $this->postProcess(); 179. 180. if (!empty($this->redirect_after)) { 181. $this->redirect(); 182. } 183.ControllerCore->run - [line 367 - classes/Dispatcher.php]362. if (isset($params_hook_action_dispatcher)) { 363. Hook::exec('actionDispatcher', $params_hook_action_dispatcher); 364. } 365. 366. // Running controller 367. $controller->run(); 368. } catch (PrestaShopException $e) { 369. $e->displayMessage(); 370. } 371. } 372.DispatcherCore->dispatch - [line 58 - admin/index.php]53. if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) { 54. $_REQUEST['controller'] = strtolower($_REQUEST['tab']); 55. } 56. 57. // Prepare and trigger admin dispatcher 58. Dispatcher::getInstance()->dispatch();