Index: win_installer/src/language-pack.nsi =================================================================== diff -u -ra3a5886277ace29f0031e83ebfabc001ad5c44ee -r02b483b6d63fa339986f430c759387a02abdf354 --- win_installer/src/language-pack.nsi (.../language-pack.nsi) (revision a3a5886277ace29f0031e83ebfabc001ad5c44ee) +++ win_installer/src/language-pack.nsi (.../language-pack.nsi) (revision 02b483b6d63fa339986f430c759387a02abdf354) @@ -30,7 +30,7 @@ # constants -!define VERSION "2006-12-22" ; DATE of language pack in fromat YYYYMMDD +!define VERSION "2007-02-09" ; DATE of language pack in fromat YYYYMMDD !define SOURCE_JBOSS_HOME "D:\jboss-4.0.2" ; location of jboss where lams is deployed !define REG_HEAD "Software\LAMS Foundation\LAMSv2" Index: win_installer/src/updateLocales.sql =================================================================== diff -u -r33aa6fece7d43f29008417ea208556b226f2a988 -r02b483b6d63fa339986f430c759387a02abdf354 --- win_installer/src/updateLocales.sql (.../updateLocales.sql) (revision 33aa6fece7d43f29008417ea208556b226f2a988) +++ win_installer/src/updateLocales.sql (.../updateLocales.sql) (revision 02b483b6d63fa339986f430c759387a02abdf354) @@ -16,7 +16,7 @@ -- 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) VALUES ('en','AU','English (Australia)','LTR','en,AU'); INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('es','ES','Español','LTR','es,ES'); ---INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('mi','NZ','Māori','LTR','mi,NZ'); +INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('mi','NZ','Māori','LTR','mi,NZ'); INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('de','DE','Deutsch','LTR','de,DE'); INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('zh','CN','简体中文','LTR','zh,CN'); INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('fr','FR','Français','LTR','fr,FR'); @@ -28,7 +28,7 @@ INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('pt','BR','Português (Brasil)','LTR','pt,BR'); --INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('hu','HU','Magyar','LTR','hu,HU'); --INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('bg','BG','Български','LTR','bg,BG'); ---INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('cy','GB','Cymraeg (Cymru)','LTR','cy,GB'); +INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('cy','GB','Cymraeg (Cymru)','LTR','cy,GB'); --INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('th','TH','Thai','LTR','th,TH'); INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('el','GR','Ελληνικά','LTR','el,GR'); --INSERT INTO locale_temp (language_iso_code, country_iso_code, description, direction, combined) VALUES ('nl','BE','Nederlands (België)','LTR','nl,BE'); @@ -43,6 +43,6 @@ 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)); -UPDATE lams_configuration set config_value='2006-12-22' WHERE config_key='DictionaryDateCreated'; +UPDATE lams_configuration set config_value='2007-02-09' WHERE config_key='DictionaryDateCreated'; drop table if exists locale_temp;