From: Brion Vibber <brion@pobox.com>
Date: Sun, 11 Apr 2010 02:38:58 +0000 (-0700)
Subject: Fix syntax errors that snuck in while documenting translations
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7fada4ddcc1908829a4c45a02c7ecb3ef3ba60e8;p=quix0rs-gnu-social.git

Fix syntax errors that snuck in while documenting translations
---

diff --git a/lib/noticelist.php b/lib/noticelist.php
index b785504876..5265326b27 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -427,16 +427,16 @@ class NoticeListItem extends Widget
             $latdms = $this->decimalDegreesToDMS(abs($lat));
             $londms = $this->decimalDegreesToDMS(abs($lon));
             // TRANS: Used in coordinates as abbreviation of north
-            $north = _('N')
+            $north = _('N');
             // TRANS: Used in coordinates as abbreviation of south
-            $south = _('S')
+            $south = _('S');
             // TRANS: Used in coordinates as abbreviation of east
-            $east = _('E')
+            $east = _('E');
             // TRANS: Used in coordinates as abbreviation of west
-            $west = _('W')
+            $west = _('W');
             $name = sprintf(
                 _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
-                $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south)),
+                $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south),
                 $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west));
         }