summaryrefslogtreecommitdiff
path: root/modules/googlemap/places_edit.php
diff options
context:
space:
mode:
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
commit8f1750ab197db34a7fc7fc8de53059ffac99d47e (patch)
tree8cc9305ee56ebab90fc483981758269d9eb70924 /modules/googlemap/places_edit.php
parentc184ccc4cb8091698a510919e802147b9a5682a1 (diff)
downloadwebtrees-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.php6
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 />";
}