summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2011-02-20 22:03:45 +0000
committerfisharebest <fisharebest@gmail.com>2011-02-20 22:03:45 +0000
commitaf2fcc1819b74ac4ed4590e39476bfb72d89038b (patch)
tree2a16dc49251fdcae700555c6a8cbb169430c64de
parentaaa2f4cacbda0e004a8adada68da3391ea327174 (diff)
downloadwebtrees-af2fcc1819b74ac4ed4590e39476bfb72d89038b.tar.gz
webtrees-af2fcc1819b74ac4ed4590e39476bfb72d89038b.tar.bz2
webtrees-af2fcc1819b74ac4ed4590e39476bfb72d89038b.zip
Add I18N comments
-rw-r--r--modules/googlemap/placehierarchy.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/googlemap/placehierarchy.php b/modules/googlemap/placehierarchy.php
index 0acc034ea7..864e0382f5 100644
--- a/modules/googlemap/placehierarchy.php
+++ b/modules/googlemap/placehierarchy.php
@@ -293,8 +293,8 @@ function create_map() {
$list_latlon = (
translate_fact('LATI')."<input name='sv_latiText' id='sv_latiText' type='text' style='width:62px; background:none; border:none;' value='".$sv_lat."' />".
translate_fact('LONG')."<input name='sv_longText' id='sv_longText' type='text' style='width:62px; background:none; border:none;' value='".$sv_lng."' />".
- WT_I18N::translate('Bearing')."<input name='sv_bearText' id='sv_bearText' type='text' style='width:43px; background:none; border:none;' value='".$sv_dir."' />".
- WT_I18N::translate('Elevation')."<input name='sv_elevText' id='sv_elevText' type='text' style='width:43px; background:none; border:none;' value='".$sv_pitch."' />".
+ /* I18N: compass bearing (in degrees) */ WT_I18N::translate('Bearing')."<input name='sv_bearText' id='sv_bearText' type='text' style='width:43px; background:none; border:none;' value='".$sv_dir."' />".
+ /* I18N: angle of elevation (in degrees) */ WT_I18N::translate('Elevation')."<input name='sv_elevText' id='sv_elevText' type='text' style='width:43px; background:none; border:none;' value='".$sv_pitch."' />".
WT_I18N::translate('Zoom')."<input name='sv_zoomText' id='sv_zoomText' type='text' style='width:26px; background:none; border:none;' value='".$sv_zoom."' />
");
echo '<table align="center" style="margin-left:6px; border:1px solid black; width:522px; margin-top:-18px; background:#cccccc; ">';