1 //! moment.js locale configuration
2 //! locale : Finnish [fi]
3 //! author : Tarmo Aidantausta : https://github.com/bleadof
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
29 function translate(number, withoutSuffix, key, isFuture) {
33 return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
35 return isFuture ? 'sekunnin' : 'sekuntia';
37 return isFuture ? 'minuutin' : 'minuutti';
39 result = isFuture ? 'minuutin' : 'minuuttia';
42 return isFuture ? 'tunnin' : 'tunti';
44 result = isFuture ? 'tunnin' : 'tuntia';
47 return isFuture ? 'päivän' : 'päivä';
49 result = isFuture ? 'päivän' : 'päivää';
52 return isFuture ? 'kuukauden' : 'kuukausi';
54 result = isFuture ? 'kuukauden' : 'kuukautta';
57 return isFuture ? 'vuoden' : 'vuosi';
59 result = isFuture ? 'vuoden' : 'vuotta';
62 result = verbalNumber(number, isFuture) + ' ' + result;
65 function verbalNumber(number, isFuture) {
68 ? numbersFuture[number]
73 var fi = moment.defineLocale('fi', {
74 months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(
77 monthsShort: 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
80 weekdays: 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
83 weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),
84 weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),
89 LL: 'Do MMMM[ta] YYYY',
90 LLL: 'Do MMMM[ta] YYYY, [klo] HH.mm',
91 LLLL: 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',
94 lll: 'Do MMM YYYY, [klo] HH.mm',
95 llll: 'ddd, Do MMM YYYY, [klo] HH.mm',
98 sameDay: '[tänään] [klo] LT',
99 nextDay: '[huomenna] [klo] LT',
100 nextWeek: 'dddd [klo] LT',
101 lastDay: '[eilen] [klo] LT',
102 lastWeek: '[viime] dddd[na] [klo] LT',
121 dayOfMonthOrdinalParse: /\d{1,2}\./,
124 dow: 1, // Monday is the first day of the week.
125 doy: 4, // The week that contains Jan 4th is the first week of the year.