From d37f4593b04cd5c5302e895b71492f880a84c087 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Fri, 14 Nov 2014 17:00:06 +0100 Subject: [PATCH] fixed grammar --- .../frontend/js/graphViewer/graph/eventLibrary.js | 6 +++--- .../aardvark/frontend/js/views/graphManagementView.js | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/js/apps/system/aardvark/frontend/js/graphViewer/graph/eventLibrary.js b/js/apps/system/aardvark/frontend/js/graphViewer/graph/eventLibrary.js index 70b6fd218c..8a32ef0192 100644 --- a/js/apps/system/aardvark/frontend/js/graphViewer/graph/eventLibrary.js +++ b/js/apps/system/aardvark/frontend/js/graphViewer/graph/eventLibrary.js @@ -55,7 +55,7 @@ function EventLibrary() { this.checkExpandConfig = function(config) { if (config.startCallback === undefined) { - throw "A callback to the Start-method has to be defined"; + throw "A callback to the start-method has to be defined"; } if (config.adapter === undefined || config.adapter.explore === undefined) { throw "An adapter to load data has to be defined"; @@ -99,7 +99,7 @@ function EventLibrary() { throw "An adapter has to be defined"; } if (config.shaper === undefined) { - throw "A Node Shaper has to be defined"; + throw "A node shaper has to be defined"; } return true; }; @@ -109,7 +109,7 @@ function EventLibrary() { throw "An adapter has to be defined"; } if (config.shaper === undefined) { - throw "An Edge Shaper has to be defined"; + throw "An edge Shaper has to be defined"; } return true; }; diff --git a/js/apps/system/aardvark/frontend/js/views/graphManagementView.js b/js/apps/system/aardvark/frontend/js/views/graphManagementView.js index e7005cd802..78265a25eb 100644 --- a/js/apps/system/aardvark/frontend/js/views/graphManagementView.js +++ b/js/apps/system/aardvark/frontend/js/views/graphManagementView.js @@ -504,7 +504,7 @@ "newEdgeDefinitions" + self.counter, "Edge definitions", edgeDefinition.collection, - "An Edge Definition defines a relations of the graph", + "An edge definition defines a relation of the graph", "Edge definitions", true, false, @@ -519,7 +519,7 @@ "newEdgeDefinitions" + self.counter, "Edge definitions", edgeDefinition.collection, - "An Edge Definition defines a relations of the graph", + "An edge definition defines a relation of the graph", "Edge definitions", false, true, @@ -534,7 +534,7 @@ "fromCollections" + self.counter, "fromCollections", edgeDefinition.from, - "The collection that contain the start vertices of the relation.", + "The collections that contain the start vertices of the relation.", "fromCollections", true, false, @@ -548,7 +548,7 @@ "toCollections" + self.counter, "toCollections", edgeDefinition.to, - "The collection that contain the end vertices of the relation.", + "The collections that contain the end vertices of the relation.", "toCollections", true, false, @@ -566,7 +566,7 @@ "newVertexCollections", "Vertex collections", orphanCollections, - "Collections, that are part of a graph, but not used in an edge definition", + "Collections that are part of a graph but not used in an edge definition", "Vertex Collections", false, false,