Language Support
The script currently supports 20+ languages, most of which have been submitted by users.
To add a new language, the file ../calendarWizard/source-files/language.js needs to be modified in two places. Towards the top is a list of langageOptions. (Do a word search for "settings.languageOptions".) Add the english name for the new language into the list in alphabetical order.
settings.languageOptions = new Array( 'English', |
The second modification is made in the "selectLangauge" subroutine at the bottom of the script. To add another language copy and paste an else/if block and modify it as needed. The english name of the language in the firt part modification to match the name of the langage in the second modification.
... else if( settings.languageOptions[ selector.Language.selectedIndex ] == "French" ) |
Once complete, email the modified script to the author and I'll include the language changes in the released version.