Skip to content

Commit

Permalink
stupid git
Browse files Browse the repository at this point in the history
  • Loading branch information
Eonasdan committed Aug 17, 2023
1 parent 8aced66 commit e9ebcd9
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
47 changes: 47 additions & 0 deletions dist/locales/ca.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*!
* Tempus Dominus v6.7.13 (https://getdatepicker.com/)
* Copyright 2013-2023 Jonathan Peterson
* Licensed under MIT (https://github.com/Eonasdan/tempus-dominus/blob/master/LICENSE)
*/
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f((g.tempusDominus=g.tempusDominus||{},g.tempusDominus.locales=g.tempusDominus.locales||{},g.tempusDominus.locales.ca={})));})(this,(function(exports){'use strict';const name = 'ca';
const localization = {
today: 'Avui',
clear: 'Esborrar selecció',
close: 'Tancar selector',
selectMonth: 'Seleccionar mes',
previousMonth: 'Mes anterior',
nextMonth: 'Pròxim mes',
selectYear: 'Seleccionar any',
previousYear: 'Any anterior',
nextYear: 'Pròxim any',
selectDecade: 'Seleccionar dècada',
previousDecade: 'Dècada anterior',
nextDecade: 'Pròxima dècada',
previousCentury: 'Segle anterior',
nextCentury: 'Pròxim segle',
pickHour: 'Escollir hora',
incrementHour: 'Incrementar hora',
decrementHour: 'Decrementar hora',
pickMinute: 'Escollir minut',
incrementMinute: 'Incrementar minut',
decrementMinute: 'Decrementar minut',
pickSecond: 'Escollir segon',
incrementSecond: 'Incrementar segon',
decrementSecond: 'Decrementar segon',
toggleMeridiem: 'Canviar AM/PM',
selectTime: 'Seleccionar temps',
selectDate: 'Seleccionar data',
dayViewHeaderFormat: { month: 'long', year: '2-digit' },
startOfTheWeek: 1,
locale: 'ca',
dateFormats: {
LT: 'H:mm',
LTS: 'H:mm:ss',
L: 'dd/MM/yyyy',
LL: 'd [de] MMMM [de] yyyy',
LLL: 'd [de] MMMM [de] yyyy H:mm',
LLLL: 'dddd, d [de] MMMM [de] yyyy H:mm',
},
ordinal: (n) => `${n}º`,
format: 'L LT',
};exports.localization=localization;exports.name=name;Object.defineProperty(exports,'__esModule',{value:true});}));
46 changes: 46 additions & 0 deletions types/locales/ca.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
declare const name = 'ca';
declare const localization: {
today: string;
clear: string;
close: string;
selectMonth: string;
previousMonth: string;
nextMonth: string;
selectYear: string;
previousYear: string;
nextYear: string;
selectDecade: string;
previousDecade: string;
nextDecade: string;
previousCentury: string;
nextCentury: string;
pickHour: string;
incrementHour: string;
decrementHour: string;
pickMinute: string;
incrementMinute: string;
decrementMinute: string;
pickSecond: string;
incrementSecond: string;
decrementSecond: string;
toggleMeridiem: string;
selectTime: string;
selectDate: string;
dayViewHeaderFormat: {
month: string;
year: string;
};
startOfTheWeek: number;
locale: string;
dateFormats: {
LT: string;
LTS: string;
L: string;
LL: string;
LLL: string;
LLLL: string;
};
ordinal: (n: any) => string;
format: string;
};
export { localization, name };

0 comments on commit e9ebcd9

Please sign in to comment.