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.js36
1 files changed, 19 insertions, 17 deletions
diff --git a/js/vendor/momentjs/locale/af.js b/js/vendor/momentjs/locale/af.js
index 9c7ad95d8..1a96bf473 100644
--- a/js/vendor/momentjs/locale/af.js
+++ b/js/vendor/momentjs/locale/af.js
@@ -1,17 +1,16 @@
-// moment.js locale configuration
-// locale : afrikaans (af)
-// author : Werner Mollentze : https://github.com/wernerm
+//! moment.js locale configuration
+//! locale : afrikaans (af)
+//! author : Werner Mollentze : https://github.com/wernerm
-(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((typeof global !== 'undefined' ? global : this).moment); // node or other global
- }
-}(function (moment) {
- return moment.defineLocale('af', {
+;(function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined'
+ && typeof require === 'function' ? factory(require('../moment')) :
+ typeof define === 'function' && define.amd ? define(['moment'], factory) :
+ factory(global.moment)
+}(this, function (moment) { 'use strict';
+
+
+ var af = moment.defineLocale('af', {
months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'),
monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),
@@ -30,11 +29,11 @@
},
longDateFormat : {
LT : 'HH:mm',
- LTS : 'LT:ss',
+ LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
- LLL : 'D MMMM YYYY LT',
- LLLL : 'dddd, D MMMM YYYY LT'
+ LLL : 'D MMMM YYYY HH:mm',
+ LLLL : 'dddd, D MMMM YYYY HH:mm'
},
calendar : {
sameDay : '[Vandag om] LT',
@@ -68,4 +67,7 @@
doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
}
});
-}));
+
+ return af;
+
+})); \ No newline at end of file