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

fix(translation): Update some French translations (DEV-3431) #3190

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions webapi/src/main/resources/knora-ontologies/knora-base.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
rdf:type owl:Ontology ;
rdfs:label "The Knora base ontology"@en ;
:attachedToProject knora-admin:SystemProject ;
:ontologyVersion "knora-base v34" .
:ontologyVersion "knora-base v35" .


#################################################################
Expand Down Expand Up @@ -385,7 +385,7 @@
rdf:type owl:ObjectProperty ;
rdfs:label "hat Standoff Link zu"@de,
"has Standoff Link to"@en,
"a standoff lien vers"@fr,
"liens intégrés"@fr,
"ha standoff link verso"@it ;
rdfs:comment "Repräsentiert einen Link im Standoff Markup von einer Ressource zu einer anderen"@de,
"Represents a link in standoff markup from one resource to another."@en ;
Expand All @@ -400,7 +400,7 @@
rdf:type owl:ObjectProperty ;
rdfs:label "hat Standoff Link zu"@de,
"has Standoff Link to"@en,
"a standoff lien vers"@fr,
"liens intégrés"@fr,
"ha standoff link verso"@it ;
rdfs:comment "Repräsentiert einen Link im Standoff Markup von einer Ressource zu einer anderen"@de,
"Represents a link in standoff markup from one resource to another."@en ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ object KnoraBaseToApiV2ComplexTransformationRules extends OntologyTransformation
objectsWithLang = Map(
LanguageCodes.DE -> "hat eingehenden Verweis",
LanguageCodes.EN -> "has incoming link",
LanguageCodes.FR -> "liens entrants",
),
),
makePredicate(
Expand Down
2 changes: 1 addition & 1 deletion webapi/src/main/scala/org/knora/webapi/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package object webapi {
* The version of `knora-base` and of the other built-in ontologies that this version of Knora requires.
* Must be the same as the object of `knora-base:ontologyVersion` in the `knora-base` ontology being used.
*/
val KnoraBaseVersion: String = "knora-base v34"
val KnoraBaseVersion: String = "knora-base v35"

/**
* `IRI` is a synonym for `String`, used to improve code readability.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ object RepositoryUpdatePlan {
PluginForKnoraBaseVersion(versionNumber = 32, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 33, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 34, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 35, plugin = new MigrateOnlyBuiltInGraphs()),
)

/**
Expand Down