diff --git a/src/components/SettingsContent/CloakingTab.astro b/src/components/SettingsContent/CloakingTab.astro
index 2025fa0..1bac17f 100644
--- a/src/components/SettingsContent/CloakingTab.astro
+++ b/src/components/SettingsContent/CloakingTab.astro
@@ -22,8 +22,6 @@ import Input from "../Input.astro"
})}
-
diff --git a/src/components/SettingsContent/CreditsTab.astro b/src/components/SettingsContent/CreditsTab.astro
index e69de29..3d81f9e 100644
--- a/src/components/SettingsContent/CreditsTab.astro
+++ b/src/components/SettingsContent/CreditsTab.astro
@@ -0,0 +1,27 @@
+---
+import { getLangFromUrl, useTranslations } from "../../i18n/utils"
+const lang = getLangFromUrl(Astro.url);
+const t = useTranslations(lang);
+
+---
+
+
+
+
+
{t("ultraviolet")} - Titanium Network
+
{t("settings.credits.japaneseTranslations")} - wearr
+
{t("settings.credits.mochaandmacchiatothemes")} - Catppuccin
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/SettingsContent/ProxyTab.astro b/src/components/SettingsContent/ProxyTab.astro
index a3f2e33..3bc924b 100644
--- a/src/components/SettingsContent/ProxyTab.astro
+++ b/src/components/SettingsContent/ProxyTab.astro
@@ -8,7 +8,7 @@ const t = useTranslations(lang);
const proxyList = [
{ "name": t("settings.proxy.auto"), "value": "auto" },
- { "name": "Ultraviolet", "value": "ultraviolet" },
+ { "name": t("ultraviolet"), "value": "ultraviolet" },
{ "name": "Rammerhead", "value": "rammerhead" },
{ "name": "Dynamic", "value": "dynamic" }
]
diff --git a/src/components/SettingsTablist.astro b/src/components/SettingsTablist.astro
index 55a6569..b0d5c50 100644
--- a/src/components/SettingsTablist.astro
+++ b/src/components/SettingsTablist.astro
@@ -4,6 +4,7 @@ import CustomizationTab from "./SettingsContent/CustomizationTab.astro";
import { getLangFromUrl, useTranslations } from "../i18n/utils"
import CloakingTab from "./SettingsContent/CloakingTab.astro";
+import CreditsTab from "./SettingsContent/CreditsTab.astro";
const lang = getLangFromUrl(Astro.url);
const t = useTranslations(lang);
---
@@ -20,12 +21,12 @@ const t = useTranslations(lang);
-
Change how your tab looks...
+
{t("settings.cloaking.subtext")}