fix(lang): move load_default_setting to manage.json (#123)

Move to manage.json to prevent being deleted by bot, like 226498d649 .
This commit is contained in:
MadDogOwner
2025-07-26 00:52:28 +08:00
committed by GitHub
parent 226498d649
commit 3c67ae10ac
2 changed files with 5 additions and 3 deletions

View File

@@ -35,5 +35,7 @@
"receive": "Receive",
"received_msgs": "Received messages",
"add_storage-tips": "You may need to fill in some information in the newly opened tab.",
"messenger-tips": "You may need to fill in some information on this tab as prompted."
"messenger-tips": "You may need to fill in some information on this tab as prompted.",
"load_default_setting": "Load default settings",
"load_default_setting_success": "Load default settings successfully"
}

View File

@@ -80,12 +80,12 @@ const CommonSettings = (props: CommonSettingsProps) => {
onClick={async () => {
const resp = await defaultSettings()
handleResp(resp, (data) => {
notify.info(t("settings.load_default_setting_success"))
notify.info(t("manage.load_default_setting_success"))
setSettings(data)
})
}}
>
{t("settings.load_default_setting")}
{t("manage.load_default_setting")}
</Button>
</HStack>
</VStack>