mike braa
mike braa

Reputation: 637

django-summernote setting configuration failing only language part

summernote and inside setting, I want to change language setting that I followed the documentation. According to the documentation, I just need to do:

SUMMERNOTE_CONFIG = {
    # Or, set editor language/locale forcely
    'lang': 'ko-KR',
}

I tried other settings and they work fine, but only language one isn't working. Is this because I already am using locale for other app? Or am I configuring it wrong?

Upvotes: 1

Views: 341

Answers (1)

mike braa
mike braa

Reputation: 637

I figured this out by removing lang:None, you must be putting this in summer note config somewhere

Upvotes: 2

Related Questions