Skip to content

Commit 4b191bf

Browse files
committed
Merge pull request #216 from kukac7/master
add hungarian localization
2 parents bec06f4 + 02994f0 commit 4b191bf

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

src/flipclock/js/lang/hu-hu.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)