diff --git a/pt.json b/pt.json
index 7992d43f..90893a91 100644
--- a/pt.json
+++ b/pt.json
@@ -183,7 +183,13 @@
"listStopsMarkerSymbol": "{{ markerCircle({ width: 5, color: color, fillOpacity: '1', radius: 3 })|raw }}",
"listStopsExclude": "{{ not isStop or stopCount == 0 }}",
"listStopsTitle": "{% if tags %}{{ tags.name|default(stopName)|default(trans('unknown')) }}{% else %}
{{ trans('loading') }}{% endif %}",
- "listStopsDescription": "{{ refs|join(' · ') }}",
+ "listStopsDetails": "{{ refs|join(' · ') }}",
+ "listStopsDescription": [
+ "{% set stopTypes = [] %}",
+ "{% if tags.railway in ['tram_stop'] %}{% set stopTypes = stopTypes|merge([ tagTrans('railway', tags.railway) ]) %}{% endif %}",
+ "{% if tags.highway in ['bus_stop'] %}{% set stopTypes = stopTypes|merge([ tagTrans('highway', tags.highway) ]) %}{% endif %}",
+ "{{ enumerate(stopTypes) }}"
+ ],
"listRoutesExclude": "true",
"style:stop": {
"width": "4",