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