We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bec06f4 + 02994f0 commit 4b191bfCopy full SHA for 4b191bf
1 file changed
src/flipclock/js/lang/hu-hu.js
@@ -0,0 +1,27 @@
1
+(function($) {
2
+
3
+ /**
4
+ * FlipClock Hungarian Language Pack
5
+ *
6
+ * This class will used to translate tokens into the Hungarian language.
7
8
+ */
9
10
+ FlipClock.Lang.German = {
11
12
+ 'years' : 'év',
13
+ 'months' : 'hónap',
14
+ 'days' : 'nap',
15
+ 'hours' : 'óra',
16
+ 'minutes' : 'perc',
17
+ 'seconds' : 'másodperc'
18
19
+ };
20
21
+ /* Create various aliases for convenience */
22
23
+ FlipClock.Lang['hu'] = FlipClock.Lang.German;
24
+ FlipClock.Lang['hu-hu] = FlipClock.Lang.German;
25
+ FlipClock.Lang['hungarian'] = FlipClock.Lang.German;
26
27
+}(jQuery));
0 commit comments