mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 17:37:02 +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
13
vendors/moment/lang/el.js
vendored
13
vendors/moment/lang/el.js
vendored
|
|
@ -44,13 +44,24 @@
|
|||
nextDay : '[Αύριο {}] LT',
|
||||
nextWeek : 'dddd [{}] LT',
|
||||
lastDay : '[Χθες {}] LT',
|
||||
lastWeek : '[την προηγούμενη] dddd [{}] LT',
|
||||
lastWeek : function() {
|
||||
switch (this.day()) {
|
||||
case 6:
|
||||
return '[το προηγούμενο] dddd [{}] LT';
|
||||
default:
|
||||
return '[την προηγούμενη] dddd [{}] LT';
|
||||
}
|
||||
},
|
||||
sameElse : 'L'
|
||||
},
|
||||
calendar : function (key, mom) {
|
||||
var output = this._calendarEl[key],
|
||||
hours = mom && mom.hours();
|
||||
|
||||
if (typeof output === 'function') {
|
||||
output = output.apply(mom);
|
||||
}
|
||||
|
||||
return output.replace("{}", (hours % 12 === 1 ? "στη" : "στις"));
|
||||
},
|
||||
relativeTime : {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue