Add missing error types 73, 74 and 75

This commit is contained in:
SilentSpike
2018-09-03 18:45:30 +01:00
committed by Bryan Housel
parent 9bd772748a
commit 1f7455fdad
3 changed files with 35 additions and 2 deletions
+9
View File
@@ -981,6 +981,15 @@ en:
_72:
title: 'node without tags'
description: 'This node is not member of any way and doesn''t have any tags.'
_73:
title: 'tracktype with no highway tag'
description: 'This way has a "tracktype" tag but no "highway" tag.'
_74:
title: 'empty tag'
description: 'This {var1} has an empty tag: "{var2}".'
_75:
title: 'name without tags'
description: 'This {var1} has a name ("{var2}") but no other tags.'
_90:
title: 'motorways without ref'
description: 'This way is tagged as motorway and therefore needs a ref nat_ref or int_ref tag.'
+12
View File
@@ -1198,6 +1198,18 @@
"title": "node without tags",
"description": "This node is not member of any way and doesn't have any tags."
},
"_73": {
"title": "tracktype with no highway tag",
"description": "This way has a \"tracktype\" tag but no \"highway\" tag."
},
"_74": {
"title": "empty tag",
"description": "This {var1} has an empty tag: \"{var2}\"."
},
"_75": {
"title": "name without tags",
"description": "This {var1} has a name (\"{var2}\") but no other tags."
},
"_90": {
"title": "motorways without ref",
"description": "This way is tagged as motorway and therefore needs a ref nat_ref or int_ref tag."
+14 -2
View File
@@ -35,8 +35,7 @@
},
"_70": {
"title": "missing tags",
"description": "This (node|way|relation) has an empty tag: "([\\w:]+)="",
"regex": true
"description": ""
},
"_71": {
"title": "",
@@ -46,6 +45,19 @@
"title": "",
"description": "This node is not member of any way and does not have any tags"
},
"_73": {
"title": "",
"description": "This way has a tracktype tag but no highway tag"
},
"_74": {
"title": "missing tags",
"description": "This (node|way|relation) has an empty tag: "([\\w:]+)="",
"regex": true
},
"_75": {
"description": "This (node|way|relation) has a name \\((.+)\\) but no other tag",
"regex": true
},
"_90": {
"title": "motorways without ref",
"description": "This way is tagged as motorway and therefore needs a ref nat_ref or int_ref tag"