Browse Source

Fixed POEditor last time language was updated

CPKreuz 2 years ago
parent
commit
3f88159fd6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PixiEditor/Views/Dialogs/LocalizationDebugWindow.xaml.cs

+ 1 - 1
src/PixiEditor/Views/Dialogs/LocalizationDebugWindow.xaml.cs

@@ -303,7 +303,7 @@ public partial class LocalizationDebugWindow : Window
 
 
             public string Updated { get; set; }
             public string Updated { get; set; }
 
 
-            public DateTimeOffset UpdateSortable => string.IsNullOrWhiteSpace(Updated) ? DateTimeOffset.MinValue : DateTimeOffset.Parse(Updated);
+            public DateTimeOffset UpdateSortable => string.IsNullOrWhiteSpace(Updated) ? DateTimeOffset.MinValue : DateTimeOffset.Parse(Updated, CultureInfo.InvariantCulture);
 
 
             public bool IsRightToLeft => Code is "ar" or "he" or "ku" or "fa" or "ur";
             public bool IsRightToLeft => Code is "ar" or "he" or "ku" or "fa" or "ur";