chore: pull Chinese options into localisation files
This commit is contained in:
Generated
+12
@@ -818,5 +818,17 @@ namespace ChatTwo.Resources {
|
|||||||
return ResourceManager.GetString("AutoTranslate_Completion_Key", resourceCulture);
|
return ResourceManager.GetString("AutoTranslate_Completion_Key", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static string Options_EnableChineseRange_Name {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Options_EnableChineseRange_Name", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string Options_EnableChineseRange_Description {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Options_EnableChineseRange_Description", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -509,4 +509,10 @@
|
|||||||
<data name="AutoTranslate_Completion_Key" xml:space="preserve">
|
<data name="AutoTranslate_Completion_Key" xml:space="preserve">
|
||||||
<value>Ctrl + {0}</value>
|
<value>Ctrl + {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Options_EnableChineseRange_Name" xml:space="preserve">
|
||||||
|
<value>Enable Chinese glyphs</value>
|
||||||
|
</data>
|
||||||
|
<data name="Options_EnableChineseRange_Description" xml:space="preserve">
|
||||||
|
<value>Adds support for Chinese characters in the global font. This will most likely require Dalamud's font atlas size to be increased.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -91,8 +91,8 @@ public class Fonts : ISettingsTab {
|
|||||||
ImGuiUtil.HelpText(string.Format(Language.Options_JapaneseFont_Description, Plugin.PluginName));
|
ImGuiUtil.HelpText(string.Format(Language.Options_JapaneseFont_Description, Plugin.PluginName));
|
||||||
ImGui.Spacing();
|
ImGui.Spacing();
|
||||||
|
|
||||||
ImGui.Checkbox("Enable Chinese glyphs", ref this.Mutable.EnableChineseRange);
|
ImGui.Checkbox(Language.Options_EnableChineseRange_Name, ref this.Mutable.EnableChineseRange);
|
||||||
ImGuiUtil.HelpText("Adds support for Chinese characters in the global font.");
|
ImGuiUtil.HelpText(Language.Options_EnableChineseRange_Description);
|
||||||
ImGui.Spacing();
|
ImGui.Spacing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user