VincentLoy / simplyCountdown.js

Tiny javascript CountDown library.
http://vincentloy.github.io/simplyCountdown.js
MIT License
132 stars 53 forks source link

Change language #9

Closed gacor84 closed 6 years ago

gacor84 commented 6 years ago

Hi!

Is it possible to change the words displayed on the countdown so one could change the language? Thank you!

VincentLoy commented 6 years ago

Hello @gacor84 ! You can change the language by editing the words parameter that is a Javascript Object.

Taken from the readme example:

words: { //words displayed into the countdown
    days: 'day',
    hours: 'hour',
    minutes: 'minute',
    seconds: 'second',
    pluralLetter: 's'
},

Hope that'll help :+1: