diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-10 19:38:58 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-10 19:38:58 -0700 |
commit | 7fada4ddcc1908829a4c45a02c7ecb3ef3ba60e8 (patch) | |
tree | 487bceba1c061e8c4ed067ba428812098837e635 | |
parent | 1eeb23e1e3b77de056791a74cd3e4f5c02d68510 (diff) |
Fix syntax errors that snuck in while documenting translations
-rw-r--r-- | lib/noticelist.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index b78550487..5265326b2 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)); } |