mirror of
https://github.com/Dvorinka/beszel.git
synced 2026-06-03 21:02:56 +00:00
Add public monitoring features and CI updates
- Add status pages, incidents, badges, maintenance, bulk ops, and metrics - Add Docker packaging, env example, and frontend routes - Refresh GitHub workflows and project metadata
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
import { t } from "@lingui/core/macro"
|
||||
import { memo, useEffect, useMemo } from "react"
|
||||
import { Trans } from "@lingui/react/macro"
|
||||
import { getPagePath } from "@nanostores/router"
|
||||
import { t } from "@lingui/core/macro"
|
||||
import { useQuery } from "@tanstack/react-query"
|
||||
import { DialogDescription } from "@radix-ui/react-dialog"
|
||||
import {
|
||||
Activity,
|
||||
AlertOctagonIcon,
|
||||
AlertTriangle,
|
||||
BookIcon,
|
||||
Calendar,
|
||||
ContainerIcon,
|
||||
DatabaseBackupIcon,
|
||||
FingerprintIcon,
|
||||
GlobeIcon,
|
||||
HardDriveIcon,
|
||||
LogsIcon,
|
||||
MailIcon,
|
||||
@@ -16,7 +21,6 @@ import {
|
||||
SettingsIcon,
|
||||
UsersIcon,
|
||||
} from "lucide-react"
|
||||
import { memo, useEffect, useMemo } from "react"
|
||||
import {
|
||||
CommandDialog,
|
||||
CommandEmpty,
|
||||
@@ -29,8 +33,11 @@ import {
|
||||
} from "@/components/ui/command"
|
||||
import { isAdmin } from "@/lib/api"
|
||||
import { $systems } from "@/lib/stores"
|
||||
import { getHostDisplayValue, listen } from "@/lib/utils"
|
||||
import { listMonitors } from "@/lib/monitors"
|
||||
import { getDomains } from "@/lib/domains"
|
||||
import { getPagePath } from "@nanostores/router"
|
||||
import { $router, basePath, navigate, prependBasePath } from "./router"
|
||||
import { getHostDisplayValue, listen } from "@/lib/utils"
|
||||
|
||||
export default memo(function CommandPalette({ open, setOpen }: { open: boolean; setOpen: (open: boolean) => void }) {
|
||||
useEffect(() => {
|
||||
@@ -43,6 +50,18 @@ export default memo(function CommandPalette({ open, setOpen }: { open: boolean;
|
||||
return listen(document, "keydown", down)
|
||||
}, [open, setOpen])
|
||||
|
||||
const { data: monitors = [] } = useQuery({
|
||||
queryKey: ["monitors"],
|
||||
queryFn: listMonitors,
|
||||
enabled: open,
|
||||
})
|
||||
|
||||
const { data: domains = [] } = useQuery({
|
||||
queryKey: ["domains"],
|
||||
queryFn: getDomains,
|
||||
enabled: open,
|
||||
})
|
||||
|
||||
return useMemo(() => {
|
||||
const systems = $systems.get()
|
||||
const SettingsShortcut = (
|
||||
@@ -58,7 +77,7 @@ export default memo(function CommandPalette({ open, setOpen }: { open: boolean;
|
||||
return (
|
||||
<CommandDialog open={open} onOpenChange={setOpen}>
|
||||
<DialogDescription className="sr-only">Command palette</DialogDescription>
|
||||
<CommandInput placeholder={t`Search for systems or settings...`} />
|
||||
<CommandInput placeholder={t`Search for systems, monitors, domains or settings...`} />
|
||||
<CommandList>
|
||||
{systems.length > 0 && (
|
||||
<>
|
||||
@@ -80,6 +99,44 @@ export default memo(function CommandPalette({ open, setOpen }: { open: boolean;
|
||||
<CommandSeparator className="mb-1.5" />
|
||||
</>
|
||||
)}
|
||||
{monitors.length > 0 && (
|
||||
<>
|
||||
<CommandGroup heading={t`Monitors`}>
|
||||
{monitors.map((monitor) => (
|
||||
<CommandItem
|
||||
key={monitor.id}
|
||||
onSelect={() => {
|
||||
setOpen(false)
|
||||
$router.open(getPagePath($router, "monitor", { id: monitor.id }))
|
||||
}}
|
||||
>
|
||||
<Activity className="me-2 size-4" />
|
||||
<span className="max-w-60 truncate">{monitor.name}</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</CommandGroup>
|
||||
<CommandSeparator className="mb-1.5" />
|
||||
</>
|
||||
)}
|
||||
{domains.length > 0 && (
|
||||
<>
|
||||
<CommandGroup heading={t`Domains`}>
|
||||
{domains.map((domain) => (
|
||||
<CommandItem
|
||||
key={domain.id}
|
||||
onSelect={() => {
|
||||
setOpen(false)
|
||||
$router.open(getPagePath($router, "domain", { id: domain.id }))
|
||||
}}
|
||||
>
|
||||
<GlobeIcon className="me-2 size-4" />
|
||||
<span className="max-w-60 truncate">{domain.domain_name}</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</CommandGroup>
|
||||
<CommandSeparator className="mb-1.5" />
|
||||
</>
|
||||
)}
|
||||
<CommandGroup heading={t`Pages / Settings`}>
|
||||
<CommandItem
|
||||
keywords={["home"]}
|
||||
@@ -97,6 +154,7 @@ export default memo(function CommandPalette({ open, setOpen }: { open: boolean;
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
keywords={["containers", "docker", "podman"]}
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "containers"))
|
||||
setOpen(false)
|
||||
@@ -122,6 +180,66 @@ export default memo(function CommandPalette({ open, setOpen }: { open: boolean;
|
||||
<Trans>Page</Trans>
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
keywords={["monitoring", "monitors", "domains", "websites"]}
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "monitoring"))
|
||||
setOpen(false)
|
||||
}}
|
||||
>
|
||||
<Activity className="me-2 size-4" />
|
||||
<span>
|
||||
<Trans>Monitoring</Trans>
|
||||
</span>
|
||||
<CommandShortcut>
|
||||
<Trans>Page</Trans>
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
keywords={["status", "public"]}
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "status_pages"))
|
||||
setOpen(false)
|
||||
}}
|
||||
>
|
||||
<GlobeIcon className="me-2 size-4" />
|
||||
<span>
|
||||
<Trans>Status Pages</Trans>
|
||||
</span>
|
||||
<CommandShortcut>
|
||||
<Trans>Page</Trans>
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
keywords={["incidents", "problems"]}
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "incidents"))
|
||||
setOpen(false)
|
||||
}}
|
||||
>
|
||||
<AlertTriangle className="me-2 size-4" />
|
||||
<span>
|
||||
<Trans>Incidents</Trans>
|
||||
</span>
|
||||
<CommandShortcut>
|
||||
<Trans>Page</Trans>
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
keywords={["calendar", "expiry", "ssl"]}
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "calendar"))
|
||||
setOpen(false)
|
||||
}}
|
||||
>
|
||||
<Calendar className="me-2 size-4" />
|
||||
<span>
|
||||
<Trans>Calendar</Trans>
|
||||
</span>
|
||||
<CommandShortcut>
|
||||
<Trans>Page</Trans>
|
||||
</CommandShortcut>
|
||||
</CommandItem>
|
||||
<CommandItem
|
||||
onSelect={() => {
|
||||
navigate(getPagePath($router, "settings", { name: "general" }))
|
||||
|
||||
@@ -46,8 +46,22 @@ const formSchema = z.object({
|
||||
current_value: z.coerce.number().min(0).optional(),
|
||||
renewal_cost: z.coerce.number().min(0).optional(),
|
||||
auto_renew: z.boolean(),
|
||||
monitor_type: z.enum(["expiry", "watchlist", "portfolio"]),
|
||||
// Expiry alerts
|
||||
alert_days_before: z.coerce.number().min(1).max(365),
|
||||
ssl_alert_enabled: z.boolean(),
|
||||
ssl_alert_days: z.coerce.number().min(1).max(90),
|
||||
// Notification settings
|
||||
notify_on_expiry: z.boolean(),
|
||||
notify_on_ssl_expiry: z.boolean(),
|
||||
notify_on_dns_change: z.boolean(),
|
||||
notify_on_registrar_change: z.boolean(),
|
||||
notify_on_value_change: z.boolean(),
|
||||
value_change_threshold: z.coerce.number().min(1).optional(),
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: z.boolean(),
|
||||
quiet_hours_start: z.string(),
|
||||
quiet_hours_end: z.string(),
|
||||
})
|
||||
|
||||
type FormData = z.infer<typeof formSchema>
|
||||
@@ -76,8 +90,22 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
current_value: 0,
|
||||
renewal_cost: 0,
|
||||
auto_renew: false,
|
||||
monitor_type: "expiry",
|
||||
// Expiry alerts
|
||||
alert_days_before: 30,
|
||||
ssl_alert_enabled: true,
|
||||
ssl_alert_days: 14,
|
||||
// Notification settings
|
||||
notify_on_expiry: true,
|
||||
notify_on_ssl_expiry: true,
|
||||
notify_on_dns_change: false,
|
||||
notify_on_registrar_change: false,
|
||||
notify_on_value_change: false,
|
||||
value_change_threshold: 10,
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: false,
|
||||
quiet_hours_start: "22:00",
|
||||
quiet_hours_end: "08:00",
|
||||
},
|
||||
})
|
||||
|
||||
@@ -91,8 +119,22 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
current_value: domain.current_value || 0,
|
||||
renewal_cost: domain.renewal_cost || 0,
|
||||
auto_renew: domain.auto_renew || false,
|
||||
monitor_type: domain.monitor_type || "expiry",
|
||||
// Expiry alerts
|
||||
alert_days_before: domain.alert_days_before || 30,
|
||||
ssl_alert_enabled: domain.ssl_alert_enabled || true,
|
||||
ssl_alert_days: domain.ssl_alert_days || 14,
|
||||
// Notification settings
|
||||
notify_on_expiry: domain.notify_on_expiry !== false,
|
||||
notify_on_ssl_expiry: domain.notify_on_ssl_expiry !== false,
|
||||
notify_on_dns_change: domain.notify_on_dns_change || false,
|
||||
notify_on_registrar_change: domain.notify_on_registrar_change || false,
|
||||
notify_on_value_change: domain.notify_on_value_change || false,
|
||||
value_change_threshold: domain.value_change_threshold || 10,
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: domain.quiet_hours_enabled || false,
|
||||
quiet_hours_start: domain.quiet_hours_start || "22:00",
|
||||
quiet_hours_end: domain.quiet_hours_end || "08:00",
|
||||
})
|
||||
} else if (open && !isEdit) {
|
||||
form.reset({
|
||||
@@ -103,8 +145,22 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
current_value: 0,
|
||||
renewal_cost: 0,
|
||||
auto_renew: false,
|
||||
monitor_type: "expiry",
|
||||
// Expiry alerts
|
||||
alert_days_before: 30,
|
||||
ssl_alert_enabled: true,
|
||||
ssl_alert_days: 14,
|
||||
// Notification settings
|
||||
notify_on_expiry: true,
|
||||
notify_on_ssl_expiry: true,
|
||||
notify_on_dns_change: false,
|
||||
notify_on_registrar_change: false,
|
||||
notify_on_value_change: false,
|
||||
value_change_threshold: 10,
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: false,
|
||||
quiet_hours_start: "22:00",
|
||||
quiet_hours_end: "08:00",
|
||||
})
|
||||
setLookupData(null)
|
||||
}
|
||||
@@ -173,8 +229,22 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
current_value: data.current_value,
|
||||
renewal_cost: data.renewal_cost,
|
||||
auto_renew: data.auto_renew,
|
||||
monitor_type: data.monitor_type,
|
||||
// Expiry alerts
|
||||
alert_days_before: data.alert_days_before,
|
||||
ssl_alert_enabled: data.ssl_alert_enabled,
|
||||
ssl_alert_days: data.ssl_alert_days,
|
||||
// Notification settings
|
||||
notify_on_expiry: data.notify_on_expiry,
|
||||
notify_on_ssl_expiry: data.notify_on_ssl_expiry,
|
||||
notify_on_dns_change: data.notify_on_dns_change,
|
||||
notify_on_registrar_change: data.notify_on_registrar_change,
|
||||
notify_on_value_change: data.notify_on_value_change,
|
||||
value_change_threshold: data.notify_on_value_change ? data.value_change_threshold : undefined,
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: data.quiet_hours_enabled,
|
||||
quiet_hours_start: data.quiet_hours_enabled ? data.quiet_hours_start : undefined,
|
||||
quiet_hours_end: data.quiet_hours_enabled ? data.quiet_hours_end : undefined,
|
||||
}
|
||||
|
||||
if (isEdit && domain) {
|
||||
@@ -187,8 +257,22 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
current_value: payload.current_value,
|
||||
renewal_cost: payload.renewal_cost,
|
||||
auto_renew: payload.auto_renew,
|
||||
monitor_type: payload.monitor_type,
|
||||
// Expiry alerts
|
||||
alert_days_before: payload.alert_days_before,
|
||||
ssl_alert_enabled: payload.ssl_alert_enabled,
|
||||
ssl_alert_days: payload.ssl_alert_days,
|
||||
// Notification settings
|
||||
notify_on_expiry: payload.notify_on_expiry,
|
||||
notify_on_ssl_expiry: payload.notify_on_ssl_expiry,
|
||||
notify_on_dns_change: payload.notify_on_dns_change,
|
||||
notify_on_registrar_change: payload.notify_on_registrar_change,
|
||||
notify_on_value_change: payload.notify_on_value_change,
|
||||
value_change_threshold: payload.value_change_threshold,
|
||||
// Quiet hours
|
||||
quiet_hours_enabled: payload.quiet_hours_enabled,
|
||||
quiet_hours_start: payload.quiet_hours_start,
|
||||
quiet_hours_end: payload.quiet_hours_end,
|
||||
},
|
||||
})
|
||||
} else {
|
||||
@@ -231,7 +315,7 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
<FormItem className="flex-1">
|
||||
<FormLabel>Domain Name</FormLabel>
|
||||
<FormControl>
|
||||
<Input placeholder="example.com" {...field} />
|
||||
<Input placeholder="example.com" autoFocus tabIndex={0} {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
@@ -381,37 +465,259 @@ export function DomainDialog({ open, onOpenChange, domain, isEdit = false }: Dom
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="alerts" className="space-y-4 mt-4">
|
||||
{/* Monitor Type */}
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="alert_days_before"
|
||||
name="monitor_type"
|
||||
render={({ field }) => (
|
||||
<FormItem>
|
||||
<FormLabel>Alert Days Before Expiry</FormLabel>
|
||||
<FormItem className="rounded-lg border p-4">
|
||||
<FormLabel className="font-medium">Monitoring Purpose</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="number" min={1} max={365} {...field} />
|
||||
<div className="grid grid-cols-3 gap-2 mt-2">
|
||||
<Button
|
||||
type="button"
|
||||
variant={field.value === "expiry" ? "default" : "outline"}
|
||||
onClick={() => field.onChange("expiry")}
|
||||
className="flex-col h-auto py-3"
|
||||
>
|
||||
<span className="text-xs">Track Expiry</span>
|
||||
<span className="text-[10px] opacity-70">Monitor expiration</span>
|
||||
</Button>
|
||||
<Button
|
||||
type="button"
|
||||
variant={field.value === "watchlist" ? "default" : "outline"}
|
||||
onClick={() => field.onChange("watchlist")}
|
||||
className="flex-col h-auto py-3"
|
||||
>
|
||||
<span className="text-xs">Watch to Buy</span>
|
||||
<span className="text-[10px] opacity-70">Track availability</span>
|
||||
</Button>
|
||||
<Button
|
||||
type="button"
|
||||
variant={field.value === "portfolio" ? "default" : "outline"}
|
||||
onClick={() => field.onChange("portfolio")}
|
||||
className="flex-col h-auto py-3"
|
||||
>
|
||||
<span className="text-xs">Portfolio</span>
|
||||
<span className="text-[10px] opacity-70">Value tracking</span>
|
||||
</Button>
|
||||
</div>
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="ssl_alert_enabled"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>SSL Expiry Alerts</FormLabel>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
{/* Domain Expiry Alerts */}
|
||||
<div className="space-y-4 rounded-lg border p-4">
|
||||
<h4 className="font-medium text-sm">Domain Expiry Alerts</h4>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="notify_on_expiry"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>Notify before expiry</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Alert when domain is about to expire</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
{form.watch("notify_on_expiry") && (
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="alert_days_before"
|
||||
render={({ field }) => (
|
||||
<FormItem className="pl-4 border-l-2">
|
||||
<FormLabel>Days before expiry</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="number" min={1} max={365} className="w-32" {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* SSL Alerts */}
|
||||
<div className="space-y-4 rounded-lg border p-4">
|
||||
<h4 className="font-medium text-sm">SSL Certificate Alerts</h4>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="notify_on_ssl_expiry"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>Notify on SSL expiry</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Alert when SSL certificate expires</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
{form.watch("notify_on_ssl_expiry") && (
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="ssl_alert_days"
|
||||
render={({ field }) => (
|
||||
<FormItem className="pl-4 border-l-2">
|
||||
<FormLabel>Days before SSL expiry</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="number" min={1} max={90} className="w-32" {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Change Detection Alerts */}
|
||||
<div className="space-y-4 rounded-lg border p-4">
|
||||
<h4 className="font-medium text-sm">Change Detection</h4>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="notify_on_dns_change"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>DNS changes</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Alert when DNS records change</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="notify_on_registrar_change"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>Registrar changes</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Alert when registrar information changes</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="notify_on_value_change"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>Value changes</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Alert when estimated value changes significantly</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
{form.watch("notify_on_value_change") && (
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="value_change_threshold"
|
||||
render={({ field }) => (
|
||||
<FormItem className="pl-4 border-l-2">
|
||||
<FormLabel>Change threshold (%)</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="number" min={1} max={100} className="w-32" {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Quiet Hours */}
|
||||
<div className="space-y-4 rounded-lg border p-4">
|
||||
<h4 className="font-medium text-sm">Quiet Hours</h4>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="quiet_hours_enabled"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<FormLabel>Enable quiet hours</FormLabel>
|
||||
<p className="text-xs text-muted-foreground">Suppress notifications during specific hours</p>
|
||||
</div>
|
||||
<FormControl>
|
||||
<Switch
|
||||
checked={field.value}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
{form.watch("quiet_hours_enabled") && (
|
||||
<div className="grid grid-cols-2 gap-4 pl-4 border-l-2">
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="quiet_hours_start"
|
||||
render={({ field }) => (
|
||||
<FormItem>
|
||||
<FormLabel>Start time</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="time" {...field} />
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="quiet_hours_end"
|
||||
render={({ field }) => (
|
||||
<FormItem>
|
||||
<FormLabel>End time</FormLabel>
|
||||
<FormControl>
|
||||
<Input type="time" {...field} />
|
||||
</FormControl>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
|
||||
|
||||
@@ -1,9 +1,27 @@
|
||||
"use client"
|
||||
|
||||
import { useState } from "react"
|
||||
import { useState, useMemo } from "react"
|
||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
import { Trans, useLingui } from "@lingui/react/macro"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import {
|
||||
AlertDialog,
|
||||
AlertDialogAction,
|
||||
AlertDialogCancel,
|
||||
AlertDialogContent,
|
||||
AlertDialogDescription,
|
||||
AlertDialogFooter,
|
||||
AlertDialogHeader,
|
||||
AlertDialogTitle,
|
||||
} from "@/components/ui/alert-dialog"
|
||||
import {
|
||||
Card,
|
||||
CardContent,
|
||||
CardHeader,
|
||||
CardTitle,
|
||||
CardDescription,
|
||||
} from "@/components/ui/card"
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
@@ -16,9 +34,14 @@ import {
|
||||
DropdownMenu,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuLabel,
|
||||
DropdownMenuRadioGroup,
|
||||
DropdownMenuRadioItem,
|
||||
DropdownMenuSeparator,
|
||||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Input } from "@/components/ui/input"
|
||||
import {
|
||||
getDomains,
|
||||
deleteDomain,
|
||||
@@ -27,37 +50,80 @@ import {
|
||||
getStatusLabel,
|
||||
formatDate,
|
||||
formatDays,
|
||||
cleanDomain,
|
||||
type Domain,
|
||||
} from "@/lib/domains"
|
||||
import { MoreHorizontal, Plus, RefreshCw, Globe, AlertTriangle, CheckCircle2, Clock } from "lucide-react"
|
||||
import {
|
||||
MoreHorizontal,
|
||||
Plus,
|
||||
RefreshCw,
|
||||
Globe,
|
||||
AlertTriangle,
|
||||
CheckCircle2,
|
||||
Clock,
|
||||
Settings2Icon,
|
||||
FilterIcon,
|
||||
LayoutGridIcon,
|
||||
LayoutListIcon,
|
||||
} from "lucide-react"
|
||||
import { DomainDialog } from "./domain-dialog"
|
||||
import { Link } from "@/components/router"
|
||||
import { useBrowserStorage } from "@/lib/utils"
|
||||
|
||||
type ViewMode = "table" | "grid"
|
||||
type StatusFilter = "all" | "active" | "expiring" | "expired" | "unknown" | "watchlist"
|
||||
|
||||
export default function DomainsTable() {
|
||||
const { t } = useLingui()
|
||||
const { toast } = useToast()
|
||||
const queryClient = useQueryClient()
|
||||
const [dialogOpen, setDialogOpen] = useState(false)
|
||||
const [editingDomain, setEditingDomain] = useState<Domain | null>(null)
|
||||
const [deleteConfirmId, setDeleteConfirmId] = useState<string | null>(null)
|
||||
const [filter, setFilter] = useState("")
|
||||
const [statusFilter, setStatusFilter] = useState<StatusFilter>("all")
|
||||
|
||||
const [viewMode, setViewMode] = useBrowserStorage<ViewMode>(
|
||||
"domainsViewMode",
|
||||
window.innerWidth < 1024 ? "grid" : "table"
|
||||
)
|
||||
|
||||
const { data: domains, isLoading } = useQuery({
|
||||
const { data: domains = [], isLoading } = useQuery({
|
||||
queryKey: ["domains"],
|
||||
queryFn: getDomains,
|
||||
})
|
||||
|
||||
// Filter by status first
|
||||
const statusFilteredDomains = useMemo(() => {
|
||||
if (statusFilter === "all") return domains
|
||||
return domains.filter((d) => d.status === statusFilter)
|
||||
}, [domains, statusFilter])
|
||||
|
||||
// Then filter by search text
|
||||
const filteredDomains = useMemo(() => {
|
||||
if (!filter) return statusFilteredDomains
|
||||
const f = filter.toLowerCase()
|
||||
return statusFilteredDomains.filter(
|
||||
(d) =>
|
||||
d.domain_name.toLowerCase().includes(f) ||
|
||||
(d.registrar_name || "").toLowerCase().includes(f)
|
||||
)
|
||||
}, [statusFilteredDomains, filter])
|
||||
|
||||
const statusCounts = useMemo(() => {
|
||||
const total = domains.length
|
||||
const active = domains.filter((d) => d.status === "active").length
|
||||
const expiring = domains.filter((d) => d.status === "expiring").length
|
||||
const expired = domains.filter((d) => d.status === "expired").length
|
||||
const unknown = domains.filter((d) => d.status === "unknown").length
|
||||
return { total, active, expiring, expired, unknown }
|
||||
}, [domains])
|
||||
|
||||
const deleteMutation = useMutation({
|
||||
mutationFn: deleteDomain,
|
||||
onSuccess: () => {
|
||||
toast({ title: "Domain deleted successfully" })
|
||||
queryClient.invalidateQueries({ queryKey: ["domains"] })
|
||||
},
|
||||
onError: (error: Error) => {
|
||||
toast({
|
||||
title: "Failed to delete domain",
|
||||
description: error.message,
|
||||
variant: "destructive",
|
||||
})
|
||||
},
|
||||
})
|
||||
|
||||
const refreshMutation = useMutation({
|
||||
@@ -66,13 +132,6 @@ export default function DomainsTable() {
|
||||
toast({ title: "Domain refresh started" })
|
||||
queryClient.invalidateQueries({ queryKey: ["domains"] })
|
||||
},
|
||||
onError: (error: Error) => {
|
||||
toast({
|
||||
title: "Failed to refresh domain",
|
||||
description: error.message,
|
||||
variant: "destructive",
|
||||
})
|
||||
},
|
||||
})
|
||||
|
||||
const handleEdit = (domain: Domain) => {
|
||||
@@ -86,9 +145,7 @@ export default function DomainsTable() {
|
||||
}
|
||||
|
||||
const handleDelete = (id: string) => {
|
||||
if (confirm("Are you sure you want to delete this domain?")) {
|
||||
deleteMutation.mutate(id)
|
||||
}
|
||||
setDeleteConfirmId(id)
|
||||
}
|
||||
|
||||
const handleRefresh = (id: string) => {
|
||||
@@ -109,136 +166,319 @@ export default function DomainsTable() {
|
||||
}
|
||||
|
||||
if (isLoading) {
|
||||
return <div className="p-4">Loading...</div>
|
||||
return (
|
||||
<Card className="w-full px-3 py-5 sm:py-6 sm:px-6">
|
||||
<CardContent className="p-0">
|
||||
<div className="p-8 text-center text-muted-foreground">Loading...</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<div className="flex items-center justify-between">
|
||||
<h2 className="text-lg font-semibold">Domain Expiry Monitoring</h2>
|
||||
<Button onClick={handleAdd}>
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
Add Domain
|
||||
</Button>
|
||||
</div>
|
||||
<>
|
||||
<Card className="w-full px-3 py-5 sm:py-6 sm:px-6">
|
||||
<CardHeader className="p-0 pb-5">
|
||||
<div className="flex flex-col gap-4">
|
||||
{/* Title row */}
|
||||
<div className="flex flex-col sm:flex-row sm:items-start justify-between gap-4">
|
||||
<div className="flex-1">
|
||||
<CardTitle className="text-xl mb-2 flex items-center gap-2">
|
||||
<Globe className="h-5 w-5 text-primary" />
|
||||
<Trans>Domain Monitoring</Trans>
|
||||
</CardTitle>
|
||||
<CardDescription className="flex flex-wrap items-center gap-x-2 gap-y-1">
|
||||
<Trans>Track domain expiry dates and watch domains for purchase</Trans>
|
||||
<span className="text-xs text-muted-foreground">
|
||||
({statusCounts.active} <CheckCircle2 className="inline h-3 w-3 text-green-500" />
|
||||
{statusCounts.expiring > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{statusCounts.expiring}{" "}
|
||||
<Clock className="inline h-3 w-3 text-yellow-500" />
|
||||
</>
|
||||
)}
|
||||
{statusCounts.expired > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{statusCounts.expired}{" "}
|
||||
<AlertTriangle className="inline h-3 w-3 text-red-500" />
|
||||
</>
|
||||
)}
|
||||
/ {statusCounts.total})
|
||||
</span>
|
||||
</CardDescription>
|
||||
</div>
|
||||
<Button onClick={handleAdd} className="shrink-0">
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
<Trans>Add Domain</Trans>
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<div className="rounded-md border">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>Domain</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Expiry</TableHead>
|
||||
<TableHead>Days Left</TableHead>
|
||||
<TableHead>Registrar</TableHead>
|
||||
<TableHead>SSL Expiry</TableHead>
|
||||
<TableHead className="w-[100px]">Actions</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{domains?.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={7} className="text-center py-8 text-muted-foreground">
|
||||
No domains tracked. Add domains to monitor their expiry dates.
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
domains?.map((domain) => (
|
||||
<TableRow key={domain.id}>
|
||||
<TableCell className="font-medium">
|
||||
<Link href={`/domain/${domain.id}`} className="flex items-center gap-2 cursor-pointer">
|
||||
{domain.favicon_url && (
|
||||
<img
|
||||
src={domain.favicon_url}
|
||||
alt=""
|
||||
className="h-4 w-4"
|
||||
onError={(e) => (e.currentTarget.style.display = "none")}
|
||||
></img>
|
||||
{/* Filter row */}
|
||||
<div className="flex flex-col sm:flex-row gap-2">
|
||||
<div className="relative flex-1">
|
||||
<Input
|
||||
placeholder={t`Filter domains...`}
|
||||
onChange={(e) => setFilter(e.target.value)}
|
||||
value={filter}
|
||||
className="w-full"
|
||||
/>
|
||||
</div>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="outline">
|
||||
<Settings2Icon className="me-1.5 size-4 opacity-80" />
|
||||
<Trans>View</Trans>
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end" className="min-w-48">
|
||||
{/* Layout */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Layout</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={viewMode} onValueChange={(v) => setViewMode(v as ViewMode)}>
|
||||
<DropdownMenuRadioItem value="table" className="gap-2">
|
||||
<LayoutListIcon className="size-4" />
|
||||
<Trans>Table</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="grid" className="gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Grid</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
{/* Status Filter */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<FilterIcon className="size-4" />
|
||||
<Trans>Status</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={statusFilter} onValueChange={(v) => setStatusFilter(v as StatusFilter)}>
|
||||
<DropdownMenuRadioItem value="all">
|
||||
<Trans>All ({statusCounts.total})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="active">
|
||||
<Trans>Active ({statusCounts.active})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="expiring">
|
||||
<Trans>Expiring ({statusCounts.expiring})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="expired">
|
||||
<Trans>Expired ({statusCounts.expired})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="unknown">
|
||||
<Trans>Unknown ({statusCounts.unknown})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
</div>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent className="p-0">
|
||||
{filteredDomains.length === 0 ? (
|
||||
<div className="p-8 text-center text-muted-foreground">
|
||||
{filter || statusFilter !== "all" ? (
|
||||
"No domains match your filters."
|
||||
) : (
|
||||
<div>
|
||||
<p className="mb-4">No domains tracked. Add domains to monitor their expiry dates or track domains you want to buy.</p>
|
||||
<Button onClick={handleAdd} variant="outline">
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
Add your first domain
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
) : viewMode === "table" ? (
|
||||
<div className="rounded-md border">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>Domain</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Expiry</TableHead>
|
||||
<TableHead>Days Left</TableHead>
|
||||
<TableHead>Registrar</TableHead>
|
||||
<TableHead>SSL Expiry</TableHead>
|
||||
<TableHead className="w-[100px]">Actions</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{filteredDomains.map((domain) => (
|
||||
<TableRow key={domain.id}>
|
||||
<TableCell className="font-medium">
|
||||
<Link href={`/domain/${domain.id}`} className="flex items-center gap-2 cursor-pointer">
|
||||
{domain.favicon_url && (
|
||||
<img
|
||||
src={domain.favicon_url}
|
||||
alt=""
|
||||
className="h-4 w-4"
|
||||
onError={(e) => (e.currentTarget.style.display = "none")}
|
||||
/>
|
||||
)}
|
||||
<span className="hover:underline">{domain.domain_name}</span>
|
||||
</Link>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="flex items-center gap-2">
|
||||
{getStatusIcon(domain.status)}
|
||||
<Badge className={getStatusBadgeColor(domain.status)}>
|
||||
{getStatusLabel(domain.status)}
|
||||
</Badge>
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{domain.expiry_date ? formatDate(domain.expiry_date) : "Unknown"}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<span className={
|
||||
domain.days_until_expiry !== undefined && domain.days_until_expiry >= 0 && domain.days_until_expiry <= 30
|
||||
? domain.days_until_expiry <= 7
|
||||
? "text-red-600 font-semibold"
|
||||
: "text-yellow-600"
|
||||
: ""
|
||||
}>
|
||||
{formatDays(domain.days_until_expiry)}
|
||||
</span>
|
||||
</TableCell>
|
||||
<TableCell>{domain.registrar_name || "Unknown"}</TableCell>
|
||||
<TableCell>
|
||||
{domain.ssl_valid_to ? (
|
||||
<span
|
||||
className={
|
||||
domain.ssl_days_until !== undefined && domain.ssl_days_until >= 0 && domain.ssl_days_until <= 14
|
||||
? "text-red-600"
|
||||
: ""
|
||||
}
|
||||
>
|
||||
{formatDays(domain.ssl_days_until)}
|
||||
</span>
|
||||
) : (
|
||||
"N/A"
|
||||
)}
|
||||
<span className="hover:underline">{domain.domain_name}</span>
|
||||
</Link>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="ghost" size="icon">
|
||||
<MoreHorizontal className="h-4 w-4" />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem onClick={() => handleEdit(domain)}>
|
||||
Edit
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => handleRefresh(domain.id)}
|
||||
disabled={refreshMutation.isPending}
|
||||
>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
Refresh
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<a
|
||||
href={`https://${domain.domain_name}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Globe className="mr-2 h-4 w-4" />
|
||||
Visit
|
||||
</a>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => handleDelete(domain.id)}
|
||||
className="text-destructive"
|
||||
>
|
||||
Delete
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
) : (
|
||||
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{filteredDomains.map((domain) => (
|
||||
<div key={domain.id} className="rounded-lg border bg-card p-4 space-y-3 hover:shadow-md transition-shadow">
|
||||
<div className="flex items-start justify-between">
|
||||
<Link href={`/domain/${domain.id}`} className="flex items-center gap-3 cursor-pointer min-w-0">
|
||||
{domain.favicon_url && (
|
||||
<img
|
||||
src={domain.favicon_url}
|
||||
alt=""
|
||||
className="h-5 w-5 shrink-0"
|
||||
onError={(e) => (e.currentTarget.style.display = "none")}
|
||||
/>
|
||||
)}
|
||||
<div className="min-w-0">
|
||||
<div className="font-medium truncate hover:underline">{domain.domain_name}</div>
|
||||
</div>
|
||||
</Link>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="ghost" size="icon" className="h-8 w-8 shrink-0">
|
||||
<MoreHorizontal className="h-4 w-4" />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem onClick={() => handleEdit(domain)}>Edit</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => handleRefresh(domain.id)} disabled={refreshMutation.isPending}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
Refresh
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => handleDelete(domain.id)} className="text-destructive">
|
||||
Delete
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-2">
|
||||
{getStatusIcon(domain.status)}
|
||||
<Badge className={getStatusBadgeColor(domain.status)}>
|
||||
{getStatusLabel(domain.status)}
|
||||
</Badge>
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{domain.expiry_date ? formatDate(domain.expiry_date) : "Unknown"}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<span className={
|
||||
domain.days_until_expiry !== undefined && domain.days_until_expiry <= 30
|
||||
? domain.days_until_expiry <= 7
|
||||
? "text-red-600 font-semibold"
|
||||
: "text-yellow-600"
|
||||
: ""
|
||||
}>
|
||||
{formatDays(domain.days_until_expiry)}
|
||||
</span>
|
||||
</TableCell>
|
||||
<TableCell>{domain.registrar_name || "Unknown"}</TableCell>
|
||||
<TableCell>
|
||||
{domain.ssl_valid_to ? (
|
||||
<span
|
||||
className={
|
||||
domain.ssl_days_until !== undefined && domain.ssl_days_until <= 14
|
||||
|
||||
<div className="grid grid-cols-2 gap-2 text-sm">
|
||||
<div>
|
||||
<div className="text-xs text-muted-foreground">Days Left</div>
|
||||
<span className={
|
||||
domain.days_until_expiry !== undefined && domain.days_until_expiry >= 0 && domain.days_until_expiry <= 30
|
||||
? domain.days_until_expiry <= 7
|
||||
? "text-red-600 font-semibold"
|
||||
: "text-yellow-600"
|
||||
: ""
|
||||
}>
|
||||
{formatDays(domain.days_until_expiry)}
|
||||
</span>
|
||||
</div>
|
||||
<div>
|
||||
<div className="text-xs text-muted-foreground">SSL</div>
|
||||
<span
|
||||
className={
|
||||
domain.ssl_days_until !== undefined && domain.ssl_days_until >= 0 && domain.ssl_days_until <= 14
|
||||
? "text-red-600"
|
||||
: ""
|
||||
}
|
||||
>
|
||||
{formatDays(domain.ssl_days_until)}
|
||||
</span>
|
||||
) : (
|
||||
"N/A"
|
||||
)}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="ghost" size="icon">
|
||||
<MoreHorizontal className="h-4 w-4" />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem onClick={() => handleEdit(domain)}>
|
||||
Edit
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => handleRefresh(domain.id)}
|
||||
disabled={refreshMutation.isPending}
|
||||
}
|
||||
>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
Refresh
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<a
|
||||
href={`https://${domain.domain_name}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Globe className="mr-2 h-4 w-4" />
|
||||
Visit
|
||||
</a>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => handleDelete(domain.id)}
|
||||
className="text-destructive"
|
||||
>
|
||||
Delete
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
{formatDays(domain.ssl_days_until)}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<DomainDialog
|
||||
open={dialogOpen}
|
||||
@@ -246,6 +486,34 @@ export default function DomainsTable() {
|
||||
domain={editingDomain}
|
||||
isEdit={!!editingDomain}
|
||||
/>
|
||||
</div>
|
||||
<AlertDialog open={!!deleteConfirmId} onOpenChange={() => setDeleteConfirmId(null)}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>
|
||||
<Trans>Delete Domain</Trans>
|
||||
</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
<Trans>Are you sure you want to delete this domain? This action cannot be undone.</Trans>
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel>
|
||||
<Trans>Cancel</Trans>
|
||||
</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={() => {
|
||||
if (deleteConfirmId) {
|
||||
deleteMutation.mutate(deleteConfirmId)
|
||||
setDeleteConfirmId(null)
|
||||
}
|
||||
}}
|
||||
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"
|
||||
>
|
||||
<Trans>Delete</Trans>
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -129,11 +129,11 @@ export function UserAuthForm({
|
||||
[isFirstRun]
|
||||
)
|
||||
|
||||
const authProviders = authMethods.oauth2.providers ?? []
|
||||
const oauthEnabled = authMethods.oauth2.enabled && authProviders.length > 0
|
||||
const passwordEnabled = authMethods.password.enabled
|
||||
const otpEnabled = authMethods.otp.enabled
|
||||
const mfaEnabled = authMethods.mfa.enabled
|
||||
const authProviders = authMethods.oauth2?.providers ?? []
|
||||
const oauthEnabled = authMethods.oauth2?.enabled && authProviders.length > 0
|
||||
const passwordEnabled = authMethods.password?.enabled ?? false
|
||||
const otpEnabled = authMethods.otp?.enabled ?? false
|
||||
const mfaEnabled = authMethods.mfa?.enabled ?? false
|
||||
|
||||
function loginWithOauth(provider: AuthProviderInfo, forcePopup = false) {
|
||||
setIsOauthLoading(true)
|
||||
@@ -337,7 +337,7 @@ export function UserAuthForm({
|
||||
)}
|
||||
{oauthEnabled && (
|
||||
<div className="grid gap-2 -mt-1">
|
||||
{authMethods.oauth2.providers.map((provider) => (
|
||||
{authProviders.map((provider) => (
|
||||
<button
|
||||
key={provider.name}
|
||||
type="button"
|
||||
|
||||
@@ -15,7 +15,9 @@ import { Label } from "@/components/ui/label"
|
||||
import {
|
||||
Select,
|
||||
SelectContent,
|
||||
SelectGroup,
|
||||
SelectItem,
|
||||
SelectLabel,
|
||||
SelectTrigger,
|
||||
SelectValue,
|
||||
} from "@/components/ui/select"
|
||||
@@ -32,15 +34,41 @@ import {
|
||||
type UpdateMonitorRequest,
|
||||
} from "@/lib/monitors"
|
||||
|
||||
const MONITOR_TYPES: { value: MonitorType; label: string }[] = [
|
||||
{ value: "http", label: "HTTP" },
|
||||
{ value: "https", label: "HTTPS" },
|
||||
{ value: "tcp", label: "TCP Port" },
|
||||
{ value: "ping", label: "Ping" },
|
||||
{ value: "dns", label: "DNS" },
|
||||
{ value: "keyword", label: "HTTP Keyword" },
|
||||
{ value: "json-query", label: "HTTP JSON" },
|
||||
{ value: "docker", label: "Docker Container" },
|
||||
const MONITOR_TYPES: { value: MonitorType; label: string; group: string }[] = [
|
||||
// General
|
||||
{ value: "http", label: "HTTP", group: "General" },
|
||||
{ value: "https", label: "HTTPS", group: "General" },
|
||||
{ value: "keyword", label: "HTTP Keyword", group: "General" },
|
||||
{ value: "json-query", label: "HTTP JSON", group: "General" },
|
||||
{ value: "grpc-keyword", label: "gRPC Keyword", group: "General" },
|
||||
{ value: "real-browser", label: "Browser Engine (Beta)", group: "General" },
|
||||
{ value: "tcp", label: "TCP Port", group: "General" },
|
||||
{ value: "ping", label: "Ping", group: "General" },
|
||||
{ value: "dns", label: "DNS", group: "General" },
|
||||
{ value: "docker", label: "Docker Container", group: "General" },
|
||||
{ value: "push", label: "Push", group: "General" },
|
||||
{ value: "manual", label: "Manual", group: "General" },
|
||||
// Network / Protocol
|
||||
{ value: "mqtt", label: "MQTT", group: "Network / Protocol" },
|
||||
{ value: "rabbitmq", label: "RabbitMQ", group: "Network / Protocol" },
|
||||
{ value: "kafka-producer", label: "Kafka Producer", group: "Network / Protocol" },
|
||||
{ value: "smtp", label: "SMTP", group: "Network / Protocol" },
|
||||
{ value: "snmp", label: "SNMP", group: "Network / Protocol" },
|
||||
{ value: "websocket-upgrade", label: "WebSocket Upgrade", group: "Network / Protocol" },
|
||||
{ value: "sip-options", label: "SIP Options Ping", group: "Network / Protocol" },
|
||||
{ value: "tailscale-ping", label: "Tailscale Ping", group: "Network / Protocol" },
|
||||
{ value: "globalping", label: "Globalping", group: "Network / Protocol" },
|
||||
// Database
|
||||
{ value: "mysql", label: "MySQL / MariaDB", group: "Database" },
|
||||
{ value: "postgresql", label: "PostgreSQL", group: "Database" },
|
||||
{ value: "mongodb", label: "MongoDB", group: "Database" },
|
||||
{ value: "redis", label: "Redis", group: "Database" },
|
||||
{ value: "sqlserver", label: "Microsoft SQL Server", group: "Database" },
|
||||
{ value: "oracledb", label: "Oracle DB", group: "Database" },
|
||||
{ value: "radius", label: "RADIUS", group: "Database" },
|
||||
// Games
|
||||
{ value: "gamedig", label: "GameDig", group: "Game Server" },
|
||||
{ value: "steam", label: "Steam API", group: "Game Server" },
|
||||
]
|
||||
|
||||
const HTTP_METHODS = ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "PATCH"]
|
||||
@@ -88,6 +116,27 @@ export function AddMonitorDialog({
|
||||
const [certExpiryNotification, setCertExpiryNotification] = useState(false)
|
||||
const [certExpiryDays, setCertExpiryDays] = useState(14)
|
||||
|
||||
// Database / network fields
|
||||
const [dbConnectionString, setDbConnectionString] = useState("")
|
||||
const [dbUsername, setDbUsername] = useState("")
|
||||
const [dbPassword, setDbPassword] = useState("")
|
||||
const [dbName, setDbName] = useState("")
|
||||
const [mqttTopic, setMqttTopic] = useState("")
|
||||
const [grpcKeyword, setGrpcKeyword] = useState("")
|
||||
|
||||
// Notification settings
|
||||
const [notifyOnDown, setNotifyOnDown] = useState(true)
|
||||
const [notifyOnRecover, setNotifyOnRecover] = useState(true)
|
||||
const [notifyOnResponseTime, setNotifyOnResponseTime] = useState(false)
|
||||
const [responseTimeThreshold, setResponseTimeThreshold] = useState(1000)
|
||||
const [notifyOnUptimeDrop, setNotifyOnUptimeDrop] = useState(false)
|
||||
const [uptimeThreshold, setUptimeThreshold] = useState(95)
|
||||
const [notifyRepeatedFailures, setNotifyRepeatedFailures] = useState(true)
|
||||
const [consecutiveFailures, setConsecutiveFailures] = useState(3)
|
||||
const [quietHoursStart, setQuietHoursStart] = useState("22:00")
|
||||
const [quietHoursEnd, setQuietHoursEnd] = useState("08:00")
|
||||
const [quietHoursEnabled, setQuietHoursEnabled] = useState(false)
|
||||
|
||||
// Reset form when dialog opens/closes
|
||||
useEffect(() => {
|
||||
if (open) {
|
||||
@@ -114,6 +163,19 @@ export function AddMonitorDialog({
|
||||
setIgnoreTLSError(monitor.ignore_tls_error || false)
|
||||
setCertExpiryNotification(monitor.cert_expiry_notification || false)
|
||||
setCertExpiryDays(monitor.cert_expiry_days || 14)
|
||||
|
||||
// Load notification settings
|
||||
setNotifyOnDown(monitor.notify_on_down !== false)
|
||||
setNotifyOnRecover(monitor.notify_on_recover !== false)
|
||||
setNotifyOnResponseTime(monitor.notify_on_response_time || false)
|
||||
setResponseTimeThreshold(monitor.response_time_threshold || 1000)
|
||||
setNotifyOnUptimeDrop(monitor.notify_on_uptime_drop || false)
|
||||
setUptimeThreshold(monitor.uptime_threshold || 95)
|
||||
setNotifyRepeatedFailures(monitor.notify_repeated_failures !== false)
|
||||
setConsecutiveFailures(monitor.consecutive_failures || 3)
|
||||
setQuietHoursStart(monitor.quiet_hours_start || "22:00")
|
||||
setQuietHoursEnd(monitor.quiet_hours_end || "08:00")
|
||||
setQuietHoursEnabled(monitor.quiet_hours_enabled || false)
|
||||
} else {
|
||||
// Reset to defaults for new monitor
|
||||
setName("")
|
||||
@@ -137,6 +199,19 @@ export function AddMonitorDialog({
|
||||
setIgnoreTLSError(false)
|
||||
setCertExpiryNotification(false)
|
||||
setCertExpiryDays(14)
|
||||
|
||||
// Reset notification settings
|
||||
setNotifyOnDown(true)
|
||||
setNotifyOnRecover(true)
|
||||
setNotifyOnResponseTime(false)
|
||||
setResponseTimeThreshold(1000)
|
||||
setNotifyOnUptimeDrop(false)
|
||||
setUptimeThreshold(95)
|
||||
setNotifyRepeatedFailures(true)
|
||||
setConsecutiveFailures(3)
|
||||
setQuietHoursStart("22:00")
|
||||
setQuietHoursEnd("08:00")
|
||||
setQuietHoursEnabled(false)
|
||||
}
|
||||
setActiveTab("basic")
|
||||
}
|
||||
@@ -186,8 +261,8 @@ export function AddMonitorDialog({
|
||||
if (isEdit && monitor) {
|
||||
const data: UpdateMonitorRequest = {
|
||||
name: name.trim(),
|
||||
url: url.trim() || undefined,
|
||||
hostname: hostname.trim() || undefined,
|
||||
url: needsDbOptions ? dbConnectionString.trim() || undefined : url.trim() || undefined,
|
||||
hostname: needsHostname ? hostname.trim() || undefined : undefined,
|
||||
port: port ? Number(port) : undefined,
|
||||
method: ["http", "https", "keyword", "json-query"].includes(type)
|
||||
? method
|
||||
@@ -210,14 +285,32 @@ export function AddMonitorDialog({
|
||||
: undefined,
|
||||
cert_expiry_notification: type === "https" ? certExpiryNotification : undefined,
|
||||
cert_expiry_days: type === "https" ? certExpiryDays : undefined,
|
||||
// Notification settings
|
||||
notify_on_down: notifyOnDown,
|
||||
notify_on_recover: notifyOnRecover,
|
||||
notify_on_response_time: notifyOnResponseTime,
|
||||
response_time_threshold: notifyOnResponseTime ? responseTimeThreshold : undefined,
|
||||
notify_on_uptime_drop: notifyOnUptimeDrop,
|
||||
uptime_threshold: notifyOnUptimeDrop ? uptimeThreshold : undefined,
|
||||
notify_repeated_failures: notifyRepeatedFailures,
|
||||
consecutive_failures: consecutiveFailures,
|
||||
quiet_hours_enabled: quietHoursEnabled,
|
||||
quiet_hours_start: quietHoursEnabled ? quietHoursStart : undefined,
|
||||
quiet_hours_end: quietHoursEnabled ? quietHoursEnd : undefined,
|
||||
// Database / network extra fields
|
||||
db_username: needsDbOptions ? dbUsername.trim() || undefined : undefined,
|
||||
db_password: needsDbOptions ? dbPassword.trim() || undefined : undefined,
|
||||
db_name: needsDbOptions ? dbName.trim() || undefined : undefined,
|
||||
mqtt_topic: needsMqttOptions ? mqttTopic.trim() || undefined : undefined,
|
||||
grpc_keyword: needsGrpcOptions ? grpcKeyword.trim() || undefined : undefined,
|
||||
}
|
||||
updateMutation.mutate({ id: monitor.id, data })
|
||||
} else {
|
||||
const data: CreateMonitorRequest = {
|
||||
name: name.trim(),
|
||||
type,
|
||||
url: url.trim() || undefined,
|
||||
hostname: hostname.trim() || undefined,
|
||||
url: needsDbOptions ? dbConnectionString.trim() || undefined : url.trim() || undefined,
|
||||
hostname: needsHostname ? hostname.trim() || undefined : undefined,
|
||||
port: port ? Number(port) : undefined,
|
||||
method: ["http", "https", "keyword", "json-query"].includes(type)
|
||||
? method
|
||||
@@ -240,19 +333,40 @@ export function AddMonitorDialog({
|
||||
: undefined,
|
||||
cert_expiry_notification: type === "https" ? certExpiryNotification : undefined,
|
||||
cert_expiry_days: type === "https" ? certExpiryDays : undefined,
|
||||
// Notification settings
|
||||
notify_on_down: notifyOnDown,
|
||||
notify_on_recover: notifyOnRecover,
|
||||
notify_on_response_time: notifyOnResponseTime,
|
||||
response_time_threshold: notifyOnResponseTime ? responseTimeThreshold : undefined,
|
||||
notify_on_uptime_drop: notifyOnUptimeDrop,
|
||||
uptime_threshold: notifyOnUptimeDrop ? uptimeThreshold : undefined,
|
||||
notify_repeated_failures: notifyRepeatedFailures,
|
||||
consecutive_failures: consecutiveFailures,
|
||||
quiet_hours_enabled: quietHoursEnabled,
|
||||
quiet_hours_start: quietHoursEnabled ? quietHoursStart : undefined,
|
||||
quiet_hours_end: quietHoursEnabled ? quietHoursEnd : undefined,
|
||||
// Database / network extra fields
|
||||
db_username: needsDbOptions ? dbUsername.trim() || undefined : undefined,
|
||||
db_password: needsDbOptions ? dbPassword.trim() || undefined : undefined,
|
||||
db_name: needsDbOptions ? dbName.trim() || undefined : undefined,
|
||||
mqtt_topic: needsMqttOptions ? mqttTopic.trim() || undefined : undefined,
|
||||
grpc_keyword: needsGrpcOptions ? grpcKeyword.trim() || undefined : undefined,
|
||||
}
|
||||
createMutation.mutate(data)
|
||||
}
|
||||
}
|
||||
|
||||
const needsUrl = ["http", "https", "keyword", "json-query"].includes(type)
|
||||
const needsHostname = ["tcp", "ping", "dns"].includes(type)
|
||||
const needsPort = type === "tcp"
|
||||
const needsUrl = ["http", "https", "keyword", "json-query", "grpc-keyword", "real-browser", "websocket-upgrade", "push"].includes(type)
|
||||
const needsHostname = ["tcp", "ping", "dns", "mqtt", "rabbitmq", "kafka-producer", "smtp", "snmp", "sip-options", "tailscale-ping", "globalping", "mysql", "postgresql", "mongodb", "redis", "sqlserver", "oracledb", "radius", "gamedig", "steam"].includes(type)
|
||||
const needsPort = ["tcp", "smtp", "mysql", "postgresql", "redis", "sqlserver", "oracledb", "radius", "mqtt", "rabbitmq", "kafka-producer", "gamedig", "steam", "snmp"].includes(type)
|
||||
const needsHttpOptions = ["http", "https", "keyword", "json-query"].includes(type)
|
||||
const needsKeyword = type === "keyword"
|
||||
const needsJsonQuery = type === "json-query"
|
||||
const needsDnsOptions = type === "dns"
|
||||
const needsTlsOptions = type === "https"
|
||||
const needsDbOptions = ["mysql", "postgresql", "mongodb", "redis", "sqlserver", "oracledb", "radius"].includes(type)
|
||||
const needsMqttOptions = type === "mqtt"
|
||||
const needsGrpcOptions = type === "grpc-keyword"
|
||||
|
||||
const isPending = createMutation.isPending || updateMutation.isPending
|
||||
|
||||
@@ -296,6 +410,8 @@ export function AddMonitorDialog({
|
||||
value={name}
|
||||
onChange={(e) => setName(e.target.value)}
|
||||
required
|
||||
tabIndex={0}
|
||||
autoFocus
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -311,10 +427,15 @@ export function AddMonitorDialog({
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{MONITOR_TYPES.map((mt) => (
|
||||
<SelectItem key={mt.value} value={mt.value}>
|
||||
{mt.label}
|
||||
</SelectItem>
|
||||
{["General", "Network / Protocol", "Database", "Game Server"].map((group) => (
|
||||
<SelectGroup key={group}>
|
||||
<SelectLabel>{group}</SelectLabel>
|
||||
{MONITOR_TYPES.filter((mt) => mt.group === group).map((mt) => (
|
||||
<SelectItem key={mt.value} value={mt.value}>
|
||||
{mt.label}
|
||||
</SelectItem>
|
||||
))}
|
||||
</SelectGroup>
|
||||
))}
|
||||
</SelectContent>
|
||||
</Select>
|
||||
@@ -479,6 +600,90 @@ export function AddMonitorDialog({
|
||||
</div>
|
||||
)}
|
||||
|
||||
{needsDbOptions && (
|
||||
<div className="space-y-4 border rounded-lg p-4">
|
||||
<h4 className="font-medium text-sm">
|
||||
<Trans>Database Connection</Trans>
|
||||
</h4>
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="dbConnectionString">
|
||||
<Trans>Host / Connection String</Trans> *
|
||||
</Label>
|
||||
<Input
|
||||
id="dbConnectionString"
|
||||
placeholder={t`localhost:3306`}
|
||||
value={dbConnectionString}
|
||||
onChange={(e) => setDbConnectionString(e.target.value)}
|
||||
required={needsDbOptions}
|
||||
/>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="dbUsername">
|
||||
<Trans>Username</Trans>
|
||||
</Label>
|
||||
<Input
|
||||
id="dbUsername"
|
||||
placeholder={t`root`}
|
||||
value={dbUsername}
|
||||
onChange={(e) => setDbUsername(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="dbPassword">
|
||||
<Trans>Password</Trans>
|
||||
</Label>
|
||||
<Input
|
||||
id="dbPassword"
|
||||
type="password"
|
||||
placeholder={t`password`}
|
||||
value={dbPassword}
|
||||
onChange={(e) => setDbPassword(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="dbName">
|
||||
<Trans>Database Name</Trans>
|
||||
</Label>
|
||||
<Input
|
||||
id="dbName"
|
||||
placeholder={t`mydb`}
|
||||
value={dbName}
|
||||
onChange={(e) => setDbName(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{needsMqttOptions && (
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="mqttTopic">
|
||||
<Trans>MQTT Topic</Trans>
|
||||
</Label>
|
||||
<Input
|
||||
id="mqttTopic"
|
||||
placeholder={t`sensor/temperature`}
|
||||
value={mqttTopic}
|
||||
onChange={(e) => setMqttTopic(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{needsGrpcOptions && (
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="grpcKeyword">
|
||||
<Trans>gRPC Keyword</Trans>
|
||||
</Label>
|
||||
<Input
|
||||
id="grpcKeyword"
|
||||
placeholder={t`health`}
|
||||
value={grpcKeyword}
|
||||
onChange={(e) => setGrpcKeyword(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="description">
|
||||
<Trans>Description</Trans>
|
||||
@@ -583,54 +788,193 @@ export function AddMonitorDialog({
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="notifications" className="space-y-4 mt-4">
|
||||
{/* Status Change Notifications */}
|
||||
<div className="space-y-4 border rounded-lg p-4">
|
||||
<h4 className="font-medium text-sm">Status Change Alerts</h4>
|
||||
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="notifyOnDown">Notify when monitor goes down</Label>
|
||||
<p className="text-xs text-muted-foreground">Send alert when service becomes unavailable</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="notifyOnDown"
|
||||
checked={notifyOnDown}
|
||||
onCheckedChange={setNotifyOnDown}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="notifyOnRecover">Notify when monitor recovers</Label>
|
||||
<p className="text-xs text-muted-foreground">Send alert when service comes back up</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="notifyOnRecover"
|
||||
checked={notifyOnRecover}
|
||||
onCheckedChange={setNotifyOnRecover}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="notifyRepeatedFailures">Repeated failures only</Label>
|
||||
<p className="text-xs text-muted-foreground">Only alert after multiple consecutive failures</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="notifyRepeatedFailures"
|
||||
checked={notifyRepeatedFailures}
|
||||
onCheckedChange={setNotifyRepeatedFailures}
|
||||
/>
|
||||
</div>
|
||||
{notifyRepeatedFailures && (
|
||||
<div className="grid gap-2 pl-4 border-l-2">
|
||||
<Label htmlFor="consecutiveFailures">Consecutive failures before alert</Label>
|
||||
<Input
|
||||
id="consecutiveFailures"
|
||||
type="number"
|
||||
min={1}
|
||||
max={10}
|
||||
value={consecutiveFailures}
|
||||
onChange={(e) => setConsecutiveFailures(Number(e.target.value))}
|
||||
className="w-32"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Performance Alerts */}
|
||||
<div className="space-y-4 border rounded-lg p-4">
|
||||
<h4 className="font-medium text-sm">Performance Alerts</h4>
|
||||
|
||||
<div className="space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="notifyOnResponseTime">Response time threshold</Label>
|
||||
<p className="text-xs text-muted-foreground">Alert when response time exceeds limit</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="notifyOnResponseTime"
|
||||
checked={notifyOnResponseTime}
|
||||
onCheckedChange={setNotifyOnResponseTime}
|
||||
/>
|
||||
</div>
|
||||
{notifyOnResponseTime && (
|
||||
<div className="grid gap-2 pl-4 border-l-2">
|
||||
<Label htmlFor="responseTimeThreshold">Max response time (ms)</Label>
|
||||
<Input
|
||||
id="responseTimeThreshold"
|
||||
type="number"
|
||||
min={100}
|
||||
max={60000}
|
||||
step={100}
|
||||
value={responseTimeThreshold}
|
||||
onChange={(e) => setResponseTimeThreshold(Number(e.target.value))}
|
||||
className="w-32"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="notifyOnUptimeDrop">Uptime threshold</Label>
|
||||
<p className="text-xs text-muted-foreground">Alert when uptime percentage drops below</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="notifyOnUptimeDrop"
|
||||
checked={notifyOnUptimeDrop}
|
||||
onCheckedChange={setNotifyOnUptimeDrop}
|
||||
/>
|
||||
</div>
|
||||
{notifyOnUptimeDrop && (
|
||||
<div className="grid gap-2 pl-4 border-l-2">
|
||||
<Label htmlFor="uptimeThreshold">Minimum uptime (%)</Label>
|
||||
<Input
|
||||
id="uptimeThreshold"
|
||||
type="number"
|
||||
min={1}
|
||||
max={100}
|
||||
value={uptimeThreshold}
|
||||
onChange={(e) => setUptimeThreshold(Number(e.target.value))}
|
||||
className="w-32"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Certificate Expiry */}
|
||||
{needsTlsOptions && (
|
||||
<div className="space-y-4 border rounded-lg p-4">
|
||||
<div className="flex items-center gap-2">
|
||||
<h4 className="font-medium text-sm">Certificate Alerts</h4>
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="certExpiryNotification">Notify when certificate expires</Label>
|
||||
<p className="text-xs text-muted-foreground">Alert before SSL certificate expiry</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="certExpiryNotification"
|
||||
checked={certExpiryNotification}
|
||||
onCheckedChange={setCertExpiryNotification}
|
||||
/>
|
||||
<Label htmlFor="certExpiryNotification">
|
||||
<Trans>Notify when certificate expires</Trans>
|
||||
</Label>
|
||||
</div>
|
||||
{certExpiryNotification && (
|
||||
<div className="grid gap-2 mt-2">
|
||||
<Label htmlFor="certExpiryDays">
|
||||
<Trans>Days before expiry to notify</Trans>
|
||||
</Label>
|
||||
<div className="grid gap-2 pl-4 border-l-2">
|
||||
<Label htmlFor="certExpiryDays">Days before expiry to notify</Label>
|
||||
<Input
|
||||
id="certExpiryDays"
|
||||
type="number"
|
||||
min={1}
|
||||
max={90}
|
||||
value={certExpiryDays}
|
||||
onChange={(e) =>
|
||||
setCertExpiryDays(Number(e.target.value))
|
||||
}
|
||||
onChange={(e) => setCertExpiryDays(Number(e.target.value))}
|
||||
className="w-32"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!needsTlsOptions && (
|
||||
<p className="text-muted-foreground text-sm">
|
||||
<Trans>
|
||||
Certificate expiry notifications are only available
|
||||
for HTTPS monitors.
|
||||
</Trans>
|
||||
</p>
|
||||
)}
|
||||
|
||||
<div className="border rounded-lg p-4">
|
||||
<p className="text-sm text-muted-foreground">
|
||||
<Trans>
|
||||
General notification settings will be configured in
|
||||
the Notifications tab.
|
||||
</Trans>
|
||||
</p>
|
||||
{/* Quiet Hours */}
|
||||
<div className="space-y-4 border rounded-lg p-4">
|
||||
<h4 className="font-medium text-sm">Quiet Hours</h4>
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="space-y-0.5">
|
||||
<Label htmlFor="quietHoursEnabled">Enable quiet hours</Label>
|
||||
<p className="text-xs text-muted-foreground">Suppress notifications during specific hours</p>
|
||||
</div>
|
||||
<Switch
|
||||
id="quietHoursEnabled"
|
||||
checked={quietHoursEnabled}
|
||||
onCheckedChange={setQuietHoursEnabled}
|
||||
/>
|
||||
</div>
|
||||
{quietHoursEnabled && (
|
||||
<div className="grid grid-cols-2 gap-4 pl-4 border-l-2">
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="quietHoursStart">Start time</Label>
|
||||
<Input
|
||||
id="quietHoursStart"
|
||||
type="time"
|
||||
value={quietHoursStart}
|
||||
onChange={(e) => setQuietHoursStart(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="quietHoursEnd">End time</Label>
|
||||
<Input
|
||||
id="quietHoursEnd"
|
||||
type="time"
|
||||
value={quietHoursEnd}
|
||||
onChange={(e) => setQuietHoursEnd(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
|
||||
@@ -3,14 +3,20 @@ import { useStore } from "@nanostores/react"
|
||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"
|
||||
import {
|
||||
ArrowDownIcon,
|
||||
ArrowUpDownIcon,
|
||||
ArrowUpIcon,
|
||||
CheckCircleIcon,
|
||||
Edit3Icon,
|
||||
EyeIcon,
|
||||
FilterIcon,
|
||||
GlobeIcon,
|
||||
LayoutGridIcon,
|
||||
LayoutListIcon,
|
||||
PauseIcon,
|
||||
PlayIcon,
|
||||
PlusIcon,
|
||||
RefreshCwIcon,
|
||||
Settings2Icon,
|
||||
Trash2Icon,
|
||||
XCircleIcon,
|
||||
} from "lucide-react"
|
||||
@@ -23,17 +29,15 @@ import {
|
||||
CardHeader,
|
||||
CardTitle,
|
||||
} from "@/components/ui/card"
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogDescription,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
} from "@/components/ui/dialog"
|
||||
import {
|
||||
DropdownMenu,
|
||||
DropdownMenuCheckboxItem,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuLabel,
|
||||
DropdownMenuRadioGroup,
|
||||
DropdownMenuRadioItem,
|
||||
DropdownMenuSeparator,
|
||||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu"
|
||||
import { Input } from "@/components/ui/input"
|
||||
@@ -64,7 +68,7 @@ import {
|
||||
formatUptime,
|
||||
formatPing,
|
||||
} from "@/lib/monitors"
|
||||
import { cn } from "@/lib/utils"
|
||||
import { cn, useBrowserStorage } from "@/lib/utils"
|
||||
import { AddMonitorDialog } from "./add-monitor-dialog"
|
||||
import { Link } from "@/components/router"
|
||||
|
||||
@@ -97,6 +101,158 @@ function StatusIndicator({ status }: { status: MonitorStatus }) {
|
||||
)
|
||||
}
|
||||
|
||||
// Monitor Card component for grid view
|
||||
function MonitorCard({
|
||||
monitor,
|
||||
onEdit,
|
||||
}: {
|
||||
monitor: Monitor
|
||||
onEdit: (m: Monitor) => void
|
||||
}) {
|
||||
const { toast } = useToast()
|
||||
const queryClient = useQueryClient()
|
||||
|
||||
const checkMutation = useMutation({
|
||||
mutationFn: manualCheck,
|
||||
onSuccess: (result) => {
|
||||
toast({
|
||||
title: `Check complete`,
|
||||
description: `${monitor.name} is ${result.status} (${formatPing(result.ping)})`,
|
||||
})
|
||||
queryClient.invalidateQueries({ queryKey: ["monitors"] })
|
||||
},
|
||||
})
|
||||
|
||||
const pauseMutation = useMutation({
|
||||
mutationFn: monitor.status === "paused" ? resumeMonitor : pauseMonitor,
|
||||
onSuccess: () => {
|
||||
toast({
|
||||
title: monitor.status === "paused" ? "Monitor resumed" : "Monitor paused",
|
||||
})
|
||||
queryClient.invalidateQueries({ queryKey: ["monitors"] })
|
||||
},
|
||||
})
|
||||
|
||||
const deleteMutation = useMutation({
|
||||
mutationFn: deleteMonitor,
|
||||
onSuccess: () => {
|
||||
toast({ title: "Monitor deleted" })
|
||||
queryClient.invalidateQueries({ queryKey: ["monitors"] })
|
||||
},
|
||||
})
|
||||
|
||||
return (
|
||||
<div className="rounded-lg border bg-card p-4 space-y-4 hover:shadow-md transition-shadow">
|
||||
<div className="flex items-start justify-between">
|
||||
<Link href={`/monitor/${monitor.id}`} className="flex items-center gap-3 cursor-pointer min-w-0">
|
||||
<div className="shrink-0">
|
||||
<StatusIndicator status={monitor.status} />
|
||||
</div>
|
||||
<div className="min-w-0">
|
||||
<div className="font-medium truncate hover:underline">{monitor.name}</div>
|
||||
<div className="text-xs text-muted-foreground truncate">
|
||||
{monitor.url || monitor.hostname}
|
||||
{monitor.port ? `:${monitor.port}` : ""}
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="ghost" size="icon" className="h-8 w-8 shrink-0">
|
||||
<Edit3Icon className="h-4 w-4" />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem onClick={() => onEdit(monitor)}>
|
||||
<Edit3Icon className="mr-2 h-4 w-4" />
|
||||
Edit
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => deleteMutation.mutate(monitor.id)}
|
||||
className="text-destructive"
|
||||
>
|
||||
<Trash2Icon className="mr-2 h-4 w-4" />
|
||||
Delete
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-2 gap-3 text-sm">
|
||||
<div className="space-y-1">
|
||||
<div className="text-xs text-muted-foreground">Type</div>
|
||||
<div className="inline-flex items-center rounded-md bg-muted px-2 py-1 text-xs font-medium">
|
||||
{getMonitorTypeLabel(monitor.type)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<div className="text-xs text-muted-foreground">Response</div>
|
||||
<div>
|
||||
{monitor.last_check ? (
|
||||
formatPing(monitor.uptime_stats?.last_ping || 0)
|
||||
) : (
|
||||
<span className="text-muted-foreground">-</span>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-span-2 space-y-1">
|
||||
<div className="text-xs text-muted-foreground">Uptime (24h)</div>
|
||||
<UptimeBar stats={monitor.uptime_stats} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-2 pt-2 border-t">
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
className="flex-1"
|
||||
onClick={() => checkMutation.mutate(monitor.id)}
|
||||
disabled={checkMutation.isPending}
|
||||
>
|
||||
<RefreshCwIcon
|
||||
className={cn(
|
||||
"h-4 w-4 mr-1",
|
||||
checkMutation.isPending && "animate-spin"
|
||||
)}
|
||||
/>
|
||||
Check
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p>Check now</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
className="flex-1"
|
||||
onClick={() => pauseMutation.mutate(monitor.id)}
|
||||
disabled={pauseMutation.isPending}
|
||||
>
|
||||
{monitor.status === "paused" ? (
|
||||
<><PlayIcon className="h-4 w-4 mr-1" /> Resume</>
|
||||
) : (
|
||||
<><PauseIcon className="h-4 w-4 mr-1" /> Pause</>
|
||||
)}
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p>{monitor.status === "paused" ? "Resume" : "Pause"}</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
// Uptime bar component
|
||||
function UptimeBar({ stats }: { stats?: Record<string, number> }) {
|
||||
const uptime24h = stats?.uptime_24h ?? 100
|
||||
@@ -275,79 +431,161 @@ function MonitorRow({
|
||||
)
|
||||
}
|
||||
|
||||
type ViewMode = "table" | "grid"
|
||||
type StatusFilter = "all" | MonitorStatus
|
||||
|
||||
// Main component
|
||||
export default memo(function MonitorsTable() {
|
||||
const { t } = useLingui()
|
||||
const { t, i18n } = useLingui()
|
||||
const [filter, setFilter] = useState("")
|
||||
const [statusFilter, setStatusFilter] = useState<StatusFilter>("all")
|
||||
const [isAddDialogOpen, setIsAddDialogOpen] = useState(false)
|
||||
const [editingMonitor, setEditingMonitor] = useState<Monitor | null>(null)
|
||||
|
||||
const [viewMode, setViewMode] = useBrowserStorage<ViewMode>(
|
||||
"monitorsViewMode",
|
||||
window.innerWidth < 1024 ? "grid" : "table"
|
||||
)
|
||||
|
||||
const { data: monitors = [], isLoading } = useQuery({
|
||||
queryKey: ["monitors"],
|
||||
queryFn: listMonitors,
|
||||
refetchInterval: 30000, // Refresh every 30 seconds
|
||||
refetchInterval: 30000,
|
||||
})
|
||||
|
||||
// Filter by status first
|
||||
const statusFilteredMonitors = useMemo(() => {
|
||||
if (statusFilter === "all") return monitors
|
||||
return monitors.filter((m) => m.status === statusFilter)
|
||||
}, [monitors, statusFilter])
|
||||
|
||||
// Then filter by search text
|
||||
const filteredMonitors = useMemo(() => {
|
||||
if (!filter) return monitors
|
||||
if (!filter) return statusFilteredMonitors
|
||||
const f = filter.toLowerCase()
|
||||
return monitors.filter(
|
||||
return statusFilteredMonitors.filter(
|
||||
(m) =>
|
||||
m.name.toLowerCase().includes(f) ||
|
||||
(m.url || "").toLowerCase().includes(f) ||
|
||||
(m.hostname || "").toLowerCase().includes(f)
|
||||
)
|
||||
}, [monitors, filter])
|
||||
}, [statusFilteredMonitors, filter])
|
||||
|
||||
const stats = useMemo(() => {
|
||||
const total = monitors.length
|
||||
const up = monitors.filter((m) => m.status === "up").length
|
||||
const down = monitors.filter((m) => m.status === "down").length
|
||||
const paused = monitors.filter((m) => m.status === "paused").length
|
||||
return { total, up, down, paused }
|
||||
const pending = monitors.filter((m) => m.status === "pending").length
|
||||
const maintenance = monitors.filter((m) => m.status === "maintenance").length
|
||||
return { total, up, down, paused, pending, maintenance }
|
||||
}, [monitors])
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader className="p-4 sm:p-6">
|
||||
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
||||
<div>
|
||||
<CardTitle className="text-xl">
|
||||
<Trans>Website & Service Monitoring</Trans>
|
||||
</CardTitle>
|
||||
<CardDescription>
|
||||
<Trans>Monitor websites, APIs, and services</Trans>
|
||||
<span className="ml-2 text-xs">
|
||||
({stats.up} <ArrowUpIcon className="inline h-3 w-3 text-green-500" />
|
||||
{stats.down > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{stats.down}{" "}
|
||||
<ArrowDownIcon className="inline h-3 w-3 text-red-500" />
|
||||
</>
|
||||
)}
|
||||
{stats.paused > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{stats.paused} <PauseIcon className="inline h-3 w-3 text-gray-400" />
|
||||
</>
|
||||
)}
|
||||
/ {stats.total})
|
||||
</span>
|
||||
</CardDescription>
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
<Input
|
||||
placeholder={t`Search monitors...`}
|
||||
value={filter}
|
||||
onChange={(e) => setFilter(e.target.value)}
|
||||
className="w-full sm:w-64"
|
||||
/>
|
||||
<Button onClick={() => setIsAddDialogOpen(true)}>
|
||||
<Card className="w-full px-3 py-5 sm:py-6 sm:px-6">
|
||||
<CardHeader className="p-0 pb-5">
|
||||
<div className="flex flex-col gap-4">
|
||||
{/* Title row */}
|
||||
<div className="flex flex-col sm:flex-row sm:items-start justify-between gap-4">
|
||||
<div className="flex-1">
|
||||
<CardTitle className="text-xl mb-2 flex items-center gap-2">
|
||||
<GlobeIcon className="h-5 w-5 text-primary" />
|
||||
<Trans>Website & Service Monitoring</Trans>
|
||||
</CardTitle>
|
||||
<CardDescription className="flex flex-wrap items-center gap-x-2 gap-y-1">
|
||||
<Trans>Monitor websites, APIs, and services</Trans>
|
||||
<span className="text-xs text-muted-foreground">
|
||||
({stats.up} <ArrowUpIcon className="inline h-3 w-3 text-green-500" />
|
||||
{stats.down > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{stats.down}{" "}
|
||||
<ArrowDownIcon className="inline h-3 w-3 text-red-500" />
|
||||
</>
|
||||
)}
|
||||
{stats.paused > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{stats.paused} <PauseIcon className="inline h-3 w-3 text-gray-400" />
|
||||
</>
|
||||
)}
|
||||
/ {stats.total})
|
||||
</span>
|
||||
</CardDescription>
|
||||
</div>
|
||||
<Button onClick={() => setIsAddDialogOpen(true)} className="shrink-0">
|
||||
<PlusIcon className="mr-2 h-4 w-4" />
|
||||
<Trans>Add</Trans>
|
||||
<Trans>Add Monitor</Trans>
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
{/* Filter row */}
|
||||
<div className="flex flex-col sm:flex-row gap-2">
|
||||
<div className="relative flex-1">
|
||||
<Input
|
||||
placeholder={t`Filter monitors...`}
|
||||
onChange={(e) => setFilter(e.target.value)}
|
||||
value={filter}
|
||||
className="w-full"
|
||||
/>
|
||||
</div>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="outline">
|
||||
<Settings2Icon className="me-1.5 size-4 opacity-80" />
|
||||
<Trans>View</Trans>
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end" className="min-w-48">
|
||||
{/* Layout */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Layout</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={viewMode} onValueChange={(v) => setViewMode(v as ViewMode)}>
|
||||
<DropdownMenuRadioItem value="table" className="gap-2">
|
||||
<LayoutListIcon className="size-4" />
|
||||
<Trans>Table</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="grid" className="gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Grid</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
{/* Status Filter */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<FilterIcon className="size-4" />
|
||||
<Trans>Status</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={statusFilter} onValueChange={(v) => setStatusFilter(v as StatusFilter)}>
|
||||
<DropdownMenuRadioItem value="all">
|
||||
<Trans>All ({stats.total})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="up">
|
||||
<Trans>Up ({stats.up})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="down">
|
||||
<Trans>Down ({stats.down})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="paused">
|
||||
<Trans>Paused ({stats.paused})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
{stats.pending > 0 && (
|
||||
<DropdownMenuRadioItem value="pending">
|
||||
<Trans>Pending ({stats.pending})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
)}
|
||||
{stats.maintenance > 0 && (
|
||||
<DropdownMenuRadioItem value="maintenance">
|
||||
<Trans>Maintenance ({stats.maintenance})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
)}
|
||||
</DropdownMenuRadioGroup>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent className="p-0">
|
||||
@@ -357,8 +595,8 @@ export default memo(function MonitorsTable() {
|
||||
</div>
|
||||
) : filteredMonitors.length === 0 ? (
|
||||
<div className="p-8 text-center text-muted-foreground">
|
||||
{filter ? (
|
||||
<Trans>No monitors match your search.</Trans>
|
||||
{filter || statusFilter !== "all" ? (
|
||||
<Trans>No monitors match your filters.</Trans>
|
||||
) : (
|
||||
<div>
|
||||
<p className="mb-4">
|
||||
@@ -371,7 +609,7 @@ export default memo(function MonitorsTable() {
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
) : (
|
||||
) : viewMode === "table" ? (
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
@@ -405,6 +643,16 @@ export default memo(function MonitorsTable() {
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
) : (
|
||||
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{filteredMonitors.map((monitor) => (
|
||||
<MonitorCard
|
||||
key={monitor.id}
|
||||
monitor={monitor}
|
||||
onEdit={setEditingMonitor}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { t } from "@lingui/core/macro"
|
||||
import { Trans } from "@lingui/react/macro"
|
||||
import { getPagePath } from "@nanostores/router"
|
||||
import {
|
||||
@@ -8,7 +7,7 @@ import {
|
||||
LogOutIcon,
|
||||
LogsIcon,
|
||||
MenuIcon,
|
||||
PlusIcon,
|
||||
MonitorIcon,
|
||||
SearchIcon,
|
||||
ServerIcon,
|
||||
SettingsIcon,
|
||||
@@ -31,7 +30,6 @@ import {
|
||||
} from "@/components/ui/dropdown-menu"
|
||||
import { isAdmin, isReadOnlyUser, logOut, pb } from "@/lib/api"
|
||||
import { cn, runOnce } from "@/lib/utils"
|
||||
import { AddSystemDialog } from "./add-system"
|
||||
import { LangToggle } from "./lang-toggle"
|
||||
import { Logo } from "./logo"
|
||||
import { ModeToggle } from "./mode-toggle"
|
||||
@@ -43,19 +41,15 @@ const CommandPalette = lazy(() => import("./command-palette"))
|
||||
const isMac = navigator.platform.toUpperCase().indexOf("MAC") >= 0
|
||||
|
||||
export default function Navbar() {
|
||||
const [addSystemDialogOpen, setAddSystemDialogOpen] = useState(false)
|
||||
const [commandPaletteOpen, setCommandPaletteOpen] = useState(false)
|
||||
|
||||
const AdminLinks = AdminDropdownGroup()
|
||||
|
||||
const systemTranslation = t`System`
|
||||
|
||||
return (
|
||||
<div className="flex items-center h-14 md:h-16 bg-card px-4 pe-3 sm:px-6 border border-border/60 bt-0 rounded-md my-4">
|
||||
<Suspense>
|
||||
<CommandPalette open={commandPaletteOpen} setOpen={setCommandPaletteOpen} />
|
||||
</Suspense>
|
||||
<AddSystemDialog open={addSystemDialogOpen} setOpen={setAddSystemDialogOpen} />
|
||||
|
||||
<Link
|
||||
href={basePath}
|
||||
@@ -109,6 +103,10 @@ export default function Navbar() {
|
||||
<HardDriveIcon className="h-4 w-4 me-2.5" strokeWidth={1.5} />
|
||||
<span>S.M.A.R.T.</span>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => navigate(getPagePath($router, "monitoring"))} className="flex items-center">
|
||||
<MonitorIcon className="h-4 w-4 me-2.5" strokeWidth={1.5} />
|
||||
<Trans>Monitoring</Trans>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
onClick={() => navigate(getPagePath($router, "settings", { name: "general" }))}
|
||||
className="flex items-center"
|
||||
@@ -125,17 +123,6 @@ export default function Navbar() {
|
||||
<DropdownMenuSubContent>{AdminLinks}</DropdownMenuSubContent>
|
||||
</DropdownMenuSub>
|
||||
)}
|
||||
{!isReadOnlyUser() && (
|
||||
<DropdownMenuItem
|
||||
className="flex items-center"
|
||||
onSelect={() => {
|
||||
setAddSystemDialogOpen(true)
|
||||
}}
|
||||
>
|
||||
<PlusIcon className="h-4 w-4 me-2.5" />
|
||||
<Trans>Add {{ foo: systemTranslation }}</Trans>
|
||||
</DropdownMenuItem>
|
||||
)}
|
||||
</DropdownMenuGroup>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuGroup>
|
||||
@@ -178,8 +165,25 @@ export default function Navbar() {
|
||||
<HardDriveIcon className="h-[1.2rem] w-[1.2rem]" strokeWidth={1.5} />
|
||||
</Link>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<span>S.M.A.R.T.</span>
|
||||
</TooltipContent>
|
||||
<TooltipContent>S.M.A.R.T.</TooltipContent>
|
||||
</Tooltip>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<Link
|
||||
href={getPagePath($router, "monitoring")}
|
||||
className={cn(buttonVariants({ variant: "ghost", size: "icon" }))}
|
||||
aria-label="Monitoring"
|
||||
>
|
||||
<MonitorIcon className="h-[1.2rem] w-[1.2rem]" strokeWidth={1.5} />
|
||||
</Link>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<Trans>Monitoring</Trans>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
<LangToggle />
|
||||
<ModeToggle />
|
||||
<Tooltip>
|
||||
@@ -219,12 +223,6 @@ export default function Navbar() {
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
{!isReadOnlyUser() && (
|
||||
<Button variant="outline" className="flex gap-1 ms-2" onClick={() => setAddSystemDialogOpen(true)}>
|
||||
<PlusIcon className="h-4 w-4 -ms-1" />
|
||||
<Trans>Add {{ foo: systemTranslation }}</Trans>
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useMutation, useQueryClient } from "@tanstack/react-query"
|
||||
import { zodResolver } from "@hookform/resolvers/zod"
|
||||
import { useForm } from "react-hook-form"
|
||||
import { z } from "zod"
|
||||
import { useToast } from "@/hooks/use-toast"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import {
|
||||
Dialog,
|
||||
@@ -508,12 +508,251 @@ function EmailForm({
|
||||
)
|
||||
}
|
||||
|
||||
// Similar components for other providers... (abbreviated for brevity)
|
||||
// Webhook, Discord, Slack, Telegram, Gotify, Pushover forms
|
||||
// Stub form components for other notification providers
|
||||
|
||||
const webhookSchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
url: z.string().min(1, "Webhook URL is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type WebhookFormData = z.infer<typeof webhookSchema>
|
||||
|
||||
function WebhookForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<WebhookFormData>) {
|
||||
const form = useForm<WebhookFormData>({ resolver: zodResolver(webhookSchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="My Webhook" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.url" render={({ field }) => (
|
||||
<FormItem><FormLabel>Webhook URL</FormLabel><FormControl><Input placeholder="https://hooks.example.com/..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
const discordSchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
webhook_url: z.string().min(1, "Discord Webhook URL is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type DiscordFormData = z.infer<typeof discordSchema>
|
||||
|
||||
function DiscordForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<DiscordFormData>) {
|
||||
const form = useForm<DiscordFormData>({ resolver: zodResolver(discordSchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="Discord Alerts" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.webhook_url" render={({ field }) => (
|
||||
<FormItem><FormLabel>Discord Webhook URL</FormLabel><FormControl><Input placeholder="https://discord.com/api/webhooks/..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
const slackSchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
webhook_url: z.string().min(1, "Slack Webhook URL is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type SlackFormData = z.infer<typeof slackSchema>
|
||||
|
||||
function SlackForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<SlackFormData>) {
|
||||
const form = useForm<SlackFormData>({ resolver: zodResolver(slackSchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="Slack Alerts" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.webhook_url" render={({ field }) => (
|
||||
<FormItem><FormLabel>Slack Webhook URL</FormLabel><FormControl><Input placeholder="https://hooks.slack.com/services/..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
const telegramSchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
bot_token: z.string().min(1, "Bot Token is required"),
|
||||
chat_id: z.string().min(1, "Chat ID is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type TelegramFormData = z.infer<typeof telegramSchema>
|
||||
|
||||
function TelegramForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<TelegramFormData>) {
|
||||
const form = useForm<TelegramFormData>({ resolver: zodResolver(telegramSchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="Telegram Alerts" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<FormField control={form.control} name="settings.bot_token" render={({ field }) => (
|
||||
<FormItem><FormLabel>Bot Token</FormLabel><FormControl><Input placeholder="123456:ABC-DEF..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.chat_id" render={({ field }) => (
|
||||
<FormItem><FormLabel>Chat ID</FormLabel><FormControl><Input placeholder="-100123456789" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
</div>
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
const gotifySchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
server_url: z.string().min(1, "Server URL is required"),
|
||||
app_token: z.string().min(1, "App Token is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type GotifyFormData = z.infer<typeof gotifySchema>
|
||||
|
||||
function GotifyForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<GotifyFormData>) {
|
||||
const form = useForm<GotifyFormData>({ resolver: zodResolver(gotifySchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="Gotify Alerts" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<FormField control={form.control} name="settings.server_url" render={({ field }) => (
|
||||
<FormItem><FormLabel>Server URL</FormLabel><FormControl><Input placeholder="https://gotify.example.com" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.app_token" render={({ field }) => (
|
||||
<FormItem><FormLabel>App Token</FormLabel><FormControl><Input placeholder="Abc..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
</div>
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
const pushoverSchema = z.object({
|
||||
name: z.string().min(1, "Name is required"),
|
||||
is_default: z.boolean(),
|
||||
settings: z.object({
|
||||
user_key: z.string().min(1, "User Key is required"),
|
||||
app_token: z.string().min(1, "App Token is required"),
|
||||
}),
|
||||
})
|
||||
|
||||
type PushoverFormData = z.infer<typeof pushoverSchema>
|
||||
|
||||
function PushoverForm({ defaultValues, onSubmit, isPending, onCancel, onTest, testPending }: FormComponentProps<PushoverFormData>) {
|
||||
const form = useForm<PushoverFormData>({ resolver: zodResolver(pushoverSchema), defaultValues })
|
||||
return (
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||
<FormField control={form.control} name="name" render={({ field }) => (
|
||||
<FormItem><FormLabel>Name</FormLabel><FormControl><Input placeholder="Pushover Alerts" {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<FormField control={form.control} name="settings.user_key" render={({ field }) => (
|
||||
<FormItem><FormLabel>User Key</FormLabel><FormControl><Input placeholder="u..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
<FormField control={form.control} name="settings.app_token" render={({ field }) => (
|
||||
<FormItem><FormLabel>App Token</FormLabel><FormControl><Input placeholder="a..." {...field} /></FormControl><FormMessage /></FormItem>
|
||||
)} />
|
||||
</div>
|
||||
<FormField control={form.control} name="is_default" render={({ field }) => (
|
||||
<FormItem className="flex items-center justify-between rounded-lg border p-3">
|
||||
<div className="space-y-0.5"><FormLabel>Default Provider</FormLabel></div>
|
||||
<FormControl><Switch checked={field.value} onCheckedChange={field.onChange} /></FormControl>
|
||||
</FormItem>
|
||||
)} />
|
||||
<DialogFooter className="gap-2">
|
||||
{onTest && <Button type="button" variant="outline" onClick={onTest} disabled={testPending}>{testPending ? "Sending..." : "Test"}</Button>}
|
||||
<Button type="button" variant="outline" onClick={onCancel}>Cancel</Button>
|
||||
<Button type="submit" disabled={isPending}>{isPending ? "Saving..." : "Save"}</Button>
|
||||
</DialogFooter>
|
||||
</form>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
||||
type FormComponentProps<T> = {
|
||||
defaultValues: T
|
||||
onSubmit: (data: T) => void
|
||||
onSubmit: (data: any) => void
|
||||
isPending: boolean
|
||||
onCancel: () => void
|
||||
onTest?: () => void
|
||||
|
||||
@@ -10,6 +10,10 @@ const routes = {
|
||||
settings: `/settings/:name?`,
|
||||
forgot_password: `/forgot-password`,
|
||||
request_otp: `/request-otp`,
|
||||
status_pages: `/status-pages`,
|
||||
incidents: `/incidents`,
|
||||
calendar: `/calendar`,
|
||||
monitoring: `/monitoring`,
|
||||
} as const
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
import { memo, useEffect } from "react"
|
||||
import { useLingui } from "@lingui/react/macro"
|
||||
import { CalendarView } from "@/components/calendar/calendar-view"
|
||||
|
||||
export default memo(() => {
|
||||
const { t } = useLingui()
|
||||
|
||||
useEffect(() => {
|
||||
document.title = `${t`Calendar`} / Beszel`
|
||||
}, [t])
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-8">
|
||||
<CalendarView />
|
||||
</div>
|
||||
)
|
||||
})
|
||||
@@ -1,11 +1,20 @@
|
||||
import { memo, useState } from "react"
|
||||
import { memo, useMemo, useState } from "react"
|
||||
import { useQuery } from "@tanstack/react-query"
|
||||
import { Trans } from "@lingui/react/macro"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
||||
import {
|
||||
AlertDialog,
|
||||
AlertDialogAction,
|
||||
AlertDialogCancel,
|
||||
AlertDialogContent,
|
||||
AlertDialogDescription,
|
||||
AlertDialogFooter,
|
||||
AlertDialogHeader,
|
||||
AlertDialogTitle,
|
||||
} from "@/components/ui/alert-dialog"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||||
import {
|
||||
Globe,
|
||||
Calendar,
|
||||
@@ -20,18 +29,15 @@ import {
|
||||
CheckCircle2,
|
||||
AlertTriangle,
|
||||
XCircle,
|
||||
Lock,
|
||||
Key,
|
||||
Fingerprint,
|
||||
FileText,
|
||||
User,
|
||||
Mail,
|
||||
Phone,
|
||||
Building,
|
||||
} from "lucide-react"
|
||||
import { getDomain, getDomainHistory, refreshDomain, formatDate, formatDays } from "@/lib/domains"
|
||||
import { XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, AreaChart, Area } from "recharts"
|
||||
import { getDomain, getDomainHistory, refreshDomain, deleteDomain, formatDate, formatDays } from "@/lib/domains"
|
||||
import { XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, BarChart, Bar, Cell } from "recharts"
|
||||
import { Link, navigate } from "@/components/router"
|
||||
import { DomainDialog } from "@/components/domains-table/domain-dialog"
|
||||
|
||||
// Status badge component
|
||||
function StatusBadge({ status }: { status: string }) {
|
||||
@@ -77,17 +83,19 @@ function InfoCard({ title, value, icon: Icon, subtitle, className }: { title: st
|
||||
|
||||
export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
const { toast } = useToast()
|
||||
const [activeTab, setActiveTab] = useState("overview")
|
||||
const [isEditDialogOpen, setIsEditDialogOpen] = useState(false)
|
||||
const [isDeleteDialogOpen, setIsDeleteDialogOpen] = useState(false)
|
||||
|
||||
const { data: domain, isLoading: isDomainLoading } = useQuery({
|
||||
queryKey: ["domain", id],
|
||||
queryFn: () => getDomain(id),
|
||||
refetchInterval: 60000,
|
||||
refetchInterval: 30000,
|
||||
})
|
||||
|
||||
const { data: history } = useQuery({
|
||||
queryKey: ["domain-history", id],
|
||||
queryFn: () => getDomainHistory(id),
|
||||
refetchInterval: 60000,
|
||||
})
|
||||
|
||||
const handleRefresh = async () => {
|
||||
@@ -103,13 +111,40 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
}
|
||||
|
||||
const handleDelete = () => {
|
||||
if (confirm("Are you sure you want to delete this domain?")) {
|
||||
// Delete domain logic would go here
|
||||
setIsDeleteDialogOpen(true)
|
||||
}
|
||||
|
||||
const handleDeleteConfirm = async () => {
|
||||
if (!domain?.id) return
|
||||
try {
|
||||
await deleteDomain(domain.id)
|
||||
toast({ title: "Domain deleted" })
|
||||
navigate("/")
|
||||
} catch (error) {
|
||||
toast({
|
||||
title: "Failed to delete domain",
|
||||
variant: "destructive",
|
||||
})
|
||||
} finally {
|
||||
setIsDeleteDialogOpen(false)
|
||||
}
|
||||
}
|
||||
|
||||
// Prepare chart data from history (events by date)
|
||||
const chartData = useMemo(() => {
|
||||
if (!history?.length) return []
|
||||
const counts: Record<string, number> = {}
|
||||
history.forEach((h: any) => {
|
||||
const d = h.created_at
|
||||
? new Date(h.created_at).toISOString().split("T")[0]
|
||||
: "Unknown"
|
||||
counts[d] = (counts[d] || 0) + 1
|
||||
})
|
||||
return Object.entries(counts)
|
||||
.map(([date, count]) => ({ date, count }))
|
||||
.sort((a, b) => a.date.localeCompare(b.date))
|
||||
}, [history])
|
||||
|
||||
if (isDomainLoading) {
|
||||
return (
|
||||
<div className="flex items-center justify-center h-64">
|
||||
@@ -131,13 +166,6 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
)
|
||||
}
|
||||
|
||||
// Prepare chart data from history
|
||||
const chartData = history?.map((h: any) => ({
|
||||
date: new Date(h.created).toLocaleDateString(),
|
||||
daysUntilExpiry: h.days_until_expiry || 0,
|
||||
sslDaysUntil: h.ssl_days_until || 0,
|
||||
})) || []
|
||||
|
||||
return (
|
||||
<div className="grid gap-4 mb-14">
|
||||
{/* Header */}
|
||||
@@ -175,7 +203,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
<Trans>Visit</Trans>
|
||||
</a>
|
||||
</Button>
|
||||
<Button variant="outline" size="sm">
|
||||
<Button variant="outline" size="sm" onClick={() => setIsEditDialogOpen(true)}>
|
||||
<Edit3 className="mr-2 h-4 w-4" />
|
||||
<Trans>Edit</Trans>
|
||||
</Button>
|
||||
@@ -200,14 +228,14 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
value={formatDate(domain.expiry_date)}
|
||||
subtitle={formatDays(domain.days_until_expiry)}
|
||||
icon={Calendar}
|
||||
className={domain.days_until_expiry !== undefined && domain.days_until_expiry <= 30 ? "text-yellow-600" : ""}
|
||||
className={domain.days_until_expiry !== undefined && domain.days_until_expiry >= 0 && domain.days_until_expiry <= 30 ? "text-yellow-600" : ""}
|
||||
/>
|
||||
<InfoCard
|
||||
title="SSL Expiry"
|
||||
value={domain.ssl_valid_to ? formatDate(domain.ssl_valid_to) : "No SSL"}
|
||||
subtitle={domain.ssl_valid_to ? formatDays(domain.ssl_days_until) : undefined}
|
||||
icon={Shield}
|
||||
className={domain.ssl_days_until !== undefined && domain.ssl_days_until <= 14 ? "text-red-600" : ""}
|
||||
className={domain.ssl_days_until !== undefined && domain.ssl_days_until >= 0 && domain.ssl_days_until <= 14 ? "text-red-600" : ""}
|
||||
/>
|
||||
<InfoCard
|
||||
title="Location"
|
||||
@@ -217,74 +245,73 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Tabs */}
|
||||
<Tabs value={activeTab} onValueChange={setActiveTab} className="contents">
|
||||
<TabsList className="h-11 p-1.5 w-full shadow-xs overflow-auto justify-start">
|
||||
<TabsTrigger value="overview" className="flex items-center gap-1.5 px-4">
|
||||
<Globe className="size-3.5" />
|
||||
<Trans>Overview</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="dns" className="flex items-center gap-1.5 px-4">
|
||||
<Server className="size-3.5" />
|
||||
<Trans>DNS Records</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="ssl" className="flex items-center gap-1.5 px-4">
|
||||
<Lock className="size-3.5" />
|
||||
<Trans>SSL Certificate</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="whois" className="flex items-center gap-1.5 px-4">
|
||||
<FileText className="size-3.5" />
|
||||
<Trans>WHOIS Info</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="history" className="flex items-center gap-1.5 px-4">
|
||||
<Clock className="size-3.5" />
|
||||
<Trans>History</Trans>
|
||||
</TabsTrigger>
|
||||
</TabsList>
|
||||
{/* Expiry Comparison Chart */}
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Expiry Overview</CardTitle>
|
||||
<CardDescription>Days remaining until domain and SSL certificate expiration</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="h-[200px]">
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<BarChart
|
||||
data={[
|
||||
...(typeof domain.days_until_expiry === "number" && domain.days_until_expiry >= 0
|
||||
? [{ name: "Domain Expiry", days: domain.days_until_expiry }]
|
||||
: []),
|
||||
...(typeof domain.ssl_days_until === "number" && domain.ssl_days_until >= 0
|
||||
? [{ name: "SSL Expiry", days: domain.ssl_days_until }]
|
||||
: []),
|
||||
]}
|
||||
layout="vertical"
|
||||
>
|
||||
<CartesianGrid strokeDasharray="3 3" opacity={0.3} />
|
||||
<XAxis type="number" tick={{ fontSize: 12 }} />
|
||||
<YAxis dataKey="name" type="category" tick={{ fontSize: 12 }} width={100} />
|
||||
<Tooltip
|
||||
formatter={(value: number) => [`${value} days`, "Remaining"]}
|
||||
contentStyle={{ backgroundColor: "hsl(var(--card))", border: "1px solid hsl(var(--border))" }}
|
||||
/>
|
||||
<Bar dataKey="days" radius={[0, 4, 4, 0]}>
|
||||
{[
|
||||
{ days: domain.days_until_expiry ?? 0 },
|
||||
{ days: domain.ssl_days_until ?? 0 },
|
||||
].map((entry, index) => (
|
||||
<Cell
|
||||
key={`cell-${index}`}
|
||||
fill={
|
||||
entry.days <= 14
|
||||
? "#ef4444"
|
||||
: entry.days <= 30
|
||||
? "#f59e0b"
|
||||
: "#22c55e"
|
||||
}
|
||||
/>
|
||||
))}
|
||||
</Bar>
|
||||
</BarChart>
|
||||
</ResponsiveContainer>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<TabsContent value="overview" className="contents">
|
||||
<div className="grid gap-4">
|
||||
{/* Expiry Timeline Chart */}
|
||||
<div className="grid gap-4">
|
||||
{/* Expiry Timeline Chart */}
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Domain Expiry Timeline</CardTitle>
|
||||
<CardDescription>Days until domain and SSL expiry over time</CardDescription>
|
||||
<CardTitle>History Events</CardTitle>
|
||||
<CardDescription>Domain changes and check events over time</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="h-[300px]">
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<AreaChart data={chartData}>
|
||||
<defs>
|
||||
<linearGradient id="colorDomain" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor="#3b82f6" stopOpacity={0.3} />
|
||||
<stop offset="95%" stopColor="#3b82f6" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
<linearGradient id="colorSsl" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor="#22c55e" stopOpacity={0.3} />
|
||||
<stop offset="95%" stopColor="#22c55e" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<BarChart data={chartData}>
|
||||
<CartesianGrid strokeDasharray="3 3" opacity={0.3} />
|
||||
<XAxis dataKey="date" tick={{ fontSize: 12 }} />
|
||||
<YAxis tick={{ fontSize: 12 }} />
|
||||
<YAxis tick={{ fontSize: 12 }} allowDecimals={false} />
|
||||
<Tooltip />
|
||||
<Area
|
||||
type="monotone"
|
||||
dataKey="daysUntilExpiry"
|
||||
stroke="#3b82f6"
|
||||
fillOpacity={1}
|
||||
fill="url(#colorDomain)"
|
||||
name="Domain Days"
|
||||
/>
|
||||
<Area
|
||||
type="monotone"
|
||||
dataKey="sslDaysUntil"
|
||||
stroke="#22c55e"
|
||||
fillOpacity={1}
|
||||
fill="url(#colorSsl)"
|
||||
name="SSL Days"
|
||||
/>
|
||||
</AreaChart>
|
||||
<Bar dataKey="count" fill="#3b82f6" name="Events" />
|
||||
</BarChart>
|
||||
</ResponsiveContainer>
|
||||
</div>
|
||||
</CardContent>
|
||||
@@ -354,9 +381,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
</Card>
|
||||
)}
|
||||
</div>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="dns" className="contents">
|
||||
<div className="grid gap-4">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
@@ -434,9 +459,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="ssl" className="contents">
|
||||
<div className="grid gap-4">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
@@ -458,7 +481,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
value={formatDate(domain.ssl_valid_to)}
|
||||
subtitle={formatDays(domain.ssl_days_until)}
|
||||
icon={Shield}
|
||||
className={domain.ssl_days_until !== undefined && domain.ssl_days_until <= 14 ? "text-red-600" : ""}
|
||||
className={domain.ssl_days_until !== undefined && domain.ssl_days_until >= 0 && domain.ssl_days_until <= 14 ? "text-red-600" : ""}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -511,9 +534,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="whois" className="contents">
|
||||
<div className="grid gap-4">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
@@ -634,7 +655,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
)}
|
||||
|
||||
{/* Domain Status */}
|
||||
{domain.status && domain.status !== "Unknown" && (
|
||||
{domain.status && domain.status !== "unknown" && (
|
||||
<div className="space-y-2 pt-4 border-t">
|
||||
<h4 className="text-sm font-medium flex items-center gap-2">
|
||||
<Shield className="h-4 w-4" />
|
||||
@@ -650,9 +671,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="history" className="contents">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Change History</CardTitle>
|
||||
@@ -669,7 +688,7 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
<p className="font-medium">{item.change_type}</p>
|
||||
<p className="text-sm text-muted-foreground">{item.change_description}</p>
|
||||
<p className="text-xs text-muted-foreground mt-1">
|
||||
{new Date(item.created).toLocaleString()}
|
||||
{new Date(item.created_at || item.created).toLocaleString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -680,8 +699,32 @@ export default memo(function DomainDetail({ id }: { id: string }) {
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
<DomainDialog
|
||||
open={isEditDialogOpen}
|
||||
onOpenChange={setIsEditDialogOpen}
|
||||
domain={domain}
|
||||
isEdit
|
||||
/>
|
||||
|
||||
<AlertDialog open={isDeleteDialogOpen} onOpenChange={setIsDeleteDialogOpen}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>Delete Domain</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
Are you sure you want to delete this domain? This action cannot be undone.
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={handleDeleteConfirm}
|
||||
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"
|
||||
>
|
||||
Delete
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
</div>
|
||||
)
|
||||
})
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
import { useLingui } from "@lingui/react/macro"
|
||||
import { getPagePath } from "@nanostores/router"
|
||||
import { memo, Suspense, useEffect, useMemo } from "react"
|
||||
import { Link, $router } from "@/components/router"
|
||||
import SystemsTable from "@/components/systems-table/systems-table"
|
||||
import MonitorsTable from "@/components/monitors-table/monitors-table"
|
||||
import DomainsTable from "@/components/domains-table/domains-table"
|
||||
import { ActiveAlerts } from "@/components/active-alerts"
|
||||
import { FooterRepoLink } from "@/components/footer-repo-link"
|
||||
import { Card, CardContent } from "@/components/ui/card"
|
||||
import { Globe, AlertTriangle, Calendar } from "lucide-react"
|
||||
|
||||
export default memo(() => {
|
||||
const { t } = useLingui()
|
||||
@@ -16,8 +20,8 @@ export default memo(() => {
|
||||
return useMemo(
|
||||
() => (
|
||||
<>
|
||||
<div className="flex flex-col gap-6">
|
||||
{/* Section 1: Device Monitoring (Primary) */}
|
||||
<div className="flex flex-col gap-8">
|
||||
{/* Section 1: System Monitoring */}
|
||||
<section>
|
||||
<ActiveAlerts />
|
||||
<Suspense>
|
||||
@@ -25,19 +29,62 @@ export default memo(() => {
|
||||
</Suspense>
|
||||
</section>
|
||||
|
||||
{/* Section 2: Website & Service Monitoring (Secondary) */}
|
||||
{/* Section 2: Website & Service Monitoring */}
|
||||
<section>
|
||||
<Suspense>
|
||||
<MonitorsTable />
|
||||
</Suspense>
|
||||
</section>
|
||||
|
||||
{/* Section 3: Domain Expiry Monitoring */}
|
||||
{/* Section 3: Domain Monitoring */}
|
||||
<section>
|
||||
<Suspense>
|
||||
<DomainsTable />
|
||||
</Suspense>
|
||||
</section>
|
||||
|
||||
{/* Section 4: Quick Actions */}
|
||||
<section className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||||
<Card>
|
||||
<CardContent className="p-4">
|
||||
<Link href={getPagePath($router, "status_pages")} className="flex items-center gap-3 hover:opacity-80">
|
||||
<div className="p-2 bg-muted rounded-lg">
|
||||
<Globe className="h-5 w-5 text-muted-foreground" />
|
||||
</div>
|
||||
<div>
|
||||
<p className="font-semibold">{t`Status Pages`}</p>
|
||||
<p className="text-sm text-muted-foreground">{t`Manage public status pages`}</p>
|
||||
</div>
|
||||
</Link>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<CardContent className="p-4">
|
||||
<Link href={getPagePath($router, "incidents")} className="flex items-center gap-3 hover:opacity-80">
|
||||
<div className="p-2 bg-muted rounded-lg">
|
||||
<AlertTriangle className="h-5 w-5 text-muted-foreground" />
|
||||
</div>
|
||||
<div>
|
||||
<p className="font-semibold">{t`Incidents`}</p>
|
||||
<p className="text-sm text-muted-foreground">{t`View and manage incidents`}</p>
|
||||
</div>
|
||||
</Link>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<CardContent className="p-4">
|
||||
<Link href={getPagePath($router, "calendar")} className="flex items-center gap-3 hover:opacity-80">
|
||||
<div className="p-2 bg-muted rounded-lg">
|
||||
<Calendar className="h-5 w-5 text-muted-foreground" />
|
||||
</div>
|
||||
<div>
|
||||
<p className="font-semibold">{t`Calendar`}</p>
|
||||
<p className="text-sm text-muted-foreground">{t`Domain and SSL expiry calendar`}</p>
|
||||
</div>
|
||||
</Link>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</section>
|
||||
</div>
|
||||
<FooterRepoLink />
|
||||
</>
|
||||
|
||||
@@ -0,0 +1,122 @@
|
||||
import { memo, useEffect, useState } from "react"
|
||||
import { useLingui } from "@lingui/react/macro"
|
||||
import { useQuery } from "@tanstack/react-query"
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { CalendarIcon, AlertTriangle, CheckCircle2, Clock } from "lucide-react"
|
||||
import { getIncidents, type Incident } from "@/lib/incidents"
|
||||
import { formatDate } from "@/lib/domains"
|
||||
|
||||
function StatusBadge({ status }: { status: string }) {
|
||||
const configs: Record<string, { color: string; icon: React.ElementType; text: string }> = {
|
||||
open: { color: "bg-red-500", icon: AlertTriangle, text: "Open" },
|
||||
acknowledged: { color: "bg-yellow-500", icon: Clock, text: "Acknowledged" },
|
||||
resolved: { color: "bg-green-500", icon: CheckCircle2, text: "Resolved" },
|
||||
closed: { color: "bg-gray-500", icon: CheckCircle2, text: "Closed" },
|
||||
}
|
||||
const config = configs[status] || configs.open
|
||||
const Icon = config.icon
|
||||
return (
|
||||
<div className="flex items-center gap-2">
|
||||
<div className={`h-2.5 w-2.5 rounded-full ${config.color}`} />
|
||||
<Icon className="h-4 w-4 text-muted-foreground" />
|
||||
<span className="capitalize text-sm">{config.text}</span>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
function SeverityBadge({ severity }: { severity: string }) {
|
||||
const colors: Record<string, string> = {
|
||||
critical: "bg-red-500",
|
||||
high: "bg-orange-500",
|
||||
medium: "bg-yellow-500",
|
||||
low: "bg-blue-500",
|
||||
}
|
||||
return <Badge className={colors[severity] || "bg-gray-500"}>{severity}</Badge>
|
||||
}
|
||||
|
||||
export default memo(() => {
|
||||
const { t } = useLingui()
|
||||
const [filter, setFilter] = useState("all")
|
||||
|
||||
useEffect(() => {
|
||||
document.title = `${t`Incidents`} / Beszel`
|
||||
}, [t])
|
||||
|
||||
const { data: incidents = [], isLoading } = useQuery({
|
||||
queryKey: ["incidents", filter],
|
||||
queryFn: () => getIncidents(filter === "all" ? undefined : { status: filter }),
|
||||
})
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div className="container">
|
||||
<div className="p-4">Loading incidents...</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="container flex flex-col gap-6">
|
||||
<div className="flex items-center justify-between">
|
||||
<h1 className="text-2xl font-semibold">{t`Incidents`}</h1>
|
||||
<div className="flex gap-2">
|
||||
{["all", "open", "acknowledged", "resolved", "closed"].map((s) => (
|
||||
<Button
|
||||
key={s}
|
||||
variant={filter === s ? "default" : "outline"}
|
||||
size="sm"
|
||||
onClick={() => setFilter(s)}
|
||||
>
|
||||
{s}
|
||||
</Button>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{incidents.length === 0 ? (
|
||||
<Card>
|
||||
<CardContent className="p-8 text-center text-muted-foreground">
|
||||
No incidents found.
|
||||
</CardContent>
|
||||
</Card>
|
||||
) : (
|
||||
<div className="grid gap-4">
|
||||
{incidents.map((incident: Incident) => (
|
||||
<Card key={incident.id}>
|
||||
<CardHeader className="pb-2">
|
||||
<div className="flex items-center justify-between">
|
||||
<CardTitle className="text-lg">{incident.title}</CardTitle>
|
||||
<div className="flex gap-2">
|
||||
<SeverityBadge severity={incident.severity} />
|
||||
<StatusBadge status={incident.status} />
|
||||
</div>
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{incident.description && (
|
||||
<p className="text-sm text-muted-foreground mb-3">
|
||||
{incident.description}
|
||||
</p>
|
||||
)}
|
||||
<div className="flex items-center gap-4 text-xs text-muted-foreground">
|
||||
<span className="flex items-center gap-1">
|
||||
<CalendarIcon className="h-3 w-3" />
|
||||
Started: {formatDate(incident.started_at)}
|
||||
</span>
|
||||
{incident.resolved_at && (
|
||||
<span className="flex items-center gap-1">
|
||||
<CheckCircle2 className="h-3 w-3" />
|
||||
Resolved: {formatDate(incident.resolved_at)}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
})
|
||||
@@ -1,11 +1,22 @@
|
||||
import { memo, useState, useMemo } from "react"
|
||||
import { memo, useMemo, useState } from "react"
|
||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"
|
||||
import { Trans } from "@lingui/react/macro"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
||||
import { Input } from "@/components/ui/input"
|
||||
import { Label } from "@/components/ui/label"
|
||||
import {
|
||||
AlertDialog,
|
||||
AlertDialogAction,
|
||||
AlertDialogCancel,
|
||||
AlertDialogContent,
|
||||
AlertDialogDescription,
|
||||
AlertDialogFooter,
|
||||
AlertDialogHeader,
|
||||
AlertDialogTitle,
|
||||
} from "@/components/ui/alert-dialog"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
|
||||
import {
|
||||
Globe,
|
||||
@@ -30,13 +41,27 @@ import {
|
||||
pauseMonitor,
|
||||
resumeMonitor,
|
||||
deleteMonitor,
|
||||
updateMonitor,
|
||||
getMonitorTypeLabel,
|
||||
formatUptime,
|
||||
formatPing,
|
||||
} from "@/lib/monitors"
|
||||
import { formatDate } from "@/lib/domains"
|
||||
import { XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, LineChart, AreaChart, Area } from "recharts"
|
||||
import { getStatusPages, createStatusPage } from "@/lib/statuspages"
|
||||
import {
|
||||
Bar,
|
||||
XAxis,
|
||||
YAxis,
|
||||
CartesianGrid,
|
||||
Tooltip,
|
||||
ResponsiveContainer,
|
||||
Area,
|
||||
Cell,
|
||||
ComposedChart,
|
||||
Legend,
|
||||
} from "recharts"
|
||||
import { Link, navigate } from "@/components/router"
|
||||
import { AddMonitorDialog } from "@/components/monitors-table/add-monitor-dialog"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
// Status badge component
|
||||
@@ -103,22 +128,27 @@ function StatCard({
|
||||
export default memo(function MonitorDetail({ id }: { id: string }) {
|
||||
const { toast } = useToast()
|
||||
const queryClient = useQueryClient()
|
||||
const [activeTab, setActiveTab] = useState("overview")
|
||||
const [isEditDialogOpen, setIsEditDialogOpen] = useState(false)
|
||||
const [isDeleteDialogOpen, setIsDeleteDialogOpen] = useState(false)
|
||||
const [timeRange, setTimeRange] = useState<"24h" | "7d" | "30d">("24h")
|
||||
|
||||
const { data: monitor, isLoading: isMonitorLoading } = useQuery({
|
||||
queryKey: ["monitor", id],
|
||||
queryFn: () => getMonitor(id),
|
||||
staleTime: Infinity,
|
||||
refetchInterval: 30000,
|
||||
})
|
||||
|
||||
const { data: stats } = useQuery({
|
||||
queryKey: ["monitor-stats", id],
|
||||
queryFn: () => getMonitorStats(id),
|
||||
refetchInterval: 30000,
|
||||
})
|
||||
|
||||
const { data: heartbeatsData } = useQuery({
|
||||
queryKey: ["monitor-heartbeats", id],
|
||||
queryFn: () => getMonitorHeartbeats(id),
|
||||
refetchInterval: 30000,
|
||||
})
|
||||
const heartbeats = heartbeatsData?.heartbeats
|
||||
|
||||
@@ -152,24 +182,72 @@ export default memo(function MonitorDetail({ id }: { id: string }) {
|
||||
},
|
||||
})
|
||||
|
||||
const [isCreateStatusPageOpen, setIsCreateStatusPageOpen] = useState(false)
|
||||
const [statusPageName, setStatusPageName] = useState("")
|
||||
const [statusPageSlug, setStatusPageSlug] = useState("")
|
||||
|
||||
const { data: statusPages } = useQuery({
|
||||
queryKey: ["status-pages"],
|
||||
queryFn: () => getStatusPages(),
|
||||
})
|
||||
|
||||
const updateStatusPagesMutation = useMutation({
|
||||
mutationFn: (status_pages: string[]) => updateMonitor(id, { status_pages } as any),
|
||||
onSuccess: () => {
|
||||
queryClient.invalidateQueries({ queryKey: ["monitor", id] })
|
||||
toast({ title: "Status pages updated" })
|
||||
},
|
||||
})
|
||||
|
||||
const createStatusPageMutation = useMutation({
|
||||
mutationFn: () =>
|
||||
createStatusPage({
|
||||
name: statusPageName || `${monitor?.name} Status`,
|
||||
slug: statusPageSlug || monitor?.name?.toLowerCase().replace(/\s+/g, "-") || "status",
|
||||
title: statusPageName || `${monitor?.name} Status Page`,
|
||||
public: true,
|
||||
}),
|
||||
onSuccess: () => {
|
||||
queryClient.invalidateQueries({ queryKey: ["status-pages"] })
|
||||
toast({ title: "Status page created" })
|
||||
setIsCreateStatusPageOpen(false)
|
||||
setStatusPageName("")
|
||||
setStatusPageSlug("")
|
||||
},
|
||||
})
|
||||
|
||||
const handleDelete = () => {
|
||||
if (confirm("Are you sure you want to delete this monitor?")) {
|
||||
deleteMutation.mutate()
|
||||
}
|
||||
setIsDeleteDialogOpen(true)
|
||||
}
|
||||
|
||||
// Filter heartbeats by time range
|
||||
const filteredHeartbeats = useMemo(() => {
|
||||
if (!heartbeats) return []
|
||||
const now = Date.now()
|
||||
const ranges: Record<string, number> = {
|
||||
"24h": 24 * 60 * 60 * 1000,
|
||||
"7d": 7 * 24 * 60 * 60 * 1000,
|
||||
"30d": 30 * 24 * 60 * 60 * 1000,
|
||||
}
|
||||
const cutoff = now - (ranges[timeRange] || ranges["24h"])
|
||||
return heartbeats.filter((h: any) => {
|
||||
const t = new Date(h.time || h.timestamp).getTime()
|
||||
return t >= cutoff
|
||||
})
|
||||
}, [heartbeats, timeRange])
|
||||
|
||||
// Prepare chart data from heartbeats
|
||||
const chartData = useMemo(() => {
|
||||
if (!heartbeats) return []
|
||||
return heartbeats
|
||||
if (!filteredHeartbeats.length) return []
|
||||
return filteredHeartbeats
|
||||
.slice()
|
||||
.reverse()
|
||||
.map((h: any) => ({
|
||||
time: new Date(h.timestamp).toLocaleTimeString(),
|
||||
time: new Date(h.time || h.timestamp).toLocaleTimeString(),
|
||||
responseTime: h.ping || 0,
|
||||
status: h.status === "up" ? 1 : 0,
|
||||
}))
|
||||
}, [heartbeats])
|
||||
}, [filteredHeartbeats])
|
||||
|
||||
// Calculate stats
|
||||
const uptimeStats = useMemo(() => {
|
||||
@@ -278,7 +356,7 @@ export default memo(function MonitorDetail({ id }: { id: string }) {
|
||||
</>
|
||||
)}
|
||||
</Button>
|
||||
<Button variant="outline" size="sm">
|
||||
<Button variant="outline" size="sm" onClick={() => setIsEditDialogOpen(true)}>
|
||||
<Edit3 className="mr-2 h-4 w-4" />
|
||||
<Trans>Edit</Trans>
|
||||
</Button>
|
||||
@@ -291,230 +369,308 @@ export default memo(function MonitorDetail({ id }: { id: string }) {
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* Stats Grid */}
|
||||
<div className="grid sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||
{/* Summary Bar */}
|
||||
<div className="grid sm:grid-cols-4 gap-4">
|
||||
<StatCard
|
||||
title="Uptime (24h)"
|
||||
value={formatUptime(stats?.uptime_24h ? (stats.uptime_24h.up / stats.uptime_24h.total) * 100 : 0)}
|
||||
icon={Activity}
|
||||
trend={stats?.uptime_24h && (stats.uptime_24h.up / stats.uptime_24h.total) * 100 >= 99 ? "up" : "down"}
|
||||
/>
|
||||
<StatCard
|
||||
title="Uptime (7d)"
|
||||
value={formatUptime(stats?.uptime_7d ? (stats.uptime_7d.up / stats.uptime_7d.total) * 100 : 0)}
|
||||
icon={Activity}
|
||||
trend={stats?.uptime_7d && (stats.uptime_7d.up / stats.uptime_7d.total) * 100 >= 99 ? "up" : "down"}
|
||||
/>
|
||||
<StatCard
|
||||
title="Uptime (30d)"
|
||||
value={formatUptime(stats?.uptime_30d ? (stats.uptime_30d.up / stats.uptime_30d.total) * 100 : 0)}
|
||||
icon={Activity}
|
||||
trend={stats?.uptime_30d && (stats.uptime_30d.up / stats.uptime_30d.total) * 100 >= 99 ? "up" : "down"}
|
||||
/>
|
||||
<StatCard
|
||||
title="Response Time"
|
||||
title="Avg Response"
|
||||
value={uptimeStats ? `${uptimeStats.avgResponse}ms` : "-"}
|
||||
subtitle={`${uptimeStats?.totalChecks || 0} checks`}
|
||||
icon={Clock}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Tabs */}
|
||||
<Tabs value={activeTab} onValueChange={setActiveTab} className="contents">
|
||||
<TabsList className="h-11 p-1.5 w-full shadow-xs overflow-auto justify-start">
|
||||
<TabsTrigger value="overview" className="w-full flex items-center gap-1.5">
|
||||
<Activity className="size-3.5" />
|
||||
<Trans>Overview</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="response" className="w-full flex items-center gap-1.5">
|
||||
<TrendingUp className="size-3.5" />
|
||||
<Trans>Response Times</Trans>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="history" className="w-full flex items-center gap-1.5">
|
||||
<Clock className="size-3.5" />
|
||||
<Trans>Check History</Trans>
|
||||
</TabsTrigger>
|
||||
</TabsList>
|
||||
|
||||
<TabsContent value="overview" className="contents">
|
||||
<div className="grid gap-4">
|
||||
{/* Response Time Chart */}
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Response Time History</CardTitle>
|
||||
<CardDescription>Response times for the last 50 checks</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="h-[300px]">
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<LineChart data={chartData}>
|
||||
<defs>
|
||||
<linearGradient id="colorResponse" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor="#3b82f6" stopOpacity={0.3} />
|
||||
<stop offset="95%" stopColor="#3b82f6" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<CartesianGrid strokeDasharray="3 3" opacity={0.3} />
|
||||
<XAxis dataKey="time" tick={{ fontSize: 12 }} />
|
||||
<YAxis tick={{ fontSize: 12 }} unit="ms" />
|
||||
<Tooltip
|
||||
contentStyle={{ backgroundColor: "hsl(var(--card))", border: "1px solid hsl(var(--border))" }}
|
||||
/>
|
||||
<Area
|
||||
type="monotone"
|
||||
dataKey="responseTime"
|
||||
stroke="#3b82f6"
|
||||
fillOpacity={1}
|
||||
fill="url(#colorResponse)"
|
||||
name="Response Time (ms)"
|
||||
/>
|
||||
</LineChart>
|
||||
</ResponsiveContainer>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* Monitor Details */}
|
||||
<div className="grid sm:grid-cols-2 gap-4">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Monitor Details</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-2">
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Type</span>
|
||||
<span className="font-medium">{getMonitorTypeLabel(monitor.type)}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Interval</span>
|
||||
<span className="font-medium">{monitor.interval}s</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Retries</span>
|
||||
<span className="font-medium">{monitor.retries}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Created</span>
|
||||
<span className="font-medium">{formatDate(monitor.created)}</span>
|
||||
</div>
|
||||
{monitor.last_check && (
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Last Check</span>
|
||||
<span className="font-medium">{formatDate(monitor.last_check)}</span>
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Uptime Statistics</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-2">
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">24 Hours</span>
|
||||
<span className="font-medium text-green-600">{formatUptime(stats?.uptime_24h ? (stats.uptime_24h.up / stats.uptime_24h.total) * 100 : 0)}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">7 Days</span>
|
||||
<span className="font-medium text-green-600">{formatUptime(stats?.uptime_7d ? (stats.uptime_7d.up / stats.uptime_7d.total) * 100 : 0)}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">30 Days</span>
|
||||
<span className="font-medium text-green-600">{formatUptime(stats?.uptime_30d ? (stats.uptime_30d.up / stats.uptime_30d.total) * 100 : 0)}</span>
|
||||
</div>
|
||||
{uptimeStats && (
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Total Checks</span>
|
||||
<span className="font-medium">{uptimeStats.totalChecks}</span>
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
{/* Combined Uptime & Response Chart */}
|
||||
<Card>
|
||||
<CardHeader className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
||||
<div>
|
||||
<CardTitle>Uptime & Response Time</CardTitle>
|
||||
<CardDescription>
|
||||
<Trans>Status and response time over the selected period</Trans>
|
||||
</CardDescription>
|
||||
</div>
|
||||
</TabsContent>
|
||||
|
||||
<TabsContent value="response" className="contents">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Response Time Analysis</CardTitle>
|
||||
<CardDescription>Detailed response time metrics</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="h-[400px]">
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<AreaChart data={chartData}>
|
||||
<defs>
|
||||
<linearGradient id="colorResponseDetail" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor="#8b5cf6" stopOpacity={0.3} />
|
||||
<stop offset="95%" stopColor="#8b5cf6" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<CartesianGrid strokeDasharray="3 3" opacity={0.3} />
|
||||
<XAxis dataKey="time" tick={{ fontSize: 12 }} />
|
||||
<YAxis tick={{ fontSize: 12 }} unit="ms" />
|
||||
<Tooltip
|
||||
contentStyle={{ backgroundColor: "hsl(var(--card))", border: "1px solid hsl(var(--border))" }}
|
||||
/>
|
||||
<Area
|
||||
type="monotone"
|
||||
dataKey="responseTime"
|
||||
stroke="#8b5cf6"
|
||||
strokeWidth={2}
|
||||
fillOpacity={1}
|
||||
fill="url(#colorResponseDetail)"
|
||||
name="Response Time (ms)"
|
||||
/>
|
||||
</AreaChart>
|
||||
</ResponsiveContainer>
|
||||
<div className="flex items-center gap-2">
|
||||
{(["24h", "7d", "30d"] as const).map((range) => (
|
||||
<Button
|
||||
key={range}
|
||||
variant={timeRange === range ? "default" : "outline"}
|
||||
size="sm"
|
||||
onClick={() => setTimeRange(range)}
|
||||
>
|
||||
{range === "24h" ? "24h" : range === "7d" ? "7d" : "30d"}
|
||||
</Button>
|
||||
))}
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="h-[300px]">
|
||||
{chartData.length > 0 ? (
|
||||
<ResponsiveContainer width="100%" height="100%">
|
||||
<ComposedChart data={chartData}>
|
||||
<defs>
|
||||
<linearGradient id="colorResponse" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="5%" stopColor="#3b82f6" stopOpacity={0.3} />
|
||||
<stop offset="95%" stopColor="#3b82f6" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<CartesianGrid strokeDasharray="3 3" opacity={0.3} />
|
||||
<XAxis dataKey="time" tick={{ fontSize: 12 }} />
|
||||
<YAxis
|
||||
yAxisId="left"
|
||||
tick={{ fontSize: 12 }}
|
||||
unit="ms"
|
||||
/>
|
||||
<YAxis
|
||||
yAxisId="right"
|
||||
orientation="right"
|
||||
tick={{ fontSize: 12 }}
|
||||
domain={[0, 1]}
|
||||
tickFormatter={(v) => (v === 1 ? "Up" : "Down")}
|
||||
/>
|
||||
<Tooltip
|
||||
contentStyle={{
|
||||
backgroundColor: "hsl(var(--card))",
|
||||
border: "1px solid hsl(var(--border))",
|
||||
}}
|
||||
/>
|
||||
<Legend />
|
||||
<Area
|
||||
yAxisId="left"
|
||||
type="monotone"
|
||||
dataKey="responseTime"
|
||||
stroke="#3b82f6"
|
||||
fillOpacity={1}
|
||||
fill="url(#colorResponse)"
|
||||
name="Response Time (ms)"
|
||||
/>
|
||||
<Bar
|
||||
yAxisId="right"
|
||||
dataKey="status"
|
||||
barSize={4}
|
||||
name="Status"
|
||||
>
|
||||
{chartData.map((entry, index) => (
|
||||
<Cell
|
||||
key={`cell-${index}`}
|
||||
fill={entry.status === 1 ? "#22c55e" : "#ef4444"}
|
||||
/>
|
||||
))}
|
||||
</Bar>
|
||||
</ComposedChart>
|
||||
</ResponsiveContainer>
|
||||
) : (
|
||||
<div className="h-full flex items-center justify-center text-muted-foreground">
|
||||
<Trans>No data available for selected time range</Trans>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
)}
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<TabsContent value="history" className="contents">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Recent Checks</CardTitle>
|
||||
<CardDescription>Last 50 monitor checks</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>Time</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Response Time</TableHead>
|
||||
<TableHead>Message</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{heartbeats?.slice(0, 50).map((hb: any) => (
|
||||
<TableRow key={hb.id}>
|
||||
<TableCell>{formatDate(hb.timestamp)}</TableCell>
|
||||
<TableCell>
|
||||
<Badge variant={hb.status === "up" ? "default" : "destructive"}>
|
||||
{hb.status}
|
||||
</Badge>
|
||||
</TableCell>
|
||||
<TableCell>{formatPing(hb.ping)}</TableCell>
|
||||
<TableCell className="max-w-xs truncate">{hb.message || "-"}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
{!heartbeats?.length && (
|
||||
<TableRow>
|
||||
<TableCell colSpan={4} className="text-center py-8 text-muted-foreground">
|
||||
No check history available
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
<div className="grid sm:grid-cols-2 gap-4">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Monitor Details</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-2">
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Type</span>
|
||||
<span className="font-medium">{getMonitorTypeLabel(monitor.type)}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Interval</span>
|
||||
<span className="font-medium">{monitor.interval}s</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Retries</span>
|
||||
<span className="font-medium">{monitor.retries}</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Created</span>
|
||||
<span className="font-medium">{formatDate(monitor.created)}</span>
|
||||
</div>
|
||||
{monitor.last_check && (
|
||||
<div className="flex justify-between">
|
||||
<span className="text-muted-foreground">Last Check</span>
|
||||
<span className="font-medium">{formatDate(monitor.last_check)}</span>
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Status Page</CardTitle>
|
||||
<CardDescription>Link or create a public status page</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-3">
|
||||
{statusPages && statusPages.length > 0 ? (
|
||||
<div className="space-y-2">
|
||||
{statusPages.map((page) => {
|
||||
const isLinked = monitor.status_pages?.includes(page.id) || false
|
||||
return (
|
||||
<div key={page.id} className="flex items-center justify-between py-1">
|
||||
<span className="text-sm">{page.name}</span>
|
||||
<Button
|
||||
variant={isLinked ? "default" : "outline"}
|
||||
size="sm"
|
||||
onClick={() => {
|
||||
const current = monitor.status_pages || []
|
||||
const next = isLinked
|
||||
? current.filter((sp) => sp !== page.id)
|
||||
: [...current, page.id]
|
||||
updateStatusPagesMutation.mutate({
|
||||
id: monitor.id,
|
||||
status_pages: next,
|
||||
} as any)
|
||||
}}
|
||||
>
|
||||
{isLinked ? "Linked" : "Link"}
|
||||
</Button>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
) : (
|
||||
<p className="text-sm text-muted-foreground">No status pages yet.</p>
|
||||
)}
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
className="w-full"
|
||||
onClick={() => setIsCreateStatusPageOpen(true)}
|
||||
>
|
||||
Create Status Page
|
||||
</Button>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Recent Checks</CardTitle>
|
||||
<CardDescription>Last 50 monitor checks</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>Time</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Response Time</TableHead>
|
||||
<TableHead>Message</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{heartbeats?.slice(0, 50).map((hb: any) => (
|
||||
<TableRow key={hb.id}>
|
||||
<TableCell>{formatDate(hb.time || hb.timestamp)}</TableCell>
|
||||
<TableCell>
|
||||
<Badge variant={hb.status === "up" ? "default" : "destructive"}>
|
||||
{hb.status}
|
||||
</Badge>
|
||||
</TableCell>
|
||||
<TableCell>{formatPing(hb.ping)}</TableCell>
|
||||
<TableCell className="max-w-xs truncate">{hb.msg || "-"}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
{!heartbeats?.length && (
|
||||
<TableRow>
|
||||
<TableCell colSpan={4} className="text-center py-8 text-muted-foreground">
|
||||
No check history available
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* Create Status Page Dialog */}
|
||||
{isCreateStatusPageOpen && (
|
||||
<AlertDialog open={isCreateStatusPageOpen} onOpenChange={setIsCreateStatusPageOpen}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>Create Status Page</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
Create a public status page for this monitor.
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<div className="grid gap-4 py-4">
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="sp-name">Name</Label>
|
||||
<Input
|
||||
id="sp-name"
|
||||
value={statusPageName}
|
||||
onChange={(e) => setStatusPageName(e.target.value)}
|
||||
placeholder={`${monitor.name} Status`}
|
||||
/>
|
||||
</div>
|
||||
<div className="grid gap-2">
|
||||
<Label htmlFor="sp-slug">Slug</Label>
|
||||
<Input
|
||||
id="sp-slug"
|
||||
value={statusPageSlug}
|
||||
onChange={(e) => setStatusPageSlug(e.target.value)}
|
||||
placeholder={monitor.name?.toLowerCase().replace(/\s+/g, "-")}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel onClick={() => setIsCreateStatusPageOpen(false)}>Cancel</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={() => createStatusPageMutation.mutate()}
|
||||
disabled={createStatusPageMutation.isPending}
|
||||
>
|
||||
Create
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
)}
|
||||
<AddMonitorDialog
|
||||
open={isEditDialogOpen}
|
||||
onOpenChange={setIsEditDialogOpen}
|
||||
monitor={monitor}
|
||||
isEdit
|
||||
/>
|
||||
|
||||
<AlertDialog open={isDeleteDialogOpen} onOpenChange={setIsDeleteDialogOpen}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>Delete Monitor</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
Are you sure you want to delete this monitor? This action cannot be undone.
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={() => {
|
||||
deleteMutation.mutate()
|
||||
setIsDeleteDialogOpen(false)
|
||||
}}
|
||||
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"
|
||||
>
|
||||
Delete
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
</div>
|
||||
)
|
||||
})
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
import { memo } from "react"
|
||||
import MonitorsTable from "@/components/monitors-table/monitors-table"
|
||||
import DomainsTable from "@/components/domains-table/domains-table"
|
||||
|
||||
const MonitoringPage = memo(function MonitoringPage() {
|
||||
return (
|
||||
<div className="grid gap-8 mb-14">
|
||||
<section>
|
||||
<MonitorsTable />
|
||||
</section>
|
||||
<section>
|
||||
<DomainsTable />
|
||||
</section>
|
||||
</div>
|
||||
)
|
||||
})
|
||||
|
||||
export default MonitoringPage
|
||||
@@ -0,0 +1,17 @@
|
||||
import { memo, useEffect } from "react"
|
||||
import { useLingui } from "@lingui/react/macro"
|
||||
import { StatusPagesTable } from "@/components/status-pages/status-pages-table"
|
||||
|
||||
export default memo(() => {
|
||||
const { t } = useLingui()
|
||||
|
||||
useEffect(() => {
|
||||
document.title = `${t`Status Pages`} / Beszel`
|
||||
}, [t])
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-8">
|
||||
<StatusPagesTable />
|
||||
</div>
|
||||
)
|
||||
})
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { useState } from "react"
|
||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query"
|
||||
import { useToast } from "@/hooks/use-toast"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import {
|
||||
Table,
|
||||
|
||||
@@ -17,12 +17,14 @@ import {
|
||||
import { useVirtualizer, type VirtualItem } from "@tanstack/react-virtual"
|
||||
import {
|
||||
ArrowDownIcon,
|
||||
ArrowUpDownIcon,
|
||||
ArrowUpIcon,
|
||||
EyeIcon,
|
||||
FilterIcon,
|
||||
LayoutGridIcon,
|
||||
LayoutListIcon,
|
||||
PauseIcon,
|
||||
PlusIcon,
|
||||
ServerIcon,
|
||||
Settings2Icon,
|
||||
XIcon,
|
||||
} from "lucide-react"
|
||||
@@ -32,7 +34,6 @@ import {
|
||||
DropdownMenu,
|
||||
DropdownMenuCheckboxItem,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuLabel,
|
||||
DropdownMenuRadioGroup,
|
||||
DropdownMenuRadioItem,
|
||||
@@ -46,6 +47,7 @@ import { $downSystems, $pausedSystems, $systems, $upSystems } from "@/lib/stores
|
||||
import { cn, runOnce, useBrowserStorage } from "@/lib/utils"
|
||||
import type { SystemRecord } from "@/types"
|
||||
import AlertButton from "../alerts/alert-button"
|
||||
import { AddSystemDialog } from "../add-system"
|
||||
import { $router, Link } from "../router"
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "../ui/card"
|
||||
import { SystemsTableColumns, ActionsButton, IndicatorDot } from "./systems-table-columns"
|
||||
@@ -70,6 +72,7 @@ export default function SystemsTable() {
|
||||
)
|
||||
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([])
|
||||
const [columnVisibility, setColumnVisibility] = useBrowserStorage<VisibilityState>("cols", {})
|
||||
const [addSystemDialogOpen, setAddSystemDialogOpen] = useState(false)
|
||||
|
||||
const locale = i18n.locale
|
||||
|
||||
@@ -134,18 +137,45 @@ export default function SystemsTable() {
|
||||
|
||||
const CardHead = useMemo(() => {
|
||||
return (
|
||||
<CardHeader className="p-0 mb-3 sm:mb-4">
|
||||
<div className="grid md:flex gap-x-5 gap-y-3 w-full items-end">
|
||||
<div className="px-2 sm:px-1">
|
||||
<CardTitle className="mb-2">
|
||||
<Trans>All Systems</Trans>
|
||||
</CardTitle>
|
||||
<CardDescription className="flex">
|
||||
<Trans>Click on a system to view more information.</Trans>
|
||||
</CardDescription>
|
||||
<CardHeader className="p-0 pb-5">
|
||||
<div className="flex flex-col gap-4">
|
||||
{/* Title row */}
|
||||
<div className="flex flex-col sm:flex-row sm:items-start justify-between gap-4">
|
||||
<div className="flex-1">
|
||||
<CardTitle className="text-xl mb-2 flex items-center gap-2">
|
||||
<ServerIcon className="h-5 w-5 text-primary" />
|
||||
<Trans>All Systems</Trans>
|
||||
</CardTitle>
|
||||
<CardDescription className="flex flex-wrap items-center gap-x-2 gap-y-1">
|
||||
<Trans>Click on a system to view more information.</Trans>
|
||||
<span className="text-xs text-muted-foreground">
|
||||
({upSystemsLength} <ArrowUpIcon className="inline h-3 w-3 text-green-500" />
|
||||
{downSystemsLength > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{downSystemsLength}{" "}
|
||||
<ArrowDownIcon className="inline h-3 w-3 text-red-500" />
|
||||
</>
|
||||
)}
|
||||
{pausedSystemsLength > 0 && (
|
||||
<>
|
||||
{" "}
|
||||
{pausedSystemsLength}{" "}
|
||||
<PauseIcon className="inline h-3 w-3 text-gray-400" />
|
||||
</>
|
||||
)}
|
||||
/ {data.length})
|
||||
</span>
|
||||
</CardDescription>
|
||||
</div>
|
||||
<Button variant="outline" onClick={() => setAddSystemDialogOpen(true)} className="shrink-0">
|
||||
<PlusIcon className="mr-2 h-4 w-4" />
|
||||
<Trans>Add System</Trans>
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-2 ms-auto w-full md:w-80">
|
||||
{/* Filter row */}
|
||||
<div className="flex flex-col sm:flex-row gap-2">
|
||||
<div className="relative flex-1">
|
||||
<Input
|
||||
placeholder={t`Filter...`}
|
||||
@@ -173,116 +203,61 @@ export default function SystemsTable() {
|
||||
<Trans>View</Trans>
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end" className="h-72 md:h-auto min-w-48 md:min-w-auto overflow-y-auto">
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 divide-y md:divide-s md:divide-y-0">
|
||||
<div className="border-r">
|
||||
<DropdownMenuLabel className="pt-2 px-3.5 flex items-center gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Layout</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuRadioGroup
|
||||
className="px-1 pb-1"
|
||||
value={viewMode}
|
||||
onValueChange={(view) => setViewMode(view as ViewMode)}
|
||||
>
|
||||
<DropdownMenuRadioItem value="table" onSelect={(e) => e.preventDefault()} className="gap-2">
|
||||
<LayoutListIcon className="size-4" />
|
||||
<Trans>Table</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="grid" onSelect={(e) => e.preventDefault()} className="gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Grid</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
</div>
|
||||
<DropdownMenuContent align="end" className="min-w-48">
|
||||
{/* Layout */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Layout</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={viewMode} onValueChange={(view) => setViewMode(view as ViewMode)}>
|
||||
<DropdownMenuRadioItem value="table" className="gap-2">
|
||||
<LayoutListIcon className="size-4" />
|
||||
<Trans>Table</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="grid" className="gap-2">
|
||||
<LayoutGridIcon className="size-4" />
|
||||
<Trans>Grid</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
<div className="border-r">
|
||||
<DropdownMenuLabel className="pt-2 px-3.5 flex items-center gap-2">
|
||||
<FilterIcon className="size-4" />
|
||||
<Trans>Status</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuRadioGroup
|
||||
className="px-1 pb-1"
|
||||
value={statusFilter}
|
||||
onValueChange={(value) => setStatusFilter(value as StatusFilter)}
|
||||
>
|
||||
<DropdownMenuRadioItem value="all" onSelect={(e) => e.preventDefault()}>
|
||||
<Trans>All Systems</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="up" onSelect={(e) => e.preventDefault()}>
|
||||
<Trans>Up ({upSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="down" onSelect={(e) => e.preventDefault()}>
|
||||
<Trans>Down ({downSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="paused" onSelect={(e) => e.preventDefault()}>
|
||||
<Trans>Paused ({pausedSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
</div>
|
||||
{/* Status */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<FilterIcon className="size-4" />
|
||||
<Trans>Status</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuRadioGroup value={statusFilter} onValueChange={(value) => setStatusFilter(value as StatusFilter)}>
|
||||
<DropdownMenuRadioItem value="all">
|
||||
<Trans>All ({data.length})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="up">
|
||||
<Trans>Up ({upSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="down">
|
||||
<Trans>Down ({downSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
<DropdownMenuRadioItem value="paused">
|
||||
<Trans>Paused ({pausedSystemsLength})</Trans>
|
||||
</DropdownMenuRadioItem>
|
||||
</DropdownMenuRadioGroup>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
<div className="border-r">
|
||||
<DropdownMenuLabel className="pt-2 px-3.5 flex items-center gap-2">
|
||||
<ArrowUpDownIcon className="size-4" />
|
||||
<Trans>Sort By</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuSeparator />
|
||||
<div className="px-1 pb-1">
|
||||
{columns.map((column) => {
|
||||
if (!column.getCanSort()) return null
|
||||
let Icon = <span className="w-6"></span>
|
||||
// if current sort column, show sort direction
|
||||
if (sorting[0]?.id === column.id) {
|
||||
if (sorting[0]?.desc) {
|
||||
Icon = <ArrowUpIcon className="me-2 size-4" />
|
||||
} else {
|
||||
Icon = <ArrowDownIcon className="me-2 size-4" />
|
||||
}
|
||||
}
|
||||
return (
|
||||
<DropdownMenuItem
|
||||
onSelect={(e) => {
|
||||
e.preventDefault()
|
||||
setSorting([{ id: column.id, desc: sorting[0]?.id === column.id && !sorting[0]?.desc }])
|
||||
}}
|
||||
key={column.id}
|
||||
>
|
||||
{Icon}
|
||||
{/* @ts-ignore */}
|
||||
{column.columnDef.name()}
|
||||
</DropdownMenuItem>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<DropdownMenuLabel className="pt-2 px-3.5 flex items-center gap-2">
|
||||
<EyeIcon className="size-4" />
|
||||
<Trans>Visible Fields</Trans>
|
||||
</DropdownMenuLabel>
|
||||
<DropdownMenuSeparator />
|
||||
<div className="px-1.5 pb-1">
|
||||
{columns
|
||||
.filter((column) => column.getCanHide())
|
||||
.map((column) => {
|
||||
return (
|
||||
<DropdownMenuCheckboxItem
|
||||
key={column.id}
|
||||
onSelect={(e) => e.preventDefault()}
|
||||
checked={column.getIsVisible()}
|
||||
onCheckedChange={(value) => column.toggleVisibility(!!value)}
|
||||
>
|
||||
{/* @ts-ignore */}
|
||||
{column.columnDef.name()}
|
||||
</DropdownMenuCheckboxItem>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* Columns */}
|
||||
<DropdownMenuLabel className="flex items-center gap-2">
|
||||
<EyeIcon className="size-4" />
|
||||
<Trans>Columns</Trans>
|
||||
</DropdownMenuLabel>
|
||||
{columns.map((column) => (
|
||||
<DropdownMenuCheckboxItem
|
||||
key={column.id}
|
||||
checked={column.getIsVisible()}
|
||||
onCheckedChange={(value) => column.toggleVisibility(!!value)}
|
||||
onSelect={(e) => e.preventDefault()}
|
||||
className="gap-2"
|
||||
>
|
||||
{column.columnDef.header?.toString() ?? column.id}
|
||||
</DropdownMenuCheckboxItem>
|
||||
))}
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</div>
|
||||
@@ -298,32 +273,37 @@ export default function SystemsTable() {
|
||||
upSystemsLength,
|
||||
downSystemsLength,
|
||||
pausedSystemsLength,
|
||||
data.length,
|
||||
filter,
|
||||
setAddSystemDialogOpen,
|
||||
])
|
||||
|
||||
return (
|
||||
<Card className="w-full px-3 py-5 sm:py-6 sm:px-6">
|
||||
{CardHead}
|
||||
{viewMode === "table" ? (
|
||||
// table layout
|
||||
<div className="rounded-md">
|
||||
<AllSystemsTable table={table} rows={rows} colLength={visibleColumns.length} />
|
||||
</div>
|
||||
) : (
|
||||
// grid layout
|
||||
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{rows?.length ? (
|
||||
rows.map((row) => {
|
||||
return <SystemCard key={row.original.id} row={row} table={table} colLength={visibleColumns.length} />
|
||||
})
|
||||
) : (
|
||||
<div className="col-span-full text-center py-8">
|
||||
<Trans>No systems found.</Trans>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</Card>
|
||||
<>
|
||||
<Card className="w-full px-3 py-5 sm:py-6 sm:px-6">
|
||||
{CardHead}
|
||||
{viewMode === "table" ? (
|
||||
// table layout
|
||||
<div className="rounded-md">
|
||||
<AllSystemsTable table={table} rows={rows} colLength={visibleColumns.length} />
|
||||
</div>
|
||||
) : (
|
||||
// grid layout
|
||||
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{rows?.length ? (
|
||||
rows.map((row) => {
|
||||
return <SystemCard key={row.original.id} row={row} table={table} colLength={visibleColumns.length} />
|
||||
})
|
||||
) : (
|
||||
<div className="col-span-full text-center py-8">
|
||||
<Trans>No systems found.</Trans>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</Card>
|
||||
<AddSystemDialog open={addSystemDialogOpen} setOpen={setAddSystemDialogOpen} />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -13,9 +13,10 @@ const SelectValue = SelectPrimitive.Value
|
||||
const SelectTrigger = React.forwardRef<
|
||||
React.ElementRef<typeof SelectPrimitive.Trigger>,
|
||||
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>
|
||||
>(({ className, children, ...props }, ref) => (
|
||||
>(({ className, children, tabIndex = 0, ...props }, ref) => (
|
||||
<SelectPrimitive.Trigger
|
||||
ref={ref}
|
||||
tabIndex={tabIndex}
|
||||
className={cn(
|
||||
"flex h-10 w-full items-center justify-between rounded-md border bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
|
||||
className
|
||||
|
||||
@@ -12,14 +12,22 @@ export interface Domain {
|
||||
registrar_name?: string
|
||||
registrar_id?: string
|
||||
registrar_url?: string
|
||||
registry_domain_id?: string
|
||||
name_servers?: string[]
|
||||
mx_records?: string[]
|
||||
txt_records?: string[]
|
||||
ipv4_addresses?: string[]
|
||||
ipv6_addresses?: string[]
|
||||
dnssec?: string
|
||||
ssl_issuer?: string
|
||||
ssl_issuer_country?: string
|
||||
ssl_subject?: string
|
||||
ssl_valid_from?: string
|
||||
ssl_valid_to?: string
|
||||
ssl_days_until?: number
|
||||
ssl_key_size?: number
|
||||
ssl_signature_algo?: string
|
||||
ssl_fingerprint?: string
|
||||
host_country?: string
|
||||
host_isp?: string
|
||||
purchase_price?: number
|
||||
@@ -28,12 +36,57 @@ export interface Domain {
|
||||
auto_renew: boolean
|
||||
alert_days_before: number
|
||||
ssl_alert_enabled: boolean
|
||||
registrant_name?: string
|
||||
registrant_org?: string
|
||||
registrant_country?: string
|
||||
registrant_city?: string
|
||||
registrant_state?: string
|
||||
abuse_email?: string
|
||||
abuse_phone?: string
|
||||
tags?: string[]
|
||||
notes?: string
|
||||
favicon_url?: string
|
||||
last_checked?: string
|
||||
created: string
|
||||
updated: string
|
||||
whois_server?: string
|
||||
whois_updated?: string
|
||||
whois_status?: string
|
||||
whois_registrar?: string
|
||||
whois_registrant_name?: string
|
||||
whois_registrant_org?: string
|
||||
whois_registrant_country?: string
|
||||
whois_registrant_city?: string
|
||||
whois_registrant_state?: string
|
||||
whois_admin_name?: string
|
||||
whois_admin_org?: string
|
||||
whois_admin_country?: string
|
||||
whois_admin_city?: string
|
||||
whois_admin_state?: string
|
||||
whois_tech_name?: string
|
||||
whois_tech_org?: string
|
||||
whois_tech_country?: string
|
||||
whois_tech_city?: string
|
||||
whois_tech_state?: string
|
||||
ssl_subject_alt_names?: string[]
|
||||
ssl_san_count?: number
|
||||
ssl_cert_type?: string
|
||||
ssl_cert_issuer?: string
|
||||
ssl_cert_serial_number?: string
|
||||
ssl_cert_valid_from?: string
|
||||
ssl_cert_valid_to?: string
|
||||
ssl_cert_days_until?: number
|
||||
ssl_cert_key_size?: number
|
||||
ssl_cert_signature_algo?: string
|
||||
ssl_cert_fingerprint?: string
|
||||
dns_a_records?: string[]
|
||||
dns_aaaa_records?: string[]
|
||||
dns_ns_records?: string[]
|
||||
dns_mx_records?: string[]
|
||||
dns_txt_records?: string[]
|
||||
dns_spf_records?: string[]
|
||||
dns_dkim_records?: string[]
|
||||
dns_dmarc_records?: string[]
|
||||
}
|
||||
|
||||
export interface DomainHistory {
|
||||
@@ -250,10 +303,27 @@ export function formatDate(dateString?: string): string {
|
||||
}
|
||||
|
||||
export function formatDays(days?: number): string {
|
||||
if (days === undefined || days === null) return "Unknown"
|
||||
if (days === undefined || days === null || days === -1) return "Unknown"
|
||||
if (days < 0) return "Expired"
|
||||
if (days === 0) return "Today"
|
||||
if (days === 1) return "1 day"
|
||||
if (days >= 365) {
|
||||
const years = Math.floor(days / 365)
|
||||
const remaining = days % 365
|
||||
if (remaining >= 30) {
|
||||
const months = Math.floor(remaining / 30)
|
||||
return `${years}y ${months}m`
|
||||
}
|
||||
return `${years}y`
|
||||
}
|
||||
if (days >= 30) {
|
||||
const months = Math.floor(days / 30)
|
||||
const remaining = days % 30
|
||||
if (remaining > 0) {
|
||||
return `${months}m ${remaining}d`
|
||||
}
|
||||
return `${months}m`
|
||||
}
|
||||
return `${days} days`
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,37 @@
|
||||
import { pb } from "./api.ts"
|
||||
|
||||
export type MonitorType = "http" | "https" | "tcp" | "ping" | "dns" | "keyword" | "json-query" | "docker"
|
||||
export type MonitorType =
|
||||
| "http"
|
||||
| "https"
|
||||
| "tcp"
|
||||
| "ping"
|
||||
| "dns"
|
||||
| "keyword"
|
||||
| "json-query"
|
||||
| "docker"
|
||||
| "push"
|
||||
| "manual"
|
||||
| "system-service"
|
||||
| "real-browser"
|
||||
| "grpc-keyword"
|
||||
| "mqtt"
|
||||
| "rabbitmq"
|
||||
| "kafka-producer"
|
||||
| "smtp"
|
||||
| "snmp"
|
||||
| "sip-options"
|
||||
| "tailscale-ping"
|
||||
| "websocket-upgrade"
|
||||
| "globalping"
|
||||
| "mysql"
|
||||
| "mongodb"
|
||||
| "redis"
|
||||
| "postgresql"
|
||||
| "sqlserver"
|
||||
| "oracledb"
|
||||
| "radius"
|
||||
| "gamedig"
|
||||
| "steam"
|
||||
|
||||
export type MonitorStatus = "up" | "down" | "pending" | "paused" | "maintenance"
|
||||
|
||||
@@ -30,6 +61,19 @@ export interface Monitor {
|
||||
cert_expiry_notification?: boolean
|
||||
cert_expiry_days?: number
|
||||
ignore_tls_error?: boolean
|
||||
// Notification settings
|
||||
notify_on_down?: boolean
|
||||
notify_on_recover?: boolean
|
||||
notify_on_response_time?: boolean
|
||||
response_time_threshold?: number
|
||||
notify_on_uptime_drop?: boolean
|
||||
uptime_threshold?: number
|
||||
notify_repeated_failures?: boolean
|
||||
consecutive_failures?: number
|
||||
quiet_hours_enabled?: boolean
|
||||
quiet_hours_start?: string
|
||||
quiet_hours_end?: string
|
||||
status_pages?: string[]
|
||||
created: string
|
||||
updated: string
|
||||
}
|
||||
@@ -79,6 +123,24 @@ export interface CreateMonitorRequest {
|
||||
cert_expiry_notification?: boolean
|
||||
cert_expiry_days?: number
|
||||
ignore_tls_error?: boolean
|
||||
// Notification settings
|
||||
notify_on_down?: boolean
|
||||
notify_on_recover?: boolean
|
||||
notify_on_response_time?: boolean
|
||||
response_time_threshold?: number
|
||||
notify_on_uptime_drop?: boolean
|
||||
uptime_threshold?: number
|
||||
notify_repeated_failures?: boolean
|
||||
consecutive_failures?: number
|
||||
quiet_hours_enabled?: boolean
|
||||
quiet_hours_start?: string
|
||||
quiet_hours_end?: string
|
||||
// Database / network extra fields
|
||||
db_username?: string
|
||||
db_password?: string
|
||||
db_name?: string
|
||||
mqtt_topic?: string
|
||||
grpc_keyword?: string
|
||||
}
|
||||
|
||||
export interface UpdateMonitorRequest {
|
||||
@@ -106,6 +168,24 @@ export interface UpdateMonitorRequest {
|
||||
cert_expiry_notification?: boolean
|
||||
cert_expiry_days?: number
|
||||
ignore_tls_error?: boolean
|
||||
// Notification settings
|
||||
notify_on_down?: boolean
|
||||
notify_on_recover?: boolean
|
||||
notify_on_response_time?: boolean
|
||||
response_time_threshold?: number
|
||||
notify_on_uptime_drop?: boolean
|
||||
uptime_threshold?: number
|
||||
notify_repeated_failures?: boolean
|
||||
consecutive_failures?: number
|
||||
quiet_hours_enabled?: boolean
|
||||
quiet_hours_start?: string
|
||||
quiet_hours_end?: string
|
||||
// Database / network extra fields
|
||||
db_username?: string
|
||||
db_password?: string
|
||||
db_name?: string
|
||||
mqtt_topic?: string
|
||||
grpc_keyword?: string
|
||||
}
|
||||
|
||||
export interface CheckResult {
|
||||
@@ -185,6 +265,29 @@ export function getMonitorTypeLabel(type: MonitorType): string {
|
||||
keyword: "HTTP Keyword",
|
||||
"json-query": "HTTP JSON",
|
||||
docker: "Docker Container",
|
||||
push: "Push",
|
||||
manual: "Manual",
|
||||
"system-service": "System Service",
|
||||
"real-browser": "Browser Engine (Beta)",
|
||||
"grpc-keyword": "gRPC Keyword",
|
||||
mqtt: "MQTT",
|
||||
rabbitmq: "RabbitMQ",
|
||||
"kafka-producer": "Kafka Producer",
|
||||
smtp: "SMTP",
|
||||
snmp: "SNMP",
|
||||
"sip-options": "SIP Options Ping",
|
||||
"tailscale-ping": "Tailscale Ping",
|
||||
"websocket-upgrade": "WebSocket Upgrade",
|
||||
globalping: "Globalping",
|
||||
mysql: "MySQL / MariaDB",
|
||||
mongodb: "MongoDB",
|
||||
redis: "Redis",
|
||||
postgresql: "PostgreSQL",
|
||||
sqlserver: "Microsoft SQL Server",
|
||||
oracledb: "Oracle DB",
|
||||
radius: "RADIUS",
|
||||
gamedig: "GameDig",
|
||||
steam: "Steam API",
|
||||
}
|
||||
return labels[type] || type
|
||||
}
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "نشط"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "التنبيهات النشطة"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "الحالة النشطة"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "إضافة {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "إضافة رابط"
|
||||
@@ -191,6 +203,15 @@ msgstr "سجل التنبيهات"
|
||||
msgid "Alerts"
|
||||
msgstr "التنبيهات"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "جميع الحاويات"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "جميع الأنظمة"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "جميع الأنظمة"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "هل أنت متأكد أنك تريد حذف {name}؟"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "هل أنت متأكد؟"
|
||||
@@ -340,6 +364,12 @@ msgstr "بايت (كيلوبايت/ثانية، ميجابايت/ثانية، ج
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "ذاكرة التخزين المؤقت / المخازن المؤقتة"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "يمكن إعادة التحميل"
|
||||
@@ -352,6 +382,7 @@ msgstr "يمكن البدء"
|
||||
msgid "Can stop"
|
||||
msgstr "يمكن الإيقاف"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "درجة مئوية (°م)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "تحقق من {email} للحصول على رابط إعادة التعيين."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "انقر على نظام لعرض مزيد من المعلومات."
|
||||
msgid "Click to copy"
|
||||
msgstr "انقر للنسخ"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "افتراضي"
|
||||
msgid "Default time period"
|
||||
msgstr "الفترة الزمنية الافتراضية"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "الفترة الزمنية الافتراضية"
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "حذف البصمة"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "إدخال/إخراج الشبكة للدوكر"
|
||||
msgid "Documentation"
|
||||
msgstr "التوثيق"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "التوثيق"
|
||||
msgid "Down"
|
||||
msgstr "معطل"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "معطل ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "خرج نشطًا"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "ينتهي بعد ساعة واحدة أو عند إعادة تشغيل المحور."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "تصدير"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "فشل: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "عام"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "استهلاك طاقة وحدة معالجة الرسوميات"
|
||||
msgid "GPU Usage"
|
||||
msgstr "استخدام وحدة معالجة الرسوميات"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "شبكة"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "الصحة"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "تم إرسال نبضة القلب بنجاح"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "أمر Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "مضيف / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "صورة"
|
||||
msgid "Inactive"
|
||||
msgstr "غير نشط"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "الفاصل الزمني"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "اللغة"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "التخطيط"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "حالة التحميل"
|
||||
msgid "Loading..."
|
||||
msgstr "جاري التحميل..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "هل تبحث عن مكان لإنشاء التنبيهات؟ انقر
|
||||
msgid "Main PID"
|
||||
msgstr "معرف العملية الرئيسي"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "إدارة تفضيلات العرض والإشعارات."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "وحدة الشبكة"
|
||||
msgid "No"
|
||||
msgstr "لا"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "الإشعارات"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "أخرى"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "الكتابة فوق التنبيهات الحالية"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "صفحة {0} من {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "الصفحات / الإعدادات"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "كلمة المرور"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "إيقاف مؤقت"
|
||||
msgid "Paused"
|
||||
msgstr "متوقف مؤقتا"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "متوقف مؤقتا ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "متوقف مؤقتا ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "تنسيق الحمولة"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "استئناف"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "بحث"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "البحث عن الأنظمة أو الإعدادات..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "البحث عن الأنظمة أو الإعدادات..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "أرسل pings صادرة دورية إلى خدمة مراقبة خار
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "إرسال نبضة قلب اختبارية"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "تم الإرسال"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "إعدادات SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "الترتيب حسب"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "الترتيب حسب"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "الحالة"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "الحالة"
|
||||
msgid "Status"
|
||||
msgstr "الحالة"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "الحالة الفرعية"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "الأنظمة"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "يمكن إدارة الأنظمة في ملف <0>config.yml</0> داخل دليل البيانات الخاص بك."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "جدول"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "الإجمالي: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "تم التفعيل بواسطة"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "رمز مميز عالمي"
|
||||
msgid "Unknown"
|
||||
msgstr "غير معروفة"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "غير محدود"
|
||||
msgid "Up"
|
||||
msgstr "قيد التشغيل"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "قيد التشغيل ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "استخدام القسم الجذر"
|
||||
msgid "Used"
|
||||
msgstr "مستخدم"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "الاستخدام"
|
||||
msgid "Value"
|
||||
msgstr "القيمة"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "عرض"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "عرض أحدث 200 تنبيه."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "الأعمدة الظاهرة"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "الأعمدة الظاهرة"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "عند التفعيل، يسمح هذا الرمز المميز للوك
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "عند استخدام POST، تتضمن كل نبضة قلب حمولة JSON مع ملخص حالة النظام وقائمة الأنظمة المعطلة والتنبيهات التي تم تشغيلها."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активен"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Активни тревоги"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Активно състояние"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Добави {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Добави URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "История на нотификациите"
|
||||
msgid "Alerts"
|
||||
msgstr "Тревоги"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Всички контейнери"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Всички системи"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Всички системи"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Сигурен ли си, че искаш да изтриеш {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Сигурни ли сте?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Байта (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Кеш / Буфери"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Може да се презареди"
|
||||
@@ -352,6 +382,7 @@ msgstr "Може да се стартира"
|
||||
msgid "Can stop"
|
||||
msgstr "Може да се спре"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Целзий (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Провери {email} за линк за нулиране."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Кликнете върху система, за да видите по
|
||||
msgid "Click to copy"
|
||||
msgstr "Настисни за да копираш"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Подредба"
|
||||
msgid "Default time period"
|
||||
msgstr "Времеви диапазон по подразбиране"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Времеви диапазон по подразбиране"
|
||||
msgid "Delete"
|
||||
msgstr "Изтрий"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Изтрий пръстов отпечатък"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Показване"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Мрежов I/O използван от docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Документация"
|
||||
msgid "Down"
|
||||
msgstr "Офлайн"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Офлайн ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Излезе активно"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Изтича след един час или при рестартиране на хъба."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Експортиране"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Неуспешни: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Общо"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Консумация на ток от графична карта"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Употреба на GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Мрежово"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Здраве"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat е изпратен успешно"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Команда Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Хост / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Образ"
|
||||
msgid "Inactive"
|
||||
msgstr "Неактивен"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Интервал"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Език"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Подреждане"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Състояние на зареждане"
|
||||
msgid "Loading..."
|
||||
msgstr "Зареждане..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Търсиш къде да създадеш тревоги? Натисн
|
||||
msgid "Main PID"
|
||||
msgstr "Главен PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Управление на предпочитанията за показване и уведомяване."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Единица за измерване на скорост"
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Нотификации"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Други"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Презапиши съществуващи тревоги"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Страница {0} от {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Страници / Настройки"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Пауза"
|
||||
msgid "Paused"
|
||||
msgstr "На пауза"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "На пауза ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "На пауза ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Формат на полезния товар"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Възобнови"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Търси"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Търси за системи или настройки..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Търси за системи или настройки..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Изпращайте периодични изходящи пингов
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Изпращане на тестов heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Изпратени"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Настройки за SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Сортиране по"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Сортиране по"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Състояние"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Състояние"
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Подсъстояние"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Системи"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Системите могат да бъдат управлявани в <0>config.yml</0> файл намиращ се в директорията с данни."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Таблица"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Общо: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Активиран от"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Универсален тоукън"
|
||||
msgid "Unknown"
|
||||
msgstr "Неизвестна"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Неограничено"
|
||||
msgid "Up"
|
||||
msgstr "Нагоре"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Нагоре ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Употреба на root partition-а"
|
||||
msgid "Used"
|
||||
msgstr "Използвани"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Натоварване"
|
||||
msgid "Value"
|
||||
msgstr "Стойност"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Изглед"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Прегледайте последните си 200 сигнала."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Видими полета"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Видими полета"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Когато е активиран, този токен позволяв
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "При използване на POST, всеки heartbeat включва JSON полезен товар с резюме на състоянието на системата, списък на спрените системи и задействаните предупреждения."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktivní výstrahy"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktivní stav"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Přidat {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Přidat URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Historie upozornění"
|
||||
msgid "Alerts"
|
||||
msgstr "Výstrahy"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Všechny kontejnery"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Všechny systémy"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Všechny systémy"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Opravdu chcete odstranit {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Jste si jistý?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Byty (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / vyrovnávací paměť"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Může znovu načíst"
|
||||
@@ -352,6 +382,7 @@ msgstr "Může spustit"
|
||||
msgid "Can stop"
|
||||
msgstr "Může zastavit"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Celsia (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Zkontrolujte {email} pro odkaz na obnovení."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klikněte na systém pro zobrazení více informací."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klikněte pro zkopírování"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Výchozí"
|
||||
msgid "Default time period"
|
||||
msgstr "Výchozí doba"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Výchozí doba"
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Smazat identifikátor"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Zobrazení"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Síťové I/O Dockeru"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentace"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentace"
|
||||
msgid "Down"
|
||||
msgstr "Nefunkční"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nefunkční ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Ukončeno aktivně"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Vyprší po jedné hodině nebo při restartu hubu."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportovat"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Neúspěšné: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Obecné"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Spotřeba energie GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Využití GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Mřížka"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Zdraví"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat úspěšně odeslán"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew příkaz"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Hostitel / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Obraz"
|
||||
msgid "Inactive"
|
||||
msgstr "Neaktivní"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Rozvržení"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Stav načtení"
|
||||
msgid "Loading..."
|
||||
msgstr "Načítání..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Hledáte místo kde vytvářet upozornění? Klikněte na ikonu zvonku <
|
||||
msgid "Main PID"
|
||||
msgstr "Hlavní PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Správa nastavení zobrazení a oznámení."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Síťová jednotka"
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Upozornění"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Jiné"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Přepsat existující upozornění"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Stránka {0} z {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Stránky / Nastavení"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pozastavit"
|
||||
msgid "Paused"
|
||||
msgstr "Pozastaveno"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pozastaveno ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pozastaveno ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Formát payloadu"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Pokračovat"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Hledat"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Hledat systémy nebo nastavení..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Hledat systémy nebo nastavení..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Odesílejte periodické odchozí pingy na externí monitorovací službu
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Odeslat testovací heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Odeslat"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Nastavení SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Seřadit podle"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Seřadit podle"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Stav"
|
||||
msgid "Status"
|
||||
msgstr "Stav"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Podstav"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systémy"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systémy lze spravovat v souboru <0>config.yml</0> uvnitř datového adresáře."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabulka"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Celkem: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Spuštěno službou"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Univerzální token"
|
||||
msgid "Unknown"
|
||||
msgstr "Neznámá"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Neomezeno"
|
||||
msgid "Up"
|
||||
msgstr "Funkční"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Funkční ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Využití kořenového oddílu"
|
||||
msgid "Used"
|
||||
msgstr "Využito"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Využití"
|
||||
msgid "Value"
|
||||
msgstr "Hodnota"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Zobrazení"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Zobrazit vašich 200 nejnovějších upozornění."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Viditelné sloupce"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Viditelné sloupce"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Pokud je povoleno, umožňuje tento token agentům samo-registraci bez p
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Při použití metody POST obsahuje každý heartbeat JSON payload se souhrnem stavu systému, seznamem nefunkčních systémů a spuštěnými výstrahami."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktive Alarmer"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktiv tilstand"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Tilføj {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Tilføj URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Advarselshistorik"
|
||||
msgid "Alerts"
|
||||
msgstr "Alarmer"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Alle containere"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Alle systemer"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Alle systemer"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Er du sikker på, at du vil slette {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Er du sikker?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Buffere"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Kan genindlæse"
|
||||
@@ -352,6 +382,7 @@ msgstr "Kan starte"
|
||||
msgid "Can stop"
|
||||
msgstr "Kan stoppe"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Tjek {email} for et nulstillingslink."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klik på et system for at se mere information."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klik for at kopiere"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Standard"
|
||||
msgid "Default time period"
|
||||
msgstr "Standard tidsperiode"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standard tidsperiode"
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Slet fingeraftryk"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Visning"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker Netværk I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentation"
|
||||
msgid "Down"
|
||||
msgstr "Nede"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nede ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Afsluttet aktiv"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Udløber efter en time eller ved hub-genstart."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Eksporter"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Mislykkedes: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Generelt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU Strøm Træk"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU-forbrug"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Gitter"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Sundhed"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat sendt succesfuldt"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew-kommando"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Vært / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Billede"
|
||||
msgid "Inactive"
|
||||
msgstr "Inaktiv"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Sprog"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Opstilling"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Indlæsningstilstand"
|
||||
msgid "Loading..."
|
||||
msgstr "Indlæser..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Leder du i stedet for efter hvor du kan oprette alarmer? Klik på klokke
|
||||
msgid "Main PID"
|
||||
msgstr "Primær PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Administrer display og notifikationsindstillinger."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Netværksenhed"
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Notifikationer"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Andre"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Overskriv eksisterende alarmer"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Side {0} af {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Sider / Indstillinger"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr ""
|
||||
msgid "Paused"
|
||||
msgstr "Sat på pause"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Sat på pause ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Sat på pause ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload-format"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Genoptag"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Søg"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Søg efter systemer eller indstillinger..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Søg efter systemer eller indstillinger..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Send periodiske udgående pings til en ekstern overvågningstjeneste, s
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Send test-heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Sendt"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP-indstillinger"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sorter efter"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sorter efter"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Tilstand"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Undertilstand"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systemer"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systemer kan være administreres i filen <0>config.yml</0> i din datamappe."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "I alt: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Udløst af"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Universalnøgle"
|
||||
msgid "Unknown"
|
||||
msgstr "Ukendt"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Ubegrænset"
|
||||
msgid "Up"
|
||||
msgstr "Oppe"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Oppe ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Brug af rodpartition"
|
||||
msgid "Used"
|
||||
msgstr "Brugt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Udnyttelse"
|
||||
msgid "Value"
|
||||
msgstr "Værdi"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Vis"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Se dine 200 nyeste alarmer."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Synlige felter"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Synlige felter"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Når aktiveret, tillader denne token agenter at registrere sig selv uden
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Når du bruger POST, inkluderer hvert heartbeat en JSON-payload med resumé af systemstatus, liste over systemer, der er nede, og udløste alarmer."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktive Warnungen"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktiver Zustand"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "{foo} hinzufügen"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "URL hinzufügen"
|
||||
@@ -191,6 +203,15 @@ msgstr "Warnungsverlauf"
|
||||
msgid "Alerts"
|
||||
msgstr "Warnungen"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Alle Container"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Alle Systeme"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Alle Systeme"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Möchtest du {name} wirklich löschen?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Bist du sicher?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Puffer"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Kann neu laden"
|
||||
@@ -352,6 +382,7 @@ msgstr "Kann starten"
|
||||
msgid "Can stop"
|
||||
msgstr "Kann stoppen"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Überprüfe {email} auf einen Link zum Zurücksetzen."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klicke auf ein System, um weitere Informationen zu sehen."
|
||||
msgid "Click to copy"
|
||||
msgstr "Zum Kopieren klicken"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Standard"
|
||||
msgid "Default time period"
|
||||
msgstr "Standardzeitraum"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standardzeitraum"
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Fingerabdruck löschen"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Anzeige"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker-Netzwerk-I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentation"
|
||||
msgid "Down"
|
||||
msgstr "Inaktiv"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Inaktiv ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Beendet aktiv"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Läuft nach einer Stunde oder bei Hub-Neustart ab."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Fehlgeschlagen: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU-Leistungsaufnahme"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU-Auslastung"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Raster"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Gesundheit"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat erfolgreich gesendet"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew-Befehl"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr ""
|
||||
msgid "Inactive"
|
||||
msgstr "Inaktiv"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervall"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Anordnung"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Ladezustand"
|
||||
msgid "Loading..."
|
||||
msgstr "Lädt..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Du möchtest neue Warnungen erstellen? Klicke dafür auf die Glocken-<0/
|
||||
msgid "Main PID"
|
||||
msgstr "Haupt-PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Anzeige- und Benachrichtigungseinstellungen verwalten."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Netzwerkeinheit"
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Benachrichtigungen"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Andere"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Bestehende Warnungen überschreiben"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Seite {0} von {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Seiten / Einstellungen"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr ""
|
||||
msgid "Paused"
|
||||
msgstr "Pausiert"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pausiert ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pausiert ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload-Format"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Fortsetzen"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Nach Systemen oder Einstellungen suchen..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Nach Systemen oder Einstellungen suchen..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Senden Sie regelmäßige ausgehende Pings an einen externen Überwachung
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Test-Heartbeat senden"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Gesendet"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP-Einstellungen"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sortieren nach"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sortieren nach"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Status"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Unterzustand"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systeme"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systeme können in einer <0>config.yml</0>-Datei im Datenverzeichnis verwaltet werden."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabelle"
|
||||
@@ -1944,6 +2137,10 @@ msgstr "Gesamtzeit für Lese-/Schreibvorgänge (kann 100% überschreiten)"
|
||||
msgid "Total: {0}"
|
||||
msgstr "Gesamt: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Ausgelöst von"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Universeller Token"
|
||||
msgid "Unknown"
|
||||
msgstr "Unbekannt"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Unbegrenzt"
|
||||
msgid "Up"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Aktiv ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Nutzung der Root-Partition"
|
||||
msgid "Used"
|
||||
msgstr "Verwendet"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Auslastung"
|
||||
msgid "Value"
|
||||
msgstr "Wert"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Ansicht"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Sieh dir die neusten 200 Alarme an."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Sichtbare Spalten"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Sichtbare Spalten"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Wenn aktiviert, ermöglicht dieser Token Agenten die Selbstregistrierung
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Bei Verwendung von POST enthält jeder Heartbeat eine JSON-Payload mit einer Zusammenfassung des Systemstatus, einer Liste der ausgefallenen Systeme und ausgelösten Warnungen."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -112,6 +112,11 @@ msgstr "active"
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr "Active ({0})"
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Active Alerts"
|
||||
@@ -121,22 +126,29 @@ msgid "Active state"
|
||||
msgstr "Active state"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
#~ msgid "Add"
|
||||
#~ msgstr "Add"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Add {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr "Add Domain"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr "Add Monitor"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr "Add System"
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Add URL"
|
||||
@@ -186,6 +198,15 @@ msgstr "Alert History"
|
||||
msgid "Alerts"
|
||||
msgstr "Alerts"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr "All ({0})"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -198,7 +219,6 @@ msgstr "All Containers"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "All Systems"
|
||||
|
||||
@@ -206,6 +226,10 @@ msgstr "All Systems"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Are you sure you want to delete {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Are you sure?"
|
||||
@@ -335,6 +359,12 @@ msgstr "Bytes (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Buffers"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr "Calendar"
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Can reload"
|
||||
@@ -347,6 +377,7 @@ msgstr "Can start"
|
||||
msgid "Can stop"
|
||||
msgstr "Can stop"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -371,8 +402,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Celsius (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -404,8 +435,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Check {email} for a reset link."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr "Check History"
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr "Check History"
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -445,6 +476,10 @@ msgstr "Click on a system to view more information."
|
||||
msgid "Click to copy"
|
||||
msgstr "Click to copy"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr "Columns"
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -622,8 +657,16 @@ msgid "data.status"
|
||||
msgstr "data.status"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgstr "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr "Database Connection"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr "Database Name"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr "Days before expiry to notify"
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
@@ -634,6 +677,7 @@ msgstr "Default"
|
||||
msgid "Default time period"
|
||||
msgstr "Default time period"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -643,6 +687,10 @@ msgstr "Default time period"
|
||||
msgid "Delete"
|
||||
msgstr "Delete"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr "Delete Domain"
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Delete fingerprint"
|
||||
@@ -694,8 +742,8 @@ msgid "Display"
|
||||
msgstr "Display"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr "DNS Records"
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr "DNS Records"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -718,6 +766,18 @@ msgstr "Docker Network I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr "Domain and SSL expiry calendar"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr "Domain Monitoring"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr "Domains"
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -726,6 +786,11 @@ msgstr "Documentation"
|
||||
msgid "Down"
|
||||
msgstr "Down"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr "Down ({0})"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Down ({downSystemsLength})"
|
||||
@@ -846,10 +911,20 @@ msgstr "Exited active"
|
||||
msgid "Expected Value"
|
||||
msgstr "Expected Value"
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr "Expired ({0})"
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Expires after one hour or on hub restart."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr "Expiring ({0})"
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
@@ -909,6 +984,14 @@ msgstr "Failed to update monitor"
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Failed: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr "Filter domains..."
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr "Filter monitors..."
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -953,8 +1036,8 @@ msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr "General notification settings will be configured in the Notifications tab."
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -976,15 +1059,25 @@ msgstr "GPU Power Draw"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU Usage"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr "gRPC Keyword"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr "Headers (JSON)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr "health"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Health"
|
||||
@@ -1002,8 +1095,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat sent successfully"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr "History"
|
||||
#~ msgid "History"
|
||||
#~ msgstr "History"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1011,6 +1104,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew command"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr "Host / Connection String"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Host / IP"
|
||||
@@ -1069,6 +1166,13 @@ msgstr "Image"
|
||||
msgid "Inactive"
|
||||
msgstr "Inactive"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr "Incidents"
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Interval"
|
||||
@@ -1098,6 +1202,8 @@ msgstr "Keyword to Search"
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@@ -1145,6 +1251,10 @@ msgstr "Load state"
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr "localhost:3306"
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1173,10 +1283,19 @@ msgstr "Looking instead for where to create alerts? Click the bell <0/> icons in
|
||||
msgid "Main PID"
|
||||
msgstr "Main PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr "Maintenance ({0})"
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Manage display and notification preferences."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr "Manage public status pages"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1238,6 +1357,24 @@ msgstr "Monitor updated successfully"
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr "Monitor websites, APIs, and services"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr "Monitoring"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr "Monitors"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr "MQTT Topic"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr "mydb"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1278,13 +1415,21 @@ msgstr "Network unit"
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr "No data available for selected time range"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr "No monitors configured yet."
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgstr "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr "No monitors match your filters."
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr "No monitors match your search."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1317,8 +1462,8 @@ msgid "Notifications"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr "Notify when certificate expires"
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr "Notify when certificate expires"
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1359,13 +1504,17 @@ msgstr "Other"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr "Overview"
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr "Overview"
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Overwrite existing alerts"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1382,8 +1531,13 @@ msgstr "Page {0} of {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Pages / Settings"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr "password"
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
@@ -1412,6 +1566,11 @@ msgstr "Pause"
|
||||
msgid "Paused"
|
||||
msgstr "Paused"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr "Paused ({0})"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Paused ({pausedSystemsLength})"
|
||||
@@ -1420,6 +1579,11 @@ msgstr "Paused ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload format"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr "Pending ({0})"
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1578,8 +1742,8 @@ msgid "Response"
|
||||
msgstr "Response"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr "Response Times"
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr "Response Times"
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1594,6 +1758,10 @@ msgstr "Resume"
|
||||
msgid "Retries"
|
||||
msgstr "Retries"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr "root"
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1657,12 +1825,16 @@ msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Search for systems or settings..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Search for systems or settings..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr "Search for systems, monitors, domains or settings..."
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr "Search monitors..."
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr "Search monitors..."
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1688,6 +1860,10 @@ msgstr "Send periodic outbound pings to an external monitoring service so you ca
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Send test heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr "sensor/temperature"
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
@@ -1736,8 +1912,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP settings"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sort By"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sort By"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr "SSL Certificate"
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1752,6 +1932,8 @@ msgid "State"
|
||||
msgstr "State"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1760,6 +1942,16 @@ msgstr "State"
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr "Status and response time over the selected period"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr "Status Pages"
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Sub State"
|
||||
@@ -1784,7 +1976,6 @@ msgstr "Switch theme"
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1812,6 +2003,8 @@ msgstr "Systems"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Table"
|
||||
@@ -1939,6 +2132,10 @@ msgstr "Total time spent on read/write (can exceed 100%)"
|
||||
msgid "Total: {0}"
|
||||
msgstr "Total: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr "Track domain expiry dates and watch domains for purchase"
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Triggered by"
|
||||
@@ -2017,6 +2214,11 @@ msgstr "Universal token"
|
||||
msgid "Unknown"
|
||||
msgstr "Unknown"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr "Unknown ({0})"
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2028,6 +2230,11 @@ msgstr "Unlimited"
|
||||
msgid "Up"
|
||||
msgstr "Up"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr "Up ({0})"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Up ({upSystemsLength})"
|
||||
@@ -2084,6 +2291,10 @@ msgstr "Usage of root partition"
|
||||
msgid "Used"
|
||||
msgstr "Used"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr "Username"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2098,10 +2309,16 @@ msgstr "Utilization"
|
||||
msgid "Value"
|
||||
msgstr "Value"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "View"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr "View and manage incidents"
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2113,8 +2330,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "View your 200 most recent alerts."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Visible Fields"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Visible Fields"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2157,6 +2374,10 @@ msgstr "When enabled, this token allows agents to self-register without prior sy
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr "WHOIS Info"
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Alertas activas"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Estado activo"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Agregar {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Agregar URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Historial de alertas"
|
||||
msgid "Alerts"
|
||||
msgstr "Alertas"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Todos los contenedores"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Todos los sistemas"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Todos los sistemas"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "¿Estás seguro de que deseas eliminar {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "¿Estás seguro?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bytes (kB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Caché / Buffers"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Puede recargarse"
|
||||
@@ -352,6 +382,7 @@ msgstr "Puede iniciarse"
|
||||
msgid "Can stop"
|
||||
msgstr "Puede detenerse"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Revisa {email} para un enlace de restablecimiento."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Haz clic en un sistema para ver más información."
|
||||
msgid "Click to copy"
|
||||
msgstr "Haz clic para copiar"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Predeterminado"
|
||||
msgid "Default time period"
|
||||
msgstr "Periodo de tiempo predeterminado"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Periodo de tiempo predeterminado"
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Eliminar huella digital"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Pantalla"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "E/S de red de Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Documentación"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Documentación"
|
||||
msgid "Down"
|
||||
msgstr "Caído"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Caído ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Salió activo"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Expira después de una hora o al reiniciar el hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Fallidos: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Consumo de energía de la GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Uso de GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Cuadrícula"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Estado"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Latido enviado con éxito"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Comando Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Servidor / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Imagen"
|
||||
msgid "Inactive"
|
||||
msgstr "Inactivo"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervalo"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Diseño"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Estado de carga"
|
||||
msgid "Loading..."
|
||||
msgstr "Cargando..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "¿Buscas dónde crear alertas? Haz clic en los iconos de campana <0/> en
|
||||
msgid "Main PID"
|
||||
msgstr "PID principal"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Administrar preferencias de visualización y notificaciones."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Unidad de red"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Notificaciones"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Otro"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Sobrescribir alertas existentes"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Página {0} de {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Páginas / Configuraciones"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pausar"
|
||||
msgid "Paused"
|
||||
msgstr "Pausado"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pausado ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pausado ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Formato de carga útil (payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Reanudar"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Buscar sistemas o configuraciones..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Buscar sistemas o configuraciones..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Envíe pings salientes periódicos a un servicio de monitorización exte
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Enviar latido de prueba"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Configuración SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Ordenar por"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Ordenar por"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Estado"
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Subestado"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistemas"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Los sistemas pueden ser gestionados en un archivo <0>config.yml</0> dentro de tu directorio de datos."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabla"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Activado por"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token universal"
|
||||
msgid "Unknown"
|
||||
msgstr "Desconocida"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Ilimitado"
|
||||
msgid "Up"
|
||||
msgstr "Activo"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Activo ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Uso de la partición raíz"
|
||||
msgid "Used"
|
||||
msgstr "Usado"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utilización"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Ver tus 200 alertas más recientes."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Columnas visibles"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Columnas visibles"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Cuando está habilitado, este token permite a los agentes registrarse au
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Al usar POST, cada latido incluye una carga útil JSON con un resumen del estado del sistema, una lista de sistemas caídos y alertas activadas."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "فعال"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr " هشدارهای فعال"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "وضعیت فعال"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "افزودن {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "افزودن آدرس اینترنتی"
|
||||
@@ -191,6 +203,15 @@ msgstr "تاریخچه هشدارها"
|
||||
msgid "Alerts"
|
||||
msgstr "هشدارها"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "همه کانتینرها"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "همه سیستمها"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "همه سیستمها"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "آیا مطمئن هستید که میخواهید {name} را حذف کنید؟"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "آیا مطمئن هستید؟"
|
||||
@@ -340,6 +364,12 @@ msgstr "بایت (کیلوبایت بر ثانیه، مگابایت بر ثان
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "حافظه پنهان / بافرها"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "میتواند بارگذاری مجدد شود"
|
||||
@@ -352,6 +382,7 @@ msgstr "میتواند شروع شود"
|
||||
msgid "Can stop"
|
||||
msgstr "میتواند متوقف شود"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "سلسیوس (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "ایمیل {email} خود را برای لینک بازنشانی بررسی کنید."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "برای مشاهده اطلاعات بیشتر روی یک سیستم
|
||||
msgid "Click to copy"
|
||||
msgstr "برای کپی کردن کلیک کنید"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "پیشفرض"
|
||||
msgid "Default time period"
|
||||
msgstr "بازه زمانی پیشفرض"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "بازه زمانی پیشفرض"
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "حذف اثر انگشت"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "نمایش"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "ورودی/خروجی شبکه داکر"
|
||||
msgid "Documentation"
|
||||
msgstr "مستندات"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "مستندات"
|
||||
msgid "Down"
|
||||
msgstr "قطع"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "قطع ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "خروج فعال"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "پس از یک ساعت یا راهاندازی مجدد هاب منقضی میشود."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "خروجی گرفتن"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "ناموفق: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "عمومی"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "مصرف برق پردازنده گرافیکی"
|
||||
msgid "GPU Usage"
|
||||
msgstr "میزان استفاده از GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "جدول"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "سلامتی"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "ضربان قلب با موفقیت ارسال شد"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "دستور Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "میزبان / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "تصویر"
|
||||
msgid "Inactive"
|
||||
msgstr "غیرفعال"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "بازه زمانی"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "زبان"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "طرحبندی"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "وضعیت بارگذاری"
|
||||
msgid "Loading..."
|
||||
msgstr "در حال بارگذاری..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "به دنبال جایی برای ایجاد هشدار هستید؟ ر
|
||||
msgid "Main PID"
|
||||
msgstr "PID اصلی"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "مدیریت تنظیمات نمایش و اعلانها."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "واحد شبکه"
|
||||
msgid "No"
|
||||
msgstr "خیر"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "اعلانها"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "سایر"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "بازنویسی هشدارهای موجود"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "صفحه {0} از {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "صفحات / تنظیمات"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "رمز عبور"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "توقف"
|
||||
msgid "Paused"
|
||||
msgstr "مکث شده"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "مکث شده ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "مکث شده ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "فرمت پیلود"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "ادامه"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "جستجو"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "جستجو برای سیستمها یا تنظیمات..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "جستجو برای سیستمها یا تنظیمات..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "پینگهای خروجی دورهای را به یک سرویس
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "ارسال ضربان قلب آزمایشی"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "ارسال شد"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "تنظیمات SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "مرتبسازی بر اساس"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "مرتبسازی بر اساس"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "وضعیت"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "وضعیت"
|
||||
msgid "Status"
|
||||
msgstr "وضعیت"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "وضعیت فرعی"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "سیستمها"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "سیستمها ممکن است در یک فایل <0>config.yml</0> درون دایرکتوری داده شما مدیریت شوند."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "جدول"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "کل: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "فعال شده توسط"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "توکن جهانی"
|
||||
msgid "Unknown"
|
||||
msgstr "ناشناخته"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "نامحدود"
|
||||
msgid "Up"
|
||||
msgstr "فعال"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "فعال ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "میزان استفاده از پارتیشن ریشه"
|
||||
msgid "Used"
|
||||
msgstr "استفاده شده"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "بهرهوری"
|
||||
msgid "Value"
|
||||
msgstr "مقدار"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "مشاهده"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "۲۰۰ هشدار اخیر خود را مشاهده کنید."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "فیلدهای قابل مشاهده"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "فیلدهای قابل مشاهده"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "هنگامی که فعال باشد، این توکن به عوامل ا
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "هنگام استفاده از POST، هر ضربان قلب شامل یک پیلود JSON با خلاصه وضعیت سیستم، لیست سیستمهای پایین و هشدارهای فعال شده است."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Alertes actives"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "État actif"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Ajouter {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Ajouter l’URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Historique des alertes"
|
||||
msgid "Alerts"
|
||||
msgstr "Alertes"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Tous les conteneurs"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Tous les systèmes"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Tous les systèmes"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer {name} ?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Êtes-vous sûr ?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Tampons"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Peut recharger"
|
||||
@@ -352,6 +382,7 @@ msgstr "Peut démarrer"
|
||||
msgid "Can stop"
|
||||
msgstr "Peut arrêter"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Vérifiez {email} pour un lien de réinitialisation."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Cliquez sur un système pour voir plus d'informations."
|
||||
msgid "Click to copy"
|
||||
msgstr "Cliquez pour copier"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Par défaut"
|
||||
msgid "Default time period"
|
||||
msgstr "Période par défaut"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Période par défaut"
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Supprimer l'empreinte"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Affichage"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Entrée/Sortie réseau Docker"
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr ""
|
||||
msgid "Down"
|
||||
msgstr "Hors ligne"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Injoignable ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Sorti actif"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Expire après une heure ou au redémarrage du hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Échec : {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Général"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Consommation du GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Utilisation GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Grille"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Santé"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Battement de cœur envoyé avec succès"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Commande Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Hôte / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr ""
|
||||
msgid "Inactive"
|
||||
msgstr "Inactif"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervalle"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Disposition"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "État de charge"
|
||||
msgid "Loading..."
|
||||
msgstr "Chargement..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Vous cherchez plutôt où créer des alertes ? Cliquez sur les icônes d
|
||||
msgid "Main PID"
|
||||
msgstr "PID principal"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Gérer les préférences d'affichage et de notification."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Unité réseau"
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Autre"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Écraser les alertes existantes"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Page {0} sur {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Pages / Paramètres"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr ""
|
||||
msgid "Paused"
|
||||
msgstr "En pause"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Mis en pause ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Mis en pause ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Format de la charge utile"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Reprendre"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Rechercher des systèmes ou des paramètres..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Rechercher des systèmes ou des paramètres..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Envoyez des pings sortants périodiques vers un service de surveillance
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Envoyer un heartbeat de test"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Envoyé"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Paramètres SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Trier par"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Trier par"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "État"
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Sous-état"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systèmes"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Les systèmes peuvent être gérés dans un fichier <0>config.yml</0> à l'intérieur de votre répertoire de données."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tableau"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Total : {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Déclenché par"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token universel"
|
||||
msgid "Unknown"
|
||||
msgstr "Inconnue"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Illimité"
|
||||
msgid "Up"
|
||||
msgstr "Joignable"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Joignable ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Utilisation de la partition racine"
|
||||
msgid "Used"
|
||||
msgstr "Utilisé"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utilisation"
|
||||
msgid "Value"
|
||||
msgstr "Valeur"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Vue"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Voir vos 200 dernières alertes."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Colonnes visibles"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Colonnes visibles"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Lorsqu'il est activé, ce jeton permet aux agents de s'enregistrer autom
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "En utilisant POST, chaque heartbeat inclut une charge utile JSON avec un résumé de l'état du sistema, la liste des systèmes en panne et les alertes déclenchées."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "פעיל"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "התראות פעילות"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "מצב פעיל"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "הוסף {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "הוסף URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "היסטוריית התראות"
|
||||
msgid "Alerts"
|
||||
msgstr "התראות"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "כל הקונטיינרים"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "כל המערכות"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "כל המערכות"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "האם אתה בטוח שברצונך למחוק את {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "האם אתה בטוח?"
|
||||
@@ -340,6 +364,12 @@ msgstr "בתים (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "מטמון / חוצצים"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "יכול לטעון מחדש"
|
||||
@@ -352,6 +382,7 @@ msgstr "יכול להתחיל"
|
||||
msgid "Can stop"
|
||||
msgstr "יכול לעצור"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "צלזיוס (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "בדוק את {email} לקישור איפוס."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "לחץ על מערכת כדי לצפות במידע נוסף."
|
||||
msgid "Click to copy"
|
||||
msgstr "לחץ כדי להעתיק"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "ברירת מחדל"
|
||||
msgid "Default time period"
|
||||
msgstr "תקופת זמן ברירת מחדל"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "תקופת זמן ברירת מחדל"
|
||||
msgid "Delete"
|
||||
msgstr "מחק"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "מחק טביעת אצבע"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "תצוגה"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "I/O של רשת Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "תיעוד"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "תיעוד"
|
||||
msgid "Down"
|
||||
msgstr "כבוי"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "כבוי ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "יצא פעיל"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "פג תוקף לאחר שעה או בהפעלה מחדש של ה-hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "ייצא"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "נכשל: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "כללי"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "צריכת חשמל GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "שימוש GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "רשת"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "בריאות"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "פעימת הלב נשלחה בהצלחה"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "פקודת Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "מארח / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "תמונה"
|
||||
msgid "Inactive"
|
||||
msgstr "לא פעיל"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "מרווח"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "שפה"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "פריסה"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "מצב עומס"
|
||||
msgid "Loading..."
|
||||
msgstr "טוען..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "מחפש איפה ליצור התראות? לחץ על סמלי הפעמ
|
||||
msgid "Main PID"
|
||||
msgstr "PID ראשי"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "נהל העדפות תצוגה והתראות."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "יחידת רשת"
|
||||
msgid "No"
|
||||
msgstr "לא"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "התראות"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "אחר"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "דרוס התראות קיימות"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "עמוד {0} מתוך {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "עמודים / הגדרות"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "סיסמה"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "השהה"
|
||||
msgid "Paused"
|
||||
msgstr "מושהה"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "מושהה ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "מושהה ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "פורמט מטען (Payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "המשך"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "חיפוש"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "חפש מערכות או הגדרות..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "חפש מערכות או הגדרות..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "שלח פינגים יוצאים תקופתיים לשירות ניטו
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "שלח פעימת לב לבדיקה"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "נשלח"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "הגדרות SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "מיין לפי"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "מיין לפי"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "מצב"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "מצב"
|
||||
msgid "Status"
|
||||
msgstr "סטטוס"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "מצב משני"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "מערכות"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "מערכות יכולות להיות מנוהלות בקובץ <0>config.yml</0> בתוך ספריית הנתונים שלך."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "טבלה"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "סה\"כ: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "הופעל על ידי"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "token אוניברסלי"
|
||||
msgid "Unknown"
|
||||
msgstr "לא ידוע"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "ללא הגבלה"
|
||||
msgid "Up"
|
||||
msgstr "למעלה"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "למעלה ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "שימוש במחיצה הראשית"
|
||||
msgid "Used"
|
||||
msgstr "בשימוש"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "ניצולת"
|
||||
msgid "Value"
|
||||
msgstr "ערך"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "צפה"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "צפה ב-200 ההתראות האחרונות שלך."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "שדות גלויים"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "שדות גלויים"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "כאשר מופעל, אסימון זה מאפשר לסוכנים להי
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "בשימוש ב-POST, כל פעימת לב כוללת מטען JSON עם סיכום סטטוס המערכת, רשימת מערכות מושבתות והתראות שהופעלו."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktivna Upozorenja"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktivno stanje"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Dodaj {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Dodaj URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Povijest Upozorenja"
|
||||
msgid "Alerts"
|
||||
msgstr "Upozorenja"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Svi spremnici"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Svi Sustavi"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Svi Sustavi"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Jeste li sigurni da želite izbrisati {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Jeste li sigurni?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bajtovi (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Predmemorija / Međuspremnici"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Može se ponovno učitati"
|
||||
@@ -352,6 +382,7 @@ msgstr "Može se pokrenuti"
|
||||
msgid "Can stop"
|
||||
msgstr "Može se zaustaviti"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Provjerite {email} za pristup poveznici za resetiranje."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Odaberite sustav za prikaz više informacija."
|
||||
msgid "Click to copy"
|
||||
msgstr "Pritisnite za kopiranje"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Zadano"
|
||||
msgid "Default time period"
|
||||
msgstr "Zadano vremensko razdoblje"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Zadano vremensko razdoblje"
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Izbriši otisak"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Prikaz"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker mrežni I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentacija"
|
||||
msgid "Down"
|
||||
msgstr "Sustav je pao"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Sustav je pao ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Izašlo aktivno"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Istječe nakon jednog sata ili ponovnog pokretanja huba."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Izvoz"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Neuspjelo: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Općenito"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Energetska potrošnja grafičkog procesora"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Iskorištenost GPU-a"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Rešetka"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Zdravlje"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat uspješno poslan"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew naredba"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Slika"
|
||||
msgid "Inactive"
|
||||
msgstr "Neaktivno"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Izgled"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Stanje učitavanja"
|
||||
msgid "Loading..."
|
||||
msgstr "Učitavanje..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Tražite gdje stvoriti upozorenja? Kliknite ikonu zvona <0/> u tablici s
|
||||
msgid "Main PID"
|
||||
msgstr "Glavni PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Upravljajte postavkama prikaza i obavijesti."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Mjerna jedinica za mrežu"
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Obavijesti"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Ostalo"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Prebriši postojeća upozorenja"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Stranica {0} od {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Stranice / Postavke"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pauza"
|
||||
msgid "Paused"
|
||||
msgstr "Pauzirano"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pauzirano ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pauzirano ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Format korisnog tereta (Payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Nastavi"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Pretraži"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Pretraži sustave ili postavke..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Pretraži sustave ili postavke..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Šaljite povremene odlazne pingove vanjskoj usluzi nadzora kako biste mo
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Pošalji testni heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Poslano"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP postavke"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sortiraj po"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sortiraj po"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Stanje"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Podstanje"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sustavi"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Sustavima se može upravljati pomoću <0>config.yml</0> datoteke unutar data mape."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tablica"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Ukupno: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Pokrenuto od"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Sveopći token"
|
||||
msgid "Unknown"
|
||||
msgstr "Nepoznato"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Neograničeno"
|
||||
msgid "Up"
|
||||
msgstr "Sustav je podignut"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Sustav je podignut ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Iskorištenost root datotečnog sustava"
|
||||
msgid "Used"
|
||||
msgstr "Iskorišteno"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Iskorištenost"
|
||||
msgid "Value"
|
||||
msgstr "Vrijednost"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Prikaz"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Pogledajte posljednjih 200 upozorenja."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Vidljiva polja"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Vidljiva polja"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Kada je omogućen, ovaj token omogućuje agentima da se sami registriraj
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Kada koristite POST, svaki heartbeat uključuje JSON payload sa sažetkom statusa sustava, popisom isključenih sustava i aktiviranim upozorenjima."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktív riasztások"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktív állapot"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Hozzáadás {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "URL hozzáadása"
|
||||
@@ -191,6 +203,15 @@ msgstr "Riasztási előzmények"
|
||||
msgid "Alerts"
|
||||
msgstr "Riasztások"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Minden konténer"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Minden rendszer"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Minden rendszer"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Biztosan törölni szeretnéd {name}-t?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Biztos vagy benne?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Byte-ok (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Gyorsítótár / Pufferelések"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Újratölthető"
|
||||
@@ -352,6 +382,7 @@ msgstr "Indítható"
|
||||
msgid "Can stop"
|
||||
msgstr "Leállítható"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Ellenőrizd a {email} címet a visszaállító linkért."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "További információkért kattints egy rendszerre."
|
||||
msgid "Click to copy"
|
||||
msgstr "Kattints a másoláshoz"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Alapértelmezett"
|
||||
msgid "Default time period"
|
||||
msgstr "Alapértelmezett időszak"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Alapértelmezett időszak"
|
||||
msgid "Delete"
|
||||
msgstr "Törlés"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Ujjlenyomat törlése"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Megjelenítés"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker hálózat I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentáció"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentáció"
|
||||
msgid "Down"
|
||||
msgstr "Offline"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Offline ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Aktívként kilépett"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Lejár egy óra után vagy a hub újraindításakor."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportálás"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Sikertelen: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Általános"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU áramfelvétele"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU használat"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Rács"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Egészség"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat sikeresen elküldve"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew parancs"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Állomás / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Kép"
|
||||
msgid "Inactive"
|
||||
msgstr "Inaktív"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervallum"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Nyelv"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Elrendezés"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Betöltési állapot"
|
||||
msgid "Loading..."
|
||||
msgstr "Betöltés..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Inkább azt keresi, hogy hol hozhat létre riasztásokat? Kattintson a c
|
||||
msgid "Main PID"
|
||||
msgstr "Fő PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "A megjelenítési és értesítési beállítások kezelése."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Sávszélesség mértékegysége"
|
||||
msgid "No"
|
||||
msgstr "Nem"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Értesítések"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Egyéb"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Felülírja a meglévő riasztásokat"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "{0}/{1} oldal"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Oldalak / Beállítások"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Szüneteltetés"
|
||||
msgid "Paused"
|
||||
msgstr "Szüneteltetve"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Szüneteltetve ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Szüneteltetve ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload formátum"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Folytatás"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Keresés rendszerek vagy beállítások után..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Keresés rendszerek vagy beállítások után..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Küldjön időszakos kimenő pingeket egy külső megfigyelő szolgálta
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Teszt heartbeat küldése"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Elküldve"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP beállítások"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Rendezés"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Rendezés"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Állapot"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Állapot"
|
||||
msgid "Status"
|
||||
msgstr "Állapot"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Részállapot"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Rendszer"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "A rendszereket egy <0>config.yml</0> fájlban lehet kezelni az adatkönyvtárban."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tábla"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Összesen: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Kiváltva"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Univerzális token"
|
||||
msgid "Unknown"
|
||||
msgstr "Ismeretlen"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Korlátlan"
|
||||
msgid "Up"
|
||||
msgstr "Online"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Online ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Root partíció kihasználtsága"
|
||||
msgid "Used"
|
||||
msgstr "Felhasznált"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Kihasználtság"
|
||||
msgid "Value"
|
||||
msgstr "Érték"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Nézet"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Legfrissebb 200 riasztásod áttekintése."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Látható mezők"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Látható mezők"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Ha engedélyezve van, ez a token lehetővé teszi az ügynökök számá
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "POST használata esetén minden heartbeat tartalmaz egy JSON payload-ot a rendszerállapot összefoglalójával, a leállt rendszerek listájával és a kiváltott riasztásokkal."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Peringatan Aktif"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Status aktif"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Tambah {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Tambah URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Riwayat Peringatan"
|
||||
msgid "Alerts"
|
||||
msgstr "Peringatan"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Semua Container"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Semua Sistem"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Semua Sistem"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Apakah anda yakin ingin menghapus {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Apakah anda yakin?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Byte (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Dapat dimuatulang"
|
||||
@@ -352,6 +382,7 @@ msgstr "Dapat dimulai"
|
||||
msgid "Can stop"
|
||||
msgstr "Dapat diberhentikan"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Periksa {email} untuk tautan atur ulang password."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klik pada sistem untuk melihat informasi lebih banyak."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klik untuk menyalin"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr ""
|
||||
msgid "Default time period"
|
||||
msgstr "Standar waktu"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standar waktu"
|
||||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Hapus fingerprint"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Tampilan"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "I/O Jaringan Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasi"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentasi"
|
||||
msgid "Down"
|
||||
msgstr "Mati"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Mati ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Keluar aktif"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Kedaluwarsa setelah satu jam atau saat restart hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Ekspor"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Gagal: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Umum"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Konsumsi Daya GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Penggunaan GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Kartu"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Kesehatan"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat berhasil dikirim"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Perintah Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Gambar"
|
||||
msgid "Inactive"
|
||||
msgstr "Tidak aktif"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Bahasa"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Tampilan"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Beban saat ini"
|
||||
msgid "Loading..."
|
||||
msgstr "Memuat..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Mencari tempat untuk membuat peringatan? Klik ikon lonceng <0/> di tabel
|
||||
msgid "Main PID"
|
||||
msgstr "PID utama"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Kelola preferensi tampilan dan notifikasi."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Unit jaringan"
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Notifikasi"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Lainnya"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Timpa peringatan yang ada"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Halaman {0} dari {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Halaman / Pengaturan"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Kata sandi"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Jeda"
|
||||
msgid "Paused"
|
||||
msgstr "Dijeda"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Dijeda ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Dijeda ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Format payload"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Lanjutkan"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Cari sistem atau pengaturan..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Cari sistem atau pengaturan..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Kirim ping keluar secara berkala ke layanan pemantauan eksternal sehingg
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Kirim tes heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Dikirim"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Pengaturan SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Urutkan Berdasarkan"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Urutkan Berdasarkan"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Status"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Sub Status"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistem"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Sistem dapat dikelola dalam file <0>config.yml</0> di dalam direktori data anda."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Dipicu oleh"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token universal"
|
||||
msgid "Unknown"
|
||||
msgstr "Tidak diketahui"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Tidak terbatas"
|
||||
msgid "Up"
|
||||
msgstr "Nyala"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Nyala selama ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Penggunaan partisi root"
|
||||
msgid "Used"
|
||||
msgstr "Digunakan"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utilisasi"
|
||||
msgid "Value"
|
||||
msgstr "Nilai"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Lihat"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Lihat 200 peringatan terbaru anda."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Metrik yang Terlihat"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Metrik yang Terlihat"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Ketika diaktifkan, token ini memungkinkan agen untuk mendaftar sendiri t
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Saat menggunakan POST, setiap heartbeat menyertakan payload JSON dengan ringkasan status sistem, daftar sistem yang mati, dan peringatan yang dipicu."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Avvisi Attivi"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Stato attivo"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Aggiungi {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Aggiungi URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Cronologia Avvisi"
|
||||
msgid "Alerts"
|
||||
msgstr "Avvisi"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Tutti i contenitori"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Tutti i Sistemi"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Tutti i Sistemi"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Sei sicuro di voler eliminare {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Sei sicuro?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Byte (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Buffer"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Può ricaricare"
|
||||
@@ -352,6 +382,7 @@ msgstr "Può avviare"
|
||||
msgid "Can stop"
|
||||
msgstr "Può fermare"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Controlla {email} per un link di reset."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Clicca su un sistema per visualizzare più informazioni."
|
||||
msgid "Click to copy"
|
||||
msgstr "Clicca per copiare"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Predefinito"
|
||||
msgid "Default time period"
|
||||
msgstr "Periodo di tempo predefinito"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Periodo di tempo predefinito"
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Elimina impronta digitale"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "I/O di Rete Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Documentazione"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Documentazione"
|
||||
msgid "Down"
|
||||
msgstr "Offline"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Offline ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Uscito attivo"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Scade dopo un'ora o al riavvio dell'hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Esporta"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Fallito: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Generale"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Consumo della GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Utilizzo GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Griglia"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Stato"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat inviato con successo"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Comando Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Immagine"
|
||||
msgid "Inactive"
|
||||
msgstr "Inattivo"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervallo"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Aspetto"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Stato di caricamento"
|
||||
msgid "Loading..."
|
||||
msgstr "Caricamento..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Cerchi invece dove creare avvisi? Clicca sulle icone della campana <0/>
|
||||
msgid "Main PID"
|
||||
msgstr "PID principale"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Gestisci le preferenze di visualizzazione e notifica."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Unità rete"
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Notifiche"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Altro"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Sovrascrivi avvisi esistenti"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Pagina {0} di {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Pagine / Impostazioni"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pausa"
|
||||
msgid "Paused"
|
||||
msgstr "In pausa"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "In pausa ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "In pausa ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Formato del payload"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Riprendi"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Cerca sistemi o impostazioni..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Cerca sistemi o impostazioni..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Invia ping in uscita periodici a un servizio di monitoraggio esterno in
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Invia heartbeat di prova"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Inviato"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Impostazioni SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Ordina per"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Ordina per"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Stato"
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Sotto-stato"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistemi"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "I sistemi possono essere gestiti in un file <0>config.yml</0> all'interno della tua directory dati."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabella"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Totale: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Attivato da"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token universale"
|
||||
msgid "Unknown"
|
||||
msgstr "Sconosciuta"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Illimitato"
|
||||
msgid "Up"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Attivo ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Utilizzo della partizione root"
|
||||
msgid "Used"
|
||||
msgstr "Utilizzato"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utilizzo"
|
||||
msgid "Value"
|
||||
msgstr "Valore"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Visualizza i tuoi 200 avvisi più recenti."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Colonne visibili"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Colonne visibili"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Quando abilitato, questo token consente agli agenti di registrarsi autom
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Quando si usa POST, ogni heartbeat include un payload JSON con il riepilogo dello stato del sistema, l'elenco dei sistemi inattivi e gli avvisi attivati."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "アクティブ"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "アクティブなアラート"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "アクティブ状態"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "{foo}を追加"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "URLを追加"
|
||||
@@ -191,6 +203,15 @@ msgstr "アラート履歴"
|
||||
msgid "Alerts"
|
||||
msgstr "アラート"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "すべてのコンテナ"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "すべてのシステム"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "すべてのシステム"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "{name}を削除してもよろしいですか?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "よろしいですか?"
|
||||
@@ -340,6 +364,12 @@ msgstr "バイト (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "キャッシュ / バッファ"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "リロード可能"
|
||||
@@ -352,6 +382,7 @@ msgstr "開始可能"
|
||||
msgid "Can stop"
|
||||
msgstr "停止可能"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "摂氏 (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "{email}を確認してリセットリンクを探してください。"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "システムをクリックして詳細を表示します。"
|
||||
msgid "Click to copy"
|
||||
msgstr "クリックしてコピー"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "デフォルト"
|
||||
msgid "Default time period"
|
||||
msgstr "デフォルトの期間"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "デフォルトの期間"
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "フィンガープリントを削除"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "表示"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "DockerネットワークI/O"
|
||||
msgid "Documentation"
|
||||
msgstr "ドキュメント"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "ドキュメント"
|
||||
msgid "Down"
|
||||
msgstr "停止"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "停止 ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "アクティブ状態で終了"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "1時間後、またはハブの再起動時に有効期限が切れます。"
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "エクスポート"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "失敗: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "一般"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPUの消費電力"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU使用率"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "グリッド"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "ヘルス"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "ハートビートが正常に送信されました"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew コマンド"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "ホスト / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "イメージ"
|
||||
msgid "Inactive"
|
||||
msgstr "非アクティブ"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "間隔"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "言語"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "レイアウト"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "ロード状態"
|
||||
msgid "Loading..."
|
||||
msgstr "読み込み中..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "アラートを作成する場所を探していますか?システム
|
||||
msgid "Main PID"
|
||||
msgstr "メインPID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "表示と通知の設定を管理します。"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "ネットワーク単位"
|
||||
msgid "No"
|
||||
msgstr "いいえ"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "通知"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "その他"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "既存のアラートを上書き"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "{1}ページ中{0}ページ目"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "ページ / 設定"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "一時停止"
|
||||
msgid "Paused"
|
||||
msgstr "一時停止中"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "一時停止 ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "一時停止 ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "ペイロード形式"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "再開"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "検索"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "システムまたは設定を検索..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "システムまたは設定を検索..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "外部監視サービスに定期的にアウトバウンド ping を送
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "テストハートビートを送信"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "送信"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP設定"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "並び替え基準"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "並び替え基準"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "状態"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "状態"
|
||||
msgid "Status"
|
||||
msgstr "ステータス"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "サブ状態"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "システム"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "システムはデータディレクトリ内の<0>config.yml</0>ファイルで管理できます。"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "テーブル"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "合計: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "トリガー元"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "ユニバーサルトークン"
|
||||
msgid "Unknown"
|
||||
msgstr "不明"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "無制限"
|
||||
msgid "Up"
|
||||
msgstr "正常"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "正常 ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "ルートパーティションの使用量"
|
||||
msgid "Used"
|
||||
msgstr "使用中"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "利用率"
|
||||
msgid "Value"
|
||||
msgstr "値"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "表示"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "直近200件のアラートを表示します。"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "表示列"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "表示列"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "有効にすると、このトークンによりエージェントは事
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "POST を使用する場合、各ハートビートには、システムステータスの概要、ダウンしているシステムのリスト、およびトリガーされたアラートを含む JSON ペイロードが含まれます。"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "활성"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "활성화된 알림들"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "활성 상태"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "{foo} 추가"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "URL 추가"
|
||||
@@ -191,6 +203,15 @@ msgstr "알림 기록"
|
||||
msgid "Alerts"
|
||||
msgstr "알림"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "모든 컨테이너"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "모든 시스템"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "모든 시스템"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "{name}을(를) 삭제하시겠습니까?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "확실합니까?"
|
||||
@@ -340,6 +364,12 @@ msgstr "바이트 (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "캐시 / 버퍼"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "재로드 가능"
|
||||
@@ -352,6 +382,7 @@ msgstr "시작 가능"
|
||||
msgid "Can stop"
|
||||
msgstr "중지 가능"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "섭씨 (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "{email}에서 재설정 링크를 확인하세요."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "더 많은 정보를 보려면 시스템을 클릭하세요."
|
||||
msgid "Click to copy"
|
||||
msgstr "클릭하여 복사"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "기본값"
|
||||
msgid "Default time period"
|
||||
msgstr "기본 기간"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "기본 기간"
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "지문 삭제"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "표시"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker 네트워크 I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "문서"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "문서"
|
||||
msgid "Down"
|
||||
msgstr "오프라인"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "오프라인 ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "활성 종료됨"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "한 시간 후 또는 허브 재시작 시 만료됩니다."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "내보내기"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "실패: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "일반"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU 전원 사용량"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU 사용량"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "그리드"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "상태"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "하트비트 전송 성공"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew 명령어"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "호스트 / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "이미지"
|
||||
msgid "Inactive"
|
||||
msgstr "비활성"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "간격"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "언어"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "레이아웃"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "로드 상태"
|
||||
msgid "Loading..."
|
||||
msgstr "로딩 중..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "알림을 생성하려 하시나요? 시스템 테이블의 종 <0/> 아
|
||||
msgid "Main PID"
|
||||
msgstr "주 PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "디스플레이 및 알림 설정"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "네트워크 단위"
|
||||
msgid "No"
|
||||
msgstr "아니오"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "알림"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "기타"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "기존 알림 덮어쓰기"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "{1}페이지 중 {0}페이지"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "페이지 / 설정"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "비밀번호"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "일시 중지"
|
||||
msgid "Paused"
|
||||
msgstr "일시 정지됨"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "일시 정지됨 ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "일시 정지됨 ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "페이로드 형식"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "재개"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "검색"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "시스템 또는 설정 검색..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "시스템 또는 설정 검색..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "외부 모니터링 서비스에 주기적으로 아웃바운드 핑을
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "테스트 하트비트 전송"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "보냄"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP 설정"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "정렬 기준"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "정렬 기준"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "상태"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "상태"
|
||||
msgid "Status"
|
||||
msgstr "상태"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "하위 상태"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "시스템"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "시스템은 데이터 디렉토리 내의 <0>config.yml</0> 파일에서 관리할 수 있습니다."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "표"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "총: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "트리거 대상"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "범용 토큰"
|
||||
msgid "Unknown"
|
||||
msgstr "알 수 없음"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "무제한"
|
||||
msgid "Up"
|
||||
msgstr "온라인"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "온라인 ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "루트 파티션의 사용량"
|
||||
msgid "Used"
|
||||
msgstr "사용됨"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "사용률"
|
||||
msgid "Value"
|
||||
msgstr "값"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "보기"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "최근 200개의 알림을 봅니다."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "표시할 열"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "표시할 열"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "활성화되면 이 토큰은 사전 시스템 생성 없이 에이전
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "POST를 사용할 때 각 하트비트에는 시스템 상태 요약, 다운된 시스템 목록 및 트리거된 알림이 포함된 JSON 페이로드가 포함됩니다."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Actieve waarschuwingen"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Actieve status"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Voeg {foo} toe"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Voeg URL toe"
|
||||
@@ -191,6 +203,15 @@ msgstr "Melding geschiedenis"
|
||||
msgid "Alerts"
|
||||
msgstr "Waarschuwingen"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Alle containers"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Alle systemen"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Alle systemen"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Weet je zeker dat je {name} wilt verwijderen?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Weet je het zeker?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Kan herladen"
|
||||
@@ -352,6 +382,7 @@ msgstr "Kan starten"
|
||||
msgid "Can stop"
|
||||
msgstr "Kan stoppen"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Controleer {email} op een reset link."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klik op een systeem om meer informatie te bekijken."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klik om te kopiëren"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Standaard"
|
||||
msgid "Default time period"
|
||||
msgstr "Standaard tijdsduur"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standaard tijdsduur"
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Vingerafdruk verwijderen"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Weergave"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker netwerk I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Documentatie"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Documentatie"
|
||||
msgid "Down"
|
||||
msgstr "Offline"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Offline ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Beëindigd actief"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Verloopt na één uur of bij hub-herstart."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exporteren"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Mislukt: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Algemeen"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU stroomverbruik"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU-gebruik"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Raster"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Gezondheid"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat succesvol verzonden"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew-commando"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Host / IP-adres"
|
||||
@@ -1074,6 +1171,13 @@ msgstr ""
|
||||
msgid "Inactive"
|
||||
msgstr "Inactief"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Indeling"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Laadstatus"
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Zoek je waar je meldingen kunt aanmaken? Klik op de bel <0/> in de syste
|
||||
msgid "Main PID"
|
||||
msgstr "Hoofd-PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Weergave- en notificatievoorkeuren beheren."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Netwerk eenheid"
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Meldingen"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Overig"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Overschrijf bestaande waarschuwingen"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Pagina {0} van de {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Pagina's / Instellingen"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pauze"
|
||||
msgid "Paused"
|
||||
msgstr "Gepauzeerd"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Gepauzeerd ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Gepauzeerd ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload-indeling"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Hervatten"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Zoek naar systemen of instellingen..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Zoek naar systemen of instellingen..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Stuur periodieke uitgaande pings naar een externe monitoringservice, zod
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Stuur test-heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Verzonden"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP-instellingen"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sorteren op"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sorteren op"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Status"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Substatus"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systemen"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systemen kunnen worden beheerd in een <0>config.yml</0> bestand in je data map."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Totaal: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Geactiveerd door"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Universele token"
|
||||
msgid "Unknown"
|
||||
msgstr "Onbekend"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Onbeperkt"
|
||||
msgid "Up"
|
||||
msgstr "Online"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Online ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Gebruik van root-partitie"
|
||||
msgid "Used"
|
||||
msgstr "Gebruikt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Gebruik"
|
||||
msgid "Value"
|
||||
msgstr "Waarde"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Weergave"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Bekijk je 200 meest recente meldingen."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Zichtbare kolommen"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Zichtbare kolommen"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Indien ingeschakeld, stelt deze token agenten in staat zich zelf te regi
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Bij gebruik van POST bevat elke heartbeat een JSON-payload met een samenvatting van de systeemstatus, een lijst met uitgevallen systemen en geactiveerde meldingen."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktive Alarmer"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktiv tilstand"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Legg til {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Legg Til URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Varselhistorikk"
|
||||
msgid "Alerts"
|
||||
msgstr "Alarmer"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Alle containere"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Alle Systemer"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Alle Systemer"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Er du sikker på at du vil slette {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Er du sikker?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Buffere"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Kan laste inn på nytt"
|
||||
@@ -352,6 +382,7 @@ msgstr "Kan starte"
|
||||
msgid "Can stop"
|
||||
msgstr "Kan stoppe"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Sjekk {email} for en nullstillings-link."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klikk på et system for å se mer informasjon."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klikk for å kopiere"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Standard"
|
||||
msgid "Default time period"
|
||||
msgstr "Standard tidsperiode"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standard tidsperiode"
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Slett fingeravtrykk"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Vis"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker Nettverks-I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasjon"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentasjon"
|
||||
msgid "Down"
|
||||
msgstr "Nede"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nede ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Avsluttet aktiv"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Utløper etter en time eller ved hub-omstart."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Eksporter"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Mislyktes: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Generelt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU Effektforbruk"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU-bruk"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Rutenett"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Helse"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat sendt"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew-kommando"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Vert / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr ""
|
||||
msgid "Inactive"
|
||||
msgstr "Inaktiv"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervall"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Oppsett"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Lastetilstand"
|
||||
msgid "Loading..."
|
||||
msgstr "Laster..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Ser du etter hvor du kan opprette alarmer? Klikk på bjelle-ikonet <0/>
|
||||
msgid "Main PID"
|
||||
msgstr "Hovedprosess-ID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Endre visnings- og varslingsinnstillinger."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Nettverksenhet"
|
||||
msgid "No"
|
||||
msgstr "Nei"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Varslinger"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Andre"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Overskriv eksisterende alarmer"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Side {0} av {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Sider / Innstillinger"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr ""
|
||||
msgid "Paused"
|
||||
msgstr "Satt på Pause"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pauset ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pauset ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Nyttelastformat"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Gjenoppta"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Søk etter systemer eller innstillinger..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Søk etter systemer eller innstillinger..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Send periodiske utgående pinger til en ekstern overvåkingstjeneste sli
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Send test-heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Sendt"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP-innstillinger"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sorter Etter"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sorter Etter"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Tilstand"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Undertilstand"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systemer"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systemer kan håndteres i en <0>config.yml</0>-fil i din data-katalog."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabell"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Totalt: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Utløst av"
|
||||
@@ -2022,6 +2219,11 @@ msgstr ""
|
||||
msgid "Unknown"
|
||||
msgstr "Ukjent"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Ubegrenset"
|
||||
msgid "Up"
|
||||
msgstr "Oppe"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Oppe ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Forbruk av rot-partisjon"
|
||||
msgid "Used"
|
||||
msgstr "Brukt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utnyttelse"
|
||||
msgid "Value"
|
||||
msgstr "Verdi"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Visning"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Vis de 200 siste varslene."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Synlige Felter"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Synlige Felter"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Når aktivert, tillater denne tokenen agenter å registrere seg selv ute
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Ved bruk av POST inkluderer hver heartbeat en JSON-nyttelast med systemstatussammendrag, liste over nede systemer og utløste varsler."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktywny"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktywne alerty"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Status aktywny"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Dodaj {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Dodaj URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Historia alertów"
|
||||
msgid "Alerts"
|
||||
msgstr "Alerty"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Wszystkie kontenery"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Wszystkie systemy"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Wszystkie systemy"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Czy na pewno chcesz usunąć {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Czy jesteś pewien?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bajty (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Pamięć podręczna / Bufory"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Może przeładować"
|
||||
@@ -352,6 +382,7 @@ msgstr "Może uruchomić"
|
||||
msgid "Can stop"
|
||||
msgstr "Może zatrzymać"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Celsjusza (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Sprawdź {email}, aby uzyskać link do resetowania."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Wybierz system, aby wyświetlić więcej informacji."
|
||||
msgid "Click to copy"
|
||||
msgstr "Kliknij, aby skopiować"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Domyślne"
|
||||
msgid "Default time period"
|
||||
msgstr "Domyślny przedział czasu"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Domyślny przedział czasu"
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Usuń odcisk palca"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Widok"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Sieć Docker I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentacja"
|
||||
msgid "Down"
|
||||
msgstr "Nie działa"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nie działa ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Zakończono aktywnie"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Wygasa po godzinie lub przy ponownym uruchomieniu huba."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Nieudane: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Ogólne"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Moc GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Użycie GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Siatka"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Kondycja"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat wysłany pomyślnie"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Polecenie Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Host / adres IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Obraz"
|
||||
msgid "Inactive"
|
||||
msgstr "Nieaktywny"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Interwał"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Język"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Układ"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Stan obciążenia"
|
||||
msgid "Loading..."
|
||||
msgstr "Ładowanie..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Szukasz, gdzie utworzyć powiadomienia? Kliknij ikonę dzwonka <0/> w ta
|
||||
msgid "Main PID"
|
||||
msgstr "Główny PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Zarządzaj preferencjami wyświetlania i powiadomień."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Jednostka sieciowa"
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Powiadomienia"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Inne"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Nadpisz istniejące alerty"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Strona {0} z {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Strony / Ustawienia"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pauza"
|
||||
msgid "Paused"
|
||||
msgstr "Wstrzymane"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Wstrzymane ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Wstrzymane ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Format payload'u"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Wznów"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Szukaj"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Szukaj systemów lub ustawień..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Szukaj systemów lub ustawień..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Wysyłaj cyklicznie pingi wychodzące do zewnętrznej usługi monitorowa
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Wyślij testowy heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Wysłane"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Ustawienia SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sortuj według"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sortuj według"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Stan"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Stan"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Stan podrzędny"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Systemy"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Systemy mogą być zarządzane w pliku <0>config.yml</0> znajdującym się w Twoim katalogu danych."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Łącznie: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Wyzwalane przez"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Uniwersalny token"
|
||||
msgid "Unknown"
|
||||
msgstr "Nieznana"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Bez limitu"
|
||||
msgid "Up"
|
||||
msgstr "Działa"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Działa ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Użycie partycji głównej"
|
||||
msgid "Used"
|
||||
msgstr "Używane"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Użycie"
|
||||
msgid "Value"
|
||||
msgstr "Wartość"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Widok"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Wyświetl 200 ostatnich alertów."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Widoczne kolumny"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Widoczne kolumny"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Gdy jest włączony, ten token pozwala agentom na samodzielną rejestrac
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Przy użyciu metody POST każdy heartbeat zawiera payload JSON z podsumowaniem statusu systemu, listą niedostępnych systemów i wywołanymi alertami."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Alertas Ativos"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Estado ativo"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Adicionar {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Adicionar URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Histórico de alertas"
|
||||
msgid "Alerts"
|
||||
msgstr "Alertas"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Todos os Contêineres"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Todos os Sistemas"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Todos os Sistemas"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Tem certeza de que deseja excluir {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Tem certeza?"
|
||||
@@ -340,6 +364,12 @@ msgstr ""
|
||||
msgid "Cache / Buffers"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Pode recarregar"
|
||||
@@ -352,6 +382,7 @@ msgstr "Pode iniciar"
|
||||
msgid "Can stop"
|
||||
msgstr "Pode parar"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Verifique {email} para um link de redefinição."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Clique em um sistema para ver mais informações."
|
||||
msgid "Click to copy"
|
||||
msgstr "Clique para copiar"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Predefinido"
|
||||
msgid "Default time period"
|
||||
msgstr "Período de tempo padrão"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Período de tempo padrão"
|
||||
msgid "Delete"
|
||||
msgstr "Excluir"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Excluir impressão digital"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Ecrã"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "E/S de Rede do Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Documentação"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Documentação"
|
||||
msgid "Down"
|
||||
msgstr "Desligado"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Inativo ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Saiu ativo"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Expira após uma hora ou no reinício do hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Falhou: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Geral"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Consumo de Energia da GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Uso de GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Grade"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Saúde"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat enviado com sucesso"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Comando Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Imagem"
|
||||
msgid "Inactive"
|
||||
msgstr "Inativo"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervalo"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Aspeto"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Estado de carga"
|
||||
msgid "Loading..."
|
||||
msgstr "Carregando..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Procurando onde criar alertas? Clique nos ícones de sino <0/> na tabela
|
||||
msgid "Main PID"
|
||||
msgstr "PID principal"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Gerenciar preferências de exibição e notificação."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Unidade de rede"
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Notificações"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Outro"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Sobrescrever alertas existentes"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Página {0} de {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Páginas / Configurações"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Pausar"
|
||||
msgid "Paused"
|
||||
msgstr "Pausado"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pausado ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pausado ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Formato do payload"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Retomar"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Pesquisar"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Pesquisar por sistemas ou configurações..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Pesquisar por sistemas ou configurações..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Envie pings de saída periódicos para um serviço de monitorização ex
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Enviar heartbeat de teste"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Configurações SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Ordenar Por"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Ordenar Por"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Estado"
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Subestado"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistemas"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Os sistemas podem ser gerenciados em um arquivo <0>config.yml</0> dentro do seu diretório de dados."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Acionado por"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token universal"
|
||||
msgid "Unknown"
|
||||
msgstr "Desconhecida"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Ilimitado"
|
||||
msgid "Up"
|
||||
msgstr "Ligado"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Ativo ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Uso da partição raiz"
|
||||
msgid "Used"
|
||||
msgstr "Usado"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Utilização"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Visual"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Veja os seus 200 alertas mais recentes."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Campos Visíveis"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Campos Visíveis"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Quando ativado, este token permite que os agentes se registrem automatic
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Ao usar POST, cada heartbeat inclui um payload JSON com o resumo do estado do sistema, a lista de sistemas inativos e os alertas acionados."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Активные оповещения"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Активное состояние"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Добавить {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Добавить URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "История оповещений"
|
||||
msgid "Alerts"
|
||||
msgstr "Оповещения"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Все контейнеры"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Все системы"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Все системы"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Вы уверены, что хотите удалить {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Вы уверены?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Байты (Кбайт/с, Мбайт/с, Гбайт/с)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Кэш / Буферы"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Может перезагрузить"
|
||||
@@ -352,6 +382,7 @@ msgstr "Может запустить"
|
||||
msgid "Can stop"
|
||||
msgstr "Может остановить"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Цельсий (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Проверьте {email} для получения ссылки на сброс."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Нажмите на систему для просмотра допол
|
||||
msgid "Click to copy"
|
||||
msgstr "Нажмите, чтобы скопировать"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "По умолчанию"
|
||||
msgid "Default time period"
|
||||
msgstr "Период по умолчанию"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Период по умолчанию"
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Удалить отпечаток"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Отображение"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Сетевой ввод/вывод Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Документация"
|
||||
msgid "Down"
|
||||
msgstr "Не в сети"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Не в сети ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Завершился активным"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Истекает через час или при перезапуске хаба."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Экспорт"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Неудачно: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Общие"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Потребляемая мощность GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Использование GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Сетка"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Здоровье"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat успешно отправлен"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Команда Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Хост / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Образ"
|
||||
msgid "Inactive"
|
||||
msgstr "Неактивно"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Интервал"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Состояние загрузки"
|
||||
msgid "Loading..."
|
||||
msgstr "Загрузка..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Ищете, где создать оповещения? Нажмите
|
||||
msgid "Main PID"
|
||||
msgstr "Основной PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Управляйте предпочтениями отображения и уведомлений."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Единицы измерения скорости сети"
|
||||
msgid "No"
|
||||
msgstr "Нет"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Уведомления"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Другое"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Перезаписать существующие оповещения"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Страница {0} из {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Страницы / Настройки"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Пауза"
|
||||
msgid "Paused"
|
||||
msgstr "Пауза"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Пауза ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Пауза ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Формат полезной нагрузки"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Возобновить"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Поиск систем или настроек..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Поиск систем или настроек..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Отправляйте периодические исходящие п
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Отправить тестовый heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Отправлено"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Настройки SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Сортировать по"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Сортировать по"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Состояние"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Состояние"
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Подсостояние"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Системы"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Системы могут управляться в файле <0>config.yml</0> внутри вашего каталога данных."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Таблица"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Всего: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Запущено"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Универсальный токен"
|
||||
msgid "Unknown"
|
||||
msgstr "Неизвестная"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Неограниченно"
|
||||
msgid "Up"
|
||||
msgstr "В сети"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "В сети ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Использование корневого раздела"
|
||||
msgid "Used"
|
||||
msgstr "Использовано"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Использование"
|
||||
msgid "Value"
|
||||
msgstr "Значение"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Вид"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Просмотреть 200 последних оповещений."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Видимые столбцы"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Видимые столбцы"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "При включении этот токен позволяет аге
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "При использовании POST каждый heartbeat содержит полезную нагрузку JSON с кратким отчетом о состоянии системы, списком отключенных систем и сработавшими оповещениями."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktivna opozorila"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktivno stanje"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Dodaj {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Dodaj URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Zgodovina opozoril"
|
||||
msgid "Alerts"
|
||||
msgstr "Opozorila"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Vsi kontejnerji"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Vsi sistemi"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Vsi sistemi"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Ali ste prepričani, da želite izbrisati {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Ali ste prepričani?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bajti (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Predpomnilnik / medpomnilniki"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Lahko ponovno naloži"
|
||||
@@ -352,6 +382,7 @@ msgstr "Lahko zažene"
|
||||
msgid "Can stop"
|
||||
msgstr "Lahko ustavi"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Celzija (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Preverite {email} za povezavo za ponastavitev."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Kliknite na sistem za več informacij."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klikni za kopiranje"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Privzeto"
|
||||
msgid "Default time period"
|
||||
msgstr "Privzeto časovno obdobje"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Privzeto časovno obdobje"
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Izbriši prstni odtis"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Zaslon"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker I/O mreže"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentacija"
|
||||
msgid "Down"
|
||||
msgstr "Nedelujoč"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nedelujoči ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Izhod aktivno"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Poteče po eni uri ali ob ponovnem zagonu huba."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Izvozi"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Neuspešno: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Splošno"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU poraba moči"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Poraba GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Mreža"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Zdravje"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Srčni utrip uspešno poslan"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Ukaz Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Gostitelj / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Slika"
|
||||
msgid "Inactive"
|
||||
msgstr "Neaktivno"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Postavitev"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Stanje nalaganja"
|
||||
msgid "Loading..."
|
||||
msgstr "Nalaganje..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Namesto tega iščete, kje ustvariti opozorila? Kliknite ikone zvonca <0
|
||||
msgid "Main PID"
|
||||
msgstr "Glavni PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Upravljajte nastavitve prikaza in obvestil."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Enota omrežja"
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Obvestila"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Drugo"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Prepiši obstoječe alarme"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Stran {0} od {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Strani / Nastavitve"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Geslo"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Premor"
|
||||
msgid "Paused"
|
||||
msgstr "Zaustavljeno"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pavzirano za {pausedSystemsLength}"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pavzirano za {pausedSystemsLength}"
|
||||
msgid "Payload format"
|
||||
msgstr "Oblika tovora (payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Nadaljuj"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Iskanje"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Iskanje sistemov ali nastavitev..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Iskanje sistemov ali nastavitev..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Pošiljajte občasne odhodne pinge zunanji storitvi za spremljanje, da b
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Pošlji testni srčni utrip"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Poslano"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP nastavitve"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Razvrsti po"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Razvrsti po"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Stanje"
|
||||
msgid "Status"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Podstanje"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistemi"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Sisteme lahko upravljate v datoteki <0>config.yml</0> v vašem podatkovnem imeniku."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Skupaj: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Sproženo z"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Univerzalni žeton"
|
||||
msgid "Unknown"
|
||||
msgstr "Neznana"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Neomejeno"
|
||||
msgid "Up"
|
||||
msgstr "Delujoč"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Delujoči ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Uporaba korenske particije"
|
||||
msgid "Used"
|
||||
msgstr "Uporabljeno"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Izkoriščenost"
|
||||
msgid "Value"
|
||||
msgstr "Vrednost"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Pogled"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Oglejte si svojih 200 najnovejših opozoril."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Vidna polja"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Vidna polja"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Ko je omogočen, ta žeton omogoča agentom samoregistracijo brez predho
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Pri uporabi POST vsak srčni utrip vključuje tovor JSON s povzetkom stanja sistema, seznamom nedelujočih sistemov in sproženimi opozorili."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Активна упозорења"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Активно стање"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Додај {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Додај URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Историја упозорења"
|
||||
msgid "Alerts"
|
||||
msgstr "Упозорења"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Сви контејнери"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Сви системи"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Сви системи"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Да ли сте сигурни да желите да избришете {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Да ли сте сигурни?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Бајтови (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Кеш / Бафери"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Може се поново учитати"
|
||||
@@ -352,6 +382,7 @@ msgstr "Може се покренути"
|
||||
msgid "Can stop"
|
||||
msgstr "Може се зауставити"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Целзијус (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Проверите {email} за линк за ресетовање."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Кликните на систем да видите више инфор
|
||||
msgid "Click to copy"
|
||||
msgstr "Кликните да копирате"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Подразумевано"
|
||||
msgid "Default time period"
|
||||
msgstr "Подразумевани временски период"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Подразумевани временски период"
|
||||
msgid "Delete"
|
||||
msgstr "Избриши"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Избриши отисак"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Приказ"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker мрежни I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Документација"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Документација"
|
||||
msgid "Down"
|
||||
msgstr "Искључен"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Искључен ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Излазак активан"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Истиче након једног сата или при поновном покретању хаба."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Извези"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Неуспело: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Опште"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU потрошња енергије"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU употреба"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Здравље"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat uspešno poslat"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew команда"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Хост / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Слика"
|
||||
msgid "Inactive"
|
||||
msgstr "Неактивно"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Интервал"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Језик"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Распоред"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Стање учитавања"
|
||||
msgid "Loading..."
|
||||
msgstr "Учитавање..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Тражите где да креирате упозорења? Клик
|
||||
msgid "Main PID"
|
||||
msgstr "Главни PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Управљајте преференцама приказа и обавештења."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Мрежна јединица"
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Обавештења"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Остало"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Препиши постојећа упозорења"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Страница {0} од {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Странице / Подешавања"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Лозинка"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Паузирај"
|
||||
msgid "Paused"
|
||||
msgstr "Паузирано"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Паузирано ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Паузирано ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Format korisnog opterećenja (payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Настави"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Претрага"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Претражите системе или подешавања..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Претражите системе или подешавања..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Šaljite periodične odlazne pingove spoljnoj usluzi monitoringa kako bi
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Pošalji testni heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Послато"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP подешавања"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Сортирај по"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Сортирај по"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Стање"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Стање"
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Подстање"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Системи"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Системи се могу управљати у <0>config.yml</0> датотеци у вашем директоријуму података."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Табела"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Укупно: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Окинуто од"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Универзални токен"
|
||||
msgid "Unknown"
|
||||
msgstr "Непознато"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Неограничено"
|
||||
msgid "Up"
|
||||
msgstr "Укључен"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Укључен ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Употреба root партиције"
|
||||
msgid "Used"
|
||||
msgstr "Коришћено"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Искоришћеност"
|
||||
msgid "Value"
|
||||
msgstr "Вредност"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Погледај"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Погледајте ваших 200 најновијих упозорења."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Видљива поља"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Видљива поља"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Када је омогућен, овај токен омогућава
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Kada koristite POST, svaki heartbeat uključuje JSON payload sa rezimeom statusa sistema, listom isključenih sistema i aktiviranim upozorenjima."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktiva larm"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktivt tillstånd"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Lägg till {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Lägg till URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Larmhistorik"
|
||||
msgid "Alerts"
|
||||
msgstr "Larm"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Alla behållare"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Alla system"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Alla system"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Är du säker på att du vill ta bort {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Är du säker?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bytes (KB/s, MB/s, GB/S)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Cache / Buffertar"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Kan ladda om"
|
||||
@@ -352,6 +382,7 @@ msgstr "Kan starta"
|
||||
msgid "Can stop"
|
||||
msgstr "Kan stoppa"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Kontrollera {email} för en återställningslänk."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Klicka på ett system för att visa mer information."
|
||||
msgid "Click to copy"
|
||||
msgstr "Klicka för att kopiera"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Standard"
|
||||
msgid "Default time period"
|
||||
msgstr "Standardtidsperiod"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Standardtidsperiod"
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Ta bort fingeravtryck"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Visa"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker Nätverks-I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokumentation"
|
||||
msgid "Down"
|
||||
msgstr "Nere"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Nere ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Avslutades aktivt"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Upphör efter en timme eller vid hub-omstart."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportera"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Misslyckades: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Allmänt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU-strömförbrukning"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU-användning"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Rutnät"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Hälsa"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat skickades framgångsrikt"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew-kommando"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Värd / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Avbild"
|
||||
msgid "Inactive"
|
||||
msgstr "Inaktiv"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Intervall"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Laddningstillstånd"
|
||||
msgid "Loading..."
|
||||
msgstr "Laddar..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Letar du istället efter var du skapar larm? Klicka på klockikonerna <0
|
||||
msgid "Main PID"
|
||||
msgstr "Huvud-PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Hantera visnings- och aviseringsinställningar."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Nätverksenhet"
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Aviseringar"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Annat"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Skriv över befintliga larm"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Sida {0} av {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Sidor / Inställningar"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Paus"
|
||||
msgid "Paused"
|
||||
msgstr "Pausad"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Pausad ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Pausad ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Nyttolastformat"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Återuppta"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Sök efter system eller inställningar..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Sök efter system eller inställningar..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Skicka periodiska utgående pingar till en extern övervakningstjänst s
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Skicka test-heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Skickat"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP-inställningar"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sortera efter"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sortera efter"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Tillstånd"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Tillstånd"
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Deltillstånd"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "System"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "System kan hanteras i en <0>config.yml</0>-fil i din datakatalog."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tabell"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Totalt: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Utlöst av"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Universell nyckel"
|
||||
msgid "Unknown"
|
||||
msgstr "Okänd"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Obegränsad"
|
||||
msgid "Up"
|
||||
msgstr "Upp"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Upp ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Användning av rotpartitionen"
|
||||
msgid "Used"
|
||||
msgstr "Använt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Användning"
|
||||
msgid "Value"
|
||||
msgstr "Värde"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Visa"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Visa dina 200 senaste larm."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Synliga fält"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Synliga fält"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "När aktiverad tillåter denna token agenter att självregistrera utan f
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "När POST används inkluderar varje heartbeat en JSON-nyttolast med systemstatussammanfattning, lista över nere system och utlösta larm."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Aktif Uyarılar"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Aktif durum"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "{foo} ekle"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "URL Ekle"
|
||||
@@ -191,6 +203,15 @@ msgstr "Uyarı Geçmişi"
|
||||
msgid "Alerts"
|
||||
msgstr "Uyarılar"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Tüm Konteynerler"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Tüm Sistemler"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Tüm Sistemler"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "{name} silmek istediğinizden emin misiniz?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Emin misiniz?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Bayt (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Önbellek / Tamponlar"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Yeniden yüklenebilir"
|
||||
@@ -352,6 +382,7 @@ msgstr "Başlatılabilir"
|
||||
msgid "Can stop"
|
||||
msgstr "Durdurulabilir"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Santigrat (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Sıfırlama bağlantısı için {email} kontrol edin."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Daha fazla bilgi görmek için bir sisteme tıklayın."
|
||||
msgid "Click to copy"
|
||||
msgstr "Kopyalamak için tıklayın"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Varsayılan"
|
||||
msgid "Default time period"
|
||||
msgstr "Varsayılan zaman dilimi"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Varsayılan zaman dilimi"
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Parmak izini sil"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Görünüm"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker Ağ G/Ç"
|
||||
msgid "Documentation"
|
||||
msgstr "Dokümantasyon"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Dokümantasyon"
|
||||
msgid "Down"
|
||||
msgstr "Kapalı"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Kapalı ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Aktif olarak çıktı"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Bir saat sonra veya hub yeniden başlatıldığında sona erer."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Dışa aktar"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Başarısız: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Genel"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU Güç Çekimi"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU Kullanımı"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Izgara"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Sağlık"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat başarıyla gönderildi"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew komutu"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Ana Bilgisayar / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "İmaj"
|
||||
msgid "Inactive"
|
||||
msgstr "Pasif"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Aralık"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Dil"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Düzen"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Yükleme durumu"
|
||||
msgid "Loading..."
|
||||
msgstr "Yükleniyor..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Uyarı oluşturma yerini mi arıyorsunuz? Sistemler tablosundaki zil <0/
|
||||
msgid "Main PID"
|
||||
msgstr "Ana PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Görüntüleme ve bildirim tercihlerini yönetin."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Ağ birimi"
|
||||
msgid "No"
|
||||
msgstr "Hayır"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Bildirimler"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Diğer"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Mevcut uyarıların üzerine yaz"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Sayfa {0} / {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Sayfalar / Ayarlar"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Şifre"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Duraklat"
|
||||
msgid "Paused"
|
||||
msgstr "Duraklatıldı"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Duraklatıldı ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Duraklatıldı ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Yük (Payload) formatı"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Devam et"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Sistemler veya ayarlar için ara..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Sistemler veya ayarlar için ara..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Beszel'i internete maruz bırakmadan izleyebilmeniz için harici bir izl
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Test heartbeat gönder"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Gönderildi"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP ayarları"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sıralama Ölçütü"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sıralama Ölçütü"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Durum"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Durum"
|
||||
msgid "Status"
|
||||
msgstr "Durum"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Alt Durum"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Sistemler"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Sistemler, veri dizininizdeki bir <0>config.yml</0> dosyasında yönetilebilir."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Tablo"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Toplam: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Tetikleyen"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Evrensel token"
|
||||
msgid "Unknown"
|
||||
msgstr "Bilinmiyor"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Sınırsız"
|
||||
msgid "Up"
|
||||
msgstr "Açık"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Açık ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Kök bölümün kullanımı"
|
||||
msgid "Used"
|
||||
msgstr "Kullanıldı"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Kullanım"
|
||||
msgid "Value"
|
||||
msgstr "Değer"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Görüntüle"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "En son 200 uyarınızı görüntüleyin."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Görünür Alanlar"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Görünür Alanlar"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Etkinleştirildiğinde, bu token aracıların önceden sistem oluşturma
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "POST kullanırken, her heartbeat sistem durumu özeti, çöken sistemlerin listesi ve tetiklenen uyarıları içeren bir JSON yükü içerir."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Активне"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Активні сповіщення"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Активний стан"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Додати {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Додати URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Історія сповіщень"
|
||||
msgid "Alerts"
|
||||
msgstr "Сповіщення"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Всі контейнери"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Всі системи"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Всі системи"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Ви впевнені, що хочете видалити {name}?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Ви впевнені?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Байти (КБ/с, МБ/с, ГБ/с)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Кеш / Буфери"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Може перезавантажити"
|
||||
@@ -352,6 +382,7 @@ msgstr "Може запустити"
|
||||
msgid "Can stop"
|
||||
msgstr "Може зупинити"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Цельсій (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Перевірте {email} для отримання посилання на скидання."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Натисніть на систему, щоб переглянути б
|
||||
msgid "Click to copy"
|
||||
msgstr "Натисніть, щоб скопіювати"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "За замовчуванням"
|
||||
msgid "Default time period"
|
||||
msgstr "Стандартний період часу"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Стандартний період часу"
|
||||
msgid "Delete"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Видалити відбиток"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Відображення"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Мережевий ввід/вивід Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Документація"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Документація"
|
||||
msgid "Down"
|
||||
msgstr "Не працює"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Не працює ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Завершилося активно"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Закінчується через годину або при перезапуску хаба."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Невдало: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Загальні"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Енергоспоживання GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Використання GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Сітка"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Здоров'я"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat успішно надіслано"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Команда Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Хост / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Образ"
|
||||
msgid "Inactive"
|
||||
msgstr "Неактивне"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Інтервал"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Мова"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Стан завантаження"
|
||||
msgid "Loading..."
|
||||
msgstr "Завантаження..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Шукаєте, де створити сповіщення? Натисн
|
||||
msgid "Main PID"
|
||||
msgstr "Основний PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Керуйте параметрами відображення та сповіщень."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Одиниця виміру мережі"
|
||||
msgid "No"
|
||||
msgstr "Ні"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Сповіщення"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Інше"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Перезаписати існуючі сповіщення"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Сторінка {0} з {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Сторінки / Налаштування"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Призупинити"
|
||||
msgid "Paused"
|
||||
msgstr "Призупинено"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Призупинено ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Призупинено ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Формат корисного навантаження"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Відновити"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Шукати системи або налаштування..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Шукати системи або налаштування..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Надсилайте періодичні вихідні пінги на
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Надіслати тестовий heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Відправлено"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Налаштування SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Сортувати за"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Сортувати за"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Стан"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Стан"
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Підстан"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Системи"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Системи можуть керуватися у файлі <0>config.yml</0> у вашій директорії даних."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Таблиця"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Всього: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Запущено через"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Універсальний токен"
|
||||
msgid "Unknown"
|
||||
msgstr "Невідома"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Необмежено"
|
||||
msgid "Up"
|
||||
msgstr "Працює"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Працює ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Використання кореневого розділу"
|
||||
msgid "Used"
|
||||
msgstr "Використано"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Використання"
|
||||
msgid "Value"
|
||||
msgstr "Значення"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Вигляд"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Переглянути 200 останніх сповіщень."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Видимі стовпці"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Видимі стовпці"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "При ввімкненні цей токен дозволяє аген
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "При використанні POST кожен heartbeat містить корисне навантаження JSON із коротким звітом про стан системи, списком відключених систем та сповіщеннями, що спрацювали."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "Hoạt động"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "Cảnh báo hoạt động"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "Trạng thái hoạt động"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "Thêm {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "Thêm URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "Lịch sử Cảnh báo"
|
||||
msgid "Alerts"
|
||||
msgstr "Cảnh báo"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "Tất cả container"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "Tất cả Hệ thống"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "Tất cả Hệ thống"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "Bạn có chắc chắn muốn xóa {name} không?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Bạn có chắc không?"
|
||||
@@ -340,6 +364,12 @@ msgstr "Byte (KB/giây, MB/giây, GB/giây)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "Bộ nhớ đệm / Bộ đệm"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "Có thể tải lại"
|
||||
@@ -352,6 +382,7 @@ msgstr "Có thể khởi động"
|
||||
msgid "Can stop"
|
||||
msgstr "Có thể dừng"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "Độ C (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "Kiểm tra {email} để lấy liên kết đặt lại."
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "Nhấp vào hệ thống để xem thêm thông tin."
|
||||
msgid "Click to copy"
|
||||
msgstr "Nhấp để sao chép"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "Mặc định"
|
||||
msgid "Default time period"
|
||||
msgstr "Thời gian mặc định"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "Thời gian mặc định"
|
||||
msgid "Delete"
|
||||
msgstr "Xóa"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "Xóa vân tay"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "Hiển thị"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Mạng I/O Docker"
|
||||
msgid "Documentation"
|
||||
msgstr "Tài liệu"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "Tài liệu"
|
||||
msgid "Down"
|
||||
msgstr "Mất kết nối"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "Mất kết nối ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "Đã thoát khi hoạt động"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "Hết hạn sau một giờ hoặc khi khởi động lại hub."
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "Xuất"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "Thất bại: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "Chung"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "Mức tiêu thụ điện của GPU"
|
||||
msgid "GPU Usage"
|
||||
msgstr "Sử dụng GPU"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "Lưới"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "Sức khỏe"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat đã được gửi thành công"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Lệnh Homebrew"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "Máy chủ / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "Hình ảnh"
|
||||
msgid "Inactive"
|
||||
msgstr "Không hoạt động"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "Khoảng thời gian"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "Ngôn ngữ"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "Bố cục"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "Trạng thái tải"
|
||||
msgid "Loading..."
|
||||
msgstr "Đang tải..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "Thay vào đó, bạn đang tìm nơi để tạo cảnh báo? Nhấp v
|
||||
msgid "Main PID"
|
||||
msgstr "PID chính"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "Quản lý tùy chọn hiển thị và thông báo."
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "Đơn vị mạng"
|
||||
msgid "No"
|
||||
msgstr "Không"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "Thông báo"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "Khác"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "Ghi đè các cảnh báo hiện có"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "Trang {0} trên {1}"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "Trang / Cài đặt"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "Mật khẩu"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "Tạm dừng"
|
||||
msgid "Paused"
|
||||
msgstr "Đã tạm dừng"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "Đã tạm dừng ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "Đã tạm dừng ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Định dạng tải trọng (payload)"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "Tiếp tục"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "Tìm kiếm"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "Tìm kiếm hệ thống hoặc cài đặt..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "Tìm kiếm hệ thống hoặc cài đặt..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "Gửi các ping gửi đi định kỳ đến dịch vụ giám sát bê
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "Gửi heartbeat thử nghiệm"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "Đã gửi"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "Cài đặt SMTP"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "Sắp xếp theo"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "Sắp xếp theo"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "Trạng thái"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "Trạng thái"
|
||||
msgid "Status"
|
||||
msgstr "Trạng thái"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "Trạng thái phụ"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "Các hệ thống"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "Các hệ thống có thể được quản lý trong tệp <0>config.yml</0> bên trong thư mục dữ liệu của bạn."
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "Bảng"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "Tổng: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "Được kích hoạt bởi"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "Token chung"
|
||||
msgid "Unknown"
|
||||
msgstr "Không xác định"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "Không giới hạn"
|
||||
msgid "Up"
|
||||
msgstr "Hoạt động"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "Hoạt động ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Sử dụng phân vùng gốc"
|
||||
msgid "Used"
|
||||
msgstr "Đã sử dụng"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "Sử dụng"
|
||||
msgid "Value"
|
||||
msgstr "Giá trị"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "Xem"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "Xem 200 cảnh báo gần đây nhất của bạn."
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "Các cột hiển thị"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "Các cột hiển thị"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "Khi được bật, token này cho phép các tác nhân tự đăng ký
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "Khi sử dụng POST, mỗi heartbeat bao gồm một tải trọng JSON với bản tóm tắt trạng thái hệ thống, danh sách các hệ thống bị hỏng và các cảnh báo đã được kích hoạt."
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "活跃"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "启用的警报"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "活动状态"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "添加 {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "添加 URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "警报历史"
|
||||
msgid "Alerts"
|
||||
msgstr "警报"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "所有容器"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "所有客户端"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "所有客户端"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "您确定要删除 {name} 吗?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "您确定吗?"
|
||||
@@ -340,6 +364,12 @@ msgstr "字节 (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "缓存/缓冲区"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "可重载"
|
||||
@@ -352,6 +382,7 @@ msgstr "可启动"
|
||||
msgid "Can stop"
|
||||
msgstr "可停止"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "摄氏度 (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "检查 {email} 以获取重置链接。"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "点击系统查看更多信息。"
|
||||
msgid "Click to copy"
|
||||
msgstr "点击复制"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "默认"
|
||||
msgid "Default time period"
|
||||
msgstr "默认时间段"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "默认时间段"
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "删除指纹"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "显示"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker 网络 I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "文档"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "文档"
|
||||
msgid "Down"
|
||||
msgstr "离线"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "离线 ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "退出活动状态"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "一小时后或重新启动集线器时过期。"
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "导出"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "失败: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "常规"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU 功耗"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU 使用率"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "网格"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "健康"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat 发送成功"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew 安装命令"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "主机/IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "镜像"
|
||||
msgid "Inactive"
|
||||
msgstr "非活跃"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "间隔"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "语言"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "布局"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "加载状态"
|
||||
msgid "Loading..."
|
||||
msgstr "加载中..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "在寻找创建警报的位置吗?点击系统表中的铃铛<0/>图
|
||||
msgid "Main PID"
|
||||
msgstr "主进程 ID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "管理显示和通知偏好。"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "网络单位"
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "通知"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "其他"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "覆盖现有警报"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "第 {0} 页,共 {1} 页"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "页面 / 设置"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "暂停"
|
||||
msgid "Paused"
|
||||
msgstr "已暂停"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "已暂停 ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "已暂停 ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "有效载荷 (Payload) 格式"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "恢复"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "搜索系统或设置..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "搜索系统或设置..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "定期向外部监控服务发送出站 ping,以便您在不将 Beszel
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "发送测试 heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "发送"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP 设置"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "排序依据"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "排序依据"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "状态"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "状态"
|
||||
msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "子状态"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "系统"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "系统可以在数据目录中的<0>config.yml</0>文件中管理。"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "表格"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "总计: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "由...触发"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "通用令牌"
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "无限制"
|
||||
msgid "Up"
|
||||
msgstr "在线"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "在线 ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "根分区的使用"
|
||||
msgid "Used"
|
||||
msgstr "已用"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "利用率"
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "视图"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "查看您最近的200个警报。"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "可见列"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "可见列"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "启用后,此令牌允许代理无需事先创建系统即可自行注
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "使用 POST 时,每个 heartbeat 都包含一个 JSON 有效载荷,其中包括系统状态摘要、故障系统列表和触发的警报。"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "啟用中"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "活動警報"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "活動狀態"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "新增 {foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "添加 URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "警報歷史"
|
||||
msgid "Alerts"
|
||||
msgstr "警報"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "所有容器"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "所有系統"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "所有系統"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "您確定要刪除 {name} 嗎?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "您確定嗎?"
|
||||
@@ -340,6 +364,12 @@ msgstr "位元組 (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "快取 / 緩衝區"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "可重載"
|
||||
@@ -352,6 +382,7 @@ msgstr "可啟動"
|
||||
msgid "Can stop"
|
||||
msgstr "可停止"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "攝氏 (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "檢查 {email} 以獲取重置鏈接。"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "點擊系統以查看更多資訊。"
|
||||
msgid "Click to copy"
|
||||
msgstr "點擊以複製"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "預設"
|
||||
msgid "Default time period"
|
||||
msgstr "預設時間段"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "預設時間段"
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "刪除指紋"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "顯示"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker 網絡 I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "文件"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "文件"
|
||||
msgid "Down"
|
||||
msgstr "中斷"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "中斷 ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "退出活動狀態"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "一小時後或重新啟動集線器時過期。"
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "匯出"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "失敗: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "一般"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU 功耗"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU 使用率"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "網格"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "健康狀態"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat 發送成功"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew 指令"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr "主機 / IP"
|
||||
@@ -1074,6 +1171,13 @@ msgstr "鏡像"
|
||||
msgid "Inactive"
|
||||
msgstr "未啟用"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "間隔"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "語言"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "版面配置"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "載入狀態"
|
||||
msgid "Loading..."
|
||||
msgstr "載入中..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "在尋找創建警報的位置嗎?點擊系統表中的鈴鐺<0/>。"
|
||||
msgid "Main PID"
|
||||
msgstr "主進程 ID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "管理顯示和通知偏好。"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "網路單位"
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "通知"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "其他"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "覆蓋現有警報"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "第 {0} 頁,共 {1} 頁"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "頁面 / 設定"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "暫停"
|
||||
msgid "Paused"
|
||||
msgstr "已暫停"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "已暫停 ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "已暫停 ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "負載 (Payload) 格式"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "恢復"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "搜索系統或設置..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "搜索系統或設置..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "定期向外部監控服務發送出站 ping,以便您在不將 Beszel
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "發送測試 heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "發送"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP設置"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "排序依據"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "排序依據"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "狀態"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "狀態"
|
||||
msgid "Status"
|
||||
msgstr "狀態"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "子狀態"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "系統"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "系統可以在您的數據目錄中的<0>config.yml</0>文件中管理。"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "表格"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "總計: {0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "由...觸發"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "通用令牌"
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "無限制"
|
||||
msgid "Up"
|
||||
msgstr "上線"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "上線 ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "根分區的使用"
|
||||
msgid "Used"
|
||||
msgstr "已用"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "利用率"
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "檢視"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "檢視最近 200 則警報。"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "可見欄位"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "可見欄位"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "啟用後,此權杖允許代理無需事先建立系統即可自行註
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "使用 POST 時,每個 heartbeat 都包含一個 JSON 負載,其中包含系統狀態摘要、故障系統列表和觸發的警報。"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -117,6 +117,11 @@ msgstr ""
|
||||
msgid "Active"
|
||||
msgstr "啟用中"
|
||||
|
||||
#. placeholder {0}: statusCounts.active
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Active ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/active-alerts.tsx
|
||||
msgid "Active Alerts"
|
||||
msgstr "活動警報"
|
||||
@@ -126,22 +131,29 @@ msgid "Active state"
|
||||
msgstr "活動狀態"
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
#~ msgid "Add"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Add {foo}"
|
||||
msgstr "新增{foo}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Add Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Add Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Add System"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/notifications.tsx
|
||||
msgid "Add URL"
|
||||
msgstr "新增 URL"
|
||||
@@ -191,6 +203,15 @@ msgstr "警報歷史"
|
||||
msgid "Alerts"
|
||||
msgstr "警報"
|
||||
|
||||
#. placeholder {0}: data.length
|
||||
#. placeholder {0}: stats.total
|
||||
#. placeholder {0}: statusCounts.total
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/navbar.tsx
|
||||
@@ -203,7 +224,6 @@ msgstr "所有容器"
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "All Systems"
|
||||
msgstr "所有系統"
|
||||
|
||||
@@ -211,6 +231,10 @@ msgstr "所有系統"
|
||||
msgid "Are you sure you want to delete {name}?"
|
||||
msgstr "您確定要刪除 {name} 嗎?"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Are you sure you want to delete this domain? This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "您確定嗎?"
|
||||
@@ -340,6 +364,12 @@ msgstr "位元組 (KB/s, MB/s, GB/s)"
|
||||
msgid "Cache / Buffers"
|
||||
msgstr "快取/緩衝"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/calendar.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Can reload"
|
||||
msgstr "可重載"
|
||||
@@ -352,6 +382,7 @@ msgstr "可啟動"
|
||||
msgid "Can stop"
|
||||
msgstr "可停止"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -376,8 +407,8 @@ msgid "Celsius (°C)"
|
||||
msgstr "攝氏 (°C)"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
msgstr ""
|
||||
#~ msgid "Certificate expiry notifications are only available for HTTPS monitors."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/general.tsx
|
||||
msgid "Change display units for metrics."
|
||||
@@ -409,8 +440,8 @@ msgid "Check {email} for a reset link."
|
||||
msgstr "檢查 {email} 以取得重設連結。"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Check History"
|
||||
msgstr ""
|
||||
#~ msgid "Check History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Check logs for more details."
|
||||
@@ -450,6 +481,10 @@ msgstr "點擊系統以查看更多資訊。"
|
||||
msgid "Click to copy"
|
||||
msgstr "點擊複製"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
#: src/components/login/forgot-pass-form.tsx
|
||||
msgid "Command line instructions"
|
||||
@@ -627,9 +662,17 @@ msgid "data.status"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Days before expiry to notify"
|
||||
msgid "Database Connection"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
#~ msgid "Days before expiry to notify"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
msgctxt "Default system layout option"
|
||||
msgid "Default"
|
||||
@@ -639,6 +682,7 @@ msgstr "預設"
|
||||
msgid "Default time period"
|
||||
msgstr "預設時間段"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
@@ -648,6 +692,10 @@ msgstr "預設時間段"
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Delete Domain"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Delete fingerprint"
|
||||
msgstr "刪除 Fingerprint"
|
||||
@@ -699,8 +747,8 @@ msgid "Display"
|
||||
msgstr "顯示"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "DNS Records"
|
||||
msgstr ""
|
||||
#~ msgid "DNS Records"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "DNS Server (optional)"
|
||||
@@ -723,6 +771,18 @@ msgstr "Docker 網路 I/O"
|
||||
msgid "Documentation"
|
||||
msgstr "文件"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Domain and SSL expiry calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Domain Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Domains"
|
||||
msgstr ""
|
||||
|
||||
#. Context: System is down
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
@@ -731,6 +791,11 @@ msgstr "文件"
|
||||
msgid "Down"
|
||||
msgstr "離線"
|
||||
|
||||
#. placeholder {0}: stats.down
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Down ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Down ({downSystemsLength})"
|
||||
msgstr "離線 ({downSystemsLength})"
|
||||
@@ -851,10 +916,20 @@ msgstr "結束"
|
||||
msgid "Expected Value"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: statusCounts.expired
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expired ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Expires after one hour or on hub restart."
|
||||
msgstr "在一個小時後或者重新啟動 Hub 時過期。"
|
||||
|
||||
#. placeholder {0}: statusCounts.expiring
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Expiring ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
msgid "Export"
|
||||
msgstr "匯出"
|
||||
@@ -914,6 +989,14 @@ msgstr ""
|
||||
msgid "Failed: {0}"
|
||||
msgstr "失敗:{0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Filter domains..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Filter monitors..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table.tsx
|
||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||
#: src/components/routes/system/chart-card.tsx
|
||||
@@ -958,8 +1041,8 @@ msgid "General"
|
||||
msgstr "一般"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "General notification settings will be configured in the Notifications tab."
|
||||
msgstr ""
|
||||
#~ msgid "General notification settings will be configured in the Notifications tab."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
msgid "Global"
|
||||
@@ -981,15 +1064,25 @@ msgstr "GPU 功耗"
|
||||
msgid "GPU Usage"
|
||||
msgstr "GPU 使用率"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/info-bar.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Grid"
|
||||
msgstr "網格"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "gRPC Keyword"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Headers (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "health"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
msgid "Health"
|
||||
msgstr "健康狀態"
|
||||
@@ -1007,8 +1100,8 @@ msgid "Heartbeat sent successfully"
|
||||
msgstr "Heartbeat 發送成功"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
#~ msgid "History"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
@@ -1016,6 +1109,10 @@ msgctxt "Button to copy install command"
|
||||
msgid "Homebrew command"
|
||||
msgstr "Homebrew 指令"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Host / Connection String"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
msgid "Host / IP"
|
||||
msgstr ""
|
||||
@@ -1074,6 +1171,13 @@ msgstr "映像檔"
|
||||
msgid "Inactive"
|
||||
msgstr "未啟用"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
#: src/components/routes/incidents.tsx
|
||||
msgid "Incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Interval"
|
||||
msgstr "間隔"
|
||||
@@ -1103,6 +1207,8 @@ msgstr ""
|
||||
msgid "Language"
|
||||
msgstr "語言"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Layout"
|
||||
msgstr "版面配置"
|
||||
@@ -1150,6 +1256,10 @@ msgstr "載入狀態"
|
||||
msgid "Loading..."
|
||||
msgstr "載入中..."
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "localhost:3306"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Log Out"
|
||||
@@ -1178,10 +1288,19 @@ msgstr "在尋找從哪裡建立警報嗎?點擊系統列表中的小鈴鐺<0/
|
||||
msgid "Main PID"
|
||||
msgstr "主 PID"
|
||||
|
||||
#. placeholder {0}: stats.maintenance
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Maintenance ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/settings/layout.tsx
|
||||
msgid "Manage display and notification preferences."
|
||||
msgstr "管理顯示和通知偏好。"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "Manage public status pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgid "Manual setup instructions"
|
||||
@@ -1243,6 +1362,24 @@ msgstr ""
|
||||
msgid "Monitor websites, APIs, and services"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Monitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "MQTT Topic"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "mydb"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
@@ -1283,14 +1420,22 @@ msgstr "網路單位"
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "No data available for selected time range"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors configured yet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "No monitors match your search."
|
||||
msgid "No monitors match your filters."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#~ msgid "No monitors match your search."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "No results found."
|
||||
@@ -1322,8 +1467,8 @@ msgid "Notifications"
|
||||
msgstr "通知"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Notify when certificate expires"
|
||||
msgstr ""
|
||||
#~ msgid "Notify when certificate expires"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
msgid "OAuth 2 / OIDC support"
|
||||
@@ -1364,13 +1509,17 @@ msgstr "其他"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
#~ msgid "Overview"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/alerts/alerts-sheet.tsx
|
||||
msgid "Overwrite existing alerts"
|
||||
msgstr "覆蓋現有警報"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/command-palette.tsx
|
||||
@@ -1387,8 +1536,13 @@ msgstr "第 {0} 頁,共 {1} 頁"
|
||||
msgid "Pages / Settings"
|
||||
msgstr "頁面 / 設定"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "password"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/login/auth-form.tsx
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
@@ -1417,6 +1571,11 @@ msgstr "暫停"
|
||||
msgid "Paused"
|
||||
msgstr "已暫停"
|
||||
|
||||
#. placeholder {0}: stats.paused
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Paused ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Paused ({pausedSystemsLength})"
|
||||
msgstr "已暫停 ({pausedSystemsLength})"
|
||||
@@ -1425,6 +1584,11 @@ msgstr "已暫停 ({pausedSystemsLength})"
|
||||
msgid "Payload format"
|
||||
msgstr "Payload 格式"
|
||||
|
||||
#. placeholder {0}: stats.pending
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Pending ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
msgid "Per-core average utilization"
|
||||
@@ -1583,8 +1747,8 @@ msgid "Response"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Response Times"
|
||||
msgstr ""
|
||||
#~ msgid "Response Times"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Restarts"
|
||||
@@ -1599,6 +1763,10 @@ msgstr "繼續"
|
||||
msgid "Retries"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "root"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table-columns.tsx
|
||||
msgctxt "Root disk label"
|
||||
msgid "Root"
|
||||
@@ -1662,12 +1830,16 @@ msgid "Search"
|
||||
msgstr "搜尋"
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems or settings..."
|
||||
msgstr "在設定或系統中搜尋..."
|
||||
#~ msgid "Search for systems or settings..."
|
||||
#~ msgstr "在設定或系統中搜尋..."
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
msgid "Search for systems, monitors, domains or settings..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Search monitors..."
|
||||
msgstr ""
|
||||
#~ msgid "Search monitors..."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/heartbeat.tsx
|
||||
msgid "Seconds between pings (default: 60)"
|
||||
@@ -1693,6 +1865,10 @@ msgstr "定期發送 Outbound Ping 至外部監控服務,讓您無需將 Besze
|
||||
msgid "Send test heartbeat"
|
||||
msgstr "發送測試 Heartbeat"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "sensor/temperature"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/charts/network-charts.tsx
|
||||
msgid "Sent"
|
||||
msgstr "傳送"
|
||||
@@ -1741,8 +1917,12 @@ msgid "SMTP settings"
|
||||
msgstr "SMTP 設定"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Sort By"
|
||||
msgstr "排序"
|
||||
#~ msgid "Sort By"
|
||||
#~ msgstr "排序"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "SSL Certificate"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1757,6 +1937,8 @@ msgid "State"
|
||||
msgstr "狀態"
|
||||
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/routes/system/smart-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
@@ -1765,6 +1947,16 @@ msgstr "狀態"
|
||||
msgid "Status"
|
||||
msgstr "狀態"
|
||||
|
||||
#: src/components/routes/monitor.tsx
|
||||
msgid "Status and response time over the selected period"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/routes/home.tsx
|
||||
#: src/components/routes/status-pages.tsx
|
||||
msgid "Status Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table-columns.tsx
|
||||
msgid "Sub State"
|
||||
msgstr "子狀態"
|
||||
@@ -1789,7 +1981,6 @@ msgstr ""
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/alerts-history-columns.tsx
|
||||
#: src/components/containers-table/containers-table-columns.tsx
|
||||
#: src/components/navbar.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
#: src/components/routes/settings/quiet-hours.tsx
|
||||
@@ -1817,6 +2008,8 @@ msgstr "系統"
|
||||
msgid "Systems may be managed in a <0>config.yml</0> file inside your data directory."
|
||||
msgstr "可以用您Data資料夾中的<0>config.yml</0>來管理系統。"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Table"
|
||||
msgstr "列表"
|
||||
@@ -1944,6 +2137,10 @@ msgstr ""
|
||||
msgid "Total: {0}"
|
||||
msgstr "總計:{0}"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Track domain expiry dates and watch domains for purchase"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Triggered by"
|
||||
msgstr "觸發者"
|
||||
@@ -2022,6 +2219,11 @@ msgstr "通用 Token"
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#. placeholder {0}: statusCounts.unknown
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
msgid "Unknown ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
#: src/components/systemd-table/systemd-table.tsx
|
||||
msgid "Unlimited"
|
||||
@@ -2033,6 +2235,11 @@ msgstr "無限制"
|
||||
msgid "Up"
|
||||
msgstr "上線"
|
||||
|
||||
#. placeholder {0}: stats.up
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
msgid "Up ({0})"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Up ({upSystemsLength})"
|
||||
msgstr "上線 ({upSystemsLength})"
|
||||
@@ -2089,6 +2296,10 @@ msgstr "Root 分區的使用量"
|
||||
msgid "Used"
|
||||
msgstr "已使用"
|
||||
|
||||
#: src/components/monitors-table/add-monitor-dialog.tsx
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/command-palette.tsx
|
||||
#: src/components/navbar.tsx
|
||||
msgid "Users"
|
||||
@@ -2103,10 +2314,16 @@ msgstr "利用率"
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
#: src/components/domains-table/domains-table.tsx
|
||||
#: src/components/monitors-table/monitors-table.tsx
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "View"
|
||||
msgstr "檢視"
|
||||
|
||||
#: src/components/routes/home.tsx
|
||||
msgid "View and manage incidents"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/routes/system/cpu-sheet.tsx
|
||||
#: src/components/routes/system/disk-io-sheet.tsx
|
||||
#: src/components/routes/system/network-sheet.tsx
|
||||
@@ -2118,8 +2335,8 @@ msgid "View your 200 most recent alerts."
|
||||
msgstr "檢視最近 200 則警報。"
|
||||
|
||||
#: src/components/systems-table/systems-table.tsx
|
||||
msgid "Visible Fields"
|
||||
msgstr "顯示欄位"
|
||||
#~ msgid "Visible Fields"
|
||||
#~ msgstr "顯示欄位"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#: src/components/routes/monitor.tsx
|
||||
@@ -2162,6 +2379,10 @@ msgstr "啟用後,此 Token 可讓 Agent 自行註冊,無需預先在系統
|
||||
msgid "When using POST, each heartbeat includes a JSON payload with system status summary, list of down systems, and triggered alerts."
|
||||
msgstr "使用 POST 時,每個 Heartbeat 都會包含一個 JSON Payload,內容涵蓋系統狀態概況、離線系統清單以及已觸發的警報。"
|
||||
|
||||
#: src/components/routes/domain.tsx
|
||||
#~ msgid "WHOIS Info"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/components/add-system.tsx
|
||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||
msgctxt "Button to copy install command"
|
||||
|
||||
@@ -34,6 +34,10 @@ const Smart = lazy(() => import("@/components/routes/smart.tsx"))
|
||||
const SystemDetail = lazy(() => import("@/components/routes/system.tsx"))
|
||||
const DomainDetail = lazy(() => import("@/components/routes/domain.tsx"))
|
||||
const MonitorDetail = lazy(() => import("@/components/routes/monitor.tsx"))
|
||||
const StatusPages = lazy(() => import("@/components/routes/status-pages.tsx"))
|
||||
const Incidents = lazy(() => import("@/components/routes/incidents.tsx"))
|
||||
const Calendar = lazy(() => import("@/components/routes/calendar.tsx"))
|
||||
const Monitoring = lazy(() => import("@/components/routes/monitoring.tsx"))
|
||||
const CopyToClipboardDialog = lazy(() => import("@/components/copy-to-clipboard.tsx"))
|
||||
|
||||
const App = memo(() => {
|
||||
@@ -88,6 +92,14 @@ const App = memo(() => {
|
||||
return <Smart />
|
||||
} else if (page.route === "settings") {
|
||||
return <Settings />
|
||||
} else if (page.route === "status_pages") {
|
||||
return <StatusPages />
|
||||
} else if (page.route === "incidents") {
|
||||
return <Incidents />
|
||||
} else if (page.route === "calendar") {
|
||||
return <Calendar />
|
||||
} else if (page.route === "monitoring") {
|
||||
return <Monitoring />
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -21,4 +21,12 @@ export default defineConfig({
|
||||
"@": path.resolve(__dirname, "./src"),
|
||||
},
|
||||
},
|
||||
server: {
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: "http://localhost:8090",
|
||||
changeOrigin: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user