We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17d9f3f + a52b816 commit c7a5334Copy full SHA for c7a5334
1 file changed
src/flipclock/js/lang/pl-pl
@@ -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