I disabled Multilingual support for a content type, "new posts are saved with the default language. Existing content will not be affected by changing this option".

But if I want existing content be affect??

I have made a mistake by enable multilingual support for thaht content type. I made 1000 nodes in "french translation", and I don"t reallly need this. I don't translate the body...
I don't want edit more than 1000 nodes in order to put back the defaut language...

I think I have to use tables but I really don't know how to do that.

An ideas?

Thanks :)

Comments

jose reyero’s picture

Status: Active » Fixed

This should be an easy db update:

UPDATE node SET language = '' WHERE type = 'yourcontenttype';
junro’s picture

Status: Fixed » Active

My french language is gone, it's a godd point, but I think language neutral is not set up.

UPDATE node SET language = 'Language neutral' WHERE type = 'yourcontenttype';

in /admin/content/node, the language column is empty, instead of having "Language neutral", normal?

junro’s picture

Language neutral is not set up

I tried:


UPDATE node SET language = 'Language neutral' WHERE type = 'yourcontenttype';
UPDATE node SET language = 'neutral' WHERE type = 'yourcontenttype';
UPDATE node SET language = 'language neutral' WHERE type = 'yourcontenttype';

junro’s picture

Status: Active » Fixed

ok, fixed.

I don't have to put Language neutral in UPDATE node SET language = ''

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.