feat: add chat database

This commit is contained in:
Anna
2022-02-13 04:36:08 -05:00
parent 18c311ace5
commit 9b7b84a58d
25 changed files with 476 additions and 95 deletions
+63
View File
@@ -402,6 +402,33 @@ namespace ChatTwo.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Database.
/// </summary>
internal static string Options_Database_Tab {
get {
return ResourceManager.GetString("Options_Database_Tab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If battle messages are saved to the database, the size of the database will grow much faster, and there will be a noticeable freeze when saving settings. It is recommended to leave this disabled..
/// </summary>
internal static string Options_DatabaseBattleMessages_Description {
get {
return ResourceManager.GetString("Options_DatabaseBattleMessages_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save battle messages in database.
/// </summary>
internal static string Options_DatabaseBattleMessages_Name {
get {
return ResourceManager.GetString("Options_DatabaseBattleMessages_Name", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display.
/// </summary>
@@ -411,6 +438,24 @@ namespace ChatTwo.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Include messages from before the game was launched when populating tabs. Tabs are populated when the settings are saved..
/// </summary>
internal static string Options_FilterIncludePreviousSessions_Description {
get {
return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Include previous sessions when populating tabs.
/// </summary>
internal static string Options_FilterIncludePreviousSessions_Name {
get {
return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Name", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The font {0} will use to display non-Japanese text..
/// </summary>
@@ -591,6 +636,24 @@ namespace ChatTwo.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to After logging in, populate the chat with the messages from when you last logged off..
/// </summary>
internal static string Options_LoadPreviousSession_Description {
get {
return ResourceManager.GetString("Options_LoadPreviousSession_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display previous chat session on login.
/// </summary>
internal static string Options_LoadPreviousSession_Name {
get {
return ResourceManager.GetString("Options_LoadPreviousSession_Name", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Miscellaneous.
/// </summary>
+21
View File
@@ -437,4 +437,25 @@
<data name="Options_Language_Description" xml:space="preserve">
<value>The language to display {0} in.</value>
</data>
<data name="Options_DatabaseBattleMessages_Name" xml:space="preserve">
<value>Save battle messages in database</value>
</data>
<data name="Options_DatabaseBattleMessages_Description" xml:space="preserve">
<value>If battle messages are saved to the database, the size of the database will grow much faster, and there will be a noticeable freeze when saving settings. It is recommended to leave this disabled.</value>
</data>
<data name="Options_LoadPreviousSession_Name" xml:space="preserve">
<value>Display previous chat session on login</value>
</data>
<data name="Options_LoadPreviousSession_Description" xml:space="preserve">
<value>After logging in, populate the chat with the messages from when you last logged off.</value>
</data>
<data name="Options_Database_Tab" xml:space="preserve">
<value>Database</value>
</data>
<data name="Options_FilterIncludePreviousSessions_Name" xml:space="preserve">
<value>Include previous sessions when populating tabs</value>
</data>
<data name="Options_FilterIncludePreviousSessions_Description" xml:space="preserve">
<value>Include messages from before the game was launched when populating tabs. Tabs are populated when the settings are saved.</value>
</data>
</root>