Skip to content

Commit

Permalink
Merge pull request #272 from equinox7/master
Browse files Browse the repository at this point in the history
Add romanian language pack
  • Loading branch information
brianespinosa committed May 26, 2016
2 parents 1ae4137 + 47a8b4c commit 17d9f3f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/flipclock/js/lang/ro-ro.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
(function($) {

/**
* FlipClock Romanian Language Pack
*
* This class will used to translate tokens into the Romanian language.
*
*/

FlipClock.Lang.Romanian = {

'years' : 'ani',
'months' : 'luni',
'days' : 'zile',
'hours' : 'ore',
'minutes' : 'minute',
'seconds' : 'secunde'

};

/* Create various aliases for convenience */

FlipClock.Lang['ro'] = FlipClock.Lang.Romanian;
FlipClock.Lang['ro-ro'] = FlipClock.Lang.Romanian;
FlipClock.Lang['romanian'] = FlipClock.Lang.Romanian;

}(jQuery));

0 comments on commit 17d9f3f

Please sign in to comment.