mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
feat: adapt to CheapLoc's new function signature
This commit is contained in:
parent
8565cbc5ea
commit
08cd003ee7
1 changed files with 3 additions and 2 deletions
|
|
@ -140,9 +140,10 @@ namespace Dalamud
|
|||
/// <summary>
|
||||
/// Saves localizable JSON data in the current working directory for the provided assembly.
|
||||
/// </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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue