diff --git a/src/Ashampoo.Translation.Systems.Formats/src/PO/PoBuilderOptions.cs b/src/Ashampoo.Translation.Systems.Formats/src/PO/PoBuilderOptions.cs index f75a2c1..99dfd74 100644 --- a/src/Ashampoo.Translation.Systems.Formats/src/PO/PoBuilderOptions.cs +++ b/src/Ashampoo.Translation.Systems.Formats/src/PO/PoBuilderOptions.cs @@ -8,7 +8,10 @@ namespace Ashampoo.Translation.Systems.Formats.PO; public sealed record PoBuilderOptions : IFormatBuilderOptions { /// - /// 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. + /// + /// Defaults to True. + /// /// - public bool SplitContextAndId { get; init; } = true; + public bool SplitContextAndId { get; set; } = true; }; \ No newline at end of file