Fixed so that menu items in GeoView begin with upper case letter.

svn: r17375
This commit is contained in:
Peter Landgren 2011-05-02 14:40:51 +00:00
parent 8d883f26e5
commit 695f6286ac

View File

@ -45,7 +45,7 @@ if OSMGPSMAP:
# Load the view only if osmgpsmap library is present. # Load the view only if osmgpsmap library is present.
register(VIEW, register(VIEW,
id = 'personmap', id = 'personmap',
name = _("person"), name = _("Person"),
description = _("A view allowing to see the places visited by " description = _("A view allowing to see the places visited by "
"one person during his life."), "one person during his life."),
version = '1.0', version = '1.0',
@ -62,7 +62,7 @@ if OSMGPSMAP:
register(VIEW, register(VIEW,
id = 'placesmap', id = 'placesmap',
name = _("places"), name = _("Places"),
description = _("A view allowing to see all places of the database."), description = _("A view allowing to see all places of the database."),
version = '1.0', version = '1.0',
gramps_target_version = '3.3', gramps_target_version = '3.3',
@ -77,7 +77,7 @@ if OSMGPSMAP:
register(VIEW, register(VIEW,
id = 'eventsmap', id = 'eventsmap',
name = _("events"), name = _("Events"),
description = _("A view allowing to see all events " description = _("A view allowing to see all events "
"places of the database."), "places of the database."),
version = '1.0', version = '1.0',
@ -93,7 +93,7 @@ if OSMGPSMAP:
register(VIEW, register(VIEW,
id = 'familymap', id = 'familymap',
name = _("family"), name = _("Family"),
description = _("A view allowing to see the places visited by " description = _("A view allowing to see the places visited by "
"one family during all their life."), "one family during all their life."),
version = '1.0', version = '1.0',