mugifly / jquery-simple-datetimepicker

Date & time picker for jQuery, It's simple & clean.
http://mugifly.github.com/jquery-simple-datetimepicker
Other
260 stars 182 forks source link

Non-existing locale error #190

Open CurlyBraceTT opened 7 years ago

CurlyBraceTT commented 7 years ago

When setting non-exising locale (I set up 'idontexist') picker is not working. I understand, that it could be desireble behavior, but I don't have any ways to check if picker has a locale translate for my language. Tuned translate function a little:

var translate = function(locale, s) {
    if (typeof lang[locale] !== "undefined" && typeof lang[locale][s] !== "undefined"){
        return lang[locale][s];
    }
    return lang.en[s];
};