71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
| (function (global, factory) {
 | |
|   typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
 | |
|   typeof define === 'function' && define.amd ? define(['exports'], factory) :
 | |
|   (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.at = {}));
 | |
| }(this, (function (exports) { 'use strict';
 | |
| 
 | |
|   var fp = typeof window !== "undefined" && window.flatpickr !== undefined
 | |
|       ? window.flatpickr
 | |
|       : {
 | |
|           l10ns: {},
 | |
|       };
 | |
|   var Austria = {
 | |
|       weekdays: {
 | |
|           shorthand: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
 | |
|           longhand: [
 | |
|               "Sonntag",
 | |
|               "Montag",
 | |
|               "Dienstag",
 | |
|               "Mittwoch",
 | |
|               "Donnerstag",
 | |
|               "Freitag",
 | |
|               "Samstag",
 | |
|           ],
 | |
|       },
 | |
|       months: {
 | |
|           shorthand: [
 | |
|               "Jän",
 | |
|               "Feb",
 | |
|               "Mär",
 | |
|               "Apr",
 | |
|               "Mai",
 | |
|               "Jun",
 | |
|               "Jul",
 | |
|               "Aug",
 | |
|               "Sep",
 | |
|               "Okt",
 | |
|               "Nov",
 | |
|               "Dez",
 | |
|           ],
 | |
|           longhand: [
 | |
|               "Jänner",
 | |
|               "Februar",
 | |
|               "März",
 | |
|               "April",
 | |
|               "Mai",
 | |
|               "Juni",
 | |
|               "Juli",
 | |
|               "August",
 | |
|               "September",
 | |
|               "Oktober",
 | |
|               "November",
 | |
|               "Dezember",
 | |
|           ],
 | |
|       },
 | |
|       firstDayOfWeek: 1,
 | |
|       weekAbbreviation: "KW",
 | |
|       rangeSeparator: " bis ",
 | |
|       scrollTitle: "Zum Ändern scrollen",
 | |
|       toggleTitle: "Zum Umschalten klicken",
 | |
|       time_24hr: true,
 | |
|   };
 | |
|   fp.l10ns.at = Austria;
 | |
|   var at = fp.l10ns;
 | |
| 
 | |
|   exports.Austria = Austria;
 | |
|   exports.default = at;
 | |
| 
 | |
|   Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| })));
 |