You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
All: Added new date format YYYY.MM.DD (#2318)
* Added new date format YYYY.MM.DD. * revert change as this file is autogenerated Co-authored-by: Akos Keresztes <60130238+keresztesa@users.noreply.github.com>
This commit is contained in:
@ -212,6 +212,7 @@ class Setting extends BaseModel {
|
||||
options[Setting.DATE_FORMAT_4] = time.formatMsToLocal(now, Setting.DATE_FORMAT_4);
|
||||
options[Setting.DATE_FORMAT_5] = time.formatMsToLocal(now, Setting.DATE_FORMAT_5);
|
||||
options[Setting.DATE_FORMAT_6] = time.formatMsToLocal(now, Setting.DATE_FORMAT_6);
|
||||
options[Setting.DATE_FORMAT_7] = time.formatMsToLocal(now, Setting.DATE_FORMAT_7);
|
||||
return options;
|
||||
},
|
||||
},
|
||||
@ -1021,6 +1022,7 @@ Setting.DATE_FORMAT_3 = 'MM/DD/YYYY';
|
||||
Setting.DATE_FORMAT_4 = 'MM/DD/YY';
|
||||
Setting.DATE_FORMAT_5 = 'YYYY-MM-DD';
|
||||
Setting.DATE_FORMAT_6 = 'DD.MM.YYYY';
|
||||
Setting.DATE_FORMAT_7 = 'YYYY.MM.DD';
|
||||
|
||||
Setting.TIME_FORMAT_1 = 'HH:mm';
|
||||
Setting.TIME_FORMAT_2 = 'h:mm A';
|
||||
|
Reference in New Issue
Block a user