diff options
| author | Łukasz Wilenski <wooc@gazeta.pl> | 2010-08-22 07:05:42 +0000 |
|---|---|---|
| committer | Łukasz Wilenski <wooc@gazeta.pl> | 2010-08-22 07:05:42 +0000 |
| commit | 8f1750ab197db34a7fc7fc8de53059ffac99d47e (patch) | |
| tree | 8cc9305ee56ebab90fc483981758269d9eb70924 /modules/googlemap/places_edit.php | |
| parent | c184ccc4cb8091698a510919e802147b9a5682a1 (diff) | |
| download | webtrees-8f1750ab197db34a7fc7fc8de53059ffac99d47e.tar.gz webtrees-8f1750ab197db34a7fc7fc8de53059ffac99d47e.tar.bz2 webtrees-8f1750ab197db34a7fc7fc8de53059ffac99d47e.zip | |
add context translations to "unknown"
Diffstat (limited to 'modules/googlemap/places_edit.php')
| -rw-r--r-- | modules/googlemap/places_edit.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/googlemap/places_edit.php b/modules/googlemap/places_edit.php index 4647dfff96..65c9898125 100644 --- a/modules/googlemap/places_edit.php +++ b/modules/googlemap/places_edit.php @@ -178,7 +178,7 @@ if ($action=="update") { $success = false; - echo "<b>", str_replace("Unknown", i18n::translate('Unknown'), PrintReady(implode(', ', array_reverse($where_am_i, true)))), "</b><br />\n"; + echo "<b>", str_replace("Unknown", i18n::translate('unknown'), PrintReady(implode(', ', array_reverse($where_am_i, true)))), "</b><br />\n"; } if ($action=="add") { @@ -224,10 +224,10 @@ if ($action=="add") { $show_marker = false; $success = false; - if (!isset($place_name) || $place_name=="") echo "<b>", i18n::translate('Unknown'); + if (!isset($place_name) || $place_name=="") echo "<b>", i18n::translate('unknown'); else echo "<b>", $place_name; if (count($where_am_i)>0) - echo ", ", str_replace("Unknown", i18n::translate('Unknown'), PrintReady(implode(', ', array_reverse($where_am_i, true)))), "</b><br />\n"; + echo ", ", str_replace("Unknown", i18n::translate('unknown'), PrintReady(implode(', ', array_reverse($where_am_i, true)))), "</b><br />\n"; echo "</b><br />"; } |
