Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

White screen (issue with locales) after upgrading Strapi version with CKEditor plugin #76

Open
DaDlugosch opened this issue Sep 14, 2023 · 0 comments

Comments

@DaDlugosch
Copy link

Hello. I have an issue with my locale sk set up in app.js. I had to switch it off due to some issue with CKEditor plugin which caused white screen after adding my locale.

It was already mentioned here: strapi/strapi#15345 and here: VirtusLab-Open-Source/strapi-plugin-comments#206.

Is there a way to fix it, as now I have to have my UI in English only (I think these en, fr, tr languages works also out-of-the-box).

import Logo from './extensions/erb.svg'
import skLang from './extensions/translations/sk.js'
import enLang from './extensions/translations/en.js'

const config = {
  auth: {
    logo: Logo,
  },
  menu: {
    logo: Logo,
  },
  /* Locales must be temporarily switched off due to bug with CKEditor */
  // locales: ['sk'],
  translations: {
    sk: skLang,
    en: enLang,
  },
}

const bootstrap = (app) => {

}

export default {
  config,
  bootstrap,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant