graphdb-workbench-tests 2.6.3 → 2.7.0-TR10
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/Dockerfile +3 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-receiving-snapshot.json +7 -7
- package/fixtures/graphdb-import/0007-import-file.jsonld +27 -0
- package/fixtures/graphdb-import/more-files/jsonld-file.jsonld +8 -0
- package/fixtures/graphdb-import/more-files/rdfxml.rdf +15 -0
- package/fixtures/graphdb-import/sample-jsonld.json +8 -0
- package/fixtures/locale-en.json +236 -110
- package/fixtures/url-import-template.json +1 -0
- package/integration/cluster/cluster-legend.spec.js +36 -0
- package/integration/cluster/cluster-management.spec.js +7 -92
- package/integration/cluster/cluster-states.spec.js +117 -0
- package/integration/explore/graphs.overview.spec.js +62 -0
- package/integration/explore/similarity.spec.js +20 -2
- package/integration/guides/movies-interactive-guide.spec.js +1 -1
- package/integration/guides/star-wars-interactive-guide.js +1 -0
- package/integration/import/import-server-files.spec.js +78 -0
- package/integration/import/import-user-data-file-upload.spec.js +194 -0
- package/integration/import/import-user-data-settings-dialog.spec.js +70 -0
- package/integration/import/import-user-data-text-snippet.spec.js +246 -0
- package/integration/import/import-user-data-url.spec.js +70 -0
- package/integration/import/import-user-data.spec.js +117 -0
- package/integration/import/import-view.spec.js +45 -0
- package/integration/monitor/global-operation-statuses-component.spec.js +2 -2
- package/integration/repository/repositories.spec.js +20 -17
- package/integration/resource/resource.spec.js +40 -0
- package/integration/setup/sparql-template-create.js +4 -4
- package/integration/sparql-editor/yasgui-tabs.spec.js +15 -1
- package/integration/sparql-editor/yasr/download-as.spec.js +71 -0
- package/integration-flaky/import/import-server-files-batch-operations.spec.js +95 -0
- package/integration-flaky/import/import-server-files-operations.spec.js +142 -0
- package/integration-flaky/import/import-user-data-batch-operations.spec.js +183 -0
- package/integration-flaky/import/import.server.files.spec.js +3 -2
- package/integration-flaky/setup/sparql-template-create.js +1 -1
- package/npm-shrinkwrap.json +3198 -0
- package/package.json +10 -11
- package/steps/cluster/cluster-configuration-steps.js +17 -0
- package/steps/cluster/cluster-page-steps.js +20 -8
- package/steps/cluster/cluster-view-steps.js +6 -2
- package/steps/explore/graphs-overview-steps.js +32 -0
- package/steps/explore/similarity-indexes-steps.js +26 -0
- package/steps/guides/guide-steps.js +5 -19
- package/steps/home-steps.js +4 -0
- package/steps/import/file-overwrite-dialog-steps.js +16 -0
- package/steps/import/import-server-files-steps.js +36 -0
- package/steps/import/import-settings-dialog-steps.js +60 -0
- package/steps/import/import-steps.js +449 -0
- package/steps/import/import-user-data-steps.js +167 -0
- package/steps/json-ld-modal-steps.js +41 -0
- package/steps/main-menu-steps.js +4 -0
- package/steps/resource/resource-steps.js +7 -2
- package/steps/yasgui/yasr-steps.js +5 -0
- package/stubs/yasgui/query-stubs.js +4 -0
- package/support/commands.js +23 -0
- package/support/import-commands.js +10 -0
- package/bin/graphdb-workbench-cypress +0 -29
- package/integration/help/rest-api.spec.js +0 -121
- package/integration/import/import.server.files.spec.js +0 -69
- package/integration/import/import.user.data.spec.js +0 -338
- package/steps/import-steps.js +0 -277
package/Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"lastLogIndex": 0,
|
|
9
9
|
"endpoint": "http://pc-desktop:7200",
|
|
10
10
|
"recoveryStatus": {
|
|
11
|
-
"affectedNodes": [],
|
|
11
|
+
"affectedNodes": ["http://pc-desktop:7202"],
|
|
12
12
|
"state": "RECEIVING_SNAPSHOT"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
@@ -17,16 +17,13 @@
|
|
|
17
17
|
"nodeState": "LEADER",
|
|
18
18
|
"term": 2,
|
|
19
19
|
"syncStatus": {
|
|
20
|
-
"pc-desktop:7300": "
|
|
20
|
+
"pc-desktop:7300": "OUT_OF_SYNC",
|
|
21
21
|
"pc-desktop:7302": "IN_SYNC"
|
|
22
22
|
},
|
|
23
23
|
"lastLogTerm": 0,
|
|
24
24
|
"lastLogIndex": 0,
|
|
25
25
|
"endpoint": "http://pc-desktop:7201",
|
|
26
|
-
"recoveryStatus": {
|
|
27
|
-
"affectedNodes": ["http://pc-desktop:7200"],
|
|
28
|
-
"state": "RECEIVING_SNAPSHOT"
|
|
29
|
-
}
|
|
26
|
+
"recoveryStatus": {}
|
|
30
27
|
},
|
|
31
28
|
{
|
|
32
29
|
"address": "pc-desktop:7302",
|
|
@@ -36,6 +33,9 @@
|
|
|
36
33
|
"lastLogTerm": 0,
|
|
37
34
|
"lastLogIndex": 0,
|
|
38
35
|
"endpoint": "http://pc-desktop:7202",
|
|
39
|
-
"recoveryStatus": {
|
|
36
|
+
"recoveryStatus": {
|
|
37
|
+
"affectedNodes": ["http://pc-desktop:7200"],
|
|
38
|
+
"state": "SENDING_SNAPSHOT"
|
|
39
|
+
}
|
|
40
40
|
}
|
|
41
41
|
]
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@graph": [
|
|
3
|
+
{
|
|
4
|
+
"@id": "http://example.org/test#chapter",
|
|
5
|
+
"http://purl.org/dc/elements/1.1/description": ["Fun"],
|
|
6
|
+
"http://purl.org/dc/elements/1.1/title": ["Chapter One"]
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"@id": "http://example.org/test#jane",
|
|
10
|
+
"http://example.org/vocab#authored": [{"@id": "http://example.org/test#chapter"}],
|
|
11
|
+
"http://xmlns.com/foaf/0.1/name": ["Jane"]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"@id": "http://example.org/test#john",
|
|
15
|
+
"http://xmlns.com/foaf/0.1/name": ["John"]
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"@id": "http://example.org/test#library",
|
|
19
|
+
"http://example.org/vocab#contains": [{
|
|
20
|
+
"@id": "http://example.org/test#book",
|
|
21
|
+
"http://example.org/vocab#contains": [ "this-is-not-an-IRI" ],
|
|
22
|
+
"http://purl.org/dc/elements/1.1/contributor": ["Writer"],
|
|
23
|
+
"http://purl.org/dc/elements/1.1/title": ["My Book"]
|
|
24
|
+
}]
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:ex="http://example.org/stuff/1.0/">
|
|
5
|
+
|
|
6
|
+
<rdf:Description rdf:about="http://www.w3.org/TR/rdf-syntax-grammar"
|
|
7
|
+
dc:title="RDF1.1 XML Syntax">
|
|
8
|
+
<ex:editor>
|
|
9
|
+
<rdf:Description ex:fullName="Dave Beckett">
|
|
10
|
+
<ex:homePage rdf:resource="http://purl.org/net/dajobe/" />
|
|
11
|
+
</rdf:Description>
|
|
12
|
+
</ex:editor>
|
|
13
|
+
</rdf:Description>
|
|
14
|
+
|
|
15
|
+
</rdf:RDF>
|
package/fixtures/locale-en.json
CHANGED
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"cluster_graphical_view": {
|
|
17
17
|
"no_cluster_configured": "No cluster is configured",
|
|
18
18
|
"create_cluster_btn": "Click here to create a cluster",
|
|
19
|
+
"legend_title_node_state": "Node state",
|
|
20
|
+
"legend_title_sync_status": "Sync status",
|
|
21
|
+
"legend_title_link_states": "Link states",
|
|
19
22
|
"legend_node_state": "NODE STATE",
|
|
20
23
|
"legend_link_state": "LINK STATE",
|
|
21
24
|
"node_state_leader": "Leader",
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
"link_state_in_sync": "In sync",
|
|
30
33
|
"link_state_syncing": "Syncing",
|
|
31
34
|
"link_state_out_of_sync": "Out of sync",
|
|
35
|
+
"link_state_recovering": "Recovering",
|
|
32
36
|
"recovery_state": {
|
|
33
37
|
"searching_for_node": "Searching for node",
|
|
34
38
|
"applying_snapshot": "Applying a snapshot",
|
|
@@ -85,7 +89,8 @@
|
|
|
85
89
|
"advanced_options": "Advanced options",
|
|
86
90
|
"advanced_options_tooltip": "Advanced options for cluster configuration",
|
|
87
91
|
"select_from_locations_hint": "Select nodes from remote locations",
|
|
88
|
-
"toggle_legend_btn": "
|
|
92
|
+
"toggle_legend_btn": "Legend",
|
|
93
|
+
"toggle_legend_btn_tooltip": "Toggle legend",
|
|
89
94
|
"errors": {
|
|
90
95
|
"only_positive_integers": "Enter only positive integers",
|
|
91
96
|
"small_transaction_log_max_size": "Transaction log maximum size must be at least 1 GB or a negative number",
|
|
@@ -266,7 +271,8 @@
|
|
|
266
271
|
"next.btn": "Next",
|
|
267
272
|
"closes.config.no.save": "Closes the configuration without saving the changes.",
|
|
268
273
|
"refresh.to.retry": "Refresh the page to retry.",
|
|
269
|
-
"temp.pause": "Temporarily pauses query monitoring so you can copy text",
|
|
274
|
+
"temp.pause": "Temporarily pauses query monitoring, so you can copy text",
|
|
275
|
+
"monitoring.restart": "Unpauses query monitoring, so you can see query status updates",
|
|
270
276
|
"temp.pause.backup_and_restore": "Temporarily pauses backup and restore monitoring so you can copy text",
|
|
271
277
|
"paused.btn": "Paused",
|
|
272
278
|
"pause.btn": "Pause",
|
|
@@ -678,8 +684,6 @@
|
|
|
678
684
|
"view.similarity.indexes.helpInfo": "Similarity indexes help you look up semantically similar entities and text. Use this view to create, manage and view similarity indexes.",
|
|
679
685
|
"view.create.similarity.index.title": "Create similarity index",
|
|
680
686
|
"view.create.similarity.index.helpInfo": "Index name and select query are required. Semantic Vectors parameters are optional.",
|
|
681
|
-
"view.sparql.title": "SPARQL Query & Update",
|
|
682
|
-
"view.sparql.helpInfo": "The SPARQL Query & Update view is a unified editor for queries and updates. Enter any SPARQL query or update and click Run to execute it. The view also allows you to save queries for future retrieval and execution in the SPARQL editor.",
|
|
683
687
|
"view.sparql.template.title": "SPARQL Templates",
|
|
684
688
|
"view.sparql.template.helpInfo": "The SPARQL Templates view is used to create, edit and delete SPARQL templates. The templates can be used to automate complex updates, either directly or via the Kafka Sink connector.",
|
|
685
689
|
"view.create.sparql.template.title": "Create SPARQL Templates",
|
|
@@ -799,9 +803,6 @@
|
|
|
799
803
|
"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?",
|
|
800
804
|
"query.editor.error.show.full.message": "Show full exception message",
|
|
801
805
|
"query.editor.error.show.less.message": "Show less exception message",
|
|
802
|
-
"sparql.tab.directive.close.last.warning": "Last tab must remain open.",
|
|
803
|
-
"sparql.tab.directive.delete.all.tabs.warning": "Are you sure you want to delete all query tabs except selected tab?",
|
|
804
|
-
"sparql.tab.directive.close.tab.warning": "Are you sure you want to close this query tab?",
|
|
805
806
|
"sparql.tab.directive.unnamed.tab.title": "Unnamed",
|
|
806
807
|
"search.resource.current.page.msg": "Use <b>View resource</b> on this page",
|
|
807
808
|
"search.resources.msg": "Search RDF resources",
|
|
@@ -855,103 +856,192 @@
|
|
|
855
856
|
"explore.implicit": "Implicit only",
|
|
856
857
|
"explore.autocomplete.warning.msg": "Autocomplete is OFF<br>Go to Setup -> Autocomplete",
|
|
857
858
|
"repository.create.btn": "Create new repository",
|
|
858
|
-
"import
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
859
|
+
"import": {
|
|
860
|
+
"settings": "Import settings",
|
|
861
|
+
"label.base.iri": "Base IRI",
|
|
862
|
+
"label.bnodes": "BNodes",
|
|
863
|
+
"label.datatype": "Datatype",
|
|
864
|
+
"popover.relative.iri": "RDF data may contain relative IRIs. In order to make sense of them, they need to be resolved against a Base IRI. Typically data does not contain relative IRIs and this field may be left empty.",
|
|
865
|
+
"alert.not.valid.iri": "Not a valid IRI!",
|
|
866
|
+
"target.graphs": "Target graphs",
|
|
867
|
+
"into.graphs": "Data is imported into one or more graphs. Some RDF formats may specify graphs, while others do not support that. The latter are treated as if they specify the default graph.",
|
|
868
|
+
"by.data.source": "Import into the graph(s) specified by the data source.",
|
|
869
|
+
"from.data": "From data",
|
|
870
|
+
"into.default.graph": "Import everything into the default graph.",
|
|
871
|
+
"default.graph": "The default graph",
|
|
872
|
+
"into.user.graph": "Import everything into a user-specified named graph.",
|
|
873
|
+
"named.graph": "Named graph",
|
|
874
|
+
"enter.replacement": "Enable replacement of existing data",
|
|
875
|
+
"replaced.graphs": "Replaced graphs",
|
|
876
|
+
"replaced.graphs.for.update": "Replaced graphs provide an easy way to update one or more graphs with a new version of the data. All specified graphs will be cleared before the import is run. This option provides the most flexibility when the target graphs are determined from data.",
|
|
877
|
+
"same.as.target": "(same as the target graph)",
|
|
878
|
+
"graph.wildcard": "If a graph ends in *, it will be treated as a prefix matching all named graphs starting with that prefix excluding the *.",
|
|
879
|
+
"add.graph": "Add graph",
|
|
880
|
+
"add.default.graph": "Add default graph",
|
|
881
|
+
"no.replaced.graphs.added": "No replaced graphs added",
|
|
882
|
+
"data.cleared.before.import": "I understand that data in the replaced graphs will be cleared before importing new data.",
|
|
883
|
+
"show.advance.settings": "Show advanced settings",
|
|
884
|
+
"hide.advance.settings": "Hide advanced settings",
|
|
885
|
+
"assign.own.bnode.ids": "Assign its own internal blank node identifiers or use the blank node ids it finds in the file.",
|
|
886
|
+
"preserve.bnode.ids": "Preserve BNode IDs",
|
|
887
|
+
"fail.unknown.datatype": "Fail on unknown datatypes",
|
|
888
|
+
"fail.parsing.if.unrecognised": "Fail parsing if datatypes are not recognised",
|
|
889
|
+
"validate.recognised": "Validate recognised datatype values",
|
|
890
|
+
"verify.recognised": "Verify recognised datatypes",
|
|
891
|
+
"normalize.recognised": "Normalize recognised datatype values",
|
|
892
|
+
"language.tags": "Language tags",
|
|
893
|
+
"fail.lang.unknown": "Fail on unknown languages",
|
|
894
|
+
"fail.parsing.lang.unknown": "Fail parsing if languages are not recognised",
|
|
895
|
+
"validate.lang.tags": "Validate recognised language tags",
|
|
896
|
+
"verify.language": "Verify language based on a given set of definitions for valid languages",
|
|
897
|
+
"normalize.lang.tags": "Normalize language tags",
|
|
898
|
+
"normalize.recognized.tags": "Normalize recognised language tags",
|
|
899
|
+
"error.handling": "Error handling",
|
|
900
|
+
"parser.stops.on.error": "By default parser stops on error. When set on false errors are reported in the log and parsing continues.",
|
|
901
|
+
"should.stop.on.error": "Should stop on error",
|
|
902
|
+
"debug.label": "Debug",
|
|
903
|
+
"forces.serial.statements": "Forces the use of the serial statements pipeline. Not recommended. Use for debugging only.",
|
|
904
|
+
"force.serial.pipeline": "Force serial pipeline",
|
|
905
|
+
"restore.defaults.btn": "Restore defaults",
|
|
906
|
+
"abort.btn": "Abort",
|
|
907
|
+
"no.files.found": "No files found",
|
|
908
|
+
"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.",
|
|
909
|
+
"auto.start": "Start import automatically",
|
|
910
|
+
"data.from.url": "Import RDF data from URL",
|
|
911
|
+
"supported.url.with.rdf": "URL with RDF data. Supported formats are",
|
|
912
|
+
"invalid.url": "Not valid url!",
|
|
913
|
+
"gz.zip": ", as well as their .gz versions and .zip archives",
|
|
914
|
+
"error.could.not.get.files": "Could not get files; {{data}}",
|
|
915
|
+
"error.could.not.stop": "Could not stop import; {{data}}",
|
|
916
|
+
"error.could.not.clear": "Could not clear status; {{data}}",
|
|
917
|
+
"error.default.settings": "Could not get default settings; {{data}}",
|
|
918
|
+
"could.not.send.file": "Could not send file for import; {{data}}",
|
|
919
|
+
"large.file": "File {{name}} too big {{size}} MB. Use Server Files import.",
|
|
920
|
+
"could.not.upload": "Could not upload file {{name}}. BZip2 archives are not supported.",
|
|
921
|
+
"no.such.file": "No such file; {{name}}",
|
|
922
|
+
"could.not.send.data": "Could not send data for import; {{data}}",
|
|
923
|
+
"could.not.send.url": "Could not send url for import; {{data}}",
|
|
924
|
+
"could.not.upload.file": "Could not upload file; {{data}}",
|
|
925
|
+
"could.not.update.text": "Could not update text import; {{data}}",
|
|
926
|
+
"text.snippet.not.imported": "Text snippet was edited but has not been imported again.",
|
|
927
|
+
"graph.already.in.list": "This graph is already in the list.",
|
|
928
|
+
"directory.setting": "The directory can be changed by setting the ",
|
|
929
|
+
"show.files.only": "Show files only",
|
|
930
|
+
"show.files.directories": "Show both files and directories",
|
|
931
|
+
"show.directories.only": "Show directories only",
|
|
932
|
+
"type.to.filter": "Type to filter by name",
|
|
933
|
+
"selected.items": "Import the selected items",
|
|
934
|
+
"without.changing.settings": "Import without changing settings",
|
|
935
|
+
"reset.last.imported": "Reset the last imported status of the selected items",
|
|
936
|
+
"reset.status": "Reset status",
|
|
937
|
+
"remove.selected": "Remove the selected items from the list",
|
|
938
|
+
"remove.btn": "Remove",
|
|
939
|
+
"import.btn": "Import",
|
|
940
|
+
"remove.confirm.msg": "Are you sure you want to remove selected files: {{name}}",
|
|
941
|
+
"mode.not.supported.constraint": "This mode is not supported when importing multiple items.",
|
|
942
|
+
"enable.replace.option": "Enable this to replace the data in one or more graphs with the imported data.",
|
|
943
|
+
"context.link": "JSON-LD context",
|
|
944
|
+
"context.link.info": "Specifies external JSON-LD context as a URL. Only whitelisted URLs can be used.",
|
|
945
|
+
"file.upload.progress": "{{progress}} % uploaded",
|
|
946
|
+
"text_snippet_dialog": {
|
|
947
|
+
"title": "Import RDF data from a text snippet",
|
|
948
|
+
"text_snippet": {
|
|
949
|
+
"label": "Insert your RDF data here and select its format below.",
|
|
950
|
+
"placeholder": "# Example: rdf:predicate a rdf:Property .",
|
|
951
|
+
"validation_message": "Maximum length of {{limit}} characters exceeded."
|
|
952
|
+
},
|
|
953
|
+
"auto_start": {
|
|
954
|
+
"tooltip": "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.",
|
|
955
|
+
"label": "Start import automatically"
|
|
956
|
+
},
|
|
957
|
+
"import_format_menu": {
|
|
958
|
+
"label": "Format"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"user_data": {
|
|
962
|
+
"duplicates_confirmation": {
|
|
963
|
+
"title": "Confirm files overwrite",
|
|
964
|
+
"message": "Following files are already uploaded: <br/>{{duplicatedFiles}}<br/>Do you want to overwrite them?",
|
|
965
|
+
"buttons": {
|
|
966
|
+
"keep_both": "Keep both",
|
|
967
|
+
"overwrite": "Overwrite"
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
"help": {
|
|
972
|
+
"buttons": {
|
|
973
|
+
"toggle_help": {
|
|
974
|
+
"tooltip": "Get help on import"
|
|
975
|
+
},
|
|
976
|
+
"copy_file_size_prop": {
|
|
977
|
+
"tooltip": "Copy max file size property"
|
|
978
|
+
},
|
|
979
|
+
"copy_import_directory_prop": {
|
|
980
|
+
"tooltip": "Copy import directory property"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"messages": {
|
|
984
|
+
"copied_to_clipboard": "Copied to clipboard"
|
|
985
|
+
},
|
|
986
|
+
"on_upload": {
|
|
987
|
+
"import_user_data": "Import User Data",
|
|
988
|
+
"to_reimport_again": "To reimport a file, URL or text snippet click the Import button again.",
|
|
989
|
+
"file_size_limit_can_be_changed": "The file size limit can be changed by setting the",
|
|
990
|
+
"the_property": " property",
|
|
991
|
+
"execution": "Import execution",
|
|
992
|
+
"work_in_background": "Imports are executed in the background while you continue working on other things.",
|
|
993
|
+
"interrupt_support": "Interrupt is supported only when the location is local.",
|
|
994
|
+
"parser_config": "Parser config options are not available for remote locations."
|
|
995
|
+
},
|
|
996
|
+
"on_server_import": {
|
|
997
|
+
"import_from_server": "It’s required to have access to the server where the GraphDB Workbench is running",
|
|
998
|
+
"open_directory": "Open (or create) a directory",
|
|
999
|
+
"put_files_into": "and place your files and folders in it",
|
|
1000
|
+
"directory_can_be_changed": "The directory can be changed by setting the",
|
|
1001
|
+
"the_property": "property"
|
|
1002
|
+
},
|
|
1003
|
+
"on_file_size_limit": {
|
|
1004
|
+
"file_size_limit_info": "To import larger than {{fileSizeLimit}} MB files, use the ",
|
|
1005
|
+
"server_files_link": "Server files",
|
|
1006
|
+
"import_or_use": "import or use the",
|
|
1007
|
+
"api_link": "API"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
"import_resource_tree": {
|
|
1011
|
+
"header": {
|
|
1012
|
+
"name": "Name",
|
|
1013
|
+
"size": "Size",
|
|
1014
|
+
"modified": "Modified",
|
|
1015
|
+
"imported": "Imported",
|
|
1016
|
+
"context": "Context"
|
|
1017
|
+
},
|
|
1018
|
+
"status": {
|
|
1019
|
+
"ALL": "All",
|
|
1020
|
+
"NONE": "None",
|
|
1021
|
+
"IMPORTED": "Imported",
|
|
1022
|
+
"NOT_IMPORTED": "Not imported"
|
|
1023
|
+
},
|
|
1024
|
+
"action": {
|
|
1025
|
+
"interrupt_import": "Interrupt import",
|
|
1026
|
+
"abort": "Abort"
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"status-info": {
|
|
1030
|
+
"last_import_settings": "Last import settings",
|
|
1031
|
+
"context": "Context",
|
|
1032
|
+
"replaced_graphs": "Replaced graphs",
|
|
1033
|
+
"base_iri": "Base IRI",
|
|
1034
|
+
"debug": "Debug",
|
|
1035
|
+
"imported": "Imported on",
|
|
1036
|
+
"parser_settings": "Parser settings",
|
|
1037
|
+
"added_count_statements": "Added {{count}} statements",
|
|
1038
|
+
"added_statements": "Added statements",
|
|
1039
|
+
"removed_count_statements": "Removed {{count}} statements",
|
|
1040
|
+
"removed_statements": "Removed statements",
|
|
1041
|
+
"replaced_count_graphs": "Replaced {{count}} graphs",
|
|
1042
|
+
"number_of_replaced_graphs": "Number of replaced graphs"
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
955
1045
|
"url.import.input.placeholder": "Data URL",
|
|
956
1046
|
"filesTable.interrupt.import": "Interrupt import",
|
|
957
1047
|
"core.errors.no.connected.repository.warning.msg": "Some functionalities are not available because you are not connected to any repository.",
|
|
@@ -1473,9 +1563,6 @@
|
|
|
1473
1563
|
"save.sparql.template.tooltip": "Save SPARQL template",
|
|
1474
1564
|
"cancel.sparql.template.creation.tooltip": "Cancel SPARQL template creation",
|
|
1475
1565
|
"not.usable.active.repo.error": "The currently selected repository cannot be used for queries due to an error:",
|
|
1476
|
-
"sparql.editor.only": "Editor only",
|
|
1477
|
-
"sparql.editor.and.results": "Editor and results",
|
|
1478
|
-
"sparql.results.only": "Results only",
|
|
1479
1566
|
"existing.indexes": "Existing Indexes",
|
|
1480
1567
|
"select.existing.similarity.index": "Select one of your existing indexes to search in it",
|
|
1481
1568
|
"no.indexes": "No Indexes",
|
|
@@ -1656,6 +1743,25 @@
|
|
|
1656
1743
|
"error": "error",
|
|
1657
1744
|
"import.rdf.data.label": "Import RDF data",
|
|
1658
1745
|
"export.rdf.data": "Export RDF data",
|
|
1746
|
+
"export.settings.json-ld": "Export settings: JSON-LD",
|
|
1747
|
+
"export.settings.ndjson-ld": "Export settings: NDJSON-LD",
|
|
1748
|
+
"export": "Export",
|
|
1749
|
+
"json-ld.form": "JSON-LD form",
|
|
1750
|
+
"json-ld.form.info": "Specifies the JSON-LD document form",
|
|
1751
|
+
"json-ld.context.link": "JSON-LD Context",
|
|
1752
|
+
"json-ld.context.link.info": "Specifies external JSON-LD context as a URL. Only whitelisted URLs can be used.",
|
|
1753
|
+
"json-ld.frame.link": "JSON-LD Frame",
|
|
1754
|
+
"json-ld.frame.link.info": "Specifies JSON-LD frame document as a URL. Only whitelisted URLs can be used.",
|
|
1755
|
+
"json-ld.frame.uri.placeholder": "http://example.com/frame.jsonld",
|
|
1756
|
+
"json-ld.context.uri.placeholder": "http://example.com/context.jsonld",
|
|
1757
|
+
"ndjson-ld.form": "NDJSON-LD form",
|
|
1758
|
+
"ndjson-ld.form.info": "Specifies the NDJSON-LD document form",
|
|
1759
|
+
"ndjson-ld.context.link": "NDJSON-LD Context",
|
|
1760
|
+
"ndjson-ld.context.link.info": "Specifies external NDJSON-LD context as a URL. Only whitelisted URLs can be used.",
|
|
1761
|
+
"ndjson-ld.frame.link": "NDJSON-LD Frame",
|
|
1762
|
+
"ndjson-ld.frame.link.info": "Specifies NDJSON-LD frame document as a URL. Only whitelisted URLs can be used.",
|
|
1763
|
+
"ndjson-ld.frame.uri.placeholder": "http://example.com/frame.ndjsonld",
|
|
1764
|
+
"ndjson-ld.context.uri.placeholder": "http://example.com/context.ndjsonld",
|
|
1659
1765
|
"saved.sparql.queries.label": "Saved SPARQL queries",
|
|
1660
1766
|
"saved.sparql.queries.tooltip": "Execute a saved SPARQL query directly",
|
|
1661
1767
|
"common.execute": "Execute",
|
|
@@ -1895,7 +2001,7 @@
|
|
|
1895
2001
|
"guide.step_plugin.choose-repository.content": "Click on the repository selection dropdown.",
|
|
1896
2002
|
"guide.step_plugin.select-repository.content": "Click on the <b>{{getRepositoryId()}}</b> repository button.",
|
|
1897
2003
|
"guide.step_plugin.select-repository-plug.content": "Click on the plug icon of the <b>{{repositoryId}}</b> repository.",
|
|
1898
|
-
"guide.step_plugin.import_rdf_file.
|
|
2004
|
+
"guide.step_plugin.import_rdf_file.confirm_duplicate_files_dialog.content": "Click on the <b>{{'common.yes.btn'|translate}}</b> button to override the existing file.",
|
|
1899
2005
|
"guide.step_plugin.import_rdf_file.import-settings.import.button.content": "Click on the <b>{{'common.import'|translate}}</b> button.",
|
|
1900
2006
|
"guide.step_plugin.import_rdf_file.file-must-be-uploaded": "Upload the file <b>{{resourceFile}}</b> first",
|
|
1901
2007
|
"guide.step_plugin.import_status_info.content": "Wait until import finished.",
|
|
@@ -1973,6 +2079,26 @@
|
|
|
1973
2079
|
"global.operations_statuses.RECOVERING.title": "Recovering",
|
|
1974
2080
|
"global.operations_statuses.OUT_OF_SYNC.title": "Out of sync",
|
|
1975
2081
|
"global.operations_statuses.UNAVAILABLE_NODES.title": "Unavailable nodes",
|
|
1976
|
-
"view.sparql-editor.title": "
|
|
1977
|
-
"view.sparql-editor.helpInfo": "The SPARQL Query & Update view is a unified editor for queries and updates. Enter any SPARQL query or update and click Run to execute it. The view also allows you to save queries for future retrieval and execution in the SPARQL editor."
|
|
2082
|
+
"view.sparql-editor.title": "SPARQL Query & Update",
|
|
2083
|
+
"view.sparql-editor.helpInfo": "The SPARQL Query & Update view is a unified editor for queries and updates. Enter any SPARQL query or update and click Run to execute it. The view also allows you to save queries for future retrieval and execution in the SPARQL editor.",
|
|
2084
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.none_queries_non_updates.message": "Are you sure that you want to exit?",
|
|
2085
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.none_queries_one_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 update.</div><div>Are you sure that you want to exit?</div>",
|
|
2086
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.none_queries_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{updatesCount}} updates.</div><div>Are you sure that you want to exit?</div>",
|
|
2087
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.one_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 that you want to exit?</div>",
|
|
2088
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.one_query_one_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query and 1 update. The query will be aborted.</div><div>Are you sure that you want to exit?</div>",
|
|
2089
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.one_query_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query and {{updatesCount}} updates. The query will be aborted.</div><div>Are you sure that you want to exit?</div>",
|
|
2090
|
+
"view.sparql-editor.leave_page.run_queries.confirmation.queries_non_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{queriesCount}} queries. The queries will be aborted</div><div>Are you sure that you want to exit?</div>",
|
|
2091
|
+
"view.sparql-editor.leave_page.run_queries.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 that you want to exit?</div>",
|
|
2092
|
+
"view.sparql-editor.leave_page.run_queries.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 that you want to exit?</div>",
|
|
2093
|
+
"yasgui.tab_list.close_other_tabs.confirmation.none_queries_non_updates.message": "Are you sure you want to close all other query tabs?",
|
|
2094
|
+
"yasgui.tab_list.close_other_tabs.confirmation.none_queries_one_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 update.</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2095
|
+
"yasgui.tab_list.close_other_tabs.confirmation.none_queries_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{updatesCount}} updates.</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2096
|
+
"yasgui.tab_list.close_other_tabs.confirmation.one_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 all other query tabs?</div>",
|
|
2097
|
+
"yasgui.tab_list.close_other_tabs.confirmation.one_query_one_update.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query and 1 update. The query will be aborted.</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2098
|
+
"yasgui.tab_list.close_other_tabs.confirmation.one_query_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running 1 query and {{updatesCount}} updates. The query will be aborted.</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2099
|
+
"yasgui.tab_list.close_other_tabs.confirmation.queries_non_updates.message": "<div class=\"run_query_confirmation alert alert-warning\">You have running {{queriesCount}} queries. The queries will be aborted</div><div>Are you sure you want to close all other query tabs?</div>",
|
|
2100
|
+
"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>",
|
|
2101
|
+
"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>",
|
|
2102
|
+
"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>",
|
|
2103
|
+
"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>"
|
|
1978
2104
|
}
|