3709: Typos and grammar mistakes

svn: r14843
This commit is contained in:
Benny Malengier 2010-03-15 22:15:29 +00:00
parent 585e0fa85d
commit 1a2cf9dbbc
2 changed files with 9 additions and 9 deletions

View File

@ -49,7 +49,7 @@ if not (TOOLKIT == NOWEB):
id = 'geoview',
name = _("Geographic View"),
description = _("The view showing events on an interactive internet map "
"(internet connection needed"),
"(internet connection needed)"),
version = '1.0',
gramps_target_version = '3.3',
status = STABLE,

View File

@ -557,8 +557,8 @@ class GeoView(HtmlView):
_('Crosshair on the map.'),
1, 'preferences.crosshair')
configdialog.add_checkbox(table,
_('Show the coordinates in the statusbar either in degree'
'\neither in internal gramps format ( D.D8 )'),
_('Show the coordinates in the statusbar either in degrees'
'\nor in internal gramps format ( D.D8 )'),
2, 'preferences.coordinates-in-degree')
return _('The map'), table
@ -588,7 +588,7 @@ class GeoView(HtmlView):
self.config_update_int)
configdialog.add_pos_int_entry(table,
_('Time in seconds between two network tests.'
'\nMust be greater or equal to 10 secondes'),
'\nMust be greater or equal to 10 seconds'),
3, 'preferences.network-periodicity',
self.config_update_int)
configdialog.add_text(table,
@ -2424,8 +2424,8 @@ class GeoView(HtmlView):
if center:
page = self._create_message_page(
_("Cannot center the map. No location with coordinates."
"The following reasons are : <ul>"
"<li>The filter you use return nothing.</li>"
"That may happen for one of the following reasons : <ul>"
"<li>The filter you use returned nothing.</li>"
"<li>The active person has no places with coordinates.</li>"
"<li>The active person's family members have no places "
"with coordinates.</li><li>You have no places.</li>"
@ -2591,11 +2591,11 @@ class GeoView(HtmlView):
</html>
""" % { 'height' : 600,
'title' : _('Start page for the Geography View'),
'content': _('You don\'t see a map here for the following '
'content': _('You don\'t see a map here for one of the following '
'reasons :<br><ol>'
'<li>Your database is empty or not yet selected.'
'</li><li>You have not yet selected a person.</li>'
'<li>You have no place in your database.</li>'
'</li><li>You have not selected a person yet.</li>'
'<li>You have no places in your database.</li>'
'<li>The selected places have no coordinates.</li>'
'</ol>')
}