3709: Typos and grammar mistakes

svn: r14842
This commit is contained in:
Benny Malengier 2010-03-15 22:15:25 +00:00
parent d47852bfbe
commit a0e510a210
2 changed files with 9 additions and 9 deletions

View File

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

View File

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