���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/lib/python2.7/site-packages/parsedatetime/pdt_locales/ |
# -*- coding: utf-8 -*- from __future__ import unicode_literals from .base import * # noqa # don't use an unicode string localeID = 'es' dateSep = ['/'] usesMeridian = False uses24 = True decimal_mark = ',' Weekdays = [ 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado', 'domingo', ] shortWeekdays = [ 'lun', 'mar', 'mié', 'jue', 'vie', 'sáb', 'dom', ] Months = [ 'enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre', ] shortMonths = [ 'ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic', ] dateFormats = { 'full': "EEEE d' de 'MMMM' de 'yyyy", 'long': "d' de 'MMMM' de 'yyyy", 'medium': "dd-MMM-yy", 'short': "d/MM/yy", } timeFormats = { 'full': "HH'H'mm' 'ss z", 'long': "HH:mm:ss z", 'medium': "HH:mm:ss", 'short': "HH:mm", } dp_order = ['d', 'm', 'y']