Skip to content

Commit

Permalink
Fix corrupted finnish alphabets in publication field description
Browse files Browse the repository at this point in the history
  • Loading branch information
sarkikos committed Oct 9, 2023
1 parent 2dd1dc0 commit bc35c84
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions aspnetcore/src/Service.Models/Publication/Publication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Publication
public DateTime? PublicationYear { get; set; }

/// <summary>
/// Tekij�teksti
/// Tekijäteksti
/// </summary>
public string? AuthorsText { get; set; }

Expand All @@ -34,7 +34,7 @@ public class Publication
public List<Organization>? Organizations { get; set; }

/// <summary>
/// Tekij�t
/// Tekijät
/// </summary>
public List<Author>? Authors { get; set; }

Expand All @@ -49,7 +49,7 @@ public class Publication
public ReferenceData? PeerReviewed { get; set; }

/// <summary>
/// Yleis�
/// Yleisö
/// </summary>
public ReferenceData? TargetAudience { get; set; }

Expand Down Expand Up @@ -79,7 +79,7 @@ public class Publication
public string? ConferenceName { get; set; }

/// <summary>
/// Julkaisuun liittyv�t ISSN tunnisteet
/// Julkaisuun liittyvät ISSN tunnisteet
/// </summary>
[Keyword]
public List<string>? Issn { get; set; }
Expand All @@ -105,7 +105,7 @@ public class Publication
public ParentPublication? ParentPublication { get; set; }

/// <summary>
/// Julkaisuun liittyv�t ISBN tunnisteet
/// Julkaisuun liittyvät ISBN tunnisteet
/// </summary>
[Keyword]
public List<string>? Isbn { get; set; }
Expand Down Expand Up @@ -137,7 +137,7 @@ public class Publication
public string? Doi { get; set; }

/// <summary>
/// Pysyv� osoite
/// Pysyvä osoite
/// </summary>
[Keyword]
public string? DoiHandle { get; set; }
Expand Down Expand Up @@ -178,7 +178,7 @@ public class Publication
public List<Keyword>? Keywords { get; set; }

/// <summary>
/// Julkaisun kansainv�lisyys
/// Julkaisun kansainvälisyys
/// </summary>
public bool? InternationalPublication { get; set; }

Expand All @@ -193,7 +193,7 @@ public class Publication
public ReferenceData? Language { get; set; }

/// <summary>
/// Kansainv�linen yhteisjulkaisu
/// Kansainvälinen yhteisjulkaisu
/// </summary>
public bool? InternationalCollaboration { get; set; }

Expand Down Expand Up @@ -243,7 +243,7 @@ public class Publication
public List<ReferenceData>? ArtPublicationTypeCategory { get; set; }

/// <summary>
/// Tiivistelm�
/// Tiivistelmä
/// </summary>
public string? Abstract { get; set; }

Expand Down

0 comments on commit bc35c84

Please sign in to comment.