fix: language code conversion (#53)

This commit is contained in:
UUBulb
2024-12-14 17:17:53 +08:00
committed by GitHub
parent 437a8d7b6c
commit c1177880c8
9 changed files with 38 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
import { createCron, updateCron } from "@/api/cron"
import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {
Dialog,
DialogClose,
@@ -19,6 +20,7 @@ import {
FormMessage,
} from "@/components/ui/form"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { ScrollArea } from "@/components/ui/scroll-area"
import {
Select,
@@ -250,6 +252,26 @@ export const CronCard: React.FC<CronCardProps> = ({ data, mutate }) => {
</FormItem>
)}
/>
<FormField
control={form.control}
name="push_successful"
render={({ field }) => (
<FormItem className="flex items-center space-x-2">
<FormControl>
<div className="flex items-center gap-2">
<Checkbox
checked={field.value}
onCheckedChange={field.onChange}
/>
<Label className="text-sm">
{t("PushSuccessful")}
</Label>
</div>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<DialogFooter className="justify-end">
<DialogClose asChild>
<Button type="button" className="my-2" variant="secondary">

View File

@@ -146,7 +146,7 @@ export const ServerCard: React.FC<ServerCardProps> = ({ data, mutate }) => {
onCheckedChange={field.onChange}
/>
<Label className="text-sm">
{t("Enable") + t("DDNS")}
{t("EnableDDNS")}
</Label>
</div>
</FormControl>