Merge pull request #362 from effel/patch-1

Added Polish language pack
This commit is contained in:
Justin Kimbrell 2018-10-28 09:19:33 -06:00 committed by GitHub
commit c7a5334f49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
(function($) {
/**
* FlipClock Poland Language Pack
*
* This class will used to translate tokens into the Poland language.
*
*/
FlipClock.Lang.Polish = {
'years' : 'Lat',
'months' : 'Miesięcy',
'days' : 'Dni',
'hours' : 'Godziny',
'minutes' : 'Minuty',
'seconds' : 'Sekundy'
};
/* Create various aliases for convenience */
FlipClock.Lang['pl'] = FlipClock.Lang.Polish;
FlipClock.Lang['pl-pl'] = FlipClock.Lang.Polish;
FlipClock.Lang['polish'] = FlipClock.Lang.Polish;
}(jQuery));