Document messages for which clarification was requested.
Because N/S/E/W were on the same lines, and the "// TRANS:" comment must be directly above the line in which the message is located to work, I added the messages to a variable first.
This commit is contained in:
parent
518832da28
commit
86a3016a6f
@ -426,10 +426,18 @@ class NoticeListItem extends Widget
|
|||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
$latdms = $this->decimalDegreesToDMS(abs($lat));
|
$latdms = $this->decimalDegreesToDMS(abs($lat));
|
||||||
$londms = $this->decimalDegreesToDMS(abs($lon));
|
$londms = $this->decimalDegreesToDMS(abs($lon));
|
||||||
|
// TRANS: Used in coordinates as abbreviation of north
|
||||||
|
$north = _('N')
|
||||||
|
// TRANS: Used in coordinates as abbreviation of south
|
||||||
|
$south = _('S')
|
||||||
|
// TRANS: Used in coordinates as abbreviation of east
|
||||||
|
$east = _('E')
|
||||||
|
// TRANS: Used in coordinates as abbreviation of west
|
||||||
|
$west = _('W')
|
||||||
$name = sprintf(
|
$name = sprintf(
|
||||||
_('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
|
_('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
|
||||||
$latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0?_('N'):_('S')),
|
$latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south)),
|
||||||
$londms['deg'],$londms['min'], $londms['sec'],($lon>0?_('E'):_('W')));
|
$londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west));
|
||||||
}
|
}
|
||||||
|
|
||||||
$url = $location->getUrl();
|
$url = $location->getUrl();
|
||||||
|
Loading…
Reference in New Issue
Block a user