mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
100 lines
5.9 KiB
JavaScript
100 lines
5.9 KiB
JavaScript
/*
|
|
* This file has been compiled from: /modules/system/lang/ca/client.php
|
|
*/
|
|
if ($.wn === undefined) $.wn = {}
|
|
if ($.oc === undefined) $.oc = $.wn
|
|
if ($.wn.langMessages === undefined) $.wn.langMessages = {}
|
|
$.wn.langMessages['ca'] = $.extend(
|
|
$.wn.langMessages['ca'] || {},
|
|
{"markdowneditor":{"formatting":"Formatar","quote":"Quota","code":"Codi","header1":"T\u00edtol 1","header2":"T\u00edtol 2","header3":"T\u00edtol 3","header4":"T\u00edtol 4","header5":"T\u00edtol 5","header6":"T\u00edtol 6","bold":"Negreta","italic":"Cursiva","unorderedlist":"Llista desordenada","orderedlist":"Llista ordenada","video":"V\u00eddeo","image":"Imatge","link":"Enlla\u00e7","horizontalrule":"Inserir l\u00ednia horitzontal","fullscreen":"Pantalla completa","preview":"Previsualitzar"},"mediamanager":{"insert_link":"Inserir enlla\u00e7 a m\u00e8dia","insert_image":"Inserir imatge de m\u00e8dia","insert_video":"Inserir v\u00eddeo de m\u00e8dia","insert_audio":"Inserir \u00e0udio de m\u00e8dia","invalid_file_empty_insert":"Si us plau selecciona l'arxiu a enlla\u00e7ar.","invalid_file_single_insert":"Si us plau selecciona un sol arxiu.","invalid_image_empty_insert":"Si us plau selecciona imatge(s) per inserir.","invalid_video_empty_insert":"Si us plau selecciona un arxiu de v\u00eddeo per inserir.","invalid_audio_empty_insert":"Si us plau selecciona un arxiu d'\u00e0udio per inserir."},"alert":{"confirm_button_text":"OK","cancel_button_text":"Cancel\u00b7lar","widget_remove_confirm":"Eliminar aquest widget?"},"datepicker":{"previousMonth":"Mes anterior","nextMonth":"Mes seg\u00fcent","months":["Gener","Febrer","Mar\u00e7","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],"weekdays":["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],"weekdaysShort":["Dg","Dl","Dm","Dx","Dj","Dv","Ds"]},"colorpicker":{"choose":"Ok"},"filter":{"group":{"all":"tots"},"scopes":{"apply_button_text":"Apply","clear_button_text":"Clear"},"dates":{"all":"tots","filter_button_text":"Filtrar","reset_button_text":"Reiniciar","date_placeholder":"Data","after_placeholder":"Despr\u00e9s","before_placeholder":"Abans"},"numbers":{"all":"tots","filter_button_text":"Filtrar","reset_button_text":"Reiniciar","min_placeholder":"M\u00edn","max_placeholder":"M\u00e0x"}},"eventlog":{"show_stacktrace":"Mostrar l'stacktrace","hide_stacktrace":"Ocultar l'stacktrace","tabs":{"formatted":"Formatat","raw":"Cru"},"editor":{"title":"Editor de codi font","description":"El teu sistema operatiu hauria d'estar configurat per escoltar un d'aquests esquemes d'URL.","openWith":"Obrir amb","remember_choice":"Recordar l'opci\u00f3 seleccionada durant aquesta sessi\u00f3","open":"Obrir","cancel":"Cancel\u00b7lar"}}}
|
|
);
|
|
|
|
//! moment.js locale configuration v2.22.2
|
|
|
|
;(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 ca = moment.defineLocale('ca', {
|
|
months : {
|
|
standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
|
|
format: 'de gener_de febrer_de març_d\'abril_de maig_de juny_de juliol_d\'agost_de setembre_d\'octubre_de novembre_de desembre'.split('_'),
|
|
isFormat: /D[oD]?(\s)+MMMM/
|
|
},
|
|
monthsShort : 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split('_'),
|
|
monthsParseExact : true,
|
|
weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),
|
|
weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
|
|
weekdaysMin : 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
|
|
weekdaysParseExact : true,
|
|
longDateFormat : {
|
|
LT : 'H:mm',
|
|
LTS : 'H:mm:ss',
|
|
L : 'DD/MM/YYYY',
|
|
LL : 'D MMMM [de] YYYY',
|
|
ll : 'D MMM YYYY',
|
|
LLL : 'D MMMM [de] YYYY [a les] H:mm',
|
|
lll : 'D MMM YYYY, H:mm',
|
|
LLLL : 'dddd D MMMM [de] YYYY [a les] H:mm',
|
|
llll : 'ddd D MMM YYYY, H:mm'
|
|
},
|
|
calendar : {
|
|
sameDay : function () {
|
|
return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
|
|
},
|
|
nextDay : function () {
|
|
return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
|
|
},
|
|
nextWeek : function () {
|
|
return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
|
|
},
|
|
lastDay : function () {
|
|
return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
|
|
},
|
|
lastWeek : function () {
|
|
return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
|
|
},
|
|
sameElse : 'L'
|
|
},
|
|
relativeTime : {
|
|
future : 'd\'aquí %s',
|
|
past : 'fa %s',
|
|
s : 'uns segons',
|
|
ss : '%d segons',
|
|
m : 'un minut',
|
|
mm : '%d minuts',
|
|
h : 'una hora',
|
|
hh : '%d hores',
|
|
d : 'un dia',
|
|
dd : '%d dies',
|
|
M : 'un mes',
|
|
MM : '%d mesos',
|
|
y : 'un any',
|
|
yy : '%d anys'
|
|
},
|
|
dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
|
|
ordinal : function (number, period) {
|
|
var output = (number === 1) ? 'r' :
|
|
(number === 2) ? 'n' :
|
|
(number === 3) ? 'r' :
|
|
(number === 4) ? 't' : 'è';
|
|
if (period === 'w' || period === 'W') {
|
|
output = 'a';
|
|
}
|
|
return number + output;
|
|
},
|
|
week : {
|
|
dow : 1, // Monday is the first day of the week.
|
|
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
|
}
|
|
});
|
|
|
|
return ca;
|
|
|
|
})));
|
|
|