Skip to content

Commit

Permalink
Addition to highcharts#10669, language
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed May 24, 2019
1 parent 23afeef commit 8228dc4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions errors/31/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# An id one of nodes is not unique
# Non-unique point or node id

This error occurs when using the same ids for two or more nodes.
This error occurs when using the same `id` for two or more points or nodes.
4 changes: 2 additions & 2 deletions errors/errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
"text": "<h1>Invalid instrument</h1><p>This happens when you try to use a sonification instrument that is not valid. If you are using a predefined instrument, make sure your spelling is correct.</p>"
},
"31": {
"title": "An id one of nodes is not unique",
"text": "<h1>An id one of nodes is not unique.</h1><p>This error occurs when using the same ids for two or more nodes.</p>"
"title": "Non-unique point or node id",
"text": "<h1>Non-unique point or node id</h1><p>This error occurs when using the same <code>id</code> for two or more points or nodes.</p>"
},
"meta": {
"files": [
Expand Down
7 changes: 6 additions & 1 deletion js/error-messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ H.errorMessages = {
"title": "Invalid instrument",
"text": "<h1>Invalid instrument</h1><p>This happens when you try to use a sonification instrument that is not valid. If you are using a predefined instrument, make sure your spelling is correct.</p>"
},
"31": {
"title": "Non-unique point or node id",
"text": "<h1>Non-unique point or node id</h1><p>This error occurs when using the same <code>id</code> for two or more points or nodes.</p>"
},
"meta": {
"files": [
"errors/10/readme.md",
Expand All @@ -122,7 +126,8 @@ H.errorMessages = {
"errors/27/readme.md",
"errors/28/readme.md",
"errors/29/readme.md",
"errors/30/readme.md"
"errors/30/readme.md",
"errors/31/readme.md"
]
}
};

0 comments on commit 8228dc4

Please sign in to comment.