Replace GRAMPS with Gramps in comments

This commit is contained in:
Nick Hall 2015-09-07 21:58:52 +01:00
parent d877d02187
commit 2d92101438
587 changed files with 606 additions and 606 deletions

View File

@ -41,7 +41,7 @@ import logging
LOG = logging.getLogger(".grampscli")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from gramps.gen.display.name import displayer as name_displayer

View File

@ -174,7 +174,7 @@ LICENSE_FILE = os.path.join(_resources.doc_dir, 'COPYING')
#-------------------------------------------------------------------------
#
# GRAMPS environment variables dictionary
# Gramps environment variables dictionary
#
#-------------------------------------------------------------------------
ENV = {

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -33,7 +33,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -36,7 +36,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -38,7 +38,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -35,7 +35,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -34,7 +34,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -35,7 +35,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -32,7 +32,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -33,7 +33,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -33,7 +33,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -33,7 +33,7 @@ import re
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -36,7 +36,7 @@ log = logging.getLogger(".DateDisplay")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -39,7 +39,7 @@ log = logging.getLogger(".gen.datehandler")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ._dateparser import DateParser

View File

@ -42,7 +42,7 @@ log = logging.getLogger(".DateParser")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date, DateError, Today

View File

@ -31,7 +31,7 @@ import time
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..lib.date import Date

View File

@ -99,7 +99,7 @@ try:
)
tformat = locale.nl_langinfo(locale.D_FMT).replace('%y','%Y')
# GRAMPS treats dates with '-' as ISO format, so replace separator on
# Gramps treats dates with '-' as ISO format, so replace separator on
# locale dates that use '-' to prevent confict
tformat = tformat.replace('-', '/')
@ -178,7 +178,7 @@ except:
timestr = time.strftime('%x',(2005,10,25,1,1,1,1,1,1))
# GRAMPS treats dates with '-' as ISO format, so replace separator on
# Gramps treats dates with '-' as ISO format, so replace separator on
# locale dates that use '-' to prevent confict
timestr = timestr.replace('-', '/')
time2fmt_map = {

View File

@ -43,7 +43,7 @@ if '-v' in sys.argv or '--verbose' in sys.argv:
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ...lib import Date, DateError

View File

@ -63,7 +63,7 @@ LOG = logging.getLogger(".gramps.gen")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ..const import ARABIC_COMMA, ARABIC_SEMICOLON, GRAMPS_LOCALE as glocale

View File

@ -31,7 +31,7 @@ import io
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ._filterparser import FilterParser

View File

@ -24,7 +24,7 @@ Package providing filtering framework for GRAMPS.
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ._genericfilter import GenericFilter

View File

@ -32,7 +32,7 @@ import time
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ...lib.attrtype import AttributeType

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ...datehandler import parser

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ...datehandler import parser

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------

View File

@ -32,7 +32,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -20,7 +20,7 @@
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import HasTextMatchingSubstringOf

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -26,7 +26,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -21,7 +21,7 @@
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from gramps.gen.const import GRAMPS_LOCALE as glocale

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import MatchesFilterBase

View File

@ -28,7 +28,7 @@ LOG = logging.getLogger(".filter")
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
# we need global variableCustomFilters, so we need to query gramps.gen.filters

View File

@ -32,7 +32,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import MatchesFilterBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from . import Rule

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._everything import Everything

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._changedsincebase import ChangedSinceBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._isprivate import IsPrivate

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import Rule

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasgallerybase import HasGalleryBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import HasGrampsId

View File

@ -32,7 +32,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnotebase import HasNoteBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnotesubstrbase import HasNoteSubstrBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnoteregexbase import HasNoteRegexBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasreferencecountbase import HasReferenceCountBase

View File

@ -32,7 +32,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hassourcebase import HasSourceBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasgrampsid import HasGrampsId

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hastagbase import HasTagBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._matchesfilterbase import MatchesFilterBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import Rule

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import MatchesFilterBase

View File

@ -30,7 +30,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import MatchesFilterBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._regexpidbase import RegExpIdBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._regexpidbase import RegExpIdBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._everything import Everything

View File

@ -30,7 +30,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._changedsincebase import ChangedSinceBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._isprivate import IsPrivate

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasattributebase import HasAttributeBase

View File

@ -32,7 +32,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hascitationbase import HasCitationBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ....datehandler import parser

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasgallerybase import HasGalleryBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import HasGrampsId

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnotebase import HasNoteBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnotesubstrbase import HasNoteSubstrBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasnoteregexbase import HasNoteRegexBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hasreferencecountbase import HasReferenceCountBase

View File

@ -30,7 +30,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hassourcecountbase import HasSourceCountBase

View File

@ -31,7 +31,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._hastagbase import HasTagBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from ....lib.eventtype import EventType

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import MatchesFilterBase

View File

@ -28,7 +28,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import MatchesFilterBase

View File

@ -29,7 +29,7 @@ _ = glocale.translation.sgettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .._matchessourceconfidencebase import MatchesSourceConfidenceBase

View File

@ -30,7 +30,7 @@ _ = glocale.translation.gettext
#-------------------------------------------------------------------------
#
# GRAMPS modules
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import MatchesSourceFilterBase

Some files were not shown because too many files have changed in this diff Show More