graphdb-workbench-tests 2.0.0-M2-1 → 2.0.0-M3-TR2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fixtures/locale-en.json +147 -72
- package/integration/explore/class.hierarchy.spec.js +0 -1
- package/integration/explore/class.relationships.spec.js +0 -1
- package/integration/explore/graphs.overview.spec.js +0 -1
- package/integration/explore/similarity.spec.js +3 -4
- package/integration/explore/visual.graph.spec.js +0 -1
- package/integration/help/rest-api.spec.js +0 -1
- package/integration/help/system-information.spec.js +0 -1
- package/integration/home/workbench.home.spec.js +0 -1
- package/integration/import/import.server.files.spec.js +0 -1
- package/integration/import/import.user.data.spec.js +0 -1
- package/integration/monitor/monitor.queries.spec.js +0 -1
- package/integration/monitor/monitor.resources.spec.js +0 -1
- package/integration/repository/repositories.spec.js +8 -9
- package/integration/repository/repository-commands.spec.js +0 -1
- package/integration/setup/autocomplete.spec.js +0 -1
- package/integration/setup/connectors-lucene.spec.js +5 -4
- package/integration/setup/jdbc.spec.js +0 -1
- package/integration/setup/my-settings.spec.js +0 -1
- package/integration/setup/namespaces.spec.js +0 -1
- package/integration/setup/plugins.spec.js +0 -1
- package/integration/setup/rdf-rank.spec.js +0 -1
- package/integration/setup/sparql-templates.spec.js +0 -1
- package/integration/setup/user-and-access.spec.js +0 -1
- package/integration/sparql/main.menu.spec.js +0 -1
- package/integration/sparql/sparql.menu.spec.js +0 -1
- package/package.json +1 -1
package/fixtures/locale-en.json
CHANGED
|
@@ -1,4 +1,128 @@
|
|
|
1
1
|
{
|
|
2
|
+
"cluster_management": {
|
|
3
|
+
"buttons": {
|
|
4
|
+
"create_cluster": "Create cluster",
|
|
5
|
+
"create_cluster_tooltip": "Create a new cluster ",
|
|
6
|
+
"delete_cluster": "Delete cluster",
|
|
7
|
+
"delete_cluster_tooltip": "Delete existing cluster"
|
|
8
|
+
},
|
|
9
|
+
"no_cluster_configured": "No cluster is configured",
|
|
10
|
+
"cluster_configuration": {
|
|
11
|
+
"label": "Cluster configuration",
|
|
12
|
+
"configuration_label": "Configuration",
|
|
13
|
+
"nodes_list_label": "Nodes list"
|
|
14
|
+
},
|
|
15
|
+
"cluster_status": {
|
|
16
|
+
"label": "Cluster status",
|
|
17
|
+
"leader": "Leader",
|
|
18
|
+
"followers": "Followers",
|
|
19
|
+
"node": {
|
|
20
|
+
"address": "Address",
|
|
21
|
+
"endpoint": "Endpoint",
|
|
22
|
+
"state": "State",
|
|
23
|
+
"term": "Term"
|
|
24
|
+
},
|
|
25
|
+
"election": {
|
|
26
|
+
"label": "Election in progress",
|
|
27
|
+
"nodes_status": "Nodes status"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"cluster_configuration_properties": {
|
|
31
|
+
"election_min_timeout": "Election minimum timeout",
|
|
32
|
+
"election_min_timeout_tooltip": "Election min timeout concerns the minimum wait time in milliseconds for a heartbeat from a leader. Should the time pass without receiving a heartbeat message from a leader. The follower will become a candidate and request votes from other nodes.",
|
|
33
|
+
"election_range_timeout": "Election range timeout",
|
|
34
|
+
"election_range_timeout_tooltip": "Election range timeout concerns the variable portion of each waiting period in milliseconds for a heartbeat. The reason we have a variable portion of the election timeout is because it helps us elect a leader more easily, as the node with lower timeout period would usually be elected.",
|
|
35
|
+
"heartbeat_interval": "Heartbeat interval",
|
|
36
|
+
"heartbeat_interval_tooltip": "Heartbeat interval is the interval in milliseconds between each heartbeat is sent to follower nodes by the leader. The interval should be at least twice as small as the election timeout in order to avoid unnecessary leader changes.",
|
|
37
|
+
"message_size_kb": "Message size KB",
|
|
38
|
+
"message_size_kb_tooltip": "Message size concerns the size of the data blocks transferred during data replication streaming through the RPC protocol.",
|
|
39
|
+
"verification_timeout": "Verification timeout",
|
|
40
|
+
"verification_timeout_tooltip": "Verification timeout concerns the amount of time a follower node would wait until attempting to verify last committed entry when the first verification is unsuccessful."
|
|
41
|
+
},
|
|
42
|
+
"cluster_page": {
|
|
43
|
+
"create_page_title": "Create cluster",
|
|
44
|
+
"edit_page_title": "Edit cluster",
|
|
45
|
+
"creating_cluster_loader": "Creating cluster...",
|
|
46
|
+
"create_form_legend": "Cluster properties",
|
|
47
|
+
"cluster_nodes_list": "Cluster nodes list",
|
|
48
|
+
"manual_node_add": "Add node by address",
|
|
49
|
+
"node_address": "Node RPC address",
|
|
50
|
+
"node_address_placeholder": "Enter node address",
|
|
51
|
+
"node_address_tooltip": "Node RPC address",
|
|
52
|
+
"add_node_btn": "Add node",
|
|
53
|
+
"add_node_btn_tooltip": "Add node to cluster",
|
|
54
|
+
"remove_node_btn_tooltip": "Remove node from cluster",
|
|
55
|
+
"current_node": "Current node",
|
|
56
|
+
"advanced_options": "Advanced options",
|
|
57
|
+
"advanced_options_tooltip": "Advanced options for cluster configuration",
|
|
58
|
+
"errors": {
|
|
59
|
+
"only_positive_integers": "Enter only positive integers",
|
|
60
|
+
"at_least_two_nodes": "Must have at least two nodes",
|
|
61
|
+
"node_in_list": "Node is already in the list",
|
|
62
|
+
"nodes_status_label": "Nodes status",
|
|
63
|
+
"preconditions_failed": {
|
|
64
|
+
"label": "Some of the preconditions for creating a cluster are not met!",
|
|
65
|
+
"valid_license": "Nodes must have a valid enterprise license",
|
|
66
|
+
"authentication_secret": "Authentication secret must be set on all nodes",
|
|
67
|
+
"nodes_reachable": "Nodes must be reachable",
|
|
68
|
+
"no_cluster_configured": "Nodes must not have cluster configuration"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"create_btn": "Create",
|
|
72
|
+
"save_btn": "Save",
|
|
73
|
+
"notifications": {
|
|
74
|
+
"create_success": "Cluster created successfully",
|
|
75
|
+
"create_failed": "Cluster creation failed",
|
|
76
|
+
"update_success": "Cluster updated successfully",
|
|
77
|
+
"update_failed": "Cluster update failed",
|
|
78
|
+
"form_invalid": "The form data is invalid"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"delete_cluster_dialog": {
|
|
82
|
+
"title": "Cluster delete confirmation",
|
|
83
|
+
"content": "Are you sure you want to delete the cluster?",
|
|
84
|
+
"force_delete_label": "Force cluster delete",
|
|
85
|
+
"force_delete_tooltip": "Checking this option will delete cluster on reachable nodes only",
|
|
86
|
+
"loader_message": "Deleting cluster",
|
|
87
|
+
"notifications": {
|
|
88
|
+
"success_delete": "Cluster deleted successfully",
|
|
89
|
+
"success_delete_partial": "Not all nodes are deleted",
|
|
90
|
+
"fail_delete": "Can not delete cluster"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"no.repos.reachable": "No repositories are reachable.\nCluster management shows all enterprise repositories from the active location and all remote locations.\nPlease go to",
|
|
94
|
+
"locations.and.repos": "Locations and Repositories",
|
|
95
|
+
"to.activate.add.locations": "to activate or add your locations.",
|
|
96
|
+
"average.task.time": "Average task time",
|
|
97
|
+
"running.tasks": "Running tasks",
|
|
98
|
+
"completed.tasks": "Completed tasks",
|
|
99
|
+
"failed.tasks": "Failed tasks",
|
|
100
|
+
"clone.to.another.location": "Clone to another location",
|
|
101
|
+
"read.only.label.simple": "Read only",
|
|
102
|
+
"mode.label": "Mode",
|
|
103
|
+
"normal.label": "Normal",
|
|
104
|
+
"mute.label": "Mute",
|
|
105
|
+
"avg.read.time": "Average read time",
|
|
106
|
+
"completed.read.writes": "Completed reads/writes",
|
|
107
|
+
"failed.read.writes": "Failed reads/writes",
|
|
108
|
+
"running.read.writes": "Running reads/writes",
|
|
109
|
+
"pending.writes": "Pending writes",
|
|
110
|
+
"drag.drop.nodes": "Drag and drop nodes to connect them or click to get additional information.",
|
|
111
|
+
"click.link.to.disconnect": "Click link to disconnect the nodes",
|
|
112
|
+
"master.is.peer": "This master is a peer to the other master but not vice versa, drag and drop the masters to fix it.",
|
|
113
|
+
"link_status": {
|
|
114
|
+
"on": "ON",
|
|
115
|
+
"off": "OFF",
|
|
116
|
+
"out.of.sync": "OUT OF SYNC",
|
|
117
|
+
"out.of.sync.forced": "OUT OF SYNC FORCED",
|
|
118
|
+
"writing.label": "WRITING",
|
|
119
|
+
"writing.copy": "WRITING COPY",
|
|
120
|
+
"waiting.write": "WAITING WRITE",
|
|
121
|
+
"replication.server": "REPLICATION SERVER",
|
|
122
|
+
"replication.client": "REPLICATION CLIENT",
|
|
123
|
+
"unknown.label": "UNKNOWN"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
2
126
|
"config.name.label": "Config name",
|
|
3
127
|
"graph.config.required": "My graph config (required)",
|
|
4
128
|
"description.text": "Description",
|
|
@@ -121,34 +245,6 @@
|
|
|
121
245
|
"ontop.repos.translate.data": "Ontop repositories translate data stored in an SQL database to a virtual SPARQL endpoint.",
|
|
122
246
|
"fedex.virtual.sparql": "FedX Virtual SPARQL",
|
|
123
247
|
"fedex.multi.sparql.endpoints": "FedX repositories provide transparent federation of multiple SPARQL endpoints under a single virtual endpoint.",
|
|
124
|
-
"no.repos.reachable": "No repositories are reachable.\nCluster management shows all enterprise repositories from the active location and all remote locations.\nPlease go to",
|
|
125
|
-
"locations.and.repos": "Locations and Repositories",
|
|
126
|
-
"to.activate.add.locations": "to activate or add your locations.",
|
|
127
|
-
"average.task.time": "Average task time",
|
|
128
|
-
"running.tasks": "Running tasks",
|
|
129
|
-
"completed.tasks": "Completed tasks",
|
|
130
|
-
"failed.tasks": "Failed tasks",
|
|
131
|
-
"clone.to.another.location": "Clone to another location",
|
|
132
|
-
"read.only.label.simple": "Read only",
|
|
133
|
-
"mode.label": "Mode",
|
|
134
|
-
"normal.label": "Normal",
|
|
135
|
-
"mute.label": "Mute",
|
|
136
|
-
"avg.read.time": "Average read time",
|
|
137
|
-
"completed.read.writes": "Completed reads/writes",
|
|
138
|
-
"failed.read.writes": "Failed reads/writes",
|
|
139
|
-
"running.read.writes": "Running reads/writes",
|
|
140
|
-
"pending.writes": "Pending writes",
|
|
141
|
-
"drag.drop.nodes": "Drag and drop nodes to connect them or click to get additional information.",
|
|
142
|
-
"click.link.to.disconnect": "Click link to disconnect the nodes",
|
|
143
|
-
"master.is.peer": "This master is a peer to the other master but not vice versa, drag and drop the masters to fix it.",
|
|
144
|
-
"out.of.sync": "OUT OF SYNC",
|
|
145
|
-
"out.of.sync.forced": "OUT OF SYNC FORCED",
|
|
146
|
-
"writing.label": "WRITING",
|
|
147
|
-
"writing.copy": "WRITING COPY",
|
|
148
|
-
"waiting.write": "WAITING WRITE",
|
|
149
|
-
"replication.server": "REPLICATION SERVER",
|
|
150
|
-
"replication.client": "REPLICATION CLIENT",
|
|
151
|
-
"unknown.label": "UNKNOWN",
|
|
152
248
|
"connector.label": "connector",
|
|
153
249
|
"eta.label": "ETA:",
|
|
154
250
|
"processed.entities": "Processed entities:",
|
|
@@ -198,6 +294,7 @@
|
|
|
198
294
|
"query.fetch.analogical.search": "query determines the data that will be fetched on analogical search.",
|
|
199
295
|
"analogical.search.info": " This query is executed during analogical search. Add more bindings by modifying this query to see more data in the results table.",
|
|
200
296
|
"sample.queries": "Sample queries:",
|
|
297
|
+
"user.queries": "User queries:",
|
|
201
298
|
"create.index.label": "Create index",
|
|
202
299
|
"view.index.query": "View Index Query",
|
|
203
300
|
"test.query.btn": "Test Query",
|
|
@@ -209,7 +306,6 @@
|
|
|
209
306
|
"add.field.popover": "Add Field",
|
|
210
307
|
"key.label": "key",
|
|
211
308
|
"value.label": "value",
|
|
212
|
-
|
|
213
309
|
"graphexplore.error.dependencies.count": "Could not get dependencies count",
|
|
214
310
|
"graphexplore.error.dependencies.count.status": "Could not get dependencies count status!",
|
|
215
311
|
"graphexplore.error.could.not.force.count": "Could not force dependencies count {{error}}",
|
|
@@ -268,7 +364,6 @@
|
|
|
268
364
|
"graphexplore.update": "Update saved graph",
|
|
269
365
|
"graphexplore.rename": "Rename saved graph",
|
|
270
366
|
"domain.range.error.get.label.comment": "Error getting rdfs:label and rdfs:comment",
|
|
271
|
-
|
|
272
367
|
"save.graph.share.graph": "Share graph with other users",
|
|
273
368
|
"save.graph.save.as": "Save as new...",
|
|
274
369
|
"save.graph.name.too.long": "Name is too long!",
|
|
@@ -276,21 +371,16 @@
|
|
|
276
371
|
"save.graph.exists": "already exists!",
|
|
277
372
|
"save.graph.visible.graph": "If checked other users will be able to see the graph but not delete or edit it.",
|
|
278
373
|
"save.graph.enter.name": "Enter name",
|
|
279
|
-
|
|
280
374
|
"rdf.class.hierarchy.class.count.slider": "Class Count Slider",
|
|
281
375
|
"rdf.class.hierarchy.description": "Allows you to reduce the number of classes displayed on the diagram\n by sorting those who have the maximum number of instances in your repository.\n You can adjust the count precisely using click + drag movement or the mousewheel\n to the number you are satisfied with.",
|
|
282
376
|
"rdf.class.hierarchy.min.value": "Min value:",
|
|
283
377
|
"rdf.class.hierarchy.max.value": "Max value:",
|
|
284
378
|
"rdf.class.hierarchy.max.from.repo": "Calculated from your repository",
|
|
285
|
-
|
|
286
379
|
"rdfs.comment.show": "Show",
|
|
287
380
|
"rdfs.comment.hide": "Hide",
|
|
288
381
|
"rdfs.comment.full.comment": " full comment",
|
|
289
|
-
|
|
290
382
|
"system.repo.warning.msg": "SYSTEM repository cannot be visualised. Please select a different repository from the dropdown list in the top right.",
|
|
291
|
-
|
|
292
383
|
"resources.garbage.collection.done": "Garbage collection performed.",
|
|
293
|
-
|
|
294
384
|
"security.mapping.header": "mapping",
|
|
295
385
|
"security.free.access.config.title": "Free Access configuration",
|
|
296
386
|
"security.free.access.config.settings": "Configure Free Access application settings and read or read/write access repositories",
|
|
@@ -339,6 +429,8 @@
|
|
|
339
429
|
"security.data.repos": "Data repositories are all repositories that aren't the SYSTEM repository.",
|
|
340
430
|
"security.is": "Security is",
|
|
341
431
|
"security.free.access.settings": "Free Access Settings",
|
|
432
|
+
"security.free.access.is": "Free Access is",
|
|
433
|
+
"security.free.access.non.admin": "free access to non-admin functionality",
|
|
342
434
|
"security.using.external.auth.db": "Using external authentication and authorization database",
|
|
343
435
|
"security.user.settings.modification": "You can modify the user settings for users that logged in previously but you cannot change their credentials or access rights.",
|
|
344
436
|
"security.table.username": "Username",
|
|
@@ -372,11 +464,12 @@
|
|
|
372
464
|
"resource.system.cpu.load": "System CPU Load",
|
|
373
465
|
"resource.used.memory": "Used memory",
|
|
374
466
|
"resource.thread.count": "Thread Count",
|
|
375
|
-
|
|
376
467
|
"view.autocomplete.title": "Autocomplete index",
|
|
377
468
|
"view.autocomplete.helpInfo": "The Autocomplete index is used for automatic completion of URIs in the SPARQL editor and the View resource page. Use this view to enable or disable the index and check its status.",
|
|
378
469
|
"view.clusterManagement.title": "Cluster management",
|
|
379
|
-
"view.clusterManagement.
|
|
470
|
+
"view.clusterManagement.create.title": "Create cluster",
|
|
471
|
+
"view.clusterManagement.edit.title": "Edit cluster",
|
|
472
|
+
"view.clusterManagement.helpInfo": "The Cluster management view is a visual administration tool for the GraphDB cluster. Here you can create, modify and delete a cluster or you can use it to monitor the state of a running cluster in near real time.",
|
|
380
473
|
"view.resource.title": "Resource",
|
|
381
474
|
"view.export.ctr.helpInfo": "Graphs overview provides a list of the default graph and all named graphs in GraphDB. It can be used to inspect the statements in each graph, export the graph or clear the graph's data.",
|
|
382
475
|
"view.connector.management.title": "Connector management",
|
|
@@ -434,8 +527,8 @@
|
|
|
434
527
|
"view.system.information.helpInfo": "The System information view shows the configuration values of the JVM running the GraphDB Workbench as well generate a detailed server report file you can use to hunt down issues",
|
|
435
528
|
"view.rest.api.documentation.title": "REST API documentation",
|
|
436
529
|
"view.rest.api.documentation.helpInfo": "The REST API view documents the available public RESTful endpoints and provides an interactive interface to execute the requests.",
|
|
530
|
+
"collapse.menu.title": "Collapse menu",
|
|
437
531
|
"view.plugins.helpInfo": "Activate or deactivate plugins.",
|
|
438
|
-
|
|
439
532
|
"menu.rdf.label": "RDF",
|
|
440
533
|
"menu.ontoRefine.label": "Tabular (OntoRefine)",
|
|
441
534
|
"menu.explore.label": "Explore",
|
|
@@ -465,7 +558,6 @@
|
|
|
465
558
|
"menu.developer.hub.label": "Developer Hub",
|
|
466
559
|
"menu.support.label": "Support",
|
|
467
560
|
"menu.plugins.label": "Plugins",
|
|
468
|
-
|
|
469
561
|
"core.popover.get.url.query": "Get URL to query",
|
|
470
562
|
"core.popover.shared.query.warning": "Query shared by another user. You may not edit or delete it.",
|
|
471
563
|
"core.edit.query": "Edit query",
|
|
@@ -478,6 +570,7 @@
|
|
|
478
570
|
"core.require.inferred": "Requires 'Include Inferred'!",
|
|
479
571
|
"query.editor.no.results.from.prev.run.warning": "No results from previous run. Click Run or press Ctrl/Cmd-Enter to execute the current query or update.",
|
|
480
572
|
"query.editor.visual.btn": "Visual",
|
|
573
|
+
"query.editor.table.btn": "Table",
|
|
481
574
|
"query.editor.run.btn": "Run",
|
|
482
575
|
"query.editor.query.took.msg": "Query took {{seconds}}, {{timestamp}}.",
|
|
483
576
|
"query.editor.update.msg": "{{message}} took {{seconds}}, {{timestamp}}.",
|
|
@@ -509,6 +602,8 @@
|
|
|
509
602
|
"query.editor.render.results.msg": "Rendering results",
|
|
510
603
|
"query.editor.new.tab.running.query.warning.msg": "New tabs may not be opened while query or update is running.",
|
|
511
604
|
"query.editor.tab.switching.running.query.warning.msg": "Tabs may not be switched while query or update is running.",
|
|
605
|
+
"query.editor.executing.update": "Executing update",
|
|
606
|
+
"query.editor.evaluating.query": "Evaluating query",
|
|
512
607
|
"yasr.removed.statements.result.msg": "Removed {{sizeDelta}} statements.",
|
|
513
608
|
"yasr.added.statements.result.msg": "Added {{sizeDelta}} statements.",
|
|
514
609
|
"yasr.statements.no.change.msg": "The number of statements did not change.",
|
|
@@ -522,43 +617,35 @@
|
|
|
522
617
|
"query.editor.creating.connector": "Creating connector {{name}}",
|
|
523
618
|
"query.editor.query.results.mismatch": "The query in your editor does not match the query results. Download will save the results from the last executed query.",
|
|
524
619
|
"query.editor.automatically.execute.update.warning": "This is an update and it may change the data in the repository.<br>Are you sure you want to execute it automatically?",
|
|
525
|
-
|
|
526
620
|
"sparql.tab.directive.close.last.warning": "Last tab must remain open.",
|
|
527
621
|
"sparql.tab.directive.delete.all.tabs.warning": "Are you sure you want to delete all query tabs except selected tab?",
|
|
528
622
|
"sparql.tab.directive.close.tab.warning": "Are you sure you want to close this query tab?",
|
|
529
|
-
|
|
623
|
+
"sparql.tab.directive.unnamed.tab.title": "Unnamed",
|
|
530
624
|
"search.resource.current.page.msg": "Use <b>View resource</b> on this page",
|
|
531
625
|
"search.resources.msg": "Search RDF resources",
|
|
532
626
|
"search.resource.close.msg": "Close search",
|
|
533
|
-
|
|
534
627
|
"unauthorized.console.warning": "Permission to page denied. Some errors in the console are normal.",
|
|
535
628
|
"jwt.auth.security.status": "Security has been {{status}}.",
|
|
536
629
|
"jwt.auth.free.access.updated.msg": "Free access settings have been updated.",
|
|
537
630
|
"jwt.auth.free.access.status": "Free access has been {{status}}.",
|
|
538
631
|
"enabled.status": "enabled",
|
|
539
632
|
"disabled.status": "disabled",
|
|
540
|
-
|
|
541
633
|
"openid.auth.unknown.flow": "'Unknown auth flow: {{authFlow}}",
|
|
542
634
|
"openid.auth.invalid.pkce.state": "Invalid pkce_state",
|
|
543
635
|
"openid.auth.not.jwt.token": "not a JWT token: {{token}}",
|
|
544
636
|
"openid.auth.cannot.retrieve.token.msg": "Cannot retrieve token after login; {{error}}",
|
|
545
637
|
"openid.auth.cannot.refresh.token.msg": "Could not refresh OpenID token; {{error}}",
|
|
546
|
-
|
|
547
638
|
"repositories.service.error.loading.location": "Error loading location",
|
|
548
639
|
"repositories.service.different.gdb.version": "The remote location is running a different GraphDB version.",
|
|
549
640
|
"repositories.service.no.active.location": "There is no active location",
|
|
550
641
|
"repositories.service.restarting.repo": "Restarting repository {{repositoryId}}",
|
|
551
|
-
|
|
552
642
|
"no.license.set.msg": "No license was set.",
|
|
553
|
-
|
|
554
643
|
"aborted.request.msg": "Request was aborted",
|
|
555
644
|
"aborted.request.no.results.msg": "The request has been aborted. There are no results to show.",
|
|
556
645
|
"confirm.execute": "Confirm execute",
|
|
557
|
-
|
|
558
646
|
"modal.ctr.copy.url.success": "URL copied successfully to clipboard.",
|
|
559
647
|
"modal.ctr.copy.not.supported.warning": "Your browser doesn't support \"copy\" operation.\nPress Ctrl-C / Cmd-C to copy URL manually.",
|
|
560
648
|
"modal.ctr.copy.query.success": "Query copied successfully to clipboard.",
|
|
561
|
-
|
|
562
649
|
"activate.plugin.warning.msg": "Are you sure you want to activate <strong>{{humanReadablePluginName}}</strong>?",
|
|
563
650
|
"error.getting.namespaces.for.repo": "Error getting namespaces for repository.",
|
|
564
651
|
"fill.input.field.msg": "Please fill the input field!",
|
|
@@ -567,7 +654,6 @@
|
|
|
567
654
|
"check.active.plugin.failure": "Could not check if plugin is active!",
|
|
568
655
|
"activate.plugin.confirmation": "Confirm plugin activation",
|
|
569
656
|
"activate.plugin.failure": "Could not activate plugin!",
|
|
570
|
-
|
|
571
657
|
"query.sample.title.placeholder": "Enter Title",
|
|
572
658
|
"query.sample.share.tooltip.msg": "If checked other users will be able to see the query but not delete or edit it.",
|
|
573
659
|
"query.sample.share.msg": "Share query with other users",
|
|
@@ -575,7 +661,6 @@
|
|
|
575
661
|
"empty.name.alert": "Name cannot be empty!",
|
|
576
662
|
"query.sample.empty.query.alert": "Query cannot be empty!",
|
|
577
663
|
"query.sample.existing.query.warning": "Query with name <strong>'{{name}}'</strong> already exists!",
|
|
578
|
-
|
|
579
664
|
"explore.validation": "Please enter a valid value.",
|
|
580
665
|
"get.namespaces.error.msg": "Cannot get namespaces for repository. View will not work properly; {{error}}",
|
|
581
666
|
"explore.error.resource.details": "Cannot get resource details; ",
|
|
@@ -587,7 +672,6 @@
|
|
|
587
672
|
"explore.explicit": "Explicit only",
|
|
588
673
|
"explore.implicit": "Implicit only",
|
|
589
674
|
"explore.autocomplete.warning.msg": "Autocomplete is OFF<br>Go to Setup -> Autocomplete",
|
|
590
|
-
|
|
591
675
|
"repository.create.btn": "Create new repository",
|
|
592
676
|
"import.execution": "Import execution",
|
|
593
677
|
"import.work.in.background": "Imports are executed in the background while you continue working on other things.",
|
|
@@ -643,7 +727,6 @@
|
|
|
643
727
|
"import.restore.defaults.btn": "Restore defaults",
|
|
644
728
|
"import.abort.btn": "Abort",
|
|
645
729
|
"import.no.files.found": "No files found",
|
|
646
|
-
|
|
647
730
|
"import.rdf.from.snippet": "Import RDF data from a text snippet",
|
|
648
731
|
"import.rdf.data.here": "Put your RDF data here and select its format.",
|
|
649
732
|
"import.enable.for.auto.start": "Enable this option to start the import when you click the Import button. If it is disabled the import will be added to the list but not started automatically.",
|
|
@@ -688,7 +771,6 @@
|
|
|
688
771
|
"text.snippet.text.aria.placeholder": "# Example: rdf:predicate a rdf:Property .",
|
|
689
772
|
"url.import.input.placeholder": "Data URL",
|
|
690
773
|
"filesTable.interrupt.import": "Interrupt import",
|
|
691
|
-
|
|
692
774
|
"core.errors.no.connected.repository.warning.msg": "Some functionalities are not available because you are not connected to any repository.",
|
|
693
775
|
"core.errors.restricted.warning.msg": "Some functionalities are not available because",
|
|
694
776
|
"core.errors.not.valid.license.warning.msg": "your license is not valid.",
|
|
@@ -704,21 +786,16 @@
|
|
|
704
786
|
"core.errors.create.repository.warning.msg": ". You can create a new repository",
|
|
705
787
|
"core.loading.longer.than.usual.warning": "GraphDB Workbench is still loading but it's taking longer than usual, please wait...",
|
|
706
788
|
"core.loading.refresh.warning": "If the Workbench hasn't loaded yet, please try to clear your browser cache and reload the page.",
|
|
707
|
-
|
|
708
789
|
"copy.to.clipboard.modal.paragraph": "Copy URL to clipboard",
|
|
709
790
|
"copy.to.clipboard.modal.ok.btn": "Copy to clipboard",
|
|
710
|
-
|
|
711
791
|
"inactive.plugin.warning": " is not active for this repository.",
|
|
712
792
|
"inactive.plugin.warning.for.use": "When a plugin is not active it cannot be used or configured.",
|
|
713
|
-
|
|
714
793
|
"view.trig.h": "View Statements in TriG",
|
|
715
|
-
|
|
716
794
|
"delete.connector.paragraph": "Are you sure you want to delete this connector?",
|
|
717
795
|
"delete.connector.popover": "Force delete will remove the connector even if part of the operation fails. Use it if normal delete does not work.",
|
|
718
796
|
"delete.connector.conditional": " Note that you may have to drop the index manually from {{type}}.",
|
|
719
797
|
"delete.connector.force.checkbox": "Force delete",
|
|
720
798
|
"delete.connector.delete.btn": "Delete",
|
|
721
|
-
|
|
722
799
|
"externalsync.empty.value.key.error": "Key may not be empty with value \"{{value}}\"",
|
|
723
800
|
"externalsync.duplicate.key.error": "Duplicate key {{key}}",
|
|
724
801
|
"externalsync.fetching.connectors": "Fetching connectors",
|
|
@@ -734,19 +811,16 @@
|
|
|
734
811
|
"externalsync.delete.force.success.msg": "Deleted (with force) connector {{name}}",
|
|
735
812
|
"externalsync.delete.success.msg": "Deleted connector {{name}}",
|
|
736
813
|
"externalsync.delete.remote.warning": "You may have to remove the index manually from {{key}}",
|
|
737
|
-
|
|
738
814
|
"add.label.add.autocomplete": "Add label for autocomplete",
|
|
739
815
|
"add.label.edit.autocomplete": "Edit label for autocomplete",
|
|
740
816
|
"add.label.enter.iri": "Enter label IRI or click one of the predefined IRIs",
|
|
741
817
|
"add.label.enter.comma.separated": "Enter comma-separated languages or leave empty for any language",
|
|
742
|
-
|
|
743
818
|
"autocomplete.update": "Updating label config...",
|
|
744
819
|
"autocomplete.enabling": "Enabling autocomplete...",
|
|
745
820
|
"autocomplete.disabling": "Disabling autocomplete...",
|
|
746
821
|
"autocomplete.index.iri": "Setting index IRIs...",
|
|
747
822
|
"autocomplete.index.build": "Requesting index build...",
|
|
748
823
|
"index.interrupt": "Interrupting index...",
|
|
749
|
-
|
|
750
824
|
"export.format.warning.msg": "This format does not support graphs.<br>Graph information will not be available in the export.",
|
|
751
825
|
"export.multiple.graph": "Multiple graph export",
|
|
752
826
|
"export.check.graphs.msg": "Check graphs you want to export first.",
|
|
@@ -761,7 +835,6 @@
|
|
|
761
835
|
"export.clear.graph.msg": "Failed to clear the {{longName}}",
|
|
762
836
|
"export.warning.clear.graph.msg": "Are you sure you want to clear the selected graphs?",
|
|
763
837
|
"export.cleared.graph.msg": "Cleared the selected graphs",
|
|
764
|
-
|
|
765
838
|
"namespace.confirm.replace": "Confirm replace",
|
|
766
839
|
"namespace.already.exists.msg": "This namespace prefix already exists. Do you want to replace it?",
|
|
767
840
|
"namespace.warning.delete.msg": "Are you sure you want to delete the namespace '{{prefix}}'?",
|
|
@@ -770,7 +843,6 @@
|
|
|
770
843
|
"namespace.selected.namespaces.deleted.successfully": "Selected namespaces were deleted successfully.",
|
|
771
844
|
"namespace.invalid.prefix": "Invalid prefix: {{prefix}}",
|
|
772
845
|
"namespace.warning.provide.namespace": "Please provide namespace.",
|
|
773
|
-
|
|
774
846
|
"jdbc.not.get.sql.msg": "Could not get SQL table configurations",
|
|
775
847
|
"jdbc.delete.sql.table.warning.msg": "Are you sure you want to delete the SQL table configuration '{{name}}'?",
|
|
776
848
|
"jdbc.not.delete.sql.msg": "Could not delete SQL table",
|
|
@@ -797,10 +869,8 @@
|
|
|
797
869
|
"jdbc.warning.one.column.msg": "Please define at least one column",
|
|
798
870
|
"jdbc.invalid.columns": "Invalid columns",
|
|
799
871
|
"jdbc.warning.all.column.msg": "Please select SQL type for all columns",
|
|
800
|
-
|
|
801
872
|
"deactivating.plugin": "Deactivating {{pluginName}}",
|
|
802
873
|
"activating.plugin": "Activating {{pluginName}}",
|
|
803
|
-
|
|
804
874
|
"abort.request.sent.msg": "Abort request sent.",
|
|
805
875
|
"confirm.abort": "Confirm abort",
|
|
806
876
|
"confirm.abort.warning.msg": "Are you sure you want to abort the query?",
|
|
@@ -808,7 +878,6 @@
|
|
|
808
878
|
"rdfrank.full.computation": "Requesting rank full computation...",
|
|
809
879
|
"rdfrank.incremental.computation": "Requesting rank incremental computation...",
|
|
810
880
|
"not.valid.iri": "'{{value}}' is not a valid IRI",
|
|
811
|
-
|
|
812
881
|
"fedx.repo.federation.members": "Federation members",
|
|
813
882
|
"fedx.repo.no.members.warning": " No members - add at least one local or remote repository",
|
|
814
883
|
"fedx.repo.local.attached.header": " Local repositories and attached locations ",
|
|
@@ -936,7 +1005,7 @@
|
|
|
936
1005
|
"repos.edit.common.settings": "Edit common settings for these repositories",
|
|
937
1006
|
"repos.view.update.licenses": "View or update license for these repositories",
|
|
938
1007
|
"repos.refresh.page.msg": " Refresh the page to retry.",
|
|
939
|
-
"no.repos.in.
|
|
1008
|
+
"no.repos.in.current.location": "There are no repositories in the active location",
|
|
940
1009
|
"connect.repo": "Connect repository",
|
|
941
1010
|
"connected.tooltip": "Connected",
|
|
942
1011
|
"copy.repo.url": "Copy repository URL to clipboard",
|
|
@@ -951,7 +1020,6 @@
|
|
|
951
1020
|
"detach.location": "Detach location",
|
|
952
1021
|
"attach.remote.location": " Attach remote location",
|
|
953
1022
|
"no.connected.gdb.instances": "There are no connected GraphDB instances.",
|
|
954
|
-
|
|
955
1023
|
"edit.file.content": "Edit file content",
|
|
956
1024
|
"upload.file": "Upload file...",
|
|
957
1025
|
"common.confirm.delete": "Confirm delete",
|
|
@@ -985,7 +1053,6 @@
|
|
|
985
1053
|
"common.attach": "Attach",
|
|
986
1054
|
"common.close": "Close",
|
|
987
1055
|
"common.preview": "Preview",
|
|
988
|
-
|
|
989
1056
|
"active.location.version.not.support.settings.warning": "The version of GraphDB at your active location does not support settings.",
|
|
990
1057
|
"click.to": "Click to",
|
|
991
1058
|
"disable": "disable",
|
|
@@ -1055,6 +1122,7 @@
|
|
|
1055
1122
|
"ignore.repo.access.rights": "Ignore repository's access rights",
|
|
1056
1123
|
"regardless.repo.rights.federated.view.warning": "Users will see a federated view that includes results from the repository regardless of their rights to access the repository",
|
|
1057
1124
|
"edit": "Edit",
|
|
1125
|
+
"security.label": "security",
|
|
1058
1126
|
"similarity.could.not.get.indexes.error": "Could not get indexes",
|
|
1059
1127
|
"similarity.empty.index.name.error": "Index name cannot be empty",
|
|
1060
1128
|
"similarity.index.name.constraint": "Index name can contain only letters (a-z, A-Z), numbers (0-9), \"-\" and \"_\"",
|
|
@@ -1154,7 +1222,6 @@
|
|
|
1154
1222
|
"show.prefixes.btn": "Show prefixes",
|
|
1155
1223
|
"hide.prefixes.btn": "Hide prefixes",
|
|
1156
1224
|
"search.classes.placeholder": "Search classes",
|
|
1157
|
-
|
|
1158
1225
|
"webapi.title": "Web api module",
|
|
1159
1226
|
"view.sparql.query.title": "View SPARQL Query",
|
|
1160
1227
|
"sparql.template.plugin": "SPARQL Template Plugin",
|
|
@@ -1342,6 +1409,7 @@
|
|
|
1342
1409
|
"access": "access",
|
|
1343
1410
|
"total.statements": "total statements",
|
|
1344
1411
|
"explicit": "explicit",
|
|
1412
|
+
"default": "default",
|
|
1345
1413
|
"inferred": "inferred",
|
|
1346
1414
|
"expansion.ratio": "expansion ratio",
|
|
1347
1415
|
"error": "error",
|
|
@@ -1417,7 +1485,6 @@
|
|
|
1417
1485
|
"sidepanel.add.ignored.predicate.placeholder": "Add ignored predicate",
|
|
1418
1486
|
"sidepanel.wildcard.iris": "IRIs that end with * are treated as wildcards and will match any IRI that begins with the text before the *",
|
|
1419
1487
|
"sidepanel.no.properties.found": "No properties found",
|
|
1420
|
-
|
|
1421
1488
|
"find.enter.resource.iri": "Enter resource IRI",
|
|
1422
1489
|
"export.no.graphs.in.repo": "No graphs in this repository. Add graphs via the",
|
|
1423
1490
|
"export.sparql.update.form": "SPARQL update form",
|
|
@@ -1484,6 +1551,8 @@
|
|
|
1484
1551
|
"change.menu.or.user.warning": "Please choose another menu item or login as a different user.",
|
|
1485
1552
|
"all.rights.reserved.label": "All rights reserved.",
|
|
1486
1553
|
"workbench.loading.warning": "GraphDB Workbench is loading...",
|
|
1554
|
+
"workbench.loading.hint5": "GraphDB Workbench is still loading but it's taking longer than usual, please wait...",
|
|
1555
|
+
"workbench.loading.hint10": "If the Workbench hasn't loaded yet, please try to clear your browser cache and reload the page.",
|
|
1487
1556
|
"change.language.tooltip": "Change language to",
|
|
1488
1557
|
"sparql.shortcuts": "keyboard shortcuts",
|
|
1489
1558
|
"sparql.shortcuts.capital": "keyboard shortcuts",
|
|
@@ -1502,7 +1571,6 @@
|
|
|
1502
1571
|
"sparql.shortcuts.switch.next.tab": "Switch to next tab",
|
|
1503
1572
|
"sparql.shortcuts.switch.prev.tab": "Switch to previous tab",
|
|
1504
1573
|
"sparql.shortcuts.close.all.tabs.except.selected": "Click at close tab icon closes all the tabs except the clicked one",
|
|
1505
|
-
|
|
1506
1574
|
"graph.shortcuts.mouse.keyboard": "mouse and keyboard actions",
|
|
1507
1575
|
"graph.shortcuts.mouse.actions": "Mouse actions",
|
|
1508
1576
|
"graph.shortcuts.single.click": "Single click",
|
|
@@ -1526,6 +1594,13 @@
|
|
|
1526
1594
|
"graph.shortcuts.rotate.graph.left": "Rotate the graph to the left",
|
|
1527
1595
|
"graph.shortcuts.right.arrow": "Right arrow",
|
|
1528
1596
|
"graph.shortcuts.rotate.graph.right": "Rotate the graph to the right",
|
|
1597
|
+
"filter.classes.placeholder": "Filter classes",
|
|
1598
|
+
"all.graphs.label": "All graphs",
|
|
1599
|
+
"subject": "subject",
|
|
1600
|
+
"predicate": "predicate",
|
|
1601
|
+
"object": "object",
|
|
1602
|
+
"context": "context",
|
|
1603
|
+
"all": "all",
|
|
1529
1604
|
|
|
1530
1605
|
"menu.btn.translate.en": "English",
|
|
1531
1606
|
"menu.btn.translate.fr": "French"
|
|
@@ -11,7 +11,6 @@ describe('Class hierarchy screen validation', () => {
|
|
|
11
11
|
let repositoryId;
|
|
12
12
|
|
|
13
13
|
beforeEach(() => {
|
|
14
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
15
14
|
repositoryId = 'repo' + Date.now();
|
|
16
15
|
cy.createRepository({id: repositoryId});
|
|
17
16
|
cy.presetRepository(repositoryId);
|
|
@@ -7,7 +7,6 @@ describe('Class relations screen validation', () => {
|
|
|
7
7
|
let repositoryId;
|
|
8
8
|
|
|
9
9
|
beforeEach(() => {
|
|
10
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
11
10
|
repositoryId = 'class-relations-repo' + Date.now();
|
|
12
11
|
cy.createRepository({id: repositoryId});
|
|
13
12
|
cy.presetRepository(repositoryId);
|
|
@@ -7,7 +7,6 @@ describe('Graphs overview screen validation', () => {
|
|
|
7
7
|
let repositoryId;
|
|
8
8
|
|
|
9
9
|
beforeEach(() => {
|
|
10
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
11
10
|
repositoryId = 'repo' + Date.now();
|
|
12
11
|
cy.createRepository({id: repositoryId});
|
|
13
12
|
cy.presetRepository(repositoryId);
|
|
@@ -43,7 +43,7 @@ describe('Similarity screen validation', () => {
|
|
|
43
43
|
|
|
44
44
|
context('Creating similarity index', () => {
|
|
45
45
|
beforeEach(() => {
|
|
46
|
-
initRepositoryAndVisitSimilarityView()
|
|
46
|
+
initRepositoryAndVisitSimilarityView();
|
|
47
47
|
});
|
|
48
48
|
|
|
49
49
|
it('Create default text similarity index and view SPARQL query', () => {
|
|
@@ -93,7 +93,7 @@ describe('Similarity screen validation', () => {
|
|
|
93
93
|
|
|
94
94
|
context('Index operations', () => {
|
|
95
95
|
beforeEach(() => {
|
|
96
|
-
initRepositoryAndVisitSimilarityView()
|
|
96
|
+
initRepositoryAndVisitSimilarityView();
|
|
97
97
|
});
|
|
98
98
|
|
|
99
99
|
it('Change Data query in Create index', () => {
|
|
@@ -156,7 +156,7 @@ describe('Similarity screen validation', () => {
|
|
|
156
156
|
|
|
157
157
|
context('Searching in index', () => {
|
|
158
158
|
beforeEach(() => {
|
|
159
|
-
initRepositoryAndVisitSimilarityView()
|
|
159
|
+
initRepositoryAndVisitSimilarityView();
|
|
160
160
|
});
|
|
161
161
|
|
|
162
162
|
it('Search for entity in index', () => {
|
|
@@ -235,7 +235,6 @@ describe('Similarity screen validation', () => {
|
|
|
235
235
|
});
|
|
236
236
|
|
|
237
237
|
function initRepository() {
|
|
238
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
239
238
|
repositoryId = 'similarity-repo-' + Date.now();
|
|
240
239
|
cy.createRepository({id: repositoryId});
|
|
241
240
|
cy.importServerFile(repositoryId, FILE_TO_IMPORT);
|
|
@@ -13,7 +13,6 @@ describe('Import screen validation - server files', () => {
|
|
|
13
13
|
const BLANK_NODE_FILE = 'bnodes.ttl';
|
|
14
14
|
|
|
15
15
|
beforeEach(() => {
|
|
16
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
17
16
|
repositoryId = 'server-import-' + Date.now();
|
|
18
17
|
cy.createRepository({id: repositoryId});
|
|
19
18
|
ImportSteps.visitServerImport(repositoryId);
|
|
@@ -52,7 +52,6 @@ describe('Import screen validation - user data', () => {
|
|
|
52
52
|
const SUCCESS_MESSAGE = 'Imported successfully';
|
|
53
53
|
|
|
54
54
|
beforeEach(() => {
|
|
55
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
56
55
|
repositoryId = 'user-import-' + Date.now();
|
|
57
56
|
cy.createRepository({id: repositoryId});
|
|
58
57
|
ImportSteps.visitUserImport(repositoryId);
|
|
@@ -40,7 +40,6 @@ describe('Repositories', () => {
|
|
|
40
40
|
const REPO_LIST_ID = '#wb-repositories-repositoryInGetRepositories';
|
|
41
41
|
|
|
42
42
|
beforeEach(() => {
|
|
43
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
44
43
|
repositoryId = 'repo-' + Date.now();
|
|
45
44
|
|
|
46
45
|
cy.visit('/repository');
|
|
@@ -78,9 +77,7 @@ describe('Repositories', () => {
|
|
|
78
77
|
|
|
79
78
|
it('should allow creation of repositories with default settings', () => {
|
|
80
79
|
// There should be a default repository location
|
|
81
|
-
getLocationsList()
|
|
82
|
-
.should('have.length', 1)
|
|
83
|
-
.and('contain', 'Local');
|
|
80
|
+
getLocationsList();
|
|
84
81
|
|
|
85
82
|
createRepository();
|
|
86
83
|
cy.url().should('include', '/repository/create');
|
|
@@ -345,7 +342,7 @@ describe('Repositories', () => {
|
|
|
345
342
|
|
|
346
343
|
confirmModal();
|
|
347
344
|
|
|
348
|
-
getRepositoriesList().should('not.
|
|
345
|
+
getRepositoriesList().should('not.exist');
|
|
349
346
|
|
|
350
347
|
// Check the repo has been deselected and is not present in the repo dropdown menu
|
|
351
348
|
getRepositoriesDropdown().click().within(() => {
|
|
@@ -499,9 +496,7 @@ describe('Repositories', () => {
|
|
|
499
496
|
|
|
500
497
|
it('should verify different virtual repository RDBMS provider elements', () => {
|
|
501
498
|
// There should be a default repository location
|
|
502
|
-
getLocationsList()
|
|
503
|
-
.should('have.length', 1)
|
|
504
|
-
.and('contain', 'Local');
|
|
499
|
+
getLocationsList();
|
|
505
500
|
|
|
506
501
|
createRepository();
|
|
507
502
|
cy.url().should('include', '/repository/create');
|
|
@@ -729,7 +724,11 @@ describe('Repositories', () => {
|
|
|
729
724
|
}
|
|
730
725
|
|
|
731
726
|
function getLocationsList() {
|
|
732
|
-
return cy.get('
|
|
727
|
+
return cy.get('#wb-locations-locationInGetLocations')
|
|
728
|
+
.find('tr.location')
|
|
729
|
+
.should('have.length', 1)
|
|
730
|
+
.and('contain', 'Repositories from: ')
|
|
731
|
+
.and('contain', 'Local');
|
|
733
732
|
}
|
|
734
733
|
|
|
735
734
|
function getRepositoryFromList(repository) {
|
|
@@ -9,7 +9,6 @@ describe('Setup / Connectors - Lucene', () => {
|
|
|
9
9
|
const connectorDeleteToastMessage = 'Deleted connector ' + luceneConnectorName;
|
|
10
10
|
|
|
11
11
|
beforeEach(() => {
|
|
12
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
13
12
|
repositoryId = 'repo' + Date.now();
|
|
14
13
|
cy.createRepository({id: repositoryId});
|
|
15
14
|
cy.presetRepository(repositoryId);
|
|
@@ -66,8 +65,10 @@ describe('Setup / Connectors - Lucene', () => {
|
|
|
66
65
|
.click();
|
|
67
66
|
getConfirmConnectorDeletebutton()
|
|
68
67
|
.should('be.visible')
|
|
69
|
-
.click()
|
|
70
|
-
|
|
68
|
+
.click()
|
|
69
|
+
.then(() => {
|
|
70
|
+
verifyStatusToastMessage(connectorDeleteToastMessage + '-copy');
|
|
71
|
+
});
|
|
71
72
|
});
|
|
72
73
|
});
|
|
73
74
|
|
|
@@ -137,6 +138,6 @@ describe('Setup / Connectors - Lucene', () => {
|
|
|
137
138
|
*/
|
|
138
139
|
function hideToastContainer() {
|
|
139
140
|
cy.get('.toast-success')
|
|
140
|
-
.then(toastContainer => toastContainer.
|
|
141
|
+
.then(toastContainer => toastContainer && toastContainer.remove());
|
|
141
142
|
}
|
|
142
143
|
});
|
|
@@ -4,7 +4,6 @@ describe('Namespaces', () => {
|
|
|
4
4
|
let DEFAULT_NAMESPACES = {};
|
|
5
5
|
|
|
6
6
|
beforeEach(() => {
|
|
7
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
8
7
|
repositoryId = 'namespaces-' + Date.now();
|
|
9
8
|
cy.createRepository({id: repositoryId});
|
|
10
9
|
cy.presetRepository(repositoryId);
|
|
@@ -34,7 +34,6 @@ describe('SPARQL Templates', () => {
|
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
beforeEach(() => {
|
|
37
|
-
cy.intercept('GET', '/i18n/locale-en.json', {fixture: 'locale-en.json'});
|
|
38
37
|
cy.visit('/sparql-templates', {
|
|
39
38
|
onBeforeLoad: (win) => {
|
|
40
39
|
win.localStorage.setItem('com.ontotext.graphdb.repository', repositoryId);
|