Skip to content

Commit

Permalink
refactor(po): fix comment, made init only property to get (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealLHI authored Sep 24, 2024
1 parent ed57f62 commit 120fb15
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ namespace Ashampoo.Translation.Systems.Formats.PO;
public sealed record PoBuilderOptions : IFormatBuilderOptions
{
/// <summary>
/// Disables splitting of the id into msgctxt and msgid if a pipe separator is detected.
/// Enables splitting of the id into msgctxt and msgid if a pipe separator is detected.
/// <remarks>
/// Defaults to True.
/// </remarks>
/// </summary>
public bool SplitContextAndId { get; init; } = true;
public bool SplitContextAndId { get; set; } = true;
};

0 comments on commit 120fb15

Please sign in to comment.