Index: lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040009.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040009.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040009.sql 9 Mar 2012 22:04:45 -0000 1.1 @@ -0,0 +1,15 @@ +-- Turn off autocommit, so nothing is committed if there is an error +SET AUTOCOMMIT = 0; + +-- Slovenian and Spanish MX where introduced in LAMS 2.3.5 +-- LDEV-2830 Enabling Slovenian, Spanish (Mexico), Czech and Indonesian +-- INSERT INTO lams_supported_locale (locale_id, language_iso_code, country_iso_code, description, direction, fckeditor_code) VALUES (28, 'sl', 'SI', 'Slovenščina', 'LTR', 'sl'); +-- INSERT INTO lams_supported_locale (locale_id, language_iso_code, country_iso_code, description, direction, fckeditor_code) VALUES (29, 'es', 'MX', 'Español (México)', 'LTR', 'es'); +INSERT INTO lams_supported_locale (locale_id, language_iso_code, country_iso_code, description, direction, fckeditor_code) +VALUES (30, 'cs', 'CZ', 'Čeština', 'LTR', 'cs'); +INSERT INTO lams_supported_locale (locale_id, language_iso_code, country_iso_code, description, direction, fckeditor_code) +VALUES (31, 'id', 'ID', 'Indonesian', 'LTR', 'en-au'); + +-- If there were no errors, commit and restore autocommit to on +COMMIT; +SET AUTOCOMMIT = 1;