forked from martinandert/counterpart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathde.js
More file actions
31 lines (26 loc) · 654 Bytes
/
de.js
File metadata and controls
31 lines (26 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// The translations in this file can be added with:
// #registerTranslations('de', require('counterpart/locales/de');
'use strict';
module.exports = {
counterpart: {
names: require('date-names/de'),
pluralize: require('pluralizers/de'),
formats: {
date: {
default: '%a, %e. %b %Y',
long: '%A, %e. %B %Y',
short: '%d.%m.%y',
},
time: {
default: '%H:%M Uhr',
long: '%H:%M:%S %z',
short: '%H:%M',
},
datetime: {
default: '%a, %e. %b %Y, %H:%M Uhr',
long: '%A, %e. %B %Y, %H:%M:%S %z',
short: '%d.%m.%y %H:%M',
},
},
},
};