Merge pull request #209 from wassy123/master

Added Czech language pack
This commit is contained in:
Justin Kimbrell 2016-03-31 18:33:17 -04:00
commit bec06f4f97

View File

@ -0,0 +1,27 @@
(function($) {
/**
* FlipClock Czech Language Pack
*
* This class will used to translate tokens into the Czech language.
*
*/
FlipClock.Lang.Czech = {
'years' : 'Roky',
'months' : 'Měsíce',
'days' : 'Dny',
'hours' : 'Hodiny',
'minutes' : 'Minuty',
'seconds' : 'Sekundy'
};
/* Create various aliases for convenience */
FlipClock.Lang['cs'] = FlipClock.Lang.Czech;
FlipClock.Lang['cs-cz'] = FlipClock.Lang.Czech;
FlipClock.Lang['czech'] = FlipClock.Lang.Czech;
}(jQuery));