laker007 / ionic3-calendar

Ionic Calendar Component
23 stars 24 forks source link

sir,how to configure it to display in Chinese? #15

Open tanxingli opened 6 years ago

tanxingli commented 6 years ago

Hello, how to configure it to display in Chinese?

kanoyami commented 6 years ago

Hello, how to configure it to display in Chinese?

修改calendar.js文件 增加如下


        console.info(this.lang);
        if (!this.lang) {
            this.lang = 'en';
        }
        if (this.lang === 'es') {
            this.weekHead = ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'];
        }
        if (this.lang === 'zh-cn'){
            this.weekHead = ['日','一','二','三','四','五','六']
        }
    };```