Skip to content

Commit 17d9f3f

Browse files
committed
Merge pull request #272 from equinox7/master
Add romanian language pack
2 parents 1ae4137 + 47a8b4c commit 17d9f3f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/flipclock/js/lang/ro-ro.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 Romanian Language Pack
5+
*
6+
* This class will used to translate tokens into the Romanian language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Romanian = {
11+
12+
'years' : 'ani',
13+
'months' : 'luni',
14+
'days' : 'zile',
15+
'hours' : 'ore',
16+
'minutes' : 'minute',
17+
'seconds' : 'secunde'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['ro'] = FlipClock.Lang.Romanian;
24+
FlipClock.Lang['ro-ro'] = FlipClock.Lang.Romanian;
25+
FlipClock.Lang['romanian'] = FlipClock.Lang.Romanian;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)