Always use fallback strings for English

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dan Balasescu 2023-03-31 16:20:16 +09:00 committed by GitHub
parent 72c5c9848f
commit d5b8a45541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ namespace osu.Game.Localisation
// When running a debug build and in viewing english culture, use the fallbacks rather than osu-resources baked strings.
// This is what a developer expects to see when making changes to `xxxStrings.cs` files.
if (DebugUtils.IsDebugBuild && EffectiveCulture.Name == @"en")
if (EffectiveCulture.Name == @"en")
return null;
try