diff --git a/public/locales/en/sos.json b/public/locales/en/sos.json
index 5a58d4ed1..f159e29b0 100644
--- a/public/locales/en/sos.json
+++ b/public/locales/en/sos.json
@@ -13,5 +13,43 @@
"linkCopied": "Link copied!",
"growCrew": "grow your crew"
}
+ },
+ "superCharger": {
+ "title": "Super Charger",
+ "placeholder": "Enter Your Code",
+ "success": "Time bonus added {{time}}.",
+ "error": "Invalid code.",
+ "submit": "Go"
+ },
+ "mainTimer": {
+ "title": "Your Timer",
+ "days": "DAYS",
+ "hours": "HOURS",
+ "minutes": "MINUTES",
+ "seconds": "SECONDS"
+ },
+ "progress": {
+ "message": "You’re {{hours}} hours away from the next rank. Keep mining!"
+ },
+ "leaserboardEntry": {
+ "mining": "Mining now",
+ "idle": "Last mined {{time}} ago"
+ },
+ "leaderboard": {
+ "title": "Leaderboard",
+ "viewFull": "VIEW full LEADERBOARD"
+ },
+ "member": {
+ "new": "New",
+ "nudge": "Nudge",
+ "minHr": "min/hr"
+ },
+ "crewMining": {
+ "title": "Crew mining",
+ "rate": "+{{rate}}min/hr",
+ "mining": "{{current}}/{{total}} Mining"
+ },
+ "crewList": {
+ "placeholder": "Invite your first crew member"
}
-}
\ No newline at end of file
+}
diff --git a/src/components/AdminUI/groups/OtherUIGroup.tsx b/src/components/AdminUI/groups/OtherUIGroup.tsx
index 873dc3037..bc7ef3033 100644
--- a/src/components/AdminUI/groups/OtherUIGroup.tsx
+++ b/src/components/AdminUI/groups/OtherUIGroup.tsx
@@ -7,8 +7,9 @@ import { useAirdropStore } from '@app/store/useAirdropStore.ts';
export function OtherUIGroup() {
const setAdminShow = useUIStore((s) => s.setAdminShow); // prevent messing up the actual setup progress value
const adminShow = useUIStore((s) => s.adminShow);
- const { showWidget, setShowWidget } = useShellOfSecretsStore();
+ const { showWidget, setShowWidget, showMainModal, setShowMainModal } = useShellOfSecretsStore();
const setFlare = useAirdropStore((s) => s.setFlareAnimationType);
+
return (
<>
Other UI
@@ -19,6 +20,9 @@ export function OtherUIGroup() {
+