Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing language tag #663

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/SpatialToSkos.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* Generate a SKOS representation from the internal spatial classification data
* (which itself originates from a SKOS file, but is enriched from different
* sources, see https://github.com/hbz/lobid-vocabs/issues/85)
*
*
* @author Fabian Steeg (fsteeg)
*
*/
Expand Down Expand Up @@ -114,7 +114,7 @@ private static void initCsv() {

/**
* Write a SKOS turtle file for nwbib-spatial to the conf/ folder
*
*
* @param args Not used
*/
public static void main(String[] args) {
Expand Down Expand Up @@ -220,7 +220,7 @@ private static Resource addConceptScheme(Model model) {
model.createResource(
"http://creativecommons.org/publicdomain/zero/1.0/"))
.addProperty(DCTerms.description,
"This controlled vocabulary for areas in Northrhine-Westphalia was created for use in the North Rhine-Westphalian bibliography. The initial transformation to SKOS was carried out by Felix Ostrowski for the hbz.")
"This controlled vocabulary for areas in Northrhine-Westphalia was created for use in the North Rhine-Westphalian bibliography. The initial transformation to SKOS was carried out by Felix Ostrowski for the hbz.", "en")
.addProperty(DCTerms.issued, "2014-01-28")
.addProperty(DCTerms.modified,
ZonedDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE))
Expand Down