Skip to content

Commit c7a5334

Browse files
Merge pull request #362 from effel/patch-1
Added Polish language pack
2 parents 17d9f3f + a52b816 commit c7a5334

File tree

1 file changed

+27
-0
lines changed
  • src/flipclock/js/lang

1 file changed

+27
-0
lines changed

src/flipclock/js/lang/pl-pl

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
(function($) {
2+
3+
/**
4+
* FlipClock Poland Language Pack
5+
*
6+
* This class will used to translate tokens into the Poland language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Polish = {
11+
12+
'years' : 'Lat',
13+
'months' : 'Miesięcy',
14+
'days' : 'Dni',
15+
'hours' : 'Godziny',
16+
'minutes' : 'Minuty',
17+
'seconds' : 'Sekundy'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['pl'] = FlipClock.Lang.Polish;
24+
FlipClock.Lang['pl-pl'] = FlipClock.Lang.Polish;
25+
FlipClock.Lang['polish'] = FlipClock.Lang.Polish;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)