mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
Merge pull request #1028 from Koenari/cheaploc-changes
Adapt to CheapLoc's new function signature
This commit is contained in:
commit
5da712ac02
1 changed files with 3 additions and 2 deletions
|
|
@ -140,9 +140,10 @@ public class Localization : IServiceType
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Saves localizable JSON data in the current working directory for the provided assembly.
|
/// Saves localizable JSON data in the current working directory for the provided assembly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void ExportLocalizable()
|
/// <param name="ignoreInvalidFunctions">If set to true, this ignores malformed Localize functions instead of failing.</param>
|
||||||
|
public void ExportLocalizable(bool ignoreInvalidFunctions = false)
|
||||||
{
|
{
|
||||||
Loc.ExportLocalizableForAssembly(this.assembly);
|
Loc.ExportLocalizableForAssembly(this.assembly, ignoreInvalidFunctions);
|
||||||
}
|
}
|
||||||
|
|
||||||
private string ReadLocData(string langCode)
|
private string ReadLocData(string langCode)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue