/* * jsCalendar language extension * Add German Language support * Translator: Grammatopoulos Athanasios-Vasileios (gramthanos@github) */ // We love anonymous functions (function(){ // Get library var jsCalendar = window.jsCalendar; // If jsCalendar is not loaded if (typeof jsCalendar === 'undefined') { // If there is no language to load array if (typeof window.jsCalendar_language2load === 'undefined') { window.jsCalendar_language2load = []; } // Wrapper to add language to load list jsCalendar = { addLanguage : function (language) { // Add language to load list window.jsCalendar_language2load.push(language); } }; } // Add a new language jsCalendar.addLanguage({ // Language code code : 'de', // Months of the year months : [ 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember' ], // Days of the week days : [ 'Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag' ] }); })();