What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi, I need to delete all locales and leave just "si". The problem is we have locales in _config/Shar

U02U5UPHUC8
U02U5UPHUC8 Posts: 13 🧑🏻‍🚀 - Cadet

Hi, I need to delete all locales and leave just "si".
The problem is we have locales in config/Shared/stores.php. If i delete the 'en' locale the backoffice breaks with error that he can't find locale en. What else do I have to change that this works? But yves works fine with just one locale.

'locales' => [
    // first entry is default
    'si' => 'sl_SI',
    'en' => 'en_US',
],

Comments

  • U01BZ7Q3XRV
    U01BZ7Q3XRV Posts: 148 🧑🏻‍🚀 - Cadet

    @U02U5UPHUC8 see my thread above, it's actually nearly(or completely?) the same issue? To solve your current issue, you have to go into the spy_user table and change fk_locale to a locale that is allowed in the store config. Otherwise the exception will be thrown (because the method \Spryker\Shared\Kernel\Store::setCurrentLocale checks against the configured store locales and then throws an Exception)

  • U02U5UPHUC8
    U02U5UPHUC8 Posts: 13 🧑🏻‍🚀 - Cadet

    @U01BZ7Q3XRV Thank you I try this approach