Rename Localized to Fluent.
This commit is contained in:
@@ -586,11 +586,11 @@ namespace OpenRA.Traits
|
||||
IReadOnlyDictionary<string, string> values, string defaultValue, bool locked)
|
||||
{
|
||||
Id = id;
|
||||
Name = map.GetLocalisedString(name);
|
||||
Description = description != null ? map.GetLocalisedString(description).Replace(@"\n", "\n") : null;
|
||||
Name = map.GetString(name);
|
||||
Description = description != null ? map.GetString(description).Replace(@"\n", "\n") : null;
|
||||
IsVisible = visible;
|
||||
DisplayOrder = displayorder;
|
||||
Values = values.ToDictionary(v => v.Key, v => map.GetLocalisedString(v.Value));
|
||||
Values = values.ToDictionary(v => v.Key, v => map.GetString(v.Value));
|
||||
DefaultValue = defaultValue;
|
||||
IsLocked = locked;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user