Modify ↓
#9608 closed defect (fixed)
Duplicated html tag in LatLonDialog
Reported by: | Owned by: | team | |
---|---|---|---|
Priority: | trivial | Milestone: | 14.01 |
Component: | Core | Version: | latest |
Keywords: | i18n | Cc: |
Description
Doing translation to my native language i find this:
IN josm/trunk/src/org/openstreetmap/josm/gui/dialogs/LatLonDialog.java
There is:
103 "<li>49 29.4 19 24.5</li>" + 104 "<li>-49 29.4 N -19 24.5 W</li></ul>" + 105 "<li>48 deg 42' 52.13\" N, 21 deg 11' 47.60\" E</li></ul>"
Should be:
103 "<li>49 29.4 19 24.5</li>" + 104 "<li>-49 29.4 N -19 24.5 W</li>" + 105 "<li>48 deg 42' 52.13\" N, 21 deg 11' 47.60\" E</li></ul>"
Tag </ul> in line 104 should be removed, because there is added another <li>, and later <ul> is closed i line 105.
Bug doesn't cause any problem with displaying text in JOSM.
Attachments (0)
Change History (2)
comment:1 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 11 years ago
Milestone: | → 14.01 |
---|
Note:
See TracTickets
for help on using tickets.
In 6753/josm: