summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/locale/af.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/momentjs/locale/af.js')
-rw-r--r--js/vendor/momentjs/locale/af.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/js/vendor/momentjs/locale/af.js b/js/vendor/momentjs/locale/af.js
index 2fb7adff2..9c7ad95d8 100644
--- a/js/vendor/momentjs/locale/af.js
+++ b/js/vendor/momentjs/locale/af.js
@@ -17,6 +17,10 @@
weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),
weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
+ meridiemParse: /vm|nm/i,
+ isPM : function (input) {
+ return /^nm$/i.test(input);
+ },
meridiem : function (hours, minutes, isLower) {
if (hours < 12) {
return isLower ? 'vm' : 'VM';