graphdb-workbench-tests 2.7.6 → 2.8.0-RC2
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/cypress.config.js +3 -0
- package/fixtures/cluster/2-nodes-cluster-group-status-deleted.json +30 -0
- package/fixtures/cluster/2-nodes-cluster-group-status.json +30 -0
- package/fixtures/cluster/3-nodes-cluster-group-status-after-replace.json +44 -0
- package/fixtures/cluster/3-nodes-cluster-group-status-building-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-receiving-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-sending-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-waiting-for-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status.json +12 -3
- package/fixtures/cluster/4-nodes-cluster-group-status.json +58 -0
- package/fixtures/cluster/cluster-config.json +1 -0
- package/fixtures/cluster/cluster-node-status.json +4 -1
- package/fixtures/connectors/get-connectors.json +8 -0
- package/fixtures/connectors/get-retrieval-connector-0.json +1 -0
- package/fixtures/connectors/get-retrieval-connector.json +29 -0
- package/fixtures/connectors/get-ttyg-chatgpt-connectors.json +188 -0
- package/fixtures/locale-en.json +630 -61
- package/fixtures/namespaces/get-repository-starwars-namespaces.json +252 -0
- package/fixtures/remote-location/get-0-remote-locations.json +1 -2
- package/fixtures/remote-location/get-1-remote-locations.json +2 -4
- package/fixtures/remote-location/get-2-remote-locations.json +3 -6
- package/fixtures/remote-location/get-3-remote-locations.json +4 -8
- package/fixtures/remote-location/get-4-remote-locations.json +54 -0
- package/fixtures/remote-location/remote-location-status-in-cluster.json +1 -2
- package/fixtures/remote-location/remote-location-status-not-in-cluster.json +1 -2
- package/fixtures/remote-location/remote-locations-filter.json +1 -2
- package/fixtures/repositories/get-locations.json +67 -0
- package/fixtures/repositories/get-repositories.json +106 -0
- package/fixtures/repositories/get-repository-config-starwars-disabled-fts.json +201 -0
- package/fixtures/repositories/get-repository-config-starwars-enabled-fts.json +201 -0
- package/fixtures/repositories/get-ttyg-repositories.json +74 -0
- package/fixtures/similarity/get-similarity-indexes-0.json +1 -0
- package/fixtures/similarity/get-similarity-indexes.json +15 -0
- package/fixtures/similarity/get-ttyg-similarity-connectors.json +46 -0
- package/fixtures/ttyg/agent/create-agent.json +20 -0
- package/fixtures/ttyg/agent/get-agent-defaults.json +42 -0
- package/fixtures/ttyg/agent/get-agent-list-0.json +1 -0
- package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +56 -0
- package/fixtures/ttyg/agent/get-agent-list-new-agent.json +22 -0
- package/fixtures/ttyg/agent/get-agent-list.json +77 -0
- package/fixtures/ttyg/agent/get-agent.json +25 -0
- package/fixtures/ttyg/chats/ask-question.json +25 -0
- package/fixtures/ttyg/chats/create/create-chat-response.json +16 -0
- package/fixtures/ttyg/chats/create/get-chats-after-create.json +12 -0
- package/fixtures/ttyg/chats/create/get-chats-before-create.json +7 -0
- package/fixtures/ttyg/chats/deleted-chat.json +3 -0
- package/fixtures/ttyg/chats/explain-response-1.json +59 -0
- package/fixtures/ttyg/chats/explain-response-2.json +59 -0
- package/fixtures/ttyg/chats/export-chat.json +34 -0
- package/fixtures/ttyg/chats/get-chat-list-0.json +1 -0
- package/fixtures/ttyg/chats/get-chat-list-with-deleted-chat.json +17 -0
- package/fixtures/ttyg/chats/get-chat-list-with-renamed-chat.json +22 -0
- package/fixtures/ttyg/chats/get-chat-list.json +22 -0
- package/fixtures/ttyg/chats/get-chat.json +199 -0
- package/fixtures/ttyg/chats/renamed-chat.json +4 -0
- package/integration/cluster/cluster-management.spec.js +0 -170
- package/integration/cluster/edit-cluster-nodes-modal.spec.js +425 -0
- package/integration/explore/graphs.overview.spec.js +4 -0
- package/integration/home/cookie-policy.spec.js +65 -0
- package/integration/home/create-repository.spec.js +35 -0
- package/integration/home/documentation-link.spec.js +60 -0
- package/integration/home/google-analytics.spec.js +60 -0
- package/integration/home/language-selector.spec.js +19 -0
- package/integration/home/rdf-resource-search.spec.js +192 -0
- package/integration/home/view-resource-autocomplete.spec.js +52 -0
- package/integration/home/workbench.home.spec.js +1 -277
- package/integration/import/import-user-data-file-upload.spec.js +13 -0
- package/integration/import/import-user-data.spec.js +8 -2
- package/integration/import/import-view.spec.js +6 -1
- package/integration/repository/attach-remote-location.spec.js +203 -0
- package/integration/repository/ontop-repository.spec.js +87 -1
- package/integration/repository/repositories.spec.js +4 -19
- package/integration/setup/my-settings.spec.js +2 -0
- package/integration/ttyg/agent-list.spec.js +76 -0
- package/integration/ttyg/agent-select-menu.spec.js +141 -0
- package/integration/ttyg/chat-list.spec.js +286 -0
- package/integration/ttyg/chat-panel.spec.js +175 -0
- package/integration/ttyg/clone-agent.spec.js +75 -0
- package/integration/ttyg/create-agent.spec.js +560 -0
- package/integration/ttyg/create-chat.spec.js +69 -0
- package/integration/ttyg/delete-agent.spec.js +51 -0
- package/integration/ttyg/edit-agent.spec.js +54 -0
- package/integration/ttyg/ttyg-permission.spec.js +66 -0
- package/integration/ttyg/ttyg-view.spec.js +75 -0
- package/npm-shrinkwrap.json +215 -220
- package/package.json +5 -6
- package/steps/alert-dialog-steps.js +25 -0
- package/steps/cluster/cluster-page-steps.js +8 -0
- package/steps/cluster/custer-nodes-configuration-steps.js +107 -0
- package/steps/home-steps.js +48 -5
- package/steps/import/import-steps.js +11 -11
- package/steps/modal-dialog-steps.js +8 -0
- package/steps/ontop-repository-steps.js +26 -0
- package/steps/repositories/attach-repository-steps.js +118 -0
- package/steps/repository-steps.js +53 -5
- package/steps/setup/settings-steps.js +17 -0
- package/steps/ttyg/chat-panel-steps.js +62 -0
- package/steps/ttyg/ttyg-agent-settings-modal.steps.js +462 -0
- package/steps/ttyg/ttyg-view-steps.js +333 -0
- package/steps/window-steps.js +5 -0
- package/stubs/cluster/cluster-stubs.js +127 -7
- package/stubs/cluster/remote-location-stubs.js +46 -0
- package/stubs/connector-stubs.js +39 -0
- package/stubs/environment-stubs.js +27 -0
- package/stubs/license-stubs.js +101 -0
- package/stubs/repositories/repositories-stubs.js +133 -0
- package/stubs/repositories-stub.js +15 -0
- package/stubs/security-stubs.js +7 -0
- package/stubs/similarity-index-stubs.js +32 -0
- package/stubs/stubs.js +4 -0
- package/stubs/ttyg/ttyg-stubs.js +166 -0
- package/support/commands.js +2 -0
- package/support/index.js +17 -0
- package/support/security-command.js +25 -0
- package/support/settings-commands.js +4 -5
- package/support/user-commands.js +31 -0
- package/steps/cluster/add-remote-location-dialog-steps.js +0 -11
- package/steps/cluster/create-cluster-dialog-steps.js +0 -39
- package/steps/cluster/replace-nodes-dialog-steps.js +0 -39
package/fixtures/locale-en.json
CHANGED
|
@@ -3,15 +3,11 @@
|
|
|
3
3
|
"buttons": {
|
|
4
4
|
"delete_cluster": "Delete cluster",
|
|
5
5
|
"delete_cluster_tooltip": "Delete existing cluster",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"remove_nodes_btn_tooltip": "Remove nodes from existing cluster",
|
|
12
|
-
"edit_cluster": "Edit configuration",
|
|
13
|
-
"edit_cluster_tooltip": "Edit cluster configuration",
|
|
14
|
-
"show_cluster_settings_tooltip": "Show cluster configuration"
|
|
6
|
+
"edit_cluster": "Edit properties",
|
|
7
|
+
"edit_cluster_tooltip": "Edit cluster properties",
|
|
8
|
+
"show_cluster_settings_tooltip": "Show cluster configuration",
|
|
9
|
+
"update_nodes_group_btn": "Edit cluster",
|
|
10
|
+
"update_nodes_group_btn_tooltip": "Edit cluster nodes"
|
|
15
11
|
},
|
|
16
12
|
"cluster_graphical_view": {
|
|
17
13
|
"no_cluster_configured": "No cluster is configured",
|
|
@@ -62,6 +58,7 @@
|
|
|
62
58
|
}
|
|
63
59
|
},
|
|
64
60
|
"cluster_configuration_properties": {
|
|
61
|
+
"label": "Properties",
|
|
65
62
|
"election_min_timeout": "Election minimum timeout",
|
|
66
63
|
"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.",
|
|
67
64
|
"election_range_timeout": "Election range timeout",
|
|
@@ -73,23 +70,69 @@
|
|
|
73
70
|
"verification_timeout": "Verification timeout",
|
|
74
71
|
"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.",
|
|
75
72
|
"transaction_log_maximum_size_gb": "Transaction log maximum size GB",
|
|
76
|
-
"transaction_log_maximum_size_gb_tooltip": "Maximum size of the transaction log in GBs that will trigger an automatic truncation of the transaction log if it becomes bigger. The minimum transaction log size is 1 GB. Negative numbers will disable the automatic transaction log truncation."
|
|
73
|
+
"transaction_log_maximum_size_gb_tooltip": "Maximum size of the transaction log in GBs that will trigger an automatic truncation of the transaction log if it becomes bigger. The minimum transaction log size is 1 GB. Negative numbers will disable the automatic transaction log truncation.",
|
|
74
|
+
"batch_update_interval": "Batch update interval",
|
|
75
|
+
"batch_update_interval_tooltip": "Specifies the time interval (in milliseconds) at which updates are batched and synchronized between the primary and secondary clusters."
|
|
76
|
+
},
|
|
77
|
+
"cluster_configuration_nodes": {
|
|
78
|
+
"label": "Nodes",
|
|
79
|
+
"local": "Local"
|
|
80
|
+
},
|
|
81
|
+
"cluster_configuration_multi_region": {
|
|
82
|
+
"label": "Multi-region",
|
|
83
|
+
"primary_cluster": "Primary cluster",
|
|
84
|
+
"secondary_cluster": "Secondary cluster",
|
|
85
|
+
"primary_leader": "Primary leader: {{primaryLeader}}",
|
|
86
|
+
"create_tag": "Add identifier tag",
|
|
87
|
+
"create_tag_tooltip": "Add identifier tag to use with this cluster",
|
|
88
|
+
"enable_secondary_mode": "Enable secondary mode",
|
|
89
|
+
"enable_secondary_mode_tooltip": "Enable this cluster in secondary mode",
|
|
90
|
+
"delete_tag_tooltip": "Delete tag",
|
|
91
|
+
"cancel_tooltip": "Cancel",
|
|
92
|
+
"disable_secondary_mode": "Disable secondary mode",
|
|
93
|
+
"disable_secondary_mode_tooltip": "Disable cluster's secondary mode",
|
|
94
|
+
"created_tag": "Successfully added to cluster primary identifier tag: {{tag}}",
|
|
95
|
+
"deleted_tag": "Removed primary identifier tag '{{tag}}' from cluster",
|
|
96
|
+
"secondary_enabled": "Successfully enabled secondary mode",
|
|
97
|
+
"disabled_secondary_mode": "Secondary mode is disabled",
|
|
98
|
+
"secondary_cluster_settings": "Secondary cluster settings",
|
|
99
|
+
"column": {
|
|
100
|
+
"index": "",
|
|
101
|
+
"tag": "Identifier tag",
|
|
102
|
+
"tag_index": "Index"
|
|
103
|
+
},
|
|
104
|
+
"confirm": {
|
|
105
|
+
"delete": "Delete identifier tag {{tag}}",
|
|
106
|
+
"warning": "Deleting identifier tag would stop any secondary cluster identified with it from pulling updates.",
|
|
107
|
+
"disable_secondary_mode": "Disable secondary mode",
|
|
108
|
+
"disable_secondary_mode_warning": "By disabling secondary mode this cluster would stop being a read-only replica.",
|
|
109
|
+
"enable_secondary": "Enable secondary mode",
|
|
110
|
+
"enable_secondary_warning": "By enabling secondary mode this cluster would become a read-only replica of the specified primary cluster."
|
|
111
|
+
|
|
112
|
+
},
|
|
113
|
+
"error": {
|
|
114
|
+
"ascii": "Invalid characters detected. Only printable ASCII characters are allowed.",
|
|
115
|
+
"length": "The input length must be between {{minLen}} and {{maxLen}} characters.",
|
|
116
|
+
"creating": "Error during Tag creation",
|
|
117
|
+
"deleting": "Error during Tag deletion",
|
|
118
|
+
"disabling": "Error during secondary mode disabling",
|
|
119
|
+
"secondary": "Error enabling secondary mode"
|
|
120
|
+
},
|
|
121
|
+
"secondary_mode_modal": {
|
|
122
|
+
"rpc_address": "Any primary cluster node RPC address *",
|
|
123
|
+
"rpc_address_placeholder": "node-name:7300",
|
|
124
|
+
"tag": "Identifier tag *",
|
|
125
|
+
"tag_placeholder": "Example: us-central"
|
|
126
|
+
}
|
|
77
127
|
},
|
|
78
128
|
"cluster_page": {
|
|
79
129
|
"create_page_title": "Create cluster",
|
|
80
130
|
"edit_page_title": "Edit cluster configuration",
|
|
81
131
|
"creating_cluster_loader": "Creating cluster...",
|
|
82
|
-
"add_nodes_loader": "Adding nodes to cluster...",
|
|
83
|
-
"replace_nodes_loader": "Replacing nodes in cluster...",
|
|
84
|
-
"remove_nodes_loader": "Removing nodes from cluster...",
|
|
85
132
|
"updating_cluster_loader": "Updating cluster...",
|
|
86
|
-
"cluster_nodes_list": "Cluster nodes list",
|
|
87
|
-
"remote_locations": "Remote locations",
|
|
88
|
-
"remove_node_btn_tooltip": "Remove node",
|
|
89
133
|
"current_node": "Current node",
|
|
90
134
|
"advanced_options": "Advanced options",
|
|
91
135
|
"advanced_options_tooltip": "Advanced options for cluster configuration",
|
|
92
|
-
"select_from_locations_hint": "Select nodes from remote locations",
|
|
93
136
|
"toggle_legend_btn": "Legend",
|
|
94
137
|
"toggle_legend_btn_tooltip": "Toggle legend",
|
|
95
138
|
"errors": {
|
|
@@ -107,20 +150,13 @@
|
|
|
107
150
|
"no_cluster_configured": "Nodes must not have cluster configuration"
|
|
108
151
|
}
|
|
109
152
|
},
|
|
110
|
-
"create_btn": "Create",
|
|
111
153
|
"save_btn": "Save",
|
|
112
154
|
"notifications": {
|
|
113
155
|
"create_success": "Cluster created successfully",
|
|
114
156
|
"create_failed": "Cluster creation failed",
|
|
115
157
|
"update_success": "Cluster updated successfully",
|
|
116
158
|
"update_failed": "Cluster update failed",
|
|
117
|
-
"form_invalid": "The form data is invalid"
|
|
118
|
-
"add_nodes_success": "Nodes added successfully",
|
|
119
|
-
"add_nodes_fail": "Adding nodes failed",
|
|
120
|
-
"replace_nodes_success": "Nodes replaced successfully",
|
|
121
|
-
"replace_nodes_fail": "Replacing nodes failed",
|
|
122
|
-
"remove_nodes_success": "Nodes removed successfully",
|
|
123
|
-
"remove_nodes_fail": "Removing nodes failed"
|
|
159
|
+
"form_invalid": "The form data is invalid"
|
|
124
160
|
}
|
|
125
161
|
},
|
|
126
162
|
"delete_cluster_dialog": {
|
|
@@ -135,18 +171,44 @@
|
|
|
135
171
|
"fail_delete": "Can not delete cluster"
|
|
136
172
|
}
|
|
137
173
|
},
|
|
138
|
-
"
|
|
139
|
-
"title": "
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"
|
|
149
|
-
"
|
|
174
|
+
"update_cluster_group_dialog": {
|
|
175
|
+
"title": "Edit cluster",
|
|
176
|
+
"title_create": "Create cluster",
|
|
177
|
+
"current_node": "Current node",
|
|
178
|
+
"new_node": "Node will be added",
|
|
179
|
+
"deleted_node": "Node will be removed",
|
|
180
|
+
"leader": "Leader",
|
|
181
|
+
"follower": "Follower",
|
|
182
|
+
"candidate": "Candidate",
|
|
183
|
+
"no_cluster": "No cluster",
|
|
184
|
+
"out_of_sync": "Out of sync",
|
|
185
|
+
"no_connection": "No connection",
|
|
186
|
+
"read_only": "Read only",
|
|
187
|
+
"restricted": "Restricted",
|
|
188
|
+
"column": {
|
|
189
|
+
"index": "",
|
|
190
|
+
"location": "Location URL",
|
|
191
|
+
"info": "",
|
|
192
|
+
"status": "Status change"
|
|
193
|
+
},
|
|
194
|
+
"actions": {
|
|
195
|
+
"replace_node": "Replace node",
|
|
196
|
+
"delete_node": "Delete node",
|
|
197
|
+
"cannot_delete_node": "You cannot remove more than half of the healthy nodes at the same time",
|
|
198
|
+
"add_node": "Add node",
|
|
199
|
+
"add_node_tooltip": "Add node to current cluster",
|
|
200
|
+
"cancel": "Cancel",
|
|
201
|
+
"restore_node": "Undo"
|
|
202
|
+
},
|
|
203
|
+
"messages": {
|
|
204
|
+
"no_cluster": "No cluster is configured",
|
|
205
|
+
"invalid_form": "Invalid Location URL",
|
|
206
|
+
"connecting_node": "Connecting node",
|
|
207
|
+
"save_to_apply": "Save to apply changes"
|
|
208
|
+
},
|
|
209
|
+
"field_placeholders": {
|
|
210
|
+
"location": "http://my-hostname:7200"
|
|
211
|
+
}
|
|
150
212
|
}
|
|
151
213
|
},
|
|
152
214
|
"acl_management": {
|
|
@@ -216,6 +278,451 @@
|
|
|
216
278
|
"all": "all - CLEAR ALL graphs"
|
|
217
279
|
}
|
|
218
280
|
},
|
|
281
|
+
"ttyg": {
|
|
282
|
+
"helpInfo": "The <b>Talk to Your Graph</b> view lets you interact with your database through a conversational interface. You can ask natural language questions about the data and receive answers generated through the combined power of GraphDB and OpenAI. It supports multiple agent configurations and persistent chats for ongoing, contextual conversations.",
|
|
283
|
+
"loading": "Loading...",
|
|
284
|
+
"help": {
|
|
285
|
+
"btn": {
|
|
286
|
+
"show_help": {
|
|
287
|
+
"tooltip": "Show help"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"dialog": {
|
|
292
|
+
"delete": {
|
|
293
|
+
"title": "Delete Conversation",
|
|
294
|
+
"body": "Do you really want to delete <b>{{chatName}}</b>? All chat history will be lost."
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"messages": {
|
|
298
|
+
"text_copy_successful": "Successfully copied to the clipboard.",
|
|
299
|
+
"text_copy_failed": "Failed copying to the clipboard."
|
|
300
|
+
},
|
|
301
|
+
"chat": {
|
|
302
|
+
"loading_chats": "Loading chats...",
|
|
303
|
+
"deleting_chat": "Deleting chats...",
|
|
304
|
+
"btn": {
|
|
305
|
+
"open_sidebar": {
|
|
306
|
+
"tooltip": "Show chat list"
|
|
307
|
+
},
|
|
308
|
+
"close_sidebar": {
|
|
309
|
+
"tooltip": "Hide chat list"
|
|
310
|
+
},
|
|
311
|
+
"create_chat": {
|
|
312
|
+
"tooltip": "Start a new chat"
|
|
313
|
+
},
|
|
314
|
+
"export_chat": {
|
|
315
|
+
"label": "Export",
|
|
316
|
+
"tooltip": "Export chat"
|
|
317
|
+
},
|
|
318
|
+
"delete_chat": {
|
|
319
|
+
"label": "Delete chat",
|
|
320
|
+
"tooltip": "Delete chat"
|
|
321
|
+
},
|
|
322
|
+
"rename_chat": {
|
|
323
|
+
"label": "Rename",
|
|
324
|
+
"tooltip": "Rename chat"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"messages": {
|
|
328
|
+
"create_failure": "Failed to create new conversation. Please try again.",
|
|
329
|
+
"rename_failure": "Failed to rename the conversation. Please try again.",
|
|
330
|
+
"delete_failure": "Failed to delete the conversation. Please try again.",
|
|
331
|
+
"export_failure": "Failed to export the conversation. Please try again."
|
|
332
|
+
},
|
|
333
|
+
"dialog": {
|
|
334
|
+
"chat_is_missing": {
|
|
335
|
+
"title": "Error",
|
|
336
|
+
"body": "Selected conversation cannot be found. Probably it was deleted."
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"chat_panel": {
|
|
341
|
+
"hint1": "<div><span class=\"graph\">GRAPH</span><span class=\"wise\">WISE</span></div><div class=\"thrives\">AI THRIVES ON WHOLE DATA</div>",
|
|
342
|
+
"hint2": "Simply ask a question!",
|
|
343
|
+
"deleted_agent": "<span class=\"text-warning\"><i class=\"fa-regular fa-triangle-exclamation fa-xs\"></i> deleted agent</span>",
|
|
344
|
+
"btn": {
|
|
345
|
+
"ask": {
|
|
346
|
+
"label": "Ask"
|
|
347
|
+
},
|
|
348
|
+
"regenerate": {
|
|
349
|
+
"tooltip": "Regenerate"
|
|
350
|
+
},
|
|
351
|
+
"copy_answer": {
|
|
352
|
+
"tooltip": "Copy answer"
|
|
353
|
+
},
|
|
354
|
+
"copy_raw_query": {
|
|
355
|
+
"tooltip": "Copy raw query"
|
|
356
|
+
},
|
|
357
|
+
"copy_sparql": {
|
|
358
|
+
"tooltip": "Copy SPARQL query"
|
|
359
|
+
},
|
|
360
|
+
"copy_json": {
|
|
361
|
+
"tooltip": "Copy JSON query"
|
|
362
|
+
},
|
|
363
|
+
"copy_other": {
|
|
364
|
+
"tooltip": "Copy query"
|
|
365
|
+
},
|
|
366
|
+
"copy_error_message": {
|
|
367
|
+
"tooltip": "Copy error message"
|
|
368
|
+
},
|
|
369
|
+
"explain_response": {
|
|
370
|
+
"tooltip": "Explain response"
|
|
371
|
+
},
|
|
372
|
+
"derive_answer": {
|
|
373
|
+
"label": "How did you derive this answer?",
|
|
374
|
+
"hint": "<b>Hint</b>: you can also ask the model, for example"
|
|
375
|
+
},
|
|
376
|
+
"open_in_sparql_editor": {
|
|
377
|
+
"tooltip": "Open in SPARQL editor"
|
|
378
|
+
},
|
|
379
|
+
"proceed": {
|
|
380
|
+
"label": "Proceed"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"labels": {
|
|
384
|
+
"query_method": "Query method",
|
|
385
|
+
"raw_query": "Raw query",
|
|
386
|
+
"sparql_query": "SPARQL query",
|
|
387
|
+
"agent_name": "Agent: {{agentName}} <br/> {{date}} at {{time}}",
|
|
388
|
+
"question_asked": "{{date}} at {{time}}",
|
|
389
|
+
"json": "JSON",
|
|
390
|
+
"error_message": "Error message sent to model",
|
|
391
|
+
"explain_no_methods": "No query methods were called.",
|
|
392
|
+
"called": "Called {{('ttyg.chat_panel.query_name.' + name) | translate}}"
|
|
393
|
+
},
|
|
394
|
+
"query_name": {
|
|
395
|
+
"sparql_query":"SPARQL",
|
|
396
|
+
"fts_search": "Full-text search",
|
|
397
|
+
"similarity_search": "Similarity search",
|
|
398
|
+
"retrieval_search": "ChatGPT Retrieval",
|
|
399
|
+
"iri_discovery": "FTS for IRI discovery"
|
|
400
|
+
},
|
|
401
|
+
"query_colon": ":",
|
|
402
|
+
"query_desc": {
|
|
403
|
+
"sparql_query":"Direct query",
|
|
404
|
+
"fts_search": "Full-text search via SPARQL",
|
|
405
|
+
"similarity_search": "Similarity search via SPARQL",
|
|
406
|
+
"retrieval_search": "Direct JSON query",
|
|
407
|
+
"iri_discovery": "Full-text search via SPARQL"
|
|
408
|
+
},
|
|
409
|
+
"dialog": {
|
|
410
|
+
"confirm_repository_change": {
|
|
411
|
+
"body": "If you proceed with executing of SPARQL query, GraphDB will open in a new tab and switch to the <b>{{repositoryId}}</b> repository."
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"messages": {
|
|
415
|
+
"explain_response_failure": "Failed to retrieve the explanation for the response.",
|
|
416
|
+
"agent_changed_info": "Agent changed to <b> {{agentName}} </b>"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"agent": {
|
|
420
|
+
"loading_agents": "Loading agents...",
|
|
421
|
+
"deleting_agent": "Deleting agent...",
|
|
422
|
+
"deleted_repository": "Deleted repository",
|
|
423
|
+
"create_agent_modal": {
|
|
424
|
+
"title": {
|
|
425
|
+
"create": "Create Agent",
|
|
426
|
+
"edit": "Edit Agent",
|
|
427
|
+
"clone": "Clone Agent"
|
|
428
|
+
},
|
|
429
|
+
"advanced_settings": {
|
|
430
|
+
"show": "Show advanced settings",
|
|
431
|
+
"hide": "Hide advanced settings"
|
|
432
|
+
},
|
|
433
|
+
"form": {
|
|
434
|
+
"agent_name": {
|
|
435
|
+
"label": "Agent name",
|
|
436
|
+
"placeholder": "Enter user friendly name",
|
|
437
|
+
"tooltip": "A descriptive name that helps you identify this agent."
|
|
438
|
+
},
|
|
439
|
+
"repository": {
|
|
440
|
+
"label": "Repository ID",
|
|
441
|
+
"tooltip": "The ID of the repository that will be used to retrieve information from GraphDB. Ontop and FedX repositories are not supported."
|
|
442
|
+
},
|
|
443
|
+
"model": {
|
|
444
|
+
"label": "Model",
|
|
445
|
+
"tooltip": "The model to use for this agent. More powerful models will provide better results.",
|
|
446
|
+
"hint": "Check out the available OpenAI models <a href=\"https://platform.openai.com/docs/models\" target=\"_blank\">here</a>."
|
|
447
|
+
},
|
|
448
|
+
"temperature": {
|
|
449
|
+
"label": "Temperature",
|
|
450
|
+
"tooltip": "The sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.",
|
|
451
|
+
"high_temperature_warning": "A temperature above 1.0 may cause the model to generate anything from creative responses to overdriven, incoherent outputs. Consider lowering the temperature for more reliable results."
|
|
452
|
+
},
|
|
453
|
+
"top_p": {
|
|
454
|
+
"label": "Top P",
|
|
455
|
+
"tooltip": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with Top P probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. OpenAI recommends altering this or temperature but not both."
|
|
456
|
+
},
|
|
457
|
+
"seed": {
|
|
458
|
+
"label": "Seed",
|
|
459
|
+
"hint": "Any integer value"
|
|
460
|
+
},
|
|
461
|
+
"extraction_method": {
|
|
462
|
+
"label": "Query methods",
|
|
463
|
+
"required": "At least one query method must be selected",
|
|
464
|
+
"tooltip": "Query methods to be used by the model to retrieve information from GraphDB and answer questions."
|
|
465
|
+
},
|
|
466
|
+
"fts_search": {
|
|
467
|
+
"label": "Full-text search",
|
|
468
|
+
"tooltip": "Answers questions by using full-text search in literals and IRIs. Performs well on open-ended questions but not so well on providing aggregations.",
|
|
469
|
+
"fts_disabled_message": "You must <a href=\"{{repositoryEditPage}}\" target=\"_blank\">enable the full-text search (FTS) index</a> to use this method.",
|
|
470
|
+
"missing_repository_id": "Repository ID must be selected",
|
|
471
|
+
"btn": {
|
|
472
|
+
"reload": {
|
|
473
|
+
"tooltip": "Refresh the FTS index status"
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"fts_search_max_number_of_triples_per_call": {
|
|
478
|
+
"label": "Max number of results (triples) per call",
|
|
479
|
+
"tooltip": "Limit the maximum number of triples returned by Full-text search. The default value is automatic and determined at runtime. If not sure, leave the default value.",
|
|
480
|
+
"placeholder": "Automatic value"
|
|
481
|
+
},
|
|
482
|
+
"sparql_search": {
|
|
483
|
+
"label": "SPARQL",
|
|
484
|
+
"tooltip": "Answers questions by performing a SPARQL query. This works well for datasets with good ontologies and performs well on closed-ended questions, including aggregations.",
|
|
485
|
+
"required_option": "Select how an ontology should be fetched"
|
|
486
|
+
},
|
|
487
|
+
"ontology_graph": {
|
|
488
|
+
"label": "Fetch ontology from a named graph",
|
|
489
|
+
"tooltip": "The named graph that contains the entire ontology or a subset sufficient to generate useful SPARQL queries."
|
|
490
|
+
},
|
|
491
|
+
"add_missing_namespaces": {
|
|
492
|
+
"label": "Auto-add missing namespaces",
|
|
493
|
+
"tooltip": "Automatically insert missing namespaces in SPARQL queries. This helps avoid errors when a query doesn't include necessary namespaces. In many cases, the model corrects itself after the missing namespaces error is returned, but enabling this option ensures GraphDB resolves the issue automatically."
|
|
494
|
+
},
|
|
495
|
+
"construct_query": {
|
|
496
|
+
"label": "Provide a SPARQL CONSTRUCT query that fetches the ontology",
|
|
497
|
+
"tooltip": "A SPARQL CONSTRUCT query that returns the entire ontology or a subset sufficient to generate useful SPARQL queries."
|
|
498
|
+
},
|
|
499
|
+
"similarity_search": {
|
|
500
|
+
"label": "Similarity search",
|
|
501
|
+
"tooltip": "Answers questions by using Similarity search. Performs well on open-ended questions but not so well on providing aggregations."
|
|
502
|
+
},
|
|
503
|
+
"similarity_search_max_number_of_triples_per_call": {
|
|
504
|
+
"label": "Max number of results (triples) per call",
|
|
505
|
+
"tooltip": "Limit the maximum number of triples returned by Similarity search. The default value is automatic and determined at runtime. If not sure, leave the default value.",
|
|
506
|
+
"placeholder": "Automatic value"
|
|
507
|
+
},
|
|
508
|
+
"similarity_index": {
|
|
509
|
+
"label": "Similarity index name",
|
|
510
|
+
"tooltip": "The text similarity index to use for similarity search queries.",
|
|
511
|
+
"loading_indexes": "Loading similarity indexes...",
|
|
512
|
+
"no_similarity_index": {
|
|
513
|
+
"message_1": "You must",
|
|
514
|
+
"message_2": "create a similarity index",
|
|
515
|
+
"message_3": "to use this method"
|
|
516
|
+
},
|
|
517
|
+
"btn": {
|
|
518
|
+
"reload": {
|
|
519
|
+
"tooltip": "Refresh the similarity indexes"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"similarity_threshold": {
|
|
524
|
+
"label": "Similarity score threshold",
|
|
525
|
+
"tooltip": "Use only similarity results whose score is at least the threshold value, between 0 and 1. The default value is 0.6."
|
|
526
|
+
},
|
|
527
|
+
"retrieval_search": {
|
|
528
|
+
"label": "ChatGPT Retrieval connector",
|
|
529
|
+
"tooltip": "Answers questions by using vector search in text chunks created from RDF. Performs well on open-ended questions but not so well on providing aggregations.",
|
|
530
|
+
"no_retrieval_connectors": {
|
|
531
|
+
"message_1": "You must",
|
|
532
|
+
"message_2": "create ChatGPT Retrieval connector",
|
|
533
|
+
"message_3": "to use this method"
|
|
534
|
+
},
|
|
535
|
+
"btn": {
|
|
536
|
+
"reload": {
|
|
537
|
+
"tooltip": "Refresh the ChatGPT Retrieval connectors"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"connector_id": {
|
|
542
|
+
"label": "ChatGPT Retrieval connector",
|
|
543
|
+
"tooltip": "The ChatGPT Retrieval Connector instance to use for CtatGPT retrieval queries."
|
|
544
|
+
},
|
|
545
|
+
"query_template": {
|
|
546
|
+
"label": "Query template",
|
|
547
|
+
"tooltip": "This template may use a filter with the available metadata fields in your ChatGPT Retrieval Connector instance. The default value contains only the query part and uses no metadata fields. Please consult the documentation for more information."
|
|
548
|
+
},
|
|
549
|
+
"retrieval_search_max_number_of_triples_per_call": {
|
|
550
|
+
"label": "Max number of results (chunks) per call",
|
|
551
|
+
"tooltip": "Limit the maximum number of text chunks returned by the ChatGPT Retrieval Connector. The default value is automatic and determined at runtime. If not sure, leave the default value.",
|
|
552
|
+
"placeholder": "Automatic value"
|
|
553
|
+
},
|
|
554
|
+
"system_instruction": {
|
|
555
|
+
"label": "Base instructions",
|
|
556
|
+
"placeholder": "Enter base instructions",
|
|
557
|
+
"tooltip": "Base instructions for the agent. The default value provides good results in most setups so there is no need to change it.",
|
|
558
|
+
"overriding_system_instruction_warning": {
|
|
559
|
+
"title": "Overriding base instructions",
|
|
560
|
+
"body": "Modifying the base instructions may result in suboptimal performance. Only proceed if you are confident in your adjustments."
|
|
561
|
+
},
|
|
562
|
+
"btn": {
|
|
563
|
+
"copy_instruction": {
|
|
564
|
+
"tooltip": "Copy base instructions"
|
|
565
|
+
},
|
|
566
|
+
"restore_default": {
|
|
567
|
+
"tooltip": "Reset to default"
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"user_instruction": {
|
|
572
|
+
"label": "Additional instructions",
|
|
573
|
+
"placeholder": "Enter additional instructions",
|
|
574
|
+
"tooltip": "Additional instructions can be used to provide ground truths or proper instructions.",
|
|
575
|
+
"btn": {
|
|
576
|
+
"copy_instruction": {
|
|
577
|
+
"tooltip": "Copy additional instructions"
|
|
578
|
+
},
|
|
579
|
+
"restore_default": {
|
|
580
|
+
"tooltip": "Reset to default"
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"additional_query_methods": {
|
|
585
|
+
"label": "Additional query methods",
|
|
586
|
+
"tooltip": "Additional query methods supplement the main query methods but cannot be used on their own to answer general questions.",
|
|
587
|
+
"method": {
|
|
588
|
+
"iri_discovery_search": {
|
|
589
|
+
"label": "Full-text search in labels for IRI discovery",
|
|
590
|
+
"tooltip": "Helps the model discover the IRIs for a particular incomplete query, for example the name Michael in “What’s Michael’s phone number?”"
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"btn": {
|
|
596
|
+
"create": {
|
|
597
|
+
"label": "Create Agent"
|
|
598
|
+
},
|
|
599
|
+
"cancel": {
|
|
600
|
+
"label": "Cancel"
|
|
601
|
+
},
|
|
602
|
+
"save": {
|
|
603
|
+
"label": "Save"
|
|
604
|
+
},
|
|
605
|
+
"explain_settings": {
|
|
606
|
+
"label": "Explain settings"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"dialog": {
|
|
610
|
+
"confirm_repository_change_before_open_similarity": {
|
|
611
|
+
"body": "If you proceed with creating the similarity index, GraphDB will open in a new tab and switch to the <b>{{repositoryId}}</b> repository."
|
|
612
|
+
},
|
|
613
|
+
"confirm_repository_change_before_open_connectors": {
|
|
614
|
+
"body": "If you proceed with creating the ChatGPT Retrieval connector, GraphDB will open in a new tab and switch to the <b>{{repositoryId}}</b> repository."
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"delete_agent_modal": {
|
|
619
|
+
"title": "Delete Agent",
|
|
620
|
+
"body": "Do you really want to delete the agent <b>{{agentName}}</b>?"
|
|
621
|
+
},
|
|
622
|
+
"instructions_explain_modal": {
|
|
623
|
+
"title": "Agent instructions",
|
|
624
|
+
"instructions": {
|
|
625
|
+
"baseInstructions": {
|
|
626
|
+
"label": "Base instructions",
|
|
627
|
+
"description": "Establishes the main context and foundational guidelines for the agent's behavior."
|
|
628
|
+
},
|
|
629
|
+
"additionalInstructions": {
|
|
630
|
+
"label": "Additional instructions",
|
|
631
|
+
"description": "Provides extra guidelines to further customize the agent's behavior or specify important truths."
|
|
632
|
+
},
|
|
633
|
+
"sparqlInstructions": {
|
|
634
|
+
"label": "SPARQL instructions",
|
|
635
|
+
"description": "Details the instructions for constructing and executing SPARQL queries."
|
|
636
|
+
},
|
|
637
|
+
"ontologyIntroduction": {
|
|
638
|
+
"label": "Ontology introduction",
|
|
639
|
+
"description": "Introduces the section that contains the ontology data."
|
|
640
|
+
},
|
|
641
|
+
"ontology": {
|
|
642
|
+
"label": "Ontology",
|
|
643
|
+
"description": "Represents the extracted and serialized ontology."
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"btn": {
|
|
647
|
+
"close": {
|
|
648
|
+
"label": "Close"
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"agent_select_menu": {
|
|
653
|
+
"no_selection_label": "Select an agent",
|
|
654
|
+
"deleted_agent": "[deleted agent]",
|
|
655
|
+
"configure_agent_modal": {
|
|
656
|
+
"title": "Configure Agent",
|
|
657
|
+
"body": "Selected agent has no repository configured. Do you want to configure it now?"
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"fat_btn": {
|
|
661
|
+
"create_agent": {
|
|
662
|
+
"label": "Create your first agent",
|
|
663
|
+
"tooltip_disabled": "You do not have permission to create an agent"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"btn": {
|
|
667
|
+
"filter": {
|
|
668
|
+
"tooltip": "Filter by repository",
|
|
669
|
+
"all": "All"
|
|
670
|
+
},
|
|
671
|
+
"edit_agent": {
|
|
672
|
+
"label": "Agent settings",
|
|
673
|
+
"tooltip": "Edit agent settings",
|
|
674
|
+
"tooltip_disabled": "You do not have permission to edit the agent"
|
|
675
|
+
},
|
|
676
|
+
"clone_agent": {
|
|
677
|
+
"label": "Clone",
|
|
678
|
+
"tooltip": "Clone Agent"
|
|
679
|
+
},
|
|
680
|
+
"delete_agent": {
|
|
681
|
+
"label": "Delete Agent",
|
|
682
|
+
"tooltip": "Delete Agent"
|
|
683
|
+
},
|
|
684
|
+
"create_agent": {
|
|
685
|
+
"label": "Create Agent",
|
|
686
|
+
"tooltip": "Create a new agent",
|
|
687
|
+
"tooltip_disabled": "You do not have permission to create an agent"
|
|
688
|
+
},
|
|
689
|
+
"open_sidebar": {
|
|
690
|
+
"tooltip": "Manage agents",
|
|
691
|
+
"tooltip_disabled": "You do not have permission to modify the agent"
|
|
692
|
+
},
|
|
693
|
+
"close_sidebar": {
|
|
694
|
+
"tooltip": "Close sidebar"
|
|
695
|
+
},
|
|
696
|
+
"copy_gpt_token_prop": {
|
|
697
|
+
"tooltip": "Copy GPT token property"
|
|
698
|
+
},
|
|
699
|
+
"open-agent-actions": {
|
|
700
|
+
"label_disabled": "You do not have permission to modify the agent"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"messages": {
|
|
704
|
+
"no_agents": "No agents found for the selected filter.",
|
|
705
|
+
"help_1": "{{'ttyg.helpInfo'|translate|trustAsHtml}}",
|
|
706
|
+
"help_2": "{{'ttyg.help.how.content2'|translate|trustAsHtml}}",
|
|
707
|
+
"help_config": "To use <b>Talk to Your Graph</b>, GraphDB must first be configured to work with OpenAI. Please ensure that the necessary API keys and settings are in place before starting. For detailed setup instructions, refer to the <a href=\"{{talkToGraphDocumentationLink}}\" target=\"_blank\" rel=\"noopener\">documentation<i class=\"icon-external\"></i></a> or contact your administrator.",
|
|
708
|
+
"token_prop_warn1": "To enable this feature, set the config property",
|
|
709
|
+
"token_prop_warn2": "to your GPT token in",
|
|
710
|
+
"token_prop_warn3": "file.",
|
|
711
|
+
"token_prop_warn4": "Configuring your use of GPT models",
|
|
712
|
+
"error_retrieval_connectors_loading": "Error loading retrieval connectors",
|
|
713
|
+
"error_similarity_indexes_loading": "Error loading similarity indexes",
|
|
714
|
+
"error_repository_config_loading": "Error loading repository configurations",
|
|
715
|
+
"agent_save_successfully": "The agent '{{agentName}}' was saved successfully.",
|
|
716
|
+
"agent_save_failure": "Failed to save the agent '{{agentName}}'."
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"help.what.title": "What is this?",
|
|
720
|
+
"help.what.content": "{{'ttyg.helpInfo'|translate|trustAsHtml}}",
|
|
721
|
+
"help.how.title": "How does it work?",
|
|
722
|
+
"help.how.content": "The bot uses the ChatGPT Retrieval connector to fetch information it does not know about. As such, you must first create a suitable connector. See also the settings for fine-tuning the integration with the Retrieval connector.",
|
|
723
|
+
"help.how.content1": "<b>Talk to Your Graph</b> is powered by OpenAI's Assistants API. You begin by selecting or configuring an agent, which defines the context and rules for querying. Once set, you can start a conversation by asking questions in natural language. The assistant interprets your query, runs the appropriate query methods to retrieve data, and responds with an answer. Persistent chat ensures conversations stay contextually aware, enabling deeper, more coherent interactions over time. You can use multiple agents concurrently to cover various domains or data sources.",
|
|
724
|
+
"help.how.content2": "An agent in <b>Talk to Your Graph</b> is an AI-driven assistant specifically configured to interact with your graph database. It uses advanced natural language processing to understand and respond to your questions by querying the database and delivering relevant information. Each agent is tailored to a specific context, making interactions seamless and efficient, whether you're retrieving data, exploring insights, or working on complex projects."
|
|
725
|
+
},
|
|
219
726
|
"config.name.label": "Config name",
|
|
220
727
|
"graph.config.required": "My graph config (required)",
|
|
221
728
|
"description.text": "Description",
|
|
@@ -762,8 +1269,6 @@
|
|
|
762
1269
|
"core.create.saved.query": "Create saved query",
|
|
763
1270
|
"core.show.saved.query": "Show saved queries",
|
|
764
1271
|
"core.popover.get.url.current.query": "Get URL to current query",
|
|
765
|
-
"core.include.inferred": "Include inferred data in results: ",
|
|
766
|
-
"core.expand.sameAs": "Expand results over owl:sameAs: ",
|
|
767
1272
|
"core.require.inferred": "Requires 'Include Inferred'!",
|
|
768
1273
|
"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.",
|
|
769
1274
|
"query.editor.visual.btn": "Visual",
|
|
@@ -919,6 +1424,7 @@
|
|
|
919
1424
|
"force.serial.pipeline": "Force serial pipeline",
|
|
920
1425
|
"restore.defaults.btn": "Restore defaults",
|
|
921
1426
|
"only.upload.btn": "Only upload",
|
|
1427
|
+
"cancel.btn": "Cancel",
|
|
922
1428
|
"abort.btn": "Abort",
|
|
923
1429
|
"no.files.found": "No files found",
|
|
924
1430
|
"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.",
|
|
@@ -1034,6 +1540,7 @@
|
|
|
1034
1540
|
"name": "Name",
|
|
1035
1541
|
"size": "Size",
|
|
1036
1542
|
"modified": "Modified",
|
|
1543
|
+
"uploaded": "Uploaded",
|
|
1037
1544
|
"imported": "Imported",
|
|
1038
1545
|
"context": "Context"
|
|
1039
1546
|
},
|
|
@@ -1345,6 +1852,10 @@
|
|
|
1345
1852
|
"repos.edit.common.settings": "Edit common settings for these repositories",
|
|
1346
1853
|
"repos.view.update.licenses": "View or update license for these repositories",
|
|
1347
1854
|
"repos.refresh.page.msg": " Refresh the page to retry.",
|
|
1855
|
+
"repositories.location.remote.graph_db.instances": "Remote GraphDB instances",
|
|
1856
|
+
"repositories.location.local.graph_db.instance": "Local GraphDB instance",
|
|
1857
|
+
"repositories.location.ontopic.instances": "Remote Ontopic instances",
|
|
1858
|
+
"repositories.location.sparql.instances": "Remote SPARQL endpoints",
|
|
1348
1859
|
"no.repos.in.current.location": "There are no repositories in the current location",
|
|
1349
1860
|
"connect.repo": "Connect repository",
|
|
1350
1861
|
"connected.tooltip": "Connected",
|
|
@@ -1362,11 +1873,18 @@
|
|
|
1362
1873
|
"no.connected.gdb.instances": "There are no connected GraphDB instances.",
|
|
1363
1874
|
"edit.file.content": "Edit file content",
|
|
1364
1875
|
"upload.file": "Upload file...",
|
|
1876
|
+
"common": {
|
|
1877
|
+
"dates": {
|
|
1878
|
+
"today": "Today",
|
|
1879
|
+
"yesterday": "Yesterday"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1365
1882
|
"common.confirm.delete": "Confirm delete",
|
|
1366
1883
|
"common.confirm.save": "Confirm save",
|
|
1367
1884
|
"common.cancel.btn": "Cancel",
|
|
1368
1885
|
"common.yes.btn": "Yes",
|
|
1369
1886
|
"common.ok.btn": "OK",
|
|
1887
|
+
"common.agree.btn": "Agree",
|
|
1370
1888
|
"common.error": "Error",
|
|
1371
1889
|
"common.warning": "Warning",
|
|
1372
1890
|
"common.loading": "Loading...",
|
|
@@ -1393,6 +1911,7 @@
|
|
|
1393
1911
|
"common.attach": "Attach",
|
|
1394
1912
|
"common.close": "Close",
|
|
1395
1913
|
"common.preview": "Preview",
|
|
1914
|
+
"common.learn_more_in_documentation": "Learn more in the GraphDB documentation",
|
|
1396
1915
|
"paginator.first.page.label": "First",
|
|
1397
1916
|
"paginator.last.page.label": "Last",
|
|
1398
1917
|
"active.location.version.not.support.settings.warning": "The version of GraphDB at your active location does not support settings.",
|
|
@@ -1511,7 +2030,46 @@
|
|
|
1511
2030
|
"attach.remote.gdb.instance": "Attach a remote GraphDB instance",
|
|
1512
2031
|
"remote.location.url": "Location URL*",
|
|
1513
2032
|
"remote.location.enter.url.msg": "Enter a URL to a remote GraphDB instance",
|
|
2033
|
+
"remote.location.required": "Location URL is required.",
|
|
2034
|
+
"remote.location.ontopic.username.required": "ClientID*",
|
|
2035
|
+
"remote.location.ontopic.password.required": "Secret*",
|
|
2036
|
+
"manage.remote.location.dialog.graph_db.basic.auth.type.description": "Basic authentication requires a Username and a Password.",
|
|
2037
|
+
"manage.remote.location.dialog.ontopic.basic.auth.type.description": "Basic authentication requires a ClientID and a Secret.",
|
|
2038
|
+
"manage.remote.location.dialog.sparql.basic.auth.type.description": "Basic authentication requires a Username and a Password.",
|
|
2039
|
+
"manage.remote.location.dialog.update.instance": "Edit remote instance",
|
|
2040
|
+
"manage.remote.location.dialog.attach.instance": "Attach a remote instance",
|
|
2041
|
+
"manage.remote.location.dialog.graph_db.location.instance": "GraphDB instance",
|
|
2042
|
+
"manage.remote.location.dialog.ontopic.location.instance": "Ontopic SPARQL endpoint",
|
|
2043
|
+
"manage.remote.location.dialog.sparql.endpoint.instance": "SPARQL endpoint",
|
|
2044
|
+
"manage.remote.location.dialog.required.url": "Location URL*",
|
|
2045
|
+
"manage.remote.location.dialog.graph_db.url.message": "Enter a URL to a remote GraphDB instance",
|
|
2046
|
+
"manage.remote.location.dialog.ontopic.url.message": "Enter a URL to an Ontopic remote SPARQL endpoint",
|
|
2047
|
+
"manage.remote.location.dialog.sparql.url.message": "Enter a URL to a SPARQL endpoint",
|
|
2048
|
+
"manage.remote.location.dialog.url.requred.message": "Location URL is required.",
|
|
2049
|
+
"manage.remote.location.dialog.graph_db.error.not_valid.url": "Note that the location should be a URL that points to a remote GraphDB installation, e.g.",
|
|
2050
|
+
"manage.remote.location.dialog.ontopic.error.not_valid.url": "Note that the location should be a URL that points to a remote Ontopic installation, e.g.",
|
|
2051
|
+
"manage.remote.location.dialog.sparql.error.not_valid.url": "Note that the location should be a URL that points to a remote SPARQL endpoint, e.g.",
|
|
2052
|
+
"manage.remote.location.dialog.auth_type.header": "Authentication type",
|
|
2053
|
+
"manage.remote.location.dialog.auth_type.none": "None",
|
|
2054
|
+
"manage.remote.location.dialog.auth_type.basic": "Basic auth",
|
|
2055
|
+
"manage.remote.location.dialog.auth_type.basic.description": "No authentication will be used with this location.",
|
|
2056
|
+
"manage.remote.location.dialog.auth_type.signature": "Signature",
|
|
2057
|
+
"manage.remote.location.dialog.graph_db.username.required.message": "Username*",
|
|
2058
|
+
"manage.remote.location.dialog.ontopic.username.required.message": "ClientID*",
|
|
2059
|
+
"manage.remote.location.dialog.sparql.username.required.message": "Username*",
|
|
2060
|
+
"manage.remote.location.dialog.graph_db.password.required.message": "Password*",
|
|
2061
|
+
"manage.remote.location.dialog.ontopic.password.required.message": "Secret*",
|
|
2062
|
+
"manage.remote.location.dialog.sparql.password.required.message": "Password*",
|
|
2063
|
+
"manage.remote.location.dialog.auth_type.signature.description.prefix": "Signature authentication uses the token secret, which must be the same on all GraphDB instances. For more information on configuring the token secret, please refer to ",
|
|
2064
|
+
"manage.remote.location.dialog.auth_type.signature.description.suffix": " in the documentation.",
|
|
2065
|
+
"manage.remote.location.dialog.graph_db.username.placeholder": "my username",
|
|
2066
|
+
"manage.remote.location.dialog.ontopic.username.placeholder": "my client id",
|
|
2067
|
+
"manage.remote.location.dialog.sparql.username.placeholder": "my username",
|
|
2068
|
+
"manage.remote.location.dialog.graph_db.password.placeholder": "my password",
|
|
2069
|
+
"manage.remote.location.dialog.ontopic.password.placeholder": "my secret",
|
|
2070
|
+
"manage.remote.location.dialog.sparql.password.placeholder": "my password",
|
|
1514
2071
|
"valid.remote.location.warning": "Note that the location should be a URL that points to a remote GraphDB installation, e.g.",
|
|
2072
|
+
"duplicate.remote.location.warning": "The URL is already in the list",
|
|
1515
2073
|
"auth.type.header": "Authentication type",
|
|
1516
2074
|
"remote.location.no.auth.used.tooltip": "No authentication used with remote location",
|
|
1517
2075
|
"auth.type.none": "None",
|
|
@@ -2085,27 +2643,6 @@
|
|
|
2085
2643
|
"guide.confirm.cancel.message": "Are you sure you want to stop the guide?",
|
|
2086
2644
|
"guide.unexpected.error.message": "The guide was cancelled due to an unexpected error. Please run the guide again and if the problem persists contact the support.",
|
|
2087
2645
|
"guide.start.unexpected.error.message": "The guide cannot be started due to an unexpected error. Please try running the guide again and if the problem persists contact the support.",
|
|
2088
|
-
"ttyg.helpInfo": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model. The bot works in connection with the ChatGPT Retrieval connector.",
|
|
2089
|
-
"ttyg.hint": "Talk to your graph – simply ask a question!",
|
|
2090
|
-
"ttyg.help.what.title": "What is this?",
|
|
2091
|
-
"ttyg.help.what.content": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model.",
|
|
2092
|
-
"ttyg.help.how.title": "How does it work?",
|
|
2093
|
-
"ttyg.help.how.content": "The bot uses the ChatGPT Retrieval connector to fetch information it does not know about. As such, you must first create a suitable connector. See also the settings for fine-tuning the integration with the Retrieval connector.",
|
|
2094
|
-
"ttyg.ask.button": "Ask",
|
|
2095
|
-
"ttyg.clear.hint": "Clear the chat history",
|
|
2096
|
-
"ttyg.clear.history.confirmation": "This will clear the history conversation.",
|
|
2097
|
-
"ttyg.settings.title": "Talk to Your Graph Settings",
|
|
2098
|
-
"ttyg.settings.info": "The settings are stored in the browser only and are per repository.",
|
|
2099
|
-
"ttyg.settings.connector.id": "Retrieval connector ID",
|
|
2100
|
-
"ttyg.settings.connector.id.tooltip": "The ID of the Retrieval connector to use. If empty, the first defined connector will be used.",
|
|
2101
|
-
"ttyg.settings.query.template": "Query template",
|
|
2102
|
-
"ttyg.settings.query.template.tooltip": "The query template used by the chat bot to request more information from the connector. It must contain at least the \"query\" key but may also contain a \"filter\" key if your connector has suitable metadata.",
|
|
2103
|
-
"ttyg.settings.ground.truths": "Ground truths",
|
|
2104
|
-
"ttyg.settings.ground.truths.tooltip": "An optional list of ground truths that help the chat bot to establish context.",
|
|
2105
|
-
"ttyg.settings.topk": "Number of top results",
|
|
2106
|
-
"ttyg.settings.topk.tooltip": "Number of results returned to the chat bot when it requests more information. More results will provide more information but they may also introduce noise.",
|
|
2107
|
-
"ttyg.settings.echo.vector.query": "Echo vector query",
|
|
2108
|
-
"ttyg.settings.echo.vector.query.tooltip": "If enabled the bot will use the generated queries as feedback to the GPT API.",
|
|
2109
2646
|
"global.operations_statuses.queries.title": "Running queries",
|
|
2110
2647
|
"global.operations_statuses.updates.title": "Running updates",
|
|
2111
2648
|
"global.operations_statuses.imports.title": "Running imports",
|
|
@@ -2138,5 +2675,37 @@
|
|
|
2138
2675
|
"yasgui.tab_list.close_other_tabs.confirmation.queries_one_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{queriesCount}} queries and 1 update. The queries will be aborted</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2139
2676
|
"yasgui.tab_list.close_other_tabs.confirmation.queries_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{queriesCount}} queries and {{updatesCount}} updates. The queries will be aborted.</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2140
2677
|
"yasgui.tab_list.close_tab.confirmation.not_query_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 update.</div><div>Are you sure you want to close this query tab?</div>",
|
|
2141
|
-
"yasgui.tab_list.close_tab.confirmation.query_non_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query, that will be aborted.</div><div>Are you sure you want to close this query tab?</div>"
|
|
2678
|
+
"yasgui.tab_list.close_tab.confirmation.query_non_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query, that will be aborted.</div><div>Are you sure you want to close this query tab?</div>",
|
|
2679
|
+
"cookie" : {
|
|
2680
|
+
"cookie_consent": "We use cookies to keep GraphDB reliable and secure and help us improve performance. No sensitive personal information is collected. By clicking “Agree”, you consent to our",
|
|
2681
|
+
"cookie_policy_url_label": "Cookie Policy",
|
|
2682
|
+
"policy": {
|
|
2683
|
+
"title": "GraphDB Free Workbench Cookies Policy",
|
|
2684
|
+
"purpose_heading": "Purpose",
|
|
2685
|
+
"purpose_text": "The purpose of this Cookies Policy is to describe what data and information we at Ontotext collect and use as a result of you using our flagship software product GraphDB and specifically its Free Edition.",
|
|
2686
|
+
"who_are_we_heading": "Who are we?",
|
|
2687
|
+
"who_are_we_text": "Ontotext is the Bulgarian company ONTOTEXT AD, registered in the Bulgarian Commercial Register with UIC 200421236, VAT number: BG200421236, with headquarters in 1700 Sofia, Bulgaria, company address: 79 Nikola Gabrovski Blvd., 3rd Floor. Ontotext also may refer to Ontotext USA Inc, 1115 Broadway, 16 Madison Square West, New York, NY 10010 - a US subsidiary, fully owned and controlled by ONTOTEXT AD.",
|
|
2688
|
+
"cookies_heading": "Cookies",
|
|
2689
|
+
"cookies_text": "Using GraphDB Free will result in Ontotext storing cookies on your computer/device in order to collect certain anonymous information when you use GraphDB Free (“Technical Information”). The collected Technical Information is used to improve and develop our software products in the right direction. We will not be able to relate any of the Technical Information to an individual or any form of personal data. The sole purpose of these cookies is to understand how a user interacts with GraphDB Free, what problems does a user run into, etc. Please note that cookies are mandatory for GraphDB Free, but we will not place any cookies on your computer/device, should you opt out to use our paid GraphDB Enterprise Edition software.",
|
|
2690
|
+
"privacy_commitment_heading": "Ontotext Privacy Commitment",
|
|
2691
|
+
"privacy_commitment_text": "Our commitment is that we will not collect any personal data or information when you use GraphDB Free. Also:",
|
|
2692
|
+
"privacy_commitment_1": "We will not sell or rent to others the Technical Information that we collect, and",
|
|
2693
|
+
"privacy_commitment_2": "We endeavor to maximize the protection of the Technical Data that we collect.",
|
|
2694
|
+
"how_collect_heading": "How do we collect information?",
|
|
2695
|
+
"how_collect_text": "We collect Technical Information in the following automatically when you use GraphDB Free.",
|
|
2696
|
+
"what_collect_heading": "What Technical Information do we collect?",
|
|
2697
|
+
"what_collect_text_1": "Necessary cookies help make a product usable by enabling basic functions like access to secure product areas. GraphDB cannot function properly without these cookies.",
|
|
2698
|
+
"what_collect_text_2": "Statistic cookies help product owners understand how visitors interact with the product by collecting and reporting information anonymously.",
|
|
2699
|
+
"third_party_cookies_heading": "Third-Party Cookies",
|
|
2700
|
+
"third_party_cookies_text": "We also use some third party cookies as part of our services. These cookies are managed by the respective sites and are not controlled by us. Listed below are the third party cookies we use, some of which can be turned off using your browser's general settings. For others you need to visit the relevant sites and follow the instructions provided.",
|
|
2701
|
+
"google_analytics_heading": "Google Analytics (GA4)",
|
|
2702
|
+
"google_analytics_opt_out_text": "We use the application to generate statistics about the sources and traffic to our sites, as well as for advertising campaigns. To opt-out, follow the instructions described",
|
|
2703
|
+
"google_analytics_opt_out_link_text": "here.",
|
|
2704
|
+
"google_analytics_text": "In GA4, IP anonymization is enabled by default and cannot be turned off. This means that GA4 will not store your IP addresses and cannot track you. GA4 does not share data between other Google products such as Google Signals, Google Ads, etc. Data processing by GA4 currently takes place on multiple servers located around the world, most of which are located in the USA. However, this does not constitute a breach of GDPR data transfer requirements because we do not collect personal data through GA4.",
|
|
2705
|
+
"changes_heading": "Changes to our Cookie Policy",
|
|
2706
|
+
"changes_text": "Any future changes to our Cookie Policy will be posted on this page.",
|
|
2707
|
+
"contact_heading": "Contact Us",
|
|
2708
|
+
"contact_text": "When you email us with a request, we may ask that you provide us with information necessary to confirm your identity. Any such request should be addressed to legal@ontotext.com."
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2142
2711
|
}
|