mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Include node in turn restriction description
Clarifies some cases where geometry could be unclear with previous message.
This commit is contained in:
+1
-1
@@ -686,7 +686,7 @@ en:
|
||||
description: '{num_trips} recorded trips in this area suggest there may be unmapped {geometry_type} here.'
|
||||
tr:
|
||||
title: Missing Turn Restriction
|
||||
description: '{num_passed} of {num_trips} recorded trips (travelling {travel_direction}) make a turn from {from_way} to {to_way}. There may be a missing "{turn_restriction}" restriction.'
|
||||
description: '{num_passed} of {num_trips} recorded trips (travelling {travel_direction}) make a turn from {from_way} to {to_way} at {junction}. There may be a missing "{turn_restriction}" restriction.'
|
||||
keepRight:
|
||||
title: KeepRight Error
|
||||
detail_title: Error
|
||||
|
||||
Vendored
+1
-1
@@ -832,7 +832,7 @@
|
||||
},
|
||||
"tr": {
|
||||
"title": "Missing Turn Restriction",
|
||||
"description": "{num_passed} of {num_trips} recorded trips (travelling {travel_direction}) make a turn from {from_way} to {to_way}. There may be a missing \"{turn_restriction}\" restriction."
|
||||
"description": "{num_passed} of {num_trips} recorded trips (travelling {travel_direction}) make a turn from {from_way} to {to_way} at {junction}. There may be a missing \"{turn_restriction}\" restriction."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -292,7 +292,8 @@ export default {
|
||||
turn_restriction: feature.turnType.toLowerCase(),
|
||||
from_way: linkEntity('w' + from_way),
|
||||
to_way: linkEntity('w' + to_way),
|
||||
travel_direction: dir_of_travel
|
||||
travel_direction: dir_of_travel,
|
||||
junction: linkErrorObject(t('QA.keepRight.error_parts.this_node'))
|
||||
};
|
||||
|
||||
_erCache.data[d.id] = d;
|
||||
|
||||
Reference in New Issue
Block a user