2004-12-15 20:04:34 +05:30
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2004-2006 Donald N. Allingham
|
2004-12-15 20:04:34 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
"""
|
|
|
|
Spanish-specific classes for parsing and displaying dates.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import re
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-02-04 03:33:53 +05:30
|
|
|
from RelLib import Date
|
2006-03-11 10:28:58 +05:30
|
|
|
from _DateParser import DateParser
|
|
|
|
from _DateDisplay import DateDisplay
|
|
|
|
from _DateHandler import register_datehandler
|
2004-12-15 20:04:34 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Spanish parser
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DateParserES(DateParser):
|
|
|
|
|
|
|
|
modifier_to_int = {
|
|
|
|
u'antes de' : Date.MOD_BEFORE,
|
|
|
|
u'antes' : Date.MOD_BEFORE,
|
|
|
|
u'ant.' : Date.MOD_BEFORE,
|
|
|
|
u'ant' : Date.MOD_BEFORE,
|
|
|
|
u'después de' : Date.MOD_AFTER,
|
|
|
|
u'después' : Date.MOD_AFTER,
|
|
|
|
u'desp.' : Date.MOD_AFTER,
|
|
|
|
u'desp' : Date.MOD_AFTER,
|
|
|
|
u'aprox.' : Date.MOD_ABOUT,
|
|
|
|
u'aprox' : Date.MOD_ABOUT,
|
|
|
|
u'apr.' : Date.MOD_ABOUT,
|
|
|
|
u'apr' : Date.MOD_ABOUT,
|
|
|
|
u'circa' : Date.MOD_ABOUT,
|
|
|
|
u'ca.' : Date.MOD_ABOUT,
|
|
|
|
u'ca' : Date.MOD_ABOUT,
|
|
|
|
u'c.' : Date.MOD_ABOUT,
|
|
|
|
u'hacia' : Date.MOD_ABOUT,
|
|
|
|
}
|
|
|
|
|
|
|
|
calendar_to_int = {
|
|
|
|
u'gregoriano' : Date.CAL_GREGORIAN,
|
|
|
|
u'g' : Date.CAL_GREGORIAN,
|
|
|
|
u'juliano' : Date.CAL_JULIAN,
|
|
|
|
u'j' : Date.CAL_JULIAN,
|
|
|
|
u'hebreo' : Date.CAL_HEBREW,
|
|
|
|
u'h' : Date.CAL_HEBREW,
|
|
|
|
u'islámico' : Date.CAL_ISLAMIC,
|
|
|
|
u'i' : Date.CAL_ISLAMIC,
|
|
|
|
u'revolucionario': Date.CAL_FRENCH,
|
|
|
|
u'r' : Date.CAL_FRENCH,
|
|
|
|
u'persa' : Date.CAL_PERSIAN,
|
|
|
|
u'p' : Date.CAL_PERSIAN,
|
|
|
|
}
|
|
|
|
|
|
|
|
quality_to_int = {
|
|
|
|
u'estimado' : Date.QUAL_ESTIMATED,
|
|
|
|
u'est.' : Date.QUAL_ESTIMATED,
|
|
|
|
u'est' : Date.QUAL_ESTIMATED,
|
|
|
|
u'calc.' : Date.QUAL_CALCULATED,
|
|
|
|
u'calc' : Date.QUAL_CALCULATED,
|
|
|
|
u'calculado' : Date.QUAL_CALCULATED,
|
|
|
|
}
|
|
|
|
|
|
|
|
def init_strings(self):
|
|
|
|
DateParser.init_strings(self)
|
|
|
|
_span_1 = [u'de']
|
|
|
|
_span_2 = [u'a']
|
2006-05-02 02:41:26 +05:30
|
|
|
_range_1 = [u'entre',u'ent\.',u'ent']
|
2004-12-15 20:04:34 +05:30
|
|
|
_range_2 = [u'y']
|
2005-06-05 09:31:56 +05:30
|
|
|
self._span = re.compile("(%s)\s+(?P<start>.+)\s+(%s)\s+(?P<stop>.+)" %
|
2004-12-15 20:04:34 +05:30
|
|
|
('|'.join(_span_1),'|'.join(_span_2)),
|
|
|
|
re.IGNORECASE)
|
2005-06-05 09:31:56 +05:30
|
|
|
self._range = re.compile("(%s)\s+(?P<start>.+)\s+(%s)\s+(?P<stop>.+)" %
|
2004-12-15 20:04:34 +05:30
|
|
|
('|'.join(_range_1),'|'.join(_range_2)),
|
|
|
|
re.IGNORECASE)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Spanish display
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DateDisplayES(DateDisplay):
|
|
|
|
|
|
|
|
calendar = (
|
|
|
|
"", u" (Juliano)", u" (Hebreo)",
|
|
|
|
u" (Revolucionario)", u" (Persa)", u" (Islámico)"
|
|
|
|
)
|
|
|
|
|
|
|
|
_mod_str = ("",u"antes de ",u"después de ",u"hacia ","","","")
|
2005-01-19 10:43:09 +05:30
|
|
|
|
2005-08-18 11:28:28 +05:30
|
|
|
_qual_str = ("","estimado ","calculado ")
|
2005-01-19 10:43:09 +05:30
|
|
|
|
|
|
|
formats = (
|
|
|
|
"AAAA-MM-DD (ISO)", "Numérica", "Mes Día, Año",
|
|
|
|
"MES Día, Año", "Día Mes, Año", "Día MES, Año"
|
|
|
|
)
|
2004-12-15 20:04:34 +05:30
|
|
|
|
|
|
|
def display(self,date):
|
|
|
|
"""
|
2005-01-19 10:45:30 +05:30
|
|
|
Returns a text string representing the date.
|
|
|
|
"""
|
2004-12-15 20:04:34 +05:30
|
|
|
mod = date.get_modifier()
|
|
|
|
cal = date.get_calendar()
|
|
|
|
qual = date.get_quality()
|
|
|
|
start = date.get_start_date()
|
|
|
|
|
|
|
|
qual_str = self._qual_str[qual]
|
|
|
|
|
|
|
|
if mod == Date.MOD_TEXTONLY:
|
|
|
|
return date.get_text()
|
|
|
|
elif start == Date.EMPTY:
|
|
|
|
return ""
|
|
|
|
elif mod == Date.MOD_SPAN:
|
|
|
|
d1 = self.display_cal[cal](start)
|
|
|
|
d2 = self.display_cal[cal](date.get_stop_date())
|
|
|
|
return "%s%s %s %s %s%s" % (qual_str,u'de',d1,u'a',d2,self.calendar[cal])
|
|
|
|
elif mod == Date.MOD_RANGE:
|
|
|
|
d1 = self.display_cal[cal](start)
|
|
|
|
d2 = self.display_cal[cal](date.get_stop_date())
|
|
|
|
return "%s%s %s %s %s%s" % (qual_str,u'entre',d1,u'y',d2,self.calendar[cal])
|
|
|
|
else:
|
|
|
|
text = self.display_cal[date.get_calendar()](start)
|
|
|
|
return "%s%s%s%s" % (qual_str,self._mod_str[mod],text,self.calendar[cal])
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Register classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2005-06-05 09:31:56 +05:30
|
|
|
register_datehandler(('es_ES','es','spanish'),DateParserES, DateDisplayES)
|