graphdb-workbench-tests 2.2.3 → 2.3.0-RC1
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 +1 -1
- package/cypress-flaky.config.js +1 -1
- package/cypress-reporter-config.json +6 -0
- package/cypress.config.js +6 -2
- package/fixtures/locale-en.json +252 -58
- package/integration/explore/class.hierarchy.spec.js +5 -9
- package/integration/explore/class.relationships.spec.js +1 -1
- package/integration/repository/ontop-repository.spec.js +157 -0
- package/integration/repository/repositories.spec.js +104 -609
- package/integration/sparql/sparql-error-handling.spec.js +80 -0
- package/integration/sparql/sparql.menu.spec.js +2 -6
- package/package.json +7 -4
- package/plugins/index.js +16 -0
- package/steps/class-views-steps.js +3 -15
- package/steps/ontop-repository-steps.js +101 -0
- package/steps/repository-steps.js +193 -0
- package/steps/sparql-steps.js +29 -1
- package/steps/toaster-steps.js +35 -0
- package/support/commands.js +7 -5
package/Dockerfile
CHANGED
package/cypress-flaky.config.js
CHANGED
package/cypress.config.js
CHANGED
|
@@ -5,7 +5,7 @@ module.exports = defineConfig({
|
|
|
5
5
|
fixturesFolder: 'fixtures',
|
|
6
6
|
screenshotsFolder: 'report/screenshots',
|
|
7
7
|
videosFolder: 'report/videos',
|
|
8
|
-
video:
|
|
8
|
+
video: true,
|
|
9
9
|
defaultCommandTimeout: 15000,
|
|
10
10
|
numTestsKeptInMemory: 10,
|
|
11
11
|
e2e: {
|
|
@@ -16,6 +16,10 @@ module.exports = defineConfig({
|
|
|
16
16
|
},
|
|
17
17
|
baseUrl: 'http://localhost:9000',
|
|
18
18
|
specPattern: 'integration/**/*.{js,jsx,ts,tsx}',
|
|
19
|
-
supportFile: 'support/index.js'
|
|
19
|
+
supportFile: 'support/index.js',
|
|
20
|
+
reporter: "cypress-multi-reporters",
|
|
21
|
+
reporterOptions: {
|
|
22
|
+
configFile: 'cypress-reporter-config.json'
|
|
23
|
+
}
|
|
20
24
|
}
|
|
21
25
|
});
|
package/fixtures/locale-en.json
CHANGED
|
@@ -186,6 +186,8 @@
|
|
|
186
186
|
"lifetime.label": "lifetime",
|
|
187
187
|
"state.label": "state",
|
|
188
188
|
"download.btn": "Download",
|
|
189
|
+
"skip.btn": "Skip",
|
|
190
|
+
"back.to.guides.btn": "Back to the guides",
|
|
189
191
|
"show.remaining": "Show remaining",
|
|
190
192
|
"characters.label": "characters",
|
|
191
193
|
"show.first.chars": "Show first 500 characters",
|
|
@@ -198,14 +200,12 @@
|
|
|
198
200
|
"abort.query": "Abort query",
|
|
199
201
|
"abort.update": "Abort update",
|
|
200
202
|
"no.running.queries.updates": "No running queries or updates.",
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"system.cpu.load": "System CPU Load",
|
|
208
|
-
"loaded.classes.count": "Loaded Classes Count",
|
|
203
|
+
"monitor.resource": "Resource monitoring",
|
|
204
|
+
"monitor.performance.label": "Performance",
|
|
205
|
+
"monitor.performance.no_repository": "Charts are not available because you are not connected to any repository",
|
|
206
|
+
"monitor.cluster.no_cluster": "Charts are not available because GraphDB is not in cluster configuration",
|
|
207
|
+
"monitor.cluster": "Cluster health",
|
|
208
|
+
"monitor.retrying": "Retries: {{retry}}",
|
|
209
209
|
"access.to.url.restricted": "Access to the requested URL is restricted!",
|
|
210
210
|
"autocomplete.not.supported": "Autocomplete not fully supported",
|
|
211
211
|
"autocomplete.config.not.supported": "Configuring autocomplete is not supported.",
|
|
@@ -431,7 +431,8 @@
|
|
|
431
431
|
"security.free.access.is": "Free Access is",
|
|
432
432
|
"security.free.access.non.admin": "free access to non-admin functionality",
|
|
433
433
|
"security.using.external.auth.db": "Using external authentication and authorization database",
|
|
434
|
-
"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
|
|
434
|
+
"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",
|
|
435
|
+
"security.user.settings.user_role": "You can see user role or access rights in the external authentication provider",
|
|
435
436
|
"security.table.username": "Username",
|
|
436
437
|
"security.table.role": "Role",
|
|
437
438
|
"security.table.date.created": "Date created",
|
|
@@ -459,49 +460,95 @@
|
|
|
459
460
|
"security.new.password": "New password",
|
|
460
461
|
"security.save.admin.settings": "Save administrator settings",
|
|
461
462
|
"security.admin.pass.unset": "If you unset the password and then enable security, this administrator will not be able to log into GraphDB through the workbench. Are you sure that you want to continue?",
|
|
462
|
-
"resource.
|
|
463
|
-
"resource.system.
|
|
464
|
-
"resource.
|
|
465
|
-
"resource.
|
|
463
|
+
"resource.no_data": "No data available",
|
|
464
|
+
"resource.system.cpu_load.label": "System CPU load",
|
|
465
|
+
"resource.system.cpu_load.tooltip": "Shows the current CPU load in %. The load indicates the overall CPU load of the machine and not just GraphDB",
|
|
466
|
+
"resource.system.file_descriptors.label": "File descriptors",
|
|
467
|
+
"resource.system.file_descriptors.tooltip": "Shows the currently open file descriptors. Having more active repositories or running operations increases the number. There should always be free descriptors to handle new requests. If the number grows but doesn’t shrink once the operations that need the descriptors are complete, it may indicate an issue with GraphDB",
|
|
468
|
+
"resource.system.file_descriptors.open": "Open file descriptors",
|
|
469
|
+
"resource.system.file_descriptors.max": "Max file descriptors: {{max}}",
|
|
470
|
+
"resource.system.file_descriptors.only_unix": "Available only for UNIX based systems",
|
|
471
|
+
"resource.memory.heap.label": "Heap memory usage",
|
|
472
|
+
"resource.memory.heap.tooltip": "Shows the heap memory used by GraphDB. The heap memory is the main memory allocated for keeping the database running and it is also used for any memory-intensive operations when needed. Approaching the maximum heap size can slow down GraphDB",
|
|
473
|
+
"resource.memory.heap.max": "Maximum heap size: ",
|
|
474
|
+
"resource.memory.non_heap.label": "Off-heap memory usage",
|
|
475
|
+
"resource.memory.non_heap.tooltip": "Shows the off-heap memory used by GraphDB. The off-heap memory is used only for certain structures and should not grow substantially with time",
|
|
476
|
+
"resource.memory.committed": "Committed memory",
|
|
477
|
+
"resource.memory.used": "Used memory",
|
|
478
|
+
"resource.storage.label": "Disk storage",
|
|
479
|
+
"resource.storage.tooltip": "Shows the used/free disk storage space in three key GraphDB directories – the data directory, the work directory and the logs directory. If any of the directories runs out of space, GraphDB may stop operating normally",
|
|
480
|
+
"resource.storage.used": "Used",
|
|
481
|
+
"resource.storage.free": "Free",
|
|
482
|
+
"resource.storage.work": "Work",
|
|
483
|
+
"resource.storage.data": "Data",
|
|
484
|
+
"resource.storage.logs": "Logs",
|
|
485
|
+
"resource.storage.subtitle.data": "Data: ",
|
|
486
|
+
"resource.storage.subtitle.work": "Work: ",
|
|
487
|
+
"resource.storage.subtitle.logs": "Logs: ",
|
|
488
|
+
"resource.epool.label": "Entity pool",
|
|
489
|
+
"resource.epool.tooltip": "Shows GraphDB’s entity pool reads and writes count for the current repository. This metric can be used to diagnose a small or oversized entity pool",
|
|
490
|
+
"resource.epool.reads": "Reads",
|
|
491
|
+
"resource.epool.writes": "Writes",
|
|
492
|
+
"resource.epool.size": "Size",
|
|
493
|
+
"resource.queries.label": "Queries",
|
|
494
|
+
"resource.queries.tooltip": "Shows the number of active queries or updates in the current repository. The number will grow with each running query or update and decrease when the query or update completes. In addition, the graphics reports the total number of slow and suboptimal queries since the repository was initialized. Having a large number of slow queries may indicate insufficient system resources or simply queries that need some time to execute. Suboptimal queries are those queries that were evaluated using a fallback RDF4J strategy and normally should not occur",
|
|
495
|
+
"resource.queries.running": "Running queries",
|
|
496
|
+
"resource.queries.slow": "Slow queries: ",
|
|
497
|
+
"resource.queries.suboptimal": "Suboptimal queries: ",
|
|
498
|
+
"resource.connections.label": "Transactions and Connections",
|
|
499
|
+
"resource.connections.tooltip": "Shows the number of active transactions and open repository connections. The number of transactions and connections varies according to load. If there is no perceived use but the numbers stay above zero, it may indicate an issue with a client not disposing of a transaction properly",
|
|
500
|
+
"resource.connections.active": "Active transactions",
|
|
501
|
+
"resource.connections.open": "Open connections",
|
|
502
|
+
"resources.global_cache.label": "Global cache",
|
|
503
|
+
"resources.global_cache.tooltip": "Shows GraphDB’s global page cache hits and miss count. This metric can be used to diagnose a small or oversized cache size. Ideally, the % of hits should be over 96%. If it’s below that, it might be a good idea to increase the cache size. If it’s over 99%, it might be worth experimenting with a smaller size. Note that the global page cache is shared across all active repositories",
|
|
504
|
+
"resources.global_cache.hits": "Hit",
|
|
505
|
+
"resources.global_cache.miss": "Miss",
|
|
506
|
+
"resources.cluster_health.label": "Cluster health",
|
|
507
|
+
"resources.cluster_health.tooltip": "Shows the overall health of the GraphDB cluster. A healthy cluster has most of its nodes “in sync”, a low number of leader elections and a very low number of recoveries and failed transactions. If you observe different behavior, it may indicate issues with the network, hardware or setup",
|
|
508
|
+
"resources.cluster_health.in_sync": "In sync",
|
|
509
|
+
"resources.cluster_health.out_sync": "Out of sync",
|
|
510
|
+
"resources.cluster_health.syncing": "Syncing",
|
|
511
|
+
"resources.cluster_health.disconnected": "Disconnected",
|
|
512
|
+
"resource.cluster_health.leader_elections": "Leader elections: ",
|
|
513
|
+
"resource.cluster_health.recoveries": "Recoveries: ",
|
|
514
|
+
"resource.cluster_health.failed_transactions": "Failed transactions: ",
|
|
466
515
|
"view.autocomplete.title": "Autocomplete index",
|
|
467
|
-
"view.autocomplete.helpInfo": "The Autocomplete index is used for automatic completion of
|
|
516
|
+
"view.autocomplete.helpInfo": "The Autocomplete index is used for automatic completion of IRIs in the SPARQL editor and the View resource page. Use this view to enable or disable the index and check its status.",
|
|
468
517
|
"view.clusterManagement.title": "Cluster management",
|
|
469
518
|
"view.clusterManagement.create.title": "Create cluster",
|
|
470
519
|
"view.clusterManagement.edit.title": "Edit cluster",
|
|
471
|
-
"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
|
|
520
|
+
"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 monitor the state of a running cluster in near real-time.",
|
|
472
521
|
"view.resource.title": "Resource",
|
|
473
|
-
"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.",
|
|
522
|
+
"view.export.ctr.helpInfo": "Graphs overview provides a list of the default graph and all named graphs in a GraphDB repository. It can be used to inspect the statements in each graph, export the graph or clear the graph's data.",
|
|
474
523
|
"view.connector.management.title": "Connector management",
|
|
475
|
-
"view.connector.management.helpInfo": "The Connector management view is used to create and
|
|
524
|
+
"view.connector.management.helpInfo": "The Connector management view is used to create, manage and view GraphDB connector instances.",
|
|
476
525
|
"view.class.hierarchy.title": "Class hierarchy",
|
|
477
526
|
"view.class.hierarchy.helpInfo": "The Class hierarchy view shows the hierarchy of RDF classes by the number of instances. The biggest circles are the parent classes, and the smaller nested ones are their subclasses. Hover over a given class to see its subclasses or zoom in a nested circle (RDF class) for further exploration.",
|
|
478
527
|
"view.domain.range.graph.title": "Domain-Range graph",
|
|
479
|
-
"view.domain.range.graph.helpInfo": "
|
|
528
|
+
"view.domain.range.graph.helpInfo": "The Domain-Range graph view shows the classes and properties that lead to or from a given RDF class. The possible subject types of a property (shown on the left of the property) are the <b>domain</b>, while the possible object types of a property (shown on the right) are the <b>range</b> of that property. You can navigate to another class by double clicking on it.",
|
|
480
529
|
"view.class.relationships.title": "Class relationships",
|
|
481
530
|
"view.class.relationships.helpInfo": "The Class relationships view shows the relationships between RDF classes, where a relationship is represented by links between the individual instances of two classes. Each link is an RDF statement where the subject is an instance of one class, the object is an instance of another class, and the link is the predicate. Depending on the number of links between the instances of two classes, the bundle can be thicker or thinner, and it receives the colour of the class with more incoming links. The links can be in both directions.",
|
|
482
|
-
"view.visual.graph.helpInfo": "
|
|
531
|
+
"view.visual.graph.helpInfo": "The Visual graph view provides a visual representation of parts of the RDF graph. The visualisation starts from a single resource and the resources connected to it or from a graph query result. Double-click on resources to expand the graph with their connections.",
|
|
483
532
|
"view.create.visual.graph.title": "Create visual graph config",
|
|
484
533
|
"view.create.visual.graph.helpInfo": "A visual graph config defines the SPARQL queries used to retrieve nodes and edges in the visual graph, as well as the starting point of visualisation.",
|
|
485
|
-
"view.import.helpInfo": "The Import view allows you to import RDF data into GraphDB. Import data from local files, from files on the server where
|
|
534
|
+
"view.import.helpInfo": "The Import view allows you to import RDF data into a GraphDB repository. Import data from local files, from files on the server where GraphDB is running, from a remote URL, or by pasting the RDF data as a text snippet. Each import method supports various RDF serialisation formats.",
|
|
486
535
|
"view.jdbc.title": "JDBC configuration",
|
|
487
|
-
"view.jdbc.helpInfo": "JDBC
|
|
536
|
+
"view.jdbc.helpInfo": "The JDBC configuration view allows you to configure, store, update, preview, and delete virtual SQL tables. These tables can then be used with the Avatica JDBC driver. Each virtual SQL table is based on a SPARQL SELECT query and requires additional metadata for the definition of the SQL columns.",
|
|
488
537
|
"view.jdbc.create.title": "SQL table configuration",
|
|
489
|
-
"view.jdbc.create.helpInfo": "
|
|
538
|
+
"view.jdbc.create.helpInfo": "The SQL table configuration view is used to define a virtual SQL table. Each table must have a name, a SPARQL SELECT query, and a set of SQL column definitions.",
|
|
490
539
|
"jdbc.column.names.constraint": "Column names must be placed in array.",
|
|
491
|
-
"view.namespaces.helpInfo": "The Namespaces view provides an overview of all namespaces
|
|
492
|
-
"view.ontoRefine.title": "OntoRefine",
|
|
493
|
-
"view.ontoRefine.helpInfo": "GraphDB OntoRefine is a data transformation tool, based on OpenRefine and integrated in GraphDB Workbench, for converting tabular data into RDF and importing it into a GraphDB repository, using simple SPARQL queries and a virtual endpoint. The supported formats are TSV, CSV, *SV, Excel (.xls and. xlsx), JSON, XML, RDF as XML, and Google sheet. Using OntoRefine you can easily filter your data, edit the inconsistencies, convert it into RDF, and import it into your repository.",
|
|
540
|
+
"view.namespaces.helpInfo": "The Namespaces view provides an overview of all namespaces defined in a GraphDB repository. Namespaces are essentially shorthand notations for IRIs. Here you can add, remove and modify them.",
|
|
494
541
|
"view.query.and.update.monitoring.title": "Query and Update monitoring",
|
|
495
|
-
"view.query.and.update.monitoring.helpInfo": "The Queries and Updates monitoring view shows all running queries
|
|
542
|
+
"view.query.and.update.monitoring.helpInfo": "The Queries and Updates monitoring view shows all running queries and updates in a GraphDB repository. A query or update can be terminated by pressing the Abort button.",
|
|
496
543
|
"view.rdf.rank.title": "RDF Rank",
|
|
497
|
-
"view.rdf.rank.helpInfo": "RDF Rank is an algorithm that identifies the
|
|
498
|
-
"view.repositories.helpInfo": "The Repositories view is used to
|
|
544
|
+
"view.rdf.rank.helpInfo": "RDF Rank is an algorithm that identifies the most important or popular entities in the repository by examining their interconnectedness. The popularity of the entities can be used to order the query results. Use this view to configure the RDF rank, recompute it or check the current state.",
|
|
545
|
+
"view.repositories.helpInfo": "The Repositories view is used to create, modify and delete repositories and connections to remote GraphDB instances (also known as remote locations).",
|
|
499
546
|
"view.choose.repo.title": "Select Repository Type",
|
|
500
547
|
"view.create.repo.title": "Create {{repoType}} repository",
|
|
501
548
|
"view.edit.repo.title": "Edit Repository: {{repositoryId}}",
|
|
502
|
-
"view.resource.monitoring.title": "
|
|
503
|
-
"view.resource.monitoring.helpInfo": "The
|
|
504
|
-
"view.users.access.helpInfo": "The Users and Access view is used to manage the users and their access to the GraphDB repositories. You can also enable or disable the security of the entire
|
|
549
|
+
"view.resource.monitoring.title": "System monitoring",
|
|
550
|
+
"view.resource.monitoring.helpInfo": "The System monitoring view shows the usage of various system resources, such as memory, CPU, file descriptors, and storage space. It also shows some performance metrics that allow you to diagnose various issues, as well as an overview of the cluster health",
|
|
551
|
+
"view.users.access.helpInfo": "The Users and Access view is used to manage the users and their access to the GraphDB repositories. You can also enable or disable the security of the entire GraphDB. When security is disabled, everyone has full access to the repositories and the admin functionality.",
|
|
505
552
|
"view.create.user.title": "Create new user",
|
|
506
553
|
"view.edit.user.title": "Edit user: {{userId}}",
|
|
507
554
|
"view.login.title": "Login",
|
|
@@ -509,27 +556,36 @@
|
|
|
509
556
|
"view.access.denied.title": "Access Denied",
|
|
510
557
|
"view.roles.mapping.title": "Roles per Request Mapping",
|
|
511
558
|
"view.register.license.title": "Register GraphDB License",
|
|
512
|
-
"view.register.license.helpInfo": "The Register GraphDB
|
|
513
|
-
"view.existing.license.title": "Current license
|
|
514
|
-
"view.existing.license.helpInfo": "The GraphDB
|
|
559
|
+
"view.register.license.helpInfo": "The Register GraphDB license view is used to set a new GraphDB license. Upload the binary license or copy the license text in the designated text area.",
|
|
560
|
+
"view.existing.license.title": "Current GraphDB license",
|
|
561
|
+
"view.existing.license.helpInfo": "The Current GraphDB license view allows you to check the details of your current GraphDB license, as well as set a new license.",
|
|
515
562
|
"view.similarity.indexes.title": "Similarity indexes",
|
|
516
|
-
"view.similarity.indexes.helpInfo": "Similarity indexes help you look up semantically similar entities and text.",
|
|
563
|
+
"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.",
|
|
517
564
|
"view.create.similarity.index.title": "Create similarity index",
|
|
518
|
-
"view.create.similarity.index.helpInfo": "Index name and select query are required.
|
|
565
|
+
"view.create.similarity.index.helpInfo": "Index name and select query are required. Semantic Vectors parameters are optional.",
|
|
519
566
|
"view.sparql.title": "SPARQL Query & Update",
|
|
520
|
-
"view.sparql.helpInfo": "The SPARQL Query & Update view is a unified editor for queries and updates.
|
|
567
|
+
"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.",
|
|
521
568
|
"view.sparql.template.title": "SPARQL Templates",
|
|
522
|
-
"view.sparql.template.helpInfo": "
|
|
569
|
+
"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.",
|
|
523
570
|
"view.create.sparql.template.title": "Create SPARQL Templates",
|
|
524
|
-
"view.create.sparql.template.helpInfo": "SPARQL
|
|
571
|
+
"view.create.sparql.template.helpInfo": "This view is used to define a single SPARQL template. The template consists of an IRI identifying the template and a SPARQL update that will be executed when the template is invoked.",
|
|
525
572
|
"view.system.information.title": "System information",
|
|
526
|
-
"view.system.information.helpInfo": "The System information view shows the configuration values of the JVM running
|
|
573
|
+
"view.system.information.helpInfo": "The System information view shows the configuration values of the JVM running GraphDB, and provides an easy mechanism to generate a detailed server report file that includes useful debugging information.",
|
|
527
574
|
"view.rest.api.documentation.title": "REST API documentation",
|
|
528
|
-
"view.rest.api.documentation.helpInfo": "The REST API view documents the available public
|
|
575
|
+
"view.rest.api.documentation.helpInfo": "The REST API view documents the available public REST API endpoints and provides an interactive interface to execute REST requests.",
|
|
576
|
+
"view.guides.title": "Interactive guides",
|
|
577
|
+
"view.guides.table.column.name": "Guide name",
|
|
578
|
+
"view.guides.table.column.level": "Guide level",
|
|
579
|
+
"view.guides.table.column.action": "Action",
|
|
580
|
+
"view.guides.level.beginner": "Beginner",
|
|
581
|
+
"view.guides.level.intermediate": "Intermediate",
|
|
582
|
+
"view.guides.level.advanced": "Advanced",
|
|
583
|
+
"view.guides.action.start": "Run the guide",
|
|
584
|
+
"view.guides.helpInfo": "The Interactive guides view provides a set of interactive guides that will lead you through various GraphDB functionalities using the Workbench user interface.",
|
|
585
|
+
"view.guides.guides.per.page.label": "Guides per page:",
|
|
529
586
|
"collapse.menu.title": "Collapse menu",
|
|
530
|
-
"view.plugins.helpInfo": "
|
|
587
|
+
"view.plugins.helpInfo": "The Plugins view is used to activate or deactivate plugins at the lowest level. Normally, all plugins should be active. If you need to enable, disable or configure functionality provided by a plugin, use the respective plugin view (e.g., the RDF Rank view) or SPARQL queries instead.",
|
|
531
588
|
"menu.rdf.label": "RDF",
|
|
532
|
-
"menu.ontoRefine.label": "Tabular (OntoRefine)",
|
|
533
589
|
"menu.explore.label": "Explore",
|
|
534
590
|
"menu.graphs.overview.label": "Graphs overview",
|
|
535
591
|
"menu.class.relationships.label": "Class relationships",
|
|
@@ -543,7 +599,7 @@
|
|
|
543
599
|
"menu.ftsStringLiteralsIndex.label": "FTS index for xsd:string literals",
|
|
544
600
|
"menu.ftsIrisIndex.label": "FTS index for full-text indexing of IRIs",
|
|
545
601
|
"menu.ftsDefaultAnalyzer.label": "Analyzer for the default index",
|
|
546
|
-
"menu.resources.label": "
|
|
602
|
+
"menu.resources.label": "System",
|
|
547
603
|
"menu.setup.label": "Setup",
|
|
548
604
|
"menu.repositories.label": "Repositories",
|
|
549
605
|
"menu.users.and.access.label": "Users and Access",
|
|
@@ -561,6 +617,7 @@
|
|
|
561
617
|
"menu.documentation.label": "Documentation",
|
|
562
618
|
"menu.developer.hub.label": "Developer Hub",
|
|
563
619
|
"menu.support.label": "Support",
|
|
620
|
+
"menu.guides.label": "Interactive guides",
|
|
564
621
|
"menu.plugins.label": "Plugins",
|
|
565
622
|
"core.popover.get.url.query": "Get URL to query",
|
|
566
623
|
"core.popover.shared.query.warning": "Query shared by another user. You may not edit or delete it.",
|
|
@@ -590,7 +647,7 @@
|
|
|
590
647
|
"query.editor.autocomplete.hint": "Hint: \"abC\" matches \"abC*\", \"ab c*\" and \"ab-c*\"",
|
|
591
648
|
"query.editor.progress.msg": "{{progressMessage}}... {{timeHuman}}",
|
|
592
649
|
"query.editor.extra.msg": "\n{{extraMessage}}",
|
|
593
|
-
"query.editor.warning.msg": "Explain only works with SELECT
|
|
650
|
+
"query.editor.warning.msg": "Explain only works with SELECT, CONSTRUCT and DESCRIBE queries.",
|
|
594
651
|
"query.editor.virtual.repo.warning.msg": "Explain not supported for Virtual repositories.",
|
|
595
652
|
"query.editor.virtual.repo.update.warning.msg": "Updates are not supported for Virtual repositories.",
|
|
596
653
|
"query.editor.get.saved.queries.error": "Error! Could not get saved queries",
|
|
@@ -621,6 +678,8 @@
|
|
|
621
678
|
"query.editor.creating.connector": "Creating connector {{name}}",
|
|
622
679
|
"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.",
|
|
623
680
|
"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?",
|
|
681
|
+
"query.editor.error.show.full.message": "Show full exception message",
|
|
682
|
+
"query.editor.error.show.less.message": "Show less exception message",
|
|
624
683
|
"sparql.tab.directive.close.last.warning": "Last tab must remain open.",
|
|
625
684
|
"sparql.tab.directive.delete.all.tabs.warning": "Are you sure you want to delete all query tabs except selected tab?",
|
|
626
685
|
"sparql.tab.directive.close.tab.warning": "Are you sure you want to close this query tab?",
|
|
@@ -895,13 +954,44 @@
|
|
|
895
954
|
"fedx.repo.already.added.member.error": "Repository {{name}} already added as a FedX member",
|
|
896
955
|
"fedx.repo.already.added.sparql.endpoint.error": "SPARQL endpoint {{name}} already added as a FedX member",
|
|
897
956
|
"ontop.repo.configuration": "Ontop configuration",
|
|
957
|
+
"ontop.repo.connection.information": "Connection Information",
|
|
958
|
+
"ontop.repo.settings": "Ontop settings",
|
|
898
959
|
"ontop.repo.database.driver": "Database driver",
|
|
960
|
+
"ontop.repo.database.host_name": "Host name",
|
|
961
|
+
"ontop.repo.database.host_name.placeholder": "Enter hostname",
|
|
962
|
+
"ontop.repo.database.snowflake.host_name": "Account identifier",
|
|
963
|
+
"ontop.repo.database.port": "Port",
|
|
964
|
+
"ontop.repo.database.port.placeholder": "Enter port",
|
|
965
|
+
"ontop.repo.database.username": "Username",
|
|
966
|
+
"ontop.repo.database.username.placeholder": "Enter username",
|
|
967
|
+
"ontop.repo.database.database_name": "Database name",
|
|
968
|
+
"ontop.repo.database.database_name.placeholder": "Enter data source name",
|
|
969
|
+
"ontop.repo.database.schema.database_name": "Schema",
|
|
970
|
+
"ontop.repo.database.http_path.database_name": "HttpPath",
|
|
971
|
+
"ontop.repo.database.warehouse.database_name": "Warehouse",
|
|
972
|
+
"ontop.repo.database.password": "Password",
|
|
973
|
+
"ontop.repo.database.password.placeholder": "Enter password",
|
|
974
|
+
"ontop.repo.database.driver_class": "Driver class",
|
|
975
|
+
"ontop.repo.database.driver_class.placeholder": "Enter data source driver class",
|
|
976
|
+
"ontop.repo.database.url": "JDBC URL",
|
|
899
977
|
"ontop.repo.test.connection": "Test connection",
|
|
900
978
|
"ontop.repo.download.jdbc.driver": "Download JDBC driver",
|
|
979
|
+
"ontop.repo.missing.jdbc.driver": "Missing JDBC Driver",
|
|
901
980
|
"ontop.repo.missing.required.file.error": "Missing required ontop repo file",
|
|
981
|
+
"ontop.repo.missing.required.file": "Missing required ontop repo file '{{fileName}}'",
|
|
902
982
|
"ontop.repo.successful.connection.msg": "Connection is successful",
|
|
903
983
|
"ontop.repo.failed.to.connect": "Failed to connect",
|
|
984
|
+
"ontop.repo.properties.label": "Additional Ontop/JDBC properties",
|
|
985
|
+
"ontop.repo.properties.tooltip": "Allows to specify additional Ontop/JDBC in properties file format",
|
|
986
|
+
"ontop.repo.properties.configuration.link": "Ontop configuration properties",
|
|
987
|
+
"ontop.repo.properties.placeholder": "# Ontop/JDBC properties in properties file format",
|
|
988
|
+
"ontop.repo.file.obdaFile.name": "OBDA or R2RML file",
|
|
989
|
+
"ontop.repo.file.owlFile.name": "Ontology file",
|
|
990
|
+
"ontop.repo.file.constraintFile.name": "Constraint file",
|
|
991
|
+
"ontop.repo.file.lensesFile.name": "Lenses file",
|
|
992
|
+
"ontop.repo.file.dbMetadataFile.name": "DB metadata file",
|
|
904
993
|
"missing.required.field.error": "Missing required field",
|
|
994
|
+
"missing.required.field": "Missing required field '{{fieldName}}'",
|
|
905
995
|
"restart.repo.check.tooltip": "Check to restart the repository and apply the changes.",
|
|
906
996
|
"restart.repo.label": "Restart repository",
|
|
907
997
|
"delete.repo": "Delete repository",
|
|
@@ -919,9 +1009,9 @@
|
|
|
919
1009
|
"location.change.confirm": "Confirm location change",
|
|
920
1010
|
"location.change.confirm.warning": "Are you sure you want to change the location?",
|
|
921
1011
|
"location.label": "Location:",
|
|
922
|
-
"delete.repo.warning.msg": "<p>Are you sure you want to delete the repository <strong>{{repositoryId}}</strong>?</p><p><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
1012
|
+
"delete.repo.warning.msg": "<p>Are you sure you want to delete the repository <strong>{{repositoryId}}</strong>?</p><p><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span>All data in the repository will be lost.</p>",
|
|
923
1013
|
"confirm.restart.repo": "Confirm restart",
|
|
924
|
-
"confirm.restart.repo.warning.msg": "<p>Are you sure you want to restart the repository <strong>{{repositoryId}}</strong>?</p><p><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
1014
|
+
"confirm.restart.repo.warning.msg": "<p>Are you sure you want to restart the repository <strong>{{repositoryId}}</strong>?</p><p><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span>The repository will be shut down immediately and all running queries and updates will be cancelled.</p>",
|
|
925
1015
|
"location.cannot.be.empty.error": "Location cannot be empty",
|
|
926
1016
|
"required.field": "This field is required",
|
|
927
1017
|
"created.repo.success.msg": "The repository {{repoId}} has been created.",
|
|
@@ -932,9 +1022,9 @@
|
|
|
932
1022
|
"edit.repo.error.not.exists": "Repo with name <b>{{repositoryId}}</b> doesn't exists",
|
|
933
1023
|
"edit.repo.success.msg": "The repository {{saveId}} has been edited.",
|
|
934
1024
|
"edit.repo.save.changes.msg": "Save changes to repository <strong>{{repoId}}</strong>?<br><br>",
|
|
935
|
-
"edit.repo.rename.changes.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
936
|
-
"edit.repo.restart.requested.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
937
|
-
"edit.repo.restart.needed.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
1025
|
+
"edit.repo.rename.changes.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span>The repository will be stopped and renamed.",
|
|
1026
|
+
"edit.repo.restart.requested.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span>The repository will be restarted.",
|
|
1027
|
+
"edit.repo.restart.needed.msg": "<span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span>Repository restart required for changes to take effect.",
|
|
938
1028
|
"edit.repo.id.warning.msg": "<p>Changing the repository ID is a dangerous operation since it renames the repository folder and enforces repository shutdown.</p>",
|
|
939
1029
|
"edit.repo.id.cluster.warning.msg": "<p>If your repository is in a cluster, it is your responsibility to update the cluster after renaming.</p>",
|
|
940
1030
|
"confirm.enable.edit": "Confirm enable edit",
|
|
@@ -947,7 +1037,7 @@
|
|
|
947
1037
|
"repoTooltips.ruleset": "Sets of axiomatic triples, consistency checks and entailment rules, which determine the applied semantics with a PIE file.",
|
|
948
1038
|
"repoTooltips.rulesetWarnings.needsSameAs": "Disabling owl:sameAs for this ruleset may cause incomplete inference with owl:sameAs statements.",
|
|
949
1039
|
"repoTooltips.rulesetWarnings.doesntNeedSameAs": "This ruleset does not need owl:sameAs, consider disabling it.",
|
|
950
|
-
"repoTooltips.rulesetWarnings.customRuleset": "If the custom ruleset does not use owl:sameAs, consider disabling it.
|
|
1040
|
+
"repoTooltips.rulesetWarnings.customRuleset": "If the custom ruleset does not use owl:sameAs, consider disabling it. \nIf the ruleset uses owl:sameAs, disabling it may cause incomplete inference with owl:sameAs statements.",
|
|
951
1041
|
"repoTooltips.disableSameAs": "GraphDB uses a non-rule implementation of owl:sameAs, which can be enabled or disabled independently of the ruleset.",
|
|
952
1042
|
"repoTooltips.checkForInconsistencies": "Enables the consistency checks from the ruleset.",
|
|
953
1043
|
"repoTooltips.isShacl": "Enables support for SHACL validation.",
|
|
@@ -962,7 +1052,8 @@
|
|
|
962
1052
|
"repoTooltips.shaclOptions.performanceLogging": "Log (INFO) the execution time per shape. It is recommended to disable parallel validation and caching of select nodes when this is enabled.",
|
|
963
1053
|
"repoTooltips.shaclOptions.eclipseRdf4jShaclExtensions": "Activates RDF4J's SHACL extensions that provide additional functionality (experimental).",
|
|
964
1054
|
"repoTooltips.shaclOptions.dashDataShapes": "Activates DASH Data Shapes extensions that provide additional functionality (experimental).",
|
|
965
|
-
"repoTooltips.
|
|
1055
|
+
"repoTooltips.shaclOptions.shapesGraph": "Sets the named graphs where SHACL shapes can be stored. The list is comma-delimited.",
|
|
1056
|
+
"repoTooltips.entityIdSize": "Defines the bit size of internal IDs used to index entities (URIs, blank nodes, literals, and RDF* embedded triples).\nUse 40 bit ID only if you expect more than 2 billion unique RDF values.",
|
|
966
1057
|
"repoTooltips.enableContextIndex": "Builds an additional Context-Predicate-Subject-Object index to boost the SPARQL query performance of queries with GRAPH/FROM/FROM NAMED clauses.",
|
|
967
1058
|
"repoTooltips.enablePredicateList": "Enables the mappings from an entity (subject or object) to its predicates; enabling it can significantly speed up queries that use wildcard predicate patterns.",
|
|
968
1059
|
"repoTooltips.queryTimeout": "Sets the number of seconds after which the evaluation of a query will be terminated; values less than or equal to zero mean no limit.",
|
|
@@ -988,6 +1079,7 @@
|
|
|
988
1079
|
"repoTooltips.ontop.obdaFile": "Describes the mapping from SQL to RDF in either the OBDA or the R2RML format.",
|
|
989
1080
|
"repoTooltips.ontop.owlFile": "Specifies relations between the classes and properties in the cosntructed RDF graph. It can be in any supported RDF format.",
|
|
990
1081
|
"repoTooltips.ontop.constraintFile": "Specifies override of SQL primary and foreign keys.",
|
|
1082
|
+
"repoTooltips.ontop.lensesFile": "Specifies aditional contstraints attached to relation.",
|
|
991
1083
|
"repoTooltips.ontop.dbMetadataFile": "Specifies metadata for the SQL database.",
|
|
992
1084
|
"repoTooltips.ontop.testConn": "Attempts to establish a connection to the SQL database to test if the supplied configuration is correct.",
|
|
993
1085
|
"repoTooltips.fedx.repositoryNotExistWarning": "The repository member has been removed from the local repositories",
|
|
@@ -1104,6 +1196,8 @@
|
|
|
1104
1196
|
"save.settings.btn": "Save settings",
|
|
1105
1197
|
"are.license.details.correct": "Are your license details correct?",
|
|
1106
1198
|
"edition": "Edition",
|
|
1199
|
+
"capabilities": "Capabilities",
|
|
1200
|
+
"none": "None",
|
|
1107
1201
|
"licensed.to": "Licensed to",
|
|
1108
1202
|
"valid.until": "Valid until",
|
|
1109
1203
|
"perpetual": "Perpetual",
|
|
@@ -1166,7 +1260,7 @@
|
|
|
1166
1260
|
"sparql.template.delete.template.failure": "Could not delete {{templateID}} template",
|
|
1167
1261
|
"sparql.template.get.template.error": "Could not get {{templateID}} template",
|
|
1168
1262
|
"sparql.template.iri.constraint": "SPARQL template IRI is required",
|
|
1169
|
-
"sparql.template.existing.template.error": "<div>SPARQL Template <strong>{{templateID}}</strong> already exists.</div><br><div><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"
|
|
1263
|
+
"sparql.template.existing.template.error": "<div>SPARQL Template <strong>{{templateID}}</strong> already exists.</div><br><div><span class=\"icon-2x icon-warning\" style=\"color: var(--onto-orange-dark)\"></span> Do you want to override the template query?</div>",
|
|
1170
1264
|
"update.sparql.template.success.msg": "Updated SPARQL template",
|
|
1171
1265
|
"save.sparql.template.failure.msg": "Could not save {{templateID}} template",
|
|
1172
1266
|
"sparql.template.query.constraint": "The template query must be an UPDATE query",
|
|
@@ -1192,6 +1286,7 @@
|
|
|
1192
1286
|
"signature.auth.info": "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 ",
|
|
1193
1287
|
"signature.auth.info.last": " in the documentation.",
|
|
1194
1288
|
"update.file.content.header": "Update file contents",
|
|
1289
|
+
"update.file.edit.content.header": "Edit \"{{fileName}}\" contents",
|
|
1195
1290
|
"update.file.content.placeholder": "# Update ontop repository file content",
|
|
1196
1291
|
"update.file.content.tooltip": "Update the contents of the file.",
|
|
1197
1292
|
"upload.repo.config.header": "Upload Repository Configuration",
|
|
@@ -1210,7 +1305,9 @@
|
|
|
1210
1305
|
"size.info.not.available": "Size info not available.",
|
|
1211
1306
|
"main.gdb.description": "An application for searching, exploring and managing GraphDB semantic repositories.",
|
|
1212
1307
|
"main.info.title.welcome.page": "Welcome to GraphDB",
|
|
1213
|
-
"main.info.welcome.page": "GraphDB is a graph database compliant with RDF and SPARQL specifications. It supports open APIs based on RDF4J
|
|
1308
|
+
"main.info.welcome.page": "GraphDB is a graph database compliant with RDF and SPARQL specifications. It supports open APIs based on the RDF4J project and enables fast publishing of linked data on the web. The Workbench is used for searching, exploring and managing GraphDB repositories.",
|
|
1309
|
+
"main.info.welcome.page.guides": "<a href=\"guides\">Run our interactive guides</a> for an easy way into learning some basic concepts and getting started with GraphDB.",
|
|
1310
|
+
"main.info.welcome.page.footer": "You can always come back to this panel by pressing the GraphDB icon in the top left corner.",
|
|
1214
1311
|
"main.info.title.create.repo.page": "Create a repository",
|
|
1215
1312
|
"main.info.create.repo.page": "Now let’s create your first repository. Go to Setup > Repositories and press Create new repository button. Fill the field Repository ID and press enter. The default repository parameters are optimized for datasets up to 100 million RDF statements. If you plan to load more check for more information: {{link}}Configuring a repository</a>",
|
|
1216
1313
|
"main.info.title.load.sample.dataset": "Load a sample dataset",
|
|
@@ -1334,7 +1431,6 @@
|
|
|
1334
1431
|
"showing.label": "Showing",
|
|
1335
1432
|
"results.label": "results",
|
|
1336
1433
|
"no.plugins.match.filter.warning": "No plugins match this filter.",
|
|
1337
|
-
"ontorefine.not.available.warning": "OntoRefine is not available",
|
|
1338
1434
|
"error.warning": "404 That’s an error!",
|
|
1339
1435
|
"requested.url.not.found.msg": "The requested URL was not found on this server. That’s all I know.",
|
|
1340
1436
|
"back.home.btn": "Back Home",
|
|
@@ -1409,6 +1505,9 @@
|
|
|
1409
1505
|
"rdf.data.from.url.label": "Get RDF data from a URL",
|
|
1410
1506
|
"import.rdf.text.snippet.label": "Import RDF text snippet",
|
|
1411
1507
|
"type.paste.data.label": "Type or paste RDF data",
|
|
1508
|
+
"take.me.to.guides": "Take me to the guides",
|
|
1509
|
+
"hide.panel": "Hide panel",
|
|
1510
|
+
"show.welcome.panel": "Show welcome panel",
|
|
1412
1511
|
"ok.continue": "OK, continue",
|
|
1413
1512
|
"no.thanks": "No, thanks",
|
|
1414
1513
|
"view.rdf.data.text.visual.graph.header": "View RDF data as a text table or as a visual graph",
|
|
@@ -1428,7 +1527,6 @@
|
|
|
1428
1527
|
"expansion.ratio": "expansion ratio",
|
|
1429
1528
|
"error": "error",
|
|
1430
1529
|
"import.rdf.data.label": "Import RDF data",
|
|
1431
|
-
"import.tabular.data.ontorefine": "Import tabular data with OntoRefine",
|
|
1432
1530
|
"export.rdf.data": "Export RDF data",
|
|
1433
1531
|
"saved.sparql.queries.label": "Saved SPARQL queries",
|
|
1434
1532
|
"saved.sparql.queries.tooltip": "Execute a saved SPARQL query directly",
|
|
@@ -1567,7 +1665,7 @@
|
|
|
1567
1665
|
"change.language.tooltip": "Change language to",
|
|
1568
1666
|
"current.language.tooltip": "Current language",
|
|
1569
1667
|
"sparql.shortcuts": "keyboard shortcuts",
|
|
1570
|
-
"sparql.shortcuts.capital": "
|
|
1668
|
+
"sparql.shortcuts.capital": "keyboard shortcuts",
|
|
1571
1669
|
"sparql.shortcuts.trigger.autocomplete": "Trigger Autocompletion",
|
|
1572
1670
|
"sparql.shortcuts.delete.line": "Delete current/selected line(s)",
|
|
1573
1671
|
"sparql.shortcuts.comment.uncomment.line": "Comment or uncomment current/selected line(s)",
|
|
@@ -1578,6 +1676,7 @@
|
|
|
1578
1676
|
"sparql.shortcuts.auto.indent.lines.less": "Indent current/selected line(s) less",
|
|
1579
1677
|
"sparql.shortcuts.execute.query.update": "Execute query or update",
|
|
1580
1678
|
"sparql.shortcuts.execute.explain.plan": "Execute explain plan for query",
|
|
1679
|
+
"sparql.shortcuts.execute.explain-gpt.plan": "Explain query/result using ChatGPT",
|
|
1581
1680
|
"sparql.shortcuts.create.new.tab": "Create a new unnamed tab",
|
|
1582
1681
|
"sparql.shortcuts.create.saved.query": "Create a saved query from the current state",
|
|
1583
1682
|
"sparql.shortcuts.switch.next.tab": "Switch to next tab",
|
|
@@ -1615,5 +1714,100 @@
|
|
|
1615
1714
|
"all": "all",
|
|
1616
1715
|
"clear.tooltip": "Clear",
|
|
1617
1716
|
"repo.page.location.label": "Location",
|
|
1618
|
-
"repo.page.location.input.field.tooltip": "The location where to create repository. The default is the local one."
|
|
1717
|
+
"repo.page.location.input.field.tooltip": "The location where to create repository. The default is the local one.",
|
|
1718
|
+
"guide.button.guide-paused": "Guide paused",
|
|
1719
|
+
"guide.button.guide-resume": "Continue the guide",
|
|
1720
|
+
"guide.validate.no-next": "Cannot continue to next",
|
|
1721
|
+
"guide.total.progress": "Guide step {{n}} of {{nn}}",
|
|
1722
|
+
"guide.total.progress.tooltip": "This indicates the current step relative to the entire guide and the total number of steps in the guide.",
|
|
1723
|
+
"guide.block.progress": "{{n}}/{{nn}}",
|
|
1724
|
+
"guide.block.progress.tooltip": "This indicates the current step and the total number of steps in the {{action}} action.",
|
|
1725
|
+
"guide.step-type.info": "This step provides some information. No action required other than clicking the Next button.",
|
|
1726
|
+
"guide.step-type.mouse": "This step expects user action with the mouse, typically clicking on something.",
|
|
1727
|
+
"guide.step-type.input": "This step expects user input, typically typing or pasting a piece of text.",
|
|
1728
|
+
"guide.step-intro.create-repository": "The following steps show how to use the <b>{{viewName|translate}}</b> view to create a repository.",
|
|
1729
|
+
"guide.step-intro.enable-autocomplete": "The following steps show how to use the <b>{{viewName|translate}}</b> view to enable the autocomplete index.",
|
|
1730
|
+
"guide.step-intro.execute-sparql-query": "The following steps show how to use the <b>{{viewName|translate}}</b> view to execute queries.",
|
|
1731
|
+
"guide.step-intro.visual-graph": "The following steps show how to use the <b>{{viewName|translate}}</b> view to explore data in a visual manner.",
|
|
1732
|
+
"guide.step-intro.import-file": "The following steps show how to use the <b>{{viewName|translate}}</b> view to import data from a file.",
|
|
1733
|
+
"guide.step-intro.class-hierarchy": "The following steps show how to use the <b>{{viewName|translate}}</b> view to inspect the class hierarchy and gain an insight on what the dataset contains.",
|
|
1734
|
+
"guide.step-intro.table-graph": "The following steps show how to explore RDF data in tabular form without writing SPARQL queries. Click on the <b>{{iriLabel}}</b> IRI to explore it.",
|
|
1735
|
+
"guide.step-menu.click-menu": "Click on the <b>{{menuLabelKey|translate}}</b> menu.",
|
|
1736
|
+
"guide.step-action.create-repository": "Create repository",
|
|
1737
|
+
"guide.step-action.select-repository": "Connect to repository",
|
|
1738
|
+
"guide.step-action.enable-autocomplete": "Enable autocomplete",
|
|
1739
|
+
"guide.step-action.import-file": "Import file",
|
|
1740
|
+
"guide.step-action.visual-graph": "Visual graph explore",
|
|
1741
|
+
"guide.step-action.execute-sparql-query": "Execute SPARQL query",
|
|
1742
|
+
"guide.step-action.class-hierarchy": "Explore the class hierarchy",
|
|
1743
|
+
"guide.step-action.table-graph": "Explore RDF as a table",
|
|
1744
|
+
"guide.step_plugin.execute-sparql-query.query-editor.content": "Enter the following SPARQL query: {{queryExplainMessageTranslated}}{{queryAsHtmlCodeElement}}",
|
|
1745
|
+
"guide.step_plugin.execute-sparql-query.result-explain.content": "The table shows the results from executing the query.",
|
|
1746
|
+
"guide.step_plugin.execute-sparql-query.run-sparql-query.content": "Click on the <b>{{'query.editor.run.btn'|translate}}</b> button.",
|
|
1747
|
+
"guide.step_plugin.execute-sparql-query.copy-to-editor.button": "Copy to editor",
|
|
1748
|
+
"guide.step_plugin.import_rdf_file.content": "Click on the <b>{{'upload.rdf.files.label'|translate}}</b> button and choose a file with the name <b>{{resourceFile}}</b>.",
|
|
1749
|
+
"guide.step_plugin.create_repository.create_repository_button.content": "Click on the <b>{{'repository.create.btn'|translate}}</b> button.",
|
|
1750
|
+
"guide.step_plugin.create_repository.graph_db_repository.content": "Click on the <b>{{'graphdb.repo'|translate}}</b> button.",
|
|
1751
|
+
"guide.step_plugin.create_repository.repository_id.content": "Enter repository ID: <b>{{repositoryId}}.</b>",
|
|
1752
|
+
"guide.step_plugin.create_repository.save_button.content": "Click on the <b>{{'common.create.btn'|translate}}</b> button.",
|
|
1753
|
+
"guide.step_plugin.create_repository.ruleset_dropdown.content": "Choose ruleset: <b>{{rulesetName}}</b>.",
|
|
1754
|
+
"guide.step_plugin.enable-autocomplete.content": "Click on the checkbox to enable the index.",
|
|
1755
|
+
"guide.step_plugin.visual_graph_input_IRI.content": "Enter <b>{{easyGraphInputText}}</b> in the <b>Easy graph</b> text input.",
|
|
1756
|
+
"guide.step_plugin.visual_graph_show_autocomplete.content": "Click on the <b>{{iri}}</b> IRI to show the visual graph.",
|
|
1757
|
+
"guide.step_plugin.visual_graph_intro.content": "The graph shows connections between the start node, <b>{{iriLabel}}</b>, and other nodes. Each arrow represents one or more connections (RDF statements).",
|
|
1758
|
+
"guide.step_plugin.visual-graph-node-focus.title": "Visual graph nodes",
|
|
1759
|
+
"guide.step_plugin.visual-graph-node-focus.content": "A circle represents an RDF resource. In this case, <b>{{iriLabel}}</b>.",
|
|
1760
|
+
"guide.step_plugin.visual-graph-link-focus.title": "Visual graph links",
|
|
1761
|
+
"guide.step_plugin.visual-graph-link-focus.content": "An arrow with a label represents one or more links between nodes. In this case, the arrow shows the relation <b>{{fromIriLabel}} → {{iriLabel}} → {{toIriLabel}}</b>.",
|
|
1762
|
+
"guide.step_plugin.download-guide-resource.title": "Download guide resources",
|
|
1763
|
+
"guide.step_plugin.download-guide-resource.content": "This guide requires a file to be downloaded.<br>Please <a href=\"{{resourceUrl}}\" target=\"_blank\">download {{resourceFile}}</a>.",
|
|
1764
|
+
"guide.step_plugin.choose-repository.content": "Click on the repository selection dropdown.",
|
|
1765
|
+
"guide.step_plugin.select-repository.content": "Click on the <b>{{getRepositoryId()}}</b> repository button.",
|
|
1766
|
+
"guide.step_plugin.select-repository-plug.content": "Click on the plug icon of the <b>{{repositoryId}}</b> repository.",
|
|
1767
|
+
"guide.step_plugin.import_rdf_file.import-file.button.content": "Click on the <b>{{'common.import'|translate}}</b> button.",
|
|
1768
|
+
"guide.step_plugin.import_rdf_file.import-settings.import.button.content": "Click on the <b>{{'common.import'|translate}}</b> button.",
|
|
1769
|
+
"guide.step_plugin.import_rdf_file.file-must-be-uploaded": "Upload the file <b>{{resourceFile}}</b> first",
|
|
1770
|
+
"guide.step_plugin.import_status_info.content": "Wait until import finished.",
|
|
1771
|
+
"guide.step_plugin.enable-autocomplete.status_info.content": "Wait until indexing finished.",
|
|
1772
|
+
"guide.step_plugin.visual-graph-properties.title": "Visual graph properties",
|
|
1773
|
+
"guide.step_plugin.visual-graph-properties.content": "Click on <b>{{iriLabel}}</b> to show its properties.",
|
|
1774
|
+
"guide.step_plugin.visual-graph-properties-side-panel.title": "Visual graph properties",
|
|
1775
|
+
"guide.step_plugin.visual-graph-properties-side-panel.content": "The side panel shows the properties of the clicked node, <b>{{iriLabel}}</b>.",
|
|
1776
|
+
"guide.step_plugin.visual-graph-properties-side-panel-close.title": "Visual graph properties",
|
|
1777
|
+
"guide.step_plugin.visual-graph-properties-side-panel-close.content": "You can close the panel by clicking on the X icon.",
|
|
1778
|
+
"guide.step_plugin.visual-graph-properties-focus-types.title": "Visual graph properties",
|
|
1779
|
+
"guide.step_plugin.visual-graph-properties-focus-types.content": "<b>{{'types.label'|translate}}</b> shows all the RDF types for <b>{{iriLabel}}</b>.",
|
|
1780
|
+
"guide.step_plugin.visual-graph-properties-focus-property.title": "Visual graph properties",
|
|
1781
|
+
"guide.step_plugin.visual-graph-properties-focus-property.content": "The values for generic properties like <b>{{focusProperty}}</b> are listed in dedicated sections.",
|
|
1782
|
+
"guide.step_plugin.visual-graph-expand.title": "Visual graph: expand node",
|
|
1783
|
+
"guide.step_plugin.visual-graph-expand.content": "Double click on <b>{{iriLabel}}</b> to expand the graph.",
|
|
1784
|
+
"guide.step_plugin.class_hierarchy_intro.content": "The biggest circle shows all top-level classes. Every class may have subclasses shown as smaller circles within their parent class. The size of each circle indicates the proportion of RDF resources that belong to that class. Thus, bigger circles are classes that have more instances.",
|
|
1785
|
+
"guide.step_plugin.class_hierarchy_zoom.content": "The class <b>{{iri}}</b> is a parent class that has subclasses. Zoom inside to have a better view by scrolling up with the mouse inside the circle.",
|
|
1786
|
+
"guide.step_plugin.class-hierarchy-instances.title": "Class hierarchy instances",
|
|
1787
|
+
"guide.step_plugin.class-hierarchy-instances.content": "Click on <b>{{iri}}</b> to show its instances.",
|
|
1788
|
+
"guide.step_plugin.class-hierarchy-instances-side-panel.content": "The side panel shows the first 1,000 instances of the clicked class, <b>{{iri}}</b>.",
|
|
1789
|
+
"guide.step_plugin.class-hierarchy-instances-focus.content": "<b>{{focusInstance}}</b> is an instance of the class <b>{{iri}}</b>.",
|
|
1790
|
+
"guide.step_plugin.class-hierarchy-instances-count.content": "This link shows the number of instances for the selected class, <b>{{iri}}</b>. Click on the link to open the SPARQL editor with a preloaded query that selects all instances.",
|
|
1791
|
+
"guide.step_plugin.class-hierarchy-instances-side-panel-close.content": "You can close the panel by clicking on the X icon.",
|
|
1792
|
+
"guide.step_plugin.class-hierarchy-instances-query.content": "This SPARQL query selects all instances of the class <b>{{iri}}</b>. The query was entered automatically when you clicked on the view instances link.",
|
|
1793
|
+
"guide.step_plugin.class-hierarchy-instances-results.content": "The table shows the results. Note that in this particular case, the query was executed automatically.",
|
|
1794
|
+
"guide.step_plugin.class-hierarchy-instances-results.extraContent": "Do not worry — there will be a dedicated section on the SPARQL editor later in the guide.",
|
|
1795
|
+
"guide.step_plugin.table-graph-overview": "The table shows RDF statements where the subject is the selected IRI, <b>{{iriLabel}}</b>. The view can be configured to show statements where the IRI is the <i>subject</i>, <i>predicate</i>, <i>object</i>, <i>context</i> or in any position.",
|
|
1796
|
+
"guide.step_plugin.table-graph-link": "You can click on any IRI in the table to navigate to it. Click on <b>{{iriLabel}}</b>.",
|
|
1797
|
+
"guide.step_plugin.table-graph-role": "You can configure the view to show RDF statements where the current IRI is the <i>subject</i>, <i>predicate</i>, <i>object</i>, <i>context</i> or in any position. Click on the <b>{{role|translate}}</b> tab.",
|
|
1798
|
+
"guide.step_plugin.table-graph-visual": "You can always explore the same data using the <b>{{'visual.graph.label'|translate}}</b> view. Click on the {{'visual.graph.label'|translate}} button to try it now.",
|
|
1799
|
+
"guide.step_plugin.guide-ended.title": "End of guide",
|
|
1800
|
+
"guide.step_plugin.guide-ended.content": "This guide has ended.",
|
|
1801
|
+
"guide.step_plugin.execute-sparql-query.query-not-same.error": "The query is not the same as the guide query!",
|
|
1802
|
+
"guide.step_plugin.enable-autocomplete.error": "The autocomplete index is not enabled!",
|
|
1803
|
+
"guide.step_plugin.welcome.title": "Welcome to {{translatedGuideName}}",
|
|
1804
|
+
"guide.step_plugin.welcome.content": "Throughout the guide you will see boxes like this one that will provide instructions on what to do.<p>The icon in the top left corner is a hint too:<ul><li>{{infoIconHint}}</li><li>{{mouseIconHint}}</li><li>{{inputIconHint}}</li></ul></p>",
|
|
1805
|
+
"guide.step_plugin.welcome.info-icon-hint": "<span class='icon icon-1-5x icon-info'></span> means the box provides information.",
|
|
1806
|
+
"guide.step_plugin.welcome.mouse-icon-hint": "<span class='icon icon-1-5x icon-focus'></span> asks you to do something with the mouse.",
|
|
1807
|
+
"guide.step_plugin.welcome.input-icon-hint": "<span class='icon icon-1-5x icon-edit'></span> tells you to type or paste something.",
|
|
1808
|
+
"guide.step_plugin.welcome-what.title": "What is {{translatedGuideName}}?",
|
|
1809
|
+
"guide.step_plugin.welcome-what.content": "{{translatedGuideDescription}}<p>Let's get started for real now!</p>",
|
|
1810
|
+
"guide.confirm.cancel.message": "Are you sure you want to stop the guide?",
|
|
1811
|
+
"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.",
|
|
1812
|
+
"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."
|
|
1619
1813
|
}
|