Skip to content

Commit 187d219

Browse files
authored
Added Poland language pack
1 parent 17d9f3f commit 187d219

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 Danish Language Pack
5+
*
6+
* This class will used to translate tokens into the Danish language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Poland = {
11+
12+
'years' : 'Lat',
13+
'months' : 'Miesięcy',
14+
'days' : 'Dzień',
15+
'hours' : 'Godzina',
16+
'minutes' : 'Minuta',
17+
'seconds' : 'Sekunda'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['da'] = FlipClock.Lang.Poland;
24+
FlipClock.Lang['da-dk'] = FlipClock.Lang.Poland;
25+
FlipClock.Lang['danish'] = FlipClock.Lang.Poland;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)