﻿# french
# admin region type prefix and suffix
# these are identified in location names and used for token expansion to include location type variants
# this gives us the maximum chance of matching a location name to the various ways to express it in text
# e.g. 'london st' -> 'london street', 'london st'

# TITLE = title word of placename (e.g. 'the')
# TYPE = type of place (e.g. 'road')
# +<phrase> = prefix
# <phrase>+ = suffix
# +<phrase>+ = can be both prefix and suffix
# *<phrase> = dont use this token for a match but do include it in token expansion
#   e.g. primary, *school --> matches only primary BUT will expand a match to <name> primary, <name> school
#        this allows avoidance of overmatching to general names like school (which can be primary, secondary etc.)

# note: save this as UTF-8 not a default latin encoded text file
# note: types are processed in reverse phrase gram order (so large phrases are matched first)

# add to stoplist location words that on thier own cannot be a specific location
# e.g. 'north' cannot be used for 'north london'


#
# titles
#

# north east
TITLE, +nord-est+, +nord est+
# north west
TITLE, +nord-ouest+, +nord ouest+
# south east
TITLE, +sud-est+, +sud est+
# south west
TITLE, +sud-ouest+, +sud ouest+
# north
TITLE, +nord+
# south
TITLE, +sud+
# south
TITLE, +midi+
# east
TITLE, +est+
# west
TITLE, +ouest+
# greater
TITLE, +grand+

# smaller
TITLE, +petit+
# upper
TITLE, +haut+
# lower
TITLE, +inférieur+
# lower
TITLE, +bas+
# central
TITLE, +central+

