Index: unix_installer/upgrader-package/sql-scripts/updateLocales.sql =================================================================== RCS file: /usr/local/cvsroot/unix_installer/upgrader-package/sql-scripts/updateLocales.sql,v diff -u -r1.2 -r1.3 --- unix_installer/upgrader-package/sql-scripts/updateLocales.sql 16 Jun 2008 00:13:43 -0000 1.2 +++ unix_installer/upgrader-package/sql-scripts/updateLocales.sql 1 Dec 2008 02:56:04 -0000 1.3 @@ -14,15 +14,14 @@ -- the combined column must be 'language_iso_code,country_iso_code' or 'language_iso_code'. It must match the value -- given by SELECT CONCAT_WS(',',l.language_iso_code,l.country_iso_code) FROM lams_supported_locale l -INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined, fckeditor_code) VALUES ('ja','JP','日本語','LTR','ja,JP', 'ja'); -INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined, fckeditor_code) VALUES ('ms', 'MY','Malay (Malaysia)','LTR','ms,MY', 'ms'); +--INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined, fckeditor_code) VALUES ('ja','JP','日本語','LTR','ja,JP', 'ja'); +--INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined, fckeditor_code) VALUES ('ms', 'MY','Malay (Malaysia)','LTR','ms,MY', 'ms'); +INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined, fckeditor_code) VALUES ('tr', 'TR','Türkçe','LTR','tr,TR', 'tr'); + INSERT INTO lams_supported_locale (language_iso_code, country_iso_code, description, direction, fckeditor_code) (SELECT t.language_iso_code, t.country_iso_code, t.description, t.direction, t.fckeditor_code FROM locale_temp t WHERE t.combined NOT IN (SELECT CONCAT_WS(',',l.language_iso_code,l.country_iso_code) FROM lams_supported_locale l)); drop table if exists locale_temp; --- Fixing Japanese language string. See LDEV-1702 --- description description may be set to "Japanese (Japan)" -UPDATE lams_supported_locale SET description='日本語' WHERE language_iso_code='ja' AND country_iso_code='JP'; \ No newline at end of file