Saturday 28 January 2006 12:51:41 pm
Here's what worked for me, mysql 4.1, also making sure that untranslated objects retain the correct 'real_translation'...
UPDATE `ezcontentobject_name`
SET `content_translation`='eng-CA'
WHERE `content_translation`='eng-GB';
UPDATE `ezcontentobject_name`
SET `real_translation`='eng-CA'
WHERE `real_translation`='eng-GB';
UPDATE `ezcontentobject_attribute`
SET `language_code`='eng-CA'
WHERE `language_code`='eng-GB';
Have fun!
http://carroll.org.uk
|