From 4f6ab0b62309aa6c60e8194553d3f362102b9e0d Mon Sep 17 00:00:00 2001 From: MRokas Date: Fri, 15 Apr 2016 14:11:14 +0300 Subject: [PATCH] Created Lithuanian i18n file. --- src/flipclock/js/lang/lt-lt.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/flipclock/js/lang/lt-lt.js diff --git a/src/flipclock/js/lang/lt-lt.js b/src/flipclock/js/lang/lt-lt.js new file mode 100644 index 00000000..e653678b --- /dev/null +++ b/src/flipclock/js/lang/lt-lt.js @@ -0,0 +1,28 @@ +(function($) { + + /** + * FlipClock Lithuanian Language Pack + * + * This class will used to translate tokens into the Lithuanian language. + * + */ + + FlipClock.Lang.Lithuanian = { + + 'years' : 'Metai', + 'months' : 'Mėnesiai', + 'days' : 'Dienos', + 'hours' : 'Valandos', + 'minutes' : 'Minutės', + 'seconds' : 'Sekundės' + + }; + + /* Create various aliases for convenience */ + + FlipClock.Lang['lt'] = FlipClock.Lang.Lithuanian; + FlipClock.Lang['lt-lt'] = FlipClock.Lang.Lithuanian; + FlipClock.Lang['lithuanian'] = FlipClock.Lang.Lithuanian; + FlipClock.Lang['lietuviu'] = FlipClock.Lang.Lithuanian; + +}(jQuery));