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