diff --git a/ChatTwo/Resources/Language.Designer.cs b/ChatTwo/Resources/Language.Designer.cs
index 5fe66d5..89dd2f9 100755
--- a/ChatTwo/Resources/Language.Designer.cs
+++ b/ChatTwo/Resources/Language.Designer.cs
@@ -402,6 +402,15 @@ namespace ChatTwo.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Advanced.
+ ///
+ internal static string Options_Database_Advanced {
+ get {
+ return ResourceManager.GetString("Options_Database_Advanced", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Do not click these buttons unless you know what you're doing..
///
diff --git a/ChatTwo/Resources/Language.resx b/ChatTwo/Resources/Language.resx
index 7112115..54f8a7a 100755
--- a/ChatTwo/Resources/Language.resx
+++ b/ChatTwo/Resources/Language.resx
@@ -461,4 +461,7 @@
Do not click these buttons unless you know what you're doing.
+
+ Advanced
+
diff --git a/ChatTwo/Ui/SettingsTabs/Database.cs b/ChatTwo/Ui/SettingsTabs/Database.cs
index ffecd18..4df857a 100755
--- a/ChatTwo/Ui/SettingsTabs/Database.cs
+++ b/ChatTwo/Ui/SettingsTabs/Database.cs
@@ -41,7 +41,7 @@ internal sealed class Database : ISettingsTab {
ImGui.Spacing();
- if (this._showAdvanced && ImGui.TreeNodeEx("Advanced")) {
+ if (this._showAdvanced && ImGui.TreeNodeEx(Language.Options_Database_Advanced)) {
ImGui.PushTextWrapPos();
ImGuiUtil.WarningText(Language.Options_Database_Advanced_Warning);