From: Jan Schneider Date: Sat, 12 Sep 2009 11:00:59 +0000 (+0200) Subject: MFB: Gettext improvment. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=917cfddb8786a819b4e17bbe437bf7ea19caf5de;p=horde.git MFB: Gettext improvment. --- diff --git a/ansel/lib/Ajax/Imple/ImageSaveGeotag.php b/ansel/lib/Ajax/Imple/ImageSaveGeotag.php index 11a3bfa1f..3ed59fb63 100644 --- a/ansel/lib/Ajax/Imple/ImageSaveGeotag.php +++ b/ansel/lib/Ajax/Imple/ImageSaveGeotag.php @@ -80,9 +80,9 @@ class Ansel_Ajax_Imple_ImageSaveGeotag extends Horde_Ajax_Imple_Base $imgsrc .= Horde::link($addurl, $title, '', '', "setLocation('" . $data['image_latitude'] . "', '" . $data['image_longitude'] . "');return false") . '[image]'; } $imgsrc .= ''; - $content = sprintf(_("No location data present. Place using %s map %s or click on image to place at the same location."), $addLink, '') . $imgsrc; + $content = sprintf(_("No location data present. Place using %smap%s or click on image to place at the same location."), $addLink, '') . $imgsrc; } else { - $content = _("No location data present. You may add some ") . $addLink . _("here") . ''; + $content = sprintf(_("No location data present. You may add some %s."), $addLink . _("here") . ''); } return array('response' => 1, 'message' => $content);