diff --git a/src/OrchardCoreContrib.PoExtractor/Program.cs b/src/OrchardCoreContrib.PoExtractor/Program.cs index 97d90d7..45b6e03 100644 --- a/src/OrchardCoreContrib.PoExtractor/Program.cs +++ b/src/OrchardCoreContrib.PoExtractor/Program.cs @@ -105,10 +105,10 @@ public static void Main(string[] args) using var potFile = new PoWriter(potPath); potFile.WriteRecord(localizableStrings.Values); - localizableStrings.Clear(); } Console.WriteLine($"{Path.GetFileName(projectPath)}: Found {localizableStrings.Values.Count()} strings."); + localizableStrings.Clear(); } }