Skip to content

Instantly share code, notes, and snippets.

View eduludi's full-sized avatar
💎

Eduardo Ludi eduludi

💎
View GitHub Profile
es:
errors:
messages:
not_found: "no encontrado"
already_confirmed: "ya ha sido confirmado"
not_locked: "no está bloqueado"
devise:
sessions:
link: 'Ingresar'
@eduludi
eduludi / jQueryYacal-UsingJSAttributes.js
Created May 21, 2015 14:23
jQuery Yacal - Using JS Attributes
$('#calendarJs').yacal({
date: '2000/1/1',
minDate: '1999/11/11',
maxDate: '2000/2/9',
nearMonths: 1,
});
@eduludi
eduludi / jQueryYacal-UsingData-Attributes.html
Created May 21, 2015 14:15
jQuery Yacal - Using Data-* Attributes
<div class="yacal" data-date="2020/10/26" data-near-months="1" data-min-date="2020/4/17" data-max-date="2021/8/24"></div>
@eduludi
eduludi / jQueryYacal-I18n-es.js
Created May 21, 2015 14:06
jQuery Yacal - I18n
// Spanish version
$('#calendario').yacal({
i18n: {
weekdays: ['Do','Lu','Ma','Mi','Ju','Vi','Sa'],
months: ['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
}
});
@eduludi
eduludi / jQueryYacal-CustomTemplate.js
Created May 21, 2015 14:03
jQuery Yacal - Custom Template
$('#calendarTemplate').yacal({
tpl: {
weekday: '<strong class="wday wd#weekday#">#weekdayName#<\/strong>'
}
});