update editor window localization

This commit is contained in:
hevinci
2023-10-17 12:03:11 +08:00
parent 0c70f27560
commit f63fcf1227
14 changed files with 279 additions and 54 deletions

View File

@@ -265,7 +265,7 @@ namespace YooAsset.Editor
}
else
{
throw new Exception($"{nameof(IActiveRule)}类型无效{ruleName}");
throw new Exception($"{nameof(IActiveRule)} is invalid{ruleName}");
}
}
public static IAddressRule GetAddressRuleInstance(string ruleName)
@@ -282,7 +282,7 @@ namespace YooAsset.Editor
}
else
{
throw new Exception($"{nameof(IAddressRule)}类型无效{ruleName}");
throw new Exception($"{nameof(IAddressRule)} is invalid{ruleName}");
}
}
public static IPackRule GetPackRuleInstance(string ruleName)
@@ -299,7 +299,7 @@ namespace YooAsset.Editor
}
else
{
throw new Exception($"{nameof(IPackRule)}类型无效{ruleName}");
throw new Exception($"{nameof(IPackRule)} is invalid{ruleName}");
}
}
public static IFilterRule GetFilterRuleInstance(string ruleName)
@@ -316,7 +316,7 @@ namespace YooAsset.Editor
}
else
{
throw new Exception($"{nameof(IFilterRule)}类型无效{ruleName}");
throw new Exception($"{nameof(IFilterRule)} is invalid{ruleName}");
}
}