Index: win_installer/src/updatelocales.sql =================================================================== diff -u -r60162ad701b6a67a3170222600487e8bb6f22797 -r6155d75a8c87e359274b73b2856cc2edb8e11dc5 --- win_installer/src/updatelocales.sql (.../updatelocales.sql) (revision 60162ad701b6a67a3170222600487e8bb6f22797) +++ win_installer/src/updatelocales.sql (.../updatelocales.sql) (revision 6155d75a8c87e359274b73b2856cc2edb8e11dc5) @@ -1,7 +1,9 @@ -DROP PROCEDURE IF EXISTS updateLocales -create procedure updateLocales -begin - /*Currently supported languages +DELIMITER $$ + +DROP PROCEDURE IF EXISTS updateLocales $$ +CREATE PROCEDURE updateLocales () +BEGIN + /*Currently supported languages * To enter a new one, simply enter: * insertLocale(language_iso_code, country_iso_code, description, direction) * at the bottom of the code @@ -11,8 +13,9 @@ call insertLocale('mi', 'NZ', 'MÄ?ori', 'LTR'); call insertLocale('de','DE','Deutsch','LTR'); call insertLocale('zh', 'CN', '简体中文', 'LTR'); + call insertLocale('fr', 'FR', 'Français', 'LTR'); - call insertLocale('it', 'IT', 'Italiano', 'LTR') + call insertLocale('it', 'IT', 'Italiano', 'LTR'); call insertLocale('no', 'NO', 'Norsk', 'LTR'); call insertLocale('sv', 'SE', 'Svenska', 'LTR'); call insertLocale('ko', 'KR', '한국어', 'LTR'); @@ -28,5 +31,8 @@ call insertLocale('ru', 'RU', 'РуÑ?Ñ?кий', 'LTR'); call insertLocale('vi', 'VN', 'Tiếng Việt', 'LTR'); call insertLocale('zh', 'TW', 'Chinese (Taiwan)', 'LTR'); - commit -end \ No newline at end of file + commit; + +END $$ + +DELIMITER ; \ No newline at end of file