2018-04-15 10:12:04 +02:00
//! moment.js locale configuration
var numbersNouns = 'pagh_wa’ _cha’ _wej_loS_vagh_jav_Soch_chorgh_Hut' . split ( '_' ) ;
function translateFuture ( output ) {
var time = output ;
time = ( output . indexOf ( 'jaj' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'leS' :
( output . indexOf ( 'jar' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'waQ' :
( output . indexOf ( 'DIS' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'nem' :
time + ' pIq' ;
return time ;
}
function translatePast ( output ) {
var time = output ;
time = ( output . indexOf ( 'jaj' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'Hu’ ' :
( output . indexOf ( 'jar' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'wen' :
( output . indexOf ( 'DIS' ) !== - 1 ) ?
time . slice ( 0 , - 3 ) + 'ben' :
time + ' ret' ;
return time ;
}
function translate$10 ( number , withoutSuffix , string , isFuture ) {
var numberNoun = numberAsNoun ( number ) ;
switch ( string ) {
case 'ss' :
return numberNoun + ' lup' ;
case 'mm' :
return numberNoun + ' tup' ;
case 'hh' :
return numberNoun + ' rep' ;
case 'dd' :
return numberNoun + ' jaj' ;
case 'MM' :
return numberNoun + ' jar' ;
case 'yy' :
return numberNoun + ' DIS' ;
}
}
function numberAsNoun ( number ) {
var hundred = Math . floor ( ( number % 1000 ) / 100 ) ,
ten = Math . floor ( ( number % 100 ) / 10 ) ,
one = number % 10 ,
word = '' ;
if ( hundred > 0 ) {
word += numbersNouns [ hundred ] + 'vatlh' ;
}
if ( ten > 0 ) {
word += ( ( word !== '' ) ? ' ' : '' ) + numbersNouns [ ten ] + 'maH' ;
}
if ( one > 0 ) {
word += ( ( word !== '' ) ? ' ' : '' ) + numbersNouns [ one ] ;
}
return ( word === '' ) ? 'pagh' : word ;
}
moment . defineLocale ( 'tlh' , {
months : 'tera’ jar wa’ _tera’ jar cha’ _tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’ maH_tera’ jar wa’ maH wa’ _tera’ jar wa’ maH cha’ ' . split ( '_' ) ,
monthsShort : 'jar wa’ _jar cha’ _jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’ maH_jar wa’ maH wa’ _jar wa’ maH cha’ ' . split ( '_' ) ,
monthsParseExact : true ,
weekdays : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj' . split ( '_' ) ,
weekdaysShort : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj' . split ( '_' ) ,
weekdaysMin : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj' . split ( '_' ) ,
longDateFormat : {
LT : 'HH:mm' ,
LTS : 'HH:mm:ss' ,
L : 'DD.MM.YYYY' ,
LL : 'D MMMM YYYY' ,
LLL : 'D MMMM YYYY HH:mm' ,
LLLL : 'dddd, D MMMM YYYY HH:mm'
} ,
calendar : {
sameDay : '[DaHjaj] LT' ,
nextDay : '[wa’ leS] LT' ,
nextWeek : 'LLL' ,
lastDay : '[wa’ Hu’ ] LT' ,
lastWeek : 'LLL' ,
sameElse : 'L'
} ,
relativeTime : {
future : translateFuture ,
past : translatePast ,
s : 'puS lup' ,
ss : translate$10 ,
m : 'wa’ tup' ,
mm : translate$10 ,
h : 'wa’ rep' ,
hh : translate$10 ,
d : 'wa’ jaj' ,
dd : translate$10 ,
M : 'wa’ jar' ,
MM : translate$10 ,
y : 'wa’ DIS' ,
yy : translate$10
} ,
dayOfMonthOrdinalParse : /\d{1,2}\./ ,
ordinal : '%d.' ,
week : {
dow : 1 , // Monday is the first day of the week.
doy : 4 // The week that contains Jan 4th is the first week of the year.
}
} ) ;
var suffixes$4 = {
1 : '\'inci' ,
5 : '\'inci' ,
8 : '\'inci' ,
70 : '\'inci' ,
80 : '\'inci' ,
2 : '\'nci' ,
7 : '\'nci' ,
20 : '\'nci' ,
50 : '\'nci' ,
3 : '\'üncü' ,
4 : '\'üncü' ,
100 : '\'üncü' ,
6 : '\'ncı ' ,
9 : '\'uncu' ,
10 : '\'uncu' ,
30 : '\'uncu' ,
60 : '\'ı ncı ' ,
90 : '\'ı ncı '
} ;
2018-04-15 10:44:47 +02:00
moment . defineLocale ( 'tr_TR' , {
2018-04-15 10:12:04 +02:00
months : 'Ocak_Şubat_Mart_Nisan_Mayı s_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kası m_Aralı k' . split ( '_' ) ,
monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara' . split ( '_' ) ,
weekdays : 'Pazar_Pazartesi_Salı _Çarşamba_Perşembe_Cuma_Cumartesi' . split ( '_' ) ,
weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts' . split ( '_' ) ,
weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct' . split ( '_' ) ,
longDateFormat : {
LT : 'HH:mm' ,
LTS : 'HH:mm:ss' ,
L : 'DD.MM.YYYY' ,
LL : 'D MMMM YYYY' ,
LLL : 'D MMMM YYYY HH:mm' ,
LLLL : 'dddd, D MMMM YYYY HH:mm'
} ,
calendar : {
sameDay : '[bugün saat] LT' ,
nextDay : '[yarı n saat] LT' ,
nextWeek : '[gelecek] dddd [saat] LT' ,
lastDay : '[dün] LT' ,
lastWeek : '[geçen] dddd [saat] LT' ,
sameElse : 'L'
} ,
relativeTime : {
future : '%s sonra' ,
past : '%s önce' ,
s : 'birkaç saniye' ,
ss : '%d saniye' ,
m : 'bir dakika' ,
mm : '%d dakika' ,
h : 'bir saat' ,
hh : '%d saat' ,
d : 'bir gün' ,
dd : '%d gün' ,
M : 'bir ay' ,
MM : '%d ay' ,
y : 'bir yı l' ,
yy : '%d yı l'
} ,
ordinal : function ( number , period ) {
switch ( period ) {
case 'd' :
case 'D' :
case 'Do' :
case 'DD' :
return number ;
default :
if ( number === 0 ) { // special case for zero
return number + '\'ı ncı ' ;
}
var a = number % 10 ,
b = number % 100 - a ,
c = number >= 100 ? 100 : null ;
return number + ( suffixes$4 [ a ] || suffixes$4 [ b ] || suffixes$4 [ c ] ) ;
}
} ,
week : {
dow : 1 , // Monday is the first day of the week.
doy : 7 // The week that contains Jan 1st is the first week of the year.
}
} ) ;