Skip to content

Commit

Permalink
Fixes for Weblate translations
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmo0 committed Feb 9, 2025
1 parent a73d424 commit f3b8069
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ArcadeManager.Core/Services/Localizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ public Localizer(IFileSystem fs) {
text = text.Trim('"');
}

// removes Weblate weird quotes escaping (because I'm using Joomla format)
text = text.Replace("\"_QQ_\"", "\"");

words.Add(code, text);
}

Expand Down

0 comments on commit f3b8069

Please sign in to comment.