Skip to content

Commit

Permalink
Merge pull request #94 from Ashampoo/develop
Browse files Browse the repository at this point in the history
release
  • Loading branch information
tjorvenK authored Sep 24, 2024
2 parents 0be517a + 120fb15 commit 069440a
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 069440a

Please sign in to comment.