1234567891011121314151617181920212223242526 |
- import formatDistance from "../it/_lib/formatDistance/index.js";
- import formatRelative from "../it/_lib/formatRelative/index.js";
- import localize from "../it/_lib/localize/index.js";
- import match from "../it/_lib/match/index.js";
- import formatLong from "./_lib/formatLong/index.js";
- /**
- * @type {Locale}
- * @category Locales
- * @summary Italian locale (Switzerland).
- * @language Italian
- * @iso-639-2 ita
- * @author Mike Peyer [@maic66]{@link https://github.com/maic66}
- */
- var locale = {
- code: 'it-CH',
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 4
- }
- };
- export default locale;
|