mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 09:27:03 +03:00
Interface optimizations
moment js update
This commit is contained in:
parent
be8c186f87
commit
f36cb72b82
104 changed files with 5869 additions and 1180 deletions
113
vendors/moment/lang/hy-am.js
vendored
Normal file
113
vendors/moment/lang/hy-am.js
vendored
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
// moment.js language configuration
|
||||
// language : Armenian (hy-am)
|
||||
// author : Armendarabyan : https://github.com/armendarabyan
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define(['moment'], factory); // AMD
|
||||
} else if (typeof exports === 'object') {
|
||||
module.exports = factory(require('../moment')); // Node
|
||||
} else {
|
||||
factory(window.moment); // Browser global
|
||||
}
|
||||
}(function (moment) {
|
||||
|
||||
function monthsCaseReplace(m, format) {
|
||||
var months = {
|
||||
'nominative': 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_'),
|
||||
'accusative': 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_')
|
||||
},
|
||||
|
||||
nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ?
|
||||
'accusative' :
|
||||
'nominative';
|
||||
|
||||
return months[nounCase][m.month()];
|
||||
}
|
||||
|
||||
function monthsShortCaseReplace(m, format) {
|
||||
var monthsShort = 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_');
|
||||
|
||||
return monthsShort[m.month()];
|
||||
}
|
||||
|
||||
function weekdaysCaseReplace(m, format) {
|
||||
var weekdays = 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_');
|
||||
|
||||
return weekdays[m.day()];
|
||||
}
|
||||
|
||||
return moment.lang('hy-am', {
|
||||
months : monthsCaseReplace,
|
||||
monthsShort : monthsShortCaseReplace,
|
||||
weekdays : weekdaysCaseReplace,
|
||||
weekdaysShort : "կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),
|
||||
weekdaysMin : "կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),
|
||||
longDateFormat : {
|
||||
LT : "HH:mm",
|
||||
L : "DD.MM.YYYY",
|
||||
LL : "D MMMM YYYY թ.",
|
||||
LLL : "D MMMM YYYY թ., LT",
|
||||
LLLL : "dddd, D MMMM YYYY թ., LT"
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[այսօր] LT',
|
||||
nextDay: '[վաղը] LT',
|
||||
lastDay: '[երեկ] LT',
|
||||
nextWeek: function () {
|
||||
return 'dddd [օրը ժամը] LT';
|
||||
},
|
||||
lastWeek: function () {
|
||||
return '[անցած] dddd [օրը ժամը] LT';
|
||||
},
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : "%s հետո",
|
||||
past : "%s առաջ",
|
||||
s : "մի քանի վայրկյան",
|
||||
m : "րոպե",
|
||||
mm : "%d րոպե",
|
||||
h : "ժամ",
|
||||
hh : "%d ժամ",
|
||||
d : "օր",
|
||||
dd : "%d օր",
|
||||
M : "ամիս",
|
||||
MM : "%d ամիս",
|
||||
y : "տարի",
|
||||
yy : "%d տարի"
|
||||
},
|
||||
|
||||
meridiem : function (hour) {
|
||||
if (hour < 4) {
|
||||
return "գիշերվա";
|
||||
} else if (hour < 12) {
|
||||
return "առավոտվա";
|
||||
} else if (hour < 17) {
|
||||
return "ցերեկվա";
|
||||
} else {
|
||||
return "երեկոյան";
|
||||
}
|
||||
},
|
||||
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'DDD':
|
||||
case 'w':
|
||||
case 'W':
|
||||
case 'DDDo':
|
||||
if (number === 1) {
|
||||
return number + '-ին';
|
||||
}
|
||||
return number + '-րդ';
|
||||
default:
|
||||
return number;
|
||||
}
|
||||
},
|
||||
|
||||
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.
|
||||
}
|
||||
});
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue