mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
* wip * hacky fix for overlapping event text in profiler * move IsResumeGameAfterPluginLoad logic to PluginManager * fix some warnings * handle exceptions properly * remove ability to cancel, rename button to "hide" instead * undo Dalamud.Service refactor for now * warnings * add explainer, show which plugins are still loading * add some text if loading takes more than 3 minutes * undo wrong CS merge
30 lines
616 B
C#
30 lines
616 B
C#
using Dalamud.Utility;
|
|
|
|
namespace Dalamud;
|
|
|
|
/// <summary>
|
|
/// Enum describing the language the game loads in.
|
|
/// </summary>
|
|
[Api10ToDo("Delete this, and use Dalamud.Common.ClientLanguage instead for everything.")]
|
|
public enum ClientLanguage
|
|
{
|
|
/// <summary>
|
|
/// Indicating a Japanese game client.
|
|
/// </summary>
|
|
Japanese,
|
|
|
|
/// <summary>
|
|
/// Indicating an English game client.
|
|
/// </summary>
|
|
English,
|
|
|
|
/// <summary>
|
|
/// Indicating a German game client.
|
|
/// </summary>
|
|
German,
|
|
|
|
/// <summary>
|
|
/// Indicating a French game client.
|
|
/// </summary>
|
|
French,
|
|
}
|