i18n: update locale files and source strings

This commit is contained in:
henrygd
2026-09-02 14:57:37 -04:00
parent f104f31ee3
commit 7d97b0d23a
35 changed files with 3918 additions and 432 deletions

View File

@@ -126,9 +126,9 @@ export function DiskUsageChart({ systemData, extraFsName }: { systemData: System
} }
const rootName = systemData.system?.info?.rdn const rootName = systemData.system?.info?.rdn
const rootLabel = rootName ?? t`Root` const rootLabel = rootName ?? t({ message: `Root`, context: "Root disk label" })
const title = extraFsName ? `${extraFsName} ${t`Usage`}` : `${rootLabel} ${t`Usage`}` const title = extraFsName ? `${extraFsName} ${t`Usage`}` : `${rootLabel} ${t`Usage`}`
const description = extraFsName ? t`Disk usage of ${extraFsName}` : t`Disk usage of ${rootLabel}` const description = t`Disk usage of ${{extraFsName: extraFsName ?? rootLabel.toLowerCase()}}`
return ( return (
<ChartCard empty={dataEmpty} grid={grid} title={title} description={description}> <ChartCard empty={dataEmpty} grid={grid} title={title} description={description}>
@@ -166,9 +166,9 @@ export function DiskIOChart({ systemData, extraFsName }: { systemData: SystemDat
} }
const rootName = systemData.system?.info?.rdn const rootName = systemData.system?.info?.rdn
const rootLabel = rootName ?? t`Root` const rootLabel = rootName ?? t({ message: `Root`, context: "Root disk label" })
const title = extraFsName ? `${extraFsName} I/O` : `${rootLabel} I/O` const title = t`${{diskName: extraFsName ?? rootLabel}} I/O`
const description = extraFsName ? t`Throughput of ${extraFsName}` : t`Throughput of ${rootLabel}` const description = t`Throughput of ${{extraFsName: extraFsName ?? rootLabel.toLowerCase()}}`
const hasMoreIOMetrics = chartData.systemStats?.some((record) => record.stats?.dios?.at(0)) const hasMoreIOMetrics = chartData.systemStats?.some((record) => record.stats?.dios?.at(0))

View File

@@ -85,7 +85,7 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
{ {
accessorKey: "name", accessorKey: "name",
sortingFn: (a, b) => a.original.name.localeCompare(b.original.name), sortingFn: (a, b) => a.original.name.localeCompare(b.original.name),
header: ({ column }) => <HeaderButton column={column} name={t`Pool`} Icon={HardDriveIcon} />, header: ({ column }) => <HeaderButton column={column} name={`Pool`} Icon={HardDriveIcon} />,
cell: ({ getValue }) => <span className="font-medium ms-1.5">{getValue() as string}</span>, cell: ({ getValue }) => <span className="font-medium ms-1.5">{getValue() as string}</span>,
}, },
{ {
@@ -101,7 +101,7 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
id: "size", id: "size",
accessorFn: (record) => record.size, accessorFn: (record) => record.size,
invertSorting: true, invertSorting: true,
header: ({ column }) => <HeaderButton column={column} name={t`Size`} Icon={BinaryIcon} />, header: ({ column }) => <HeaderButton column={column} name={t`Capacity`} Icon={BinaryIcon} />,
cell: ({ getValue }) => <span className="ms-1.5 tabular-nums">{formatCapacity(getValue() as number)}</span>, cell: ({ getValue }) => <span className="ms-1.5 tabular-nums">{formatCapacity(getValue() as number)}</span>,
}, },
{ {
@@ -115,13 +115,13 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
id: "free", id: "free",
accessorFn: (record) => record.free, accessorFn: (record) => record.free,
invertSorting: true, invertSorting: true,
header: ({ column }) => <HeaderButton column={column} name={t`Free`} Icon={HardDriveUploadIcon} />, header: ({ column }) => <HeaderButton column={column} name={t({ message: `Free`, context: "Free space" })} Icon={HardDriveUploadIcon} />,
cell: ({ getValue }) => <span className="ms-1.5 tabular-nums">{formatCapacity(getValue() as number)}</span>, cell: ({ getValue }) => <span className="ms-1.5 tabular-nums">{formatCapacity(getValue() as number)}</span>,
}, },
{ {
id: "scrub", id: "scrub",
accessorFn: (record) => record.scrub?.state ?? "", accessorFn: (record) => record.scrub?.state ?? "",
header: ({ column }) => <HeaderButton column={column} name={t`Scrub`} Icon={RotateCwIcon} />, header: ({ column }) => <HeaderButton column={column} name={`Scrub`} Icon={RotateCwIcon} />,
cell: ({ row }) => { cell: ({ row }) => {
const scrub = row.original.scrub const scrub = row.original.scrub
if (!scrub?.state) return <span className="ms-1.5 text-muted-foreground">{t`None`}</span> if (!scrub?.state) return <span className="ms-1.5 text-muted-foreground">{t`None`}</span>
@@ -155,7 +155,7 @@ function VdevTable({ vdevs }: { vdevs: ZfsVdev[] }) {
<Table> <Table>
<TableHeader> <TableHeader>
<TableRow> <TableRow>
<TableHead>{t`Vdev`}</TableHead> <TableHead>Vdev</TableHead>
<TableHead>{t`State`}</TableHead> <TableHead>{t`State`}</TableHead>
<TableHead className="text-right">{t`Read errors`}</TableHead> <TableHead className="text-right">{t`Read errors`}</TableHead>
<TableHead className="text-right">{t`Write errors`}</TableHead> <TableHead className="text-right">{t`Write errors`}</TableHead>
@@ -201,7 +201,7 @@ const datasetColumns: ColumnDef<ZfsDataset>[] = [
{ {
accessorKey: "name", accessorKey: "name",
sortingFn: (a, b) => a.original.name.localeCompare(b.original.name), sortingFn: (a, b) => a.original.name.localeCompare(b.original.name),
header: ({ column }) => <HeaderButton column={column} name={t`Dataset`} Icon={HardDriveIcon} />, header: ({ column }) => <HeaderButton column={column} name={`Dataset`} Icon={HardDriveIcon} />,
cell: ({ getValue }) => <span className="font-mono text-xs">{getValue() as string}</span>, cell: ({ getValue }) => <span className="font-mono text-xs">{getValue() as string}</span>,
}, },
{ {
@@ -215,7 +215,7 @@ const datasetColumns: ColumnDef<ZfsDataset>[] = [
id: "avail", id: "avail",
accessorFn: (ds) => ds.avail ?? 0, accessorFn: (ds) => ds.avail ?? 0,
invertSorting: true, invertSorting: true,
header: ({ column }) => <HeaderButton column={column} name={t`Available`} Icon={HardDriveUploadIcon} />, header: ({ column }) => <HeaderButton column={column} name={t({message:`Available`, context: "Disk space available"})} Icon={HardDriveUploadIcon} />,
cell: ({ getValue }) => <span className="text-right tabular-nums">{formatCapacity(getValue() as number)}</span>, cell: ({ getValue }) => <span className="text-right tabular-nums">{formatCapacity(getValue() as number)}</span>,
}, },
{ {
@@ -248,12 +248,10 @@ function DatasetTable({ datasets }: { datasets: ZfsDataset[] }) {
return ( return (
<div> <div>
<div className="mb-2 flex items-center justify-between gap-4"> <div className="mb-2 flex items-center justify-between gap-4">
<h3 className="text-base font-semibold"> <h3 className="text-base font-semibold">Datasets</h3>
<Trans>Datasets</Trans>
</h3>
<div className="relative w-64 max-w-full"> <div className="relative w-64 max-w-full">
<Input <Input
placeholder={t`Filter datasets...`} placeholder={t`Filter...`}
value={filter} value={filter}
onChange={(e) => setFilter(e.target.value)} onChange={(e) => setFilter(e.target.value)}
className="px-4 w-full" className="px-4 w-full"
@@ -347,7 +345,7 @@ function PoolSheet({
<SheetContent className="w-full sm:max-w-220 gap-0 overflow-y-auto"> <SheetContent className="w-full sm:max-w-220 gap-0 overflow-y-auto">
<SheetHeader className="mb-0 border-b"> <SheetHeader className="mb-0 border-b">
<SheetTitle className="flex items-center gap-2"> <SheetTitle className="flex items-center gap-2">
{pool ? pool.name : t`ZFS Pool`} {pool ? pool.name : `ZFS Pool`}
{pool && <Badge variant={healthVariantValue}>{health}</Badge>} {pool && <Badge variant={healthVariantValue}>{health}</Badge>}
</SheetTitle> </SheetTitle>
<SheetDescription className="flex flex-wrap items-center gap-x-2 gap-y-1"> <SheetDescription className="flex flex-wrap items-center gap-x-2 gap-y-1">
@@ -364,7 +362,7 @@ function PoolSheet({
<> <>
<Separator orientation="vertical" className="h-2.5 bg-muted-foreground opacity-70" /> <Separator orientation="vertical" className="h-2.5 bg-muted-foreground opacity-70" />
<span> <span>
<Trans>Free</Trans>: {formatCapacity(pool.free)} <Trans context="Free space">Free</Trans>: {formatCapacity(pool.free)}
</span> </span>
</> </>
) : null} ) : null}
@@ -385,7 +383,7 @@ function PoolSheet({
</AlertTitle> </AlertTitle>
{pool.scrub?.state && ( {pool.scrub?.state && (
<AlertDescription> <AlertDescription>
<Trans>Scrub</Trans>: {pool.scrub.state} Scrub: {pool.scrub.state}
{pool.scrub.progress ? ` (${pool.scrub.progress})` : ""} {pool.scrub.progress ? ` (${pool.scrub.progress})` : ""}
{pool.scrub.errors ? `, ${pool.scrub.errors} errors` : ""} {pool.scrub.errors ? `, ${pool.scrub.errors} errors` : ""}
</AlertDescription> </AlertDescription>

View File

@@ -120,7 +120,7 @@ export const alertInfo: Record<string, AlertInfo> = {
unit: "", unit: "",
icon: ServerCrashIcon, icon: ServerCrashIcon,
desc: () => t`Triggers when any systemd service enters the failed state`, desc: () => t`Triggers when any systemd service enters the failed state`,
triggeredDesc: () => t`One or more services are in the failed state`, triggeredDesc: () => t`One or more services are in a failed state`,
/** Fires on first observation - the agent only polls systemd every 10 minutes */ /** Fires on first observation - the agent only polls systemd every 10 minutes */
noDuration: true, noDuration: true,
}, },

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} ساعة} other {{countString} ساع
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} دقيقة} few {{countString} دقائق} many {{countString} دقيقة} other {{countString} دقيقة}}" msgstr "{count, plural, one {{countString} دقيقة} few {{countString} دقائق} many {{countString} دقيقة} other {{countString} دقيقة}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# خيط} other {# خيط}}" msgstr "{threads, plural, one {# خيط} other {# خيط}}"
@@ -93,6 +97,7 @@ msgstr "5 دقائق"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "إجراءات" msgstr "إجراءات"
@@ -191,6 +196,11 @@ msgstr "هل أنت متأكد؟"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "النسخ التلقائي يتطلب سياقًا آمنًا." msgstr "النسخ التلقائي يتطلب سياقًا آمنًا."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "متوسط" msgstr "متوسط"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "القدرات" msgstr "القدرات"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "السعة" msgstr "السعة"
@@ -380,8 +391,14 @@ msgstr "تحقق من خدمة المراقبة الخاصة بك"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "تحقق من خدمة الإشعارات الخاصة بك" msgstr "تحقق من خدمة الإشعارات الخاصة بك"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "مسح" msgstr "مسح"
@@ -394,6 +411,10 @@ msgstr "انقر على حاوية لعرض مزيد من المعلومات."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "انقر على جهاز لعرض مزيد من المعلومات." msgstr "انقر على جهاز لعرض مزيد من المعلومات."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "انقر على نظام لعرض مزيد من المعلومات." msgstr "انقر على نظام لعرض مزيد من المعلومات."
@@ -559,14 +580,30 @@ msgstr "أنشئت"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "حرج (%)" msgstr "حرج (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "التنزيل التراكمي" msgstr "التنزيل التراكمي"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "الرفع التراكمي" msgstr "الرفع التراكمي"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "قيد التفريغ"
msgid "Disk" msgid "Disk"
msgstr "القرص" msgstr "القرص"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "إدخال/إخراج القرص"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "وحدة القرص" msgstr "وحدة القرص"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "فشل"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "السمات الفاشلة:" msgstr "السمات الفاشلة:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "فشل في المصادقة" msgstr "فشل في المصادقة"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "لمدة <0>{min}</0> {min, plural, one {دقيقة} other {دقائق}}
msgid "Forgot password?" msgid "Forgot password?"
msgstr "هل نسيت كلمة المرور؟" msgstr "هل نسيت كلمة المرور؟"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "شبكة" msgstr "شبكة"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "الصحة" msgstr "الصحة"
@@ -1101,6 +1146,10 @@ msgstr "استخدام الذاكرة للحاويات"
msgid "Model" msgid "Model"
msgstr "الموديل" msgstr "الموديل"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "وحدة الشبكة"
msgid "No" msgid "No"
msgstr "لا" msgstr "لا"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "لا توجد سمات S.M.A.R.T. متاحة لهذا الجهاز."
msgid "No systems found." msgid "No systems found."
msgstr "لم يتم العثور على أنظمة." msgstr "لم يتم العثور على أنظمة."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "الإشعارات" msgstr "الإشعارات"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "دعم OAuth 2 / OIDC" msgstr "دعم OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "دعم OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "في كل إعادة تشغيل، سيتم تحديث الأنظمة في قاعدة البيانات لتتطابق مع الأنظمة المعرفة في الملف." msgstr "في كل إعادة تشغيل، سيتم تحديث الأنظمة في قاعدة البيانات لتتطابق مع الأنظمة المعرفة في الملف."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "كلمة مرور لمرة واحدة"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "فتح القائمة" msgstr "فتح القائمة"
@@ -1309,6 +1379,14 @@ msgstr "يرجى الاطلاع على <0>التوثيق</0> للحصول على
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "يرجى تسجيل الدخول إلى حسابك" msgstr "يرجى تسجيل الدخول إلى حسابك"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "المنفذ" msgstr "المنفذ"
@@ -1354,14 +1432,21 @@ msgstr "عمق الدور"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "ساعات الهدوء" msgstr "ساعات الهدوء"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "قراءة" msgstr "قراءة"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "تم الاستلام" msgstr "تم الاستلام"
@@ -1369,6 +1454,7 @@ msgstr "تم الاستلام"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "تحديث" msgstr "تحديث"
@@ -1410,6 +1496,8 @@ msgstr "إعادة التشغيل"
msgid "Resume" msgid "Resume"
msgstr "استئناف" msgstr "استئناف"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "وقت البدء"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "الحالة" msgstr "الحالة"
@@ -1683,9 +1772,9 @@ msgstr "سيؤدي هذا إلى حذف جميع السجلات المحددة
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "معدل نقل {extraFsName}" msgstr "معدل نقل {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "معدل نقل نظام الملفات الجذر" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "يتم التفعيل عندما يتجاوز متوسط التحميل لمدة 5 دقائق عتبة معينة" msgstr "يتم التفعيل عندما يتجاوز متوسط التحميل لمدة 5 دقائق عتبة معينة"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "يتم التفعيل عندما يُبلّغ فحص سلامة حاوية Docker بأنها غير سليمة" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "يتم التفعيل عندما يتجاوز أي مستشعر عتبة معينة" msgstr "يتم التفعيل عندما يتجاوز أي مستشعر عتبة معينة"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "يتم التفعيل عندما تنخفض شحنة البطارية أقل من عتبة معينة" msgstr "يتم التفعيل عندما تنخفض شحنة البطارية أقل من عتبة معينة"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "رمز مميز عالمي" msgstr "رمز مميز عالمي"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "غير معروفة" msgstr "غير معروفة"
@@ -1851,6 +1945,7 @@ msgstr "تحديث"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "تم التحديث" msgstr "تم التحديث"
@@ -1868,20 +1963,25 @@ msgstr "رفع"
msgid "Uptime" msgid "Uptime"
msgstr "مدة التشغيل" msgstr "مدة التشغيل"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "الاستخدام" msgstr "الاستخدام"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "استخدام القسم الجذر" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "مستخدم" msgstr "مستخدم"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "أمر ويندوز" msgstr "أمر ويندوز"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "كتابة" msgstr "كتابة"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "تكوين YAML" msgstr "تكوين YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} час} other {{countString} часа
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} минута} few {{countString} минути} many {{countString} минути} other {{countString} минути}}" msgstr "{count, plural, one {{countString} минута} few {{countString} минути} many {{countString} минути} other {{countString} минути}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# нишка} other {# нишки}}" msgstr "{threads, plural, one {# нишка} other {# нишки}}"
@@ -93,6 +97,7 @@ msgstr "5 минути"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Действия" msgstr "Действия"
@@ -191,6 +196,11 @@ msgstr "Сигурни ли сте?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Автоматичното копиране изисква защитен контескт." msgstr "Автоматичното копиране изисква защитен контескт."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Средно" msgstr "Средно"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Възможности" msgstr "Възможности"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Капацитет" msgstr "Капацитет"
@@ -380,8 +391,14 @@ msgstr "Проверете мониторинг услугата си"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Провери услугата си за удостоверяване" msgstr "Провери услугата си за удостоверяване"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Изчисти" msgstr "Изчисти"
@@ -394,6 +411,10 @@ msgstr "Кликнете върху контейнер, за да видите
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Кликнете върху устройство, за да видите повече информация." msgstr "Кликнете върху устройство, за да видите повече информация."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Кликнете върху система, за да видите повече информация." msgstr "Кликнете върху система, за да видите повече информация."
@@ -559,14 +580,30 @@ msgstr "Създаден"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Критично (%)" msgstr "Критично (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Кумулативно изтегляне" msgstr "Кумулативно изтегляне"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Кумулативно качване" msgstr "Кумулативно качване"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Разреждане"
msgid "Disk" msgid "Disk"
msgstr "Диск" msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Диск I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Единица за диск" msgstr "Единица за диск"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неуспешно"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Неуспешни атрибути:" msgstr "Неуспешни атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Неуспешно удостоверяване" msgstr "Неуспешно удостоверяване"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "За <0>{min}</0> {min, plural, one {минута} other {минути}}
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Забравена парола?" msgstr "Забравена парола?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Мрежово" msgstr "Мрежово"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Здраве" msgstr "Здраве"
@@ -1101,6 +1146,10 @@ msgstr "Използване на паметта от контейнерите"
msgid "Model" msgid "Model"
msgstr "Модел" msgstr "Модел"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Единица за измерване на скорост"
msgid "No" msgid "No"
msgstr "Не" msgstr "Не"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Няма налични S.M.A.R.T. атрибути за това уст
msgid "No systems found." msgid "No systems found."
msgstr "Няма намерени системи." msgstr "Няма намерени системи."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Нотификации" msgstr "Нотификации"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Поддръжка на OAuth 2 / OIDC" msgstr "Поддръжка на OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Поддръжка на OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "На всеки рестарт, системите в датабазата ще бъдат обновени да съвпадат със системите зададени във файла." msgstr "На всеки рестарт, системите в датабазата ще бъдат обновени да съвпадат със системите зададени във файла."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Еднократна парола"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Отвори менюто" msgstr "Отвори менюто"
@@ -1309,6 +1379,14 @@ msgstr "Моля виж <0>документацията</0> за инструк
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Моля влез в акаунта ти" msgstr "Моля влез в акаунта ти"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Дълбочина на опашката"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Тихи часове" msgstr "Тихи часове"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Прочети" msgstr "Прочети"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Получени" msgstr "Получени"
@@ -1369,6 +1454,7 @@ msgstr "Получени"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Опресни" msgstr "Опресни"
@@ -1410,6 +1496,8 @@ msgstr "Рестартирания"
msgid "Resume" msgid "Resume"
msgstr "Възобнови" msgstr "Възобнови"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Начален час"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Състояние" msgstr "Състояние"
@@ -1683,9 +1772,9 @@ msgstr "Това ще доведе до трайно изтриване на в
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Пропускателна способност на {extraFsName}" msgstr "Пропускателна способност на {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Пропускателна способност на root файловата система" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Задейства се, когато употребата на паметта за 5 минута надвиши зададен праг" msgstr "Задейства се, когато употребата на паметта за 5 минута надвиши зададен праг"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Задейства се, когато проверката за състояние на Docker контейнер докладва нездравословно състояние" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Задейства се, когато някой даден сензор надвиши зададен праг" msgstr "Задейства се, когато някой даден сензор надвиши зададен праг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Задейства се, когато зарядът на батерията падне под зададен праг" msgstr "Задейства се, когато зарядът на батерията падне под зададен праг"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универсален тоукън" msgstr "Универсален тоукън"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Неизвестна" msgstr "Неизвестна"
@@ -1851,6 +1945,7 @@ msgstr "Актуализирай"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Актуализирано" msgstr "Актуализирано"
@@ -1868,20 +1963,25 @@ msgstr "Качване"
msgid "Uptime" msgid "Uptime"
msgstr "Време на работа" msgstr "Време на работа"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Употреба" msgstr "Употреба"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Употреба на root partition-а" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Използвани" msgstr "Използвани"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Команда Windows" msgstr "Команда Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Запиши" msgstr "Запиши"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML конфигурация" msgstr "YAML конфигурация"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} Hodina} few {{countString} Hodiny} ma
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuta} few {{countString} minuty} many {{countString} minut} other {{countString} minut}}" msgstr "{count, plural, one {{countString} minuta} few {{countString} minuty} many {{countString} minut} other {{countString} minut}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# vlákno} few {# vlákna} many {# vláken} other {# vláken}}" msgstr "{threads, plural, one {# vlákno} few {# vlákna} many {# vláken} other {# vláken}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Akce" msgstr "Akce"
@@ -191,6 +196,11 @@ msgstr "Jste si jistý?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatická kopie vyžaduje zabezpečený kontext." msgstr "Automatická kopie vyžaduje zabezpečený kontext."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Průměr" msgstr "Průměr"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Schopnosti" msgstr "Schopnosti"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapacita" msgstr "Kapacita"
@@ -380,8 +391,14 @@ msgstr "Zkontrolujte svou monitorovací službu"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Zkontrolujte službu upozornění" msgstr "Zkontrolujte službu upozornění"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Vymazat" msgstr "Vymazat"
@@ -394,6 +411,10 @@ msgstr "Klikněte na kontejner pro zobrazení dalších informací."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klikněte na zařízení pro zobrazení dalších informací." msgstr "Klikněte na zařízení pro zobrazení dalších informací."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klikněte na systém pro zobrazení více informací." msgstr "Klikněte na systém pro zobrazení více informací."
@@ -559,14 +580,30 @@ msgstr "Vytvořeno"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritické (%)" msgstr "Kritické (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativní stažení" msgstr "Kumulativní stažení"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativní odeslání" msgstr "Kumulativní odeslání"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Vybíjení"
msgid "Disk" msgid "Disk"
msgstr "" msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O disku"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Disková jednotka" msgstr "Disková jednotka"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Selhalo"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Neúspěšné atributy:" msgstr "Neúspěšné atributy:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Ověření se nezdařilo" msgstr "Ověření se nezdařilo"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minutu} few {minuty} other {minut}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Zapomněli jste heslo?" msgstr "Zapomněli jste heslo?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Mřížka" msgstr "Mřížka"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Zdraví" msgstr "Zdraví"
@@ -1101,6 +1146,10 @@ msgstr "Využití paměti kontejnery"
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Síťová jednotka"
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Pro toto zařízení nejsou k dispozici žádné atributy S.M.A.R.T."
msgid "No systems found." msgid "No systems found."
msgstr "Nenalezeny žádné systémy." msgstr "Nenalezeny žádné systémy."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Upozornění" msgstr "Upozornění"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Podpora OAuth 2 / OIDC" msgstr "Podpora OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Podpora OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Při každém restartu budou systémy v databázi aktualizovány tak, aby odpovídaly systémům definovaným v souboru." msgstr "Při každém restartu budou systémy v databázi aktualizovány tak, aby odpovídaly systémům definovaným v souboru."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Jednorázové heslo"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Otevřít menu" msgstr "Otevřít menu"
@@ -1309,6 +1379,14 @@ msgstr "Instrukce naleznete v <0>dokumentaci</0>."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Přihlaste se prosím k vašemu účtu" msgstr "Přihlaste se prosím k vašemu účtu"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "" msgstr ""
@@ -1354,14 +1432,21 @@ msgstr "Hloubka fronty"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Tiché hodiny" msgstr "Tiché hodiny"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Číst" msgstr "Číst"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Přijato" msgstr "Přijato"
@@ -1369,6 +1454,7 @@ msgstr "Přijato"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Aktualizovat" msgstr "Aktualizovat"
@@ -1410,6 +1496,8 @@ msgstr "Restarty"
msgid "Resume" msgid "Resume"
msgstr "Pokračovat" msgstr "Pokračovat"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Čas začátku"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Stav" msgstr "Stav"
@@ -1683,9 +1772,9 @@ msgstr "Tímto trvale odstraníte všechny vybrané záznamy z databáze."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Propustnost {extraFsName}" msgstr "Propustnost {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Propustnost kořenového souborového systému" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Spustí se, když využití paměti během 5 minut překročí prahovou hodnotu" msgstr "Spustí se, když využití paměti během 5 minut překročí prahovou hodnotu"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Spouští se, když kontrola stavu (health check) kontejneru Dockeru nahlásí stav nezdravý" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Spustí se, když některý senzor překročí prahovou hodnotu" msgstr "Spustí se, když některý senzor překročí prahovou hodnotu"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Spustí se, když úroveň nabití baterie klesne pod prahovou hodnotu" msgstr "Spustí se, když úroveň nabití baterie klesne pod prahovou hodnotu"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzální token" msgstr "Univerzální token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Neznámá" msgstr "Neznámá"
@@ -1851,6 +1945,7 @@ msgstr "Aktualizovat"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Aktualizováno" msgstr "Aktualizováno"
@@ -1868,20 +1963,25 @@ msgstr "Odeslání"
msgid "Uptime" msgid "Uptime"
msgstr "Doba provozu" msgstr "Doba provozu"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Využití" msgstr "Využití"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Využití kořenového oddílu" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Využito" msgstr "Využito"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows příkaz" msgstr "Windows příkaz"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Psát" msgstr "Psát"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML konfigurace" msgstr "YAML konfigurace"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} time} other {{countString} timer}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minut} other {{countString} minutter}}" msgstr "{count, plural, one {{countString} minut} other {{countString} minutter}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# tråd} other {# tråde}}" msgstr "{threads, plural, one {# tråd} other {# tråde}}"
@@ -93,6 +97,7 @@ msgstr "5 minutter"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Handlinger" msgstr "Handlinger"
@@ -191,6 +196,11 @@ msgstr "Er du sikker?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatisk kopiering kræver en sikker kontekst." msgstr "Automatisk kopiering kræver en sikker kontekst."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Gennemsnitlig" msgstr "Gennemsnitlig"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Funktioner" msgstr "Funktioner"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapacitet" msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Tjek din overvågningstjeneste"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Tjek din notifikationstjeneste" msgstr "Tjek din notifikationstjeneste"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Ryd" msgstr "Ryd"
@@ -394,6 +411,10 @@ msgstr "Klik på en container for at se mere information."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klik på en enhed for at se flere oplysninger." msgstr "Klik på en enhed for at se flere oplysninger."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klik på et system for at se mere information." msgstr "Klik på et system for at se mere information."
@@ -559,14 +580,30 @@ msgstr "Oprettet"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritisk (%)" msgstr "Kritisk (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativ download" msgstr "Kumulativ download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativ upload" msgstr "Kumulativ upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Aflader"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Diskenhed" msgstr "Diskenhed"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislykkedes"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Mislykkede attributter:" msgstr "Mislykkede attributter:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Kunne ikke godkende" msgstr "Kunne ikke godkende"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "For <0>{min}</0> {min, plural, one {minut} other {minutter}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Glemt adgangskode?" msgstr "Glemt adgangskode?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Gitter" msgstr "Gitter"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Sundhed" msgstr "Sundhed"
@@ -1101,6 +1146,10 @@ msgstr "Containeres hukommelsesforbrug"
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netværksenhed"
msgid "No" msgid "No"
msgstr "Nej" msgstr "Nej"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Ingen S.M.A.R.T.-attributter tilgængelige for denne enhed."
msgid "No systems found." msgid "No systems found."
msgstr "Ingen systemer fundet." msgstr "Ingen systemer fundet."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notifikationer" msgstr "Notifikationer"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC understøttelse" msgstr "OAuth 2 / OIDC understøttelse"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC understøttelse"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Ved hver genstart vil systemer i databasen blive opdateret til at matche de systemer, der er defineret i filen." msgstr "Ved hver genstart vil systemer i databasen blive opdateret til at matche de systemer, der er defineret i filen."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Engangsadgangskode"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Åbn menu" msgstr "Åbn menu"
@@ -1309,6 +1379,14 @@ msgstr "Se <0>dokumentationen</0> for instruktioner."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Log venligst ind på din konto" msgstr "Log venligst ind på din konto"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kødybde"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Stille timer" msgstr "Stille timer"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Læs" msgstr "Læs"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Modtaget" msgstr "Modtaget"
@@ -1369,6 +1454,7 @@ msgstr "Modtaget"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Opdater" msgstr "Opdater"
@@ -1410,6 +1496,8 @@ msgstr "Genstarter"
msgid "Resume" msgid "Resume"
msgstr "Genoptag" msgstr "Genoptag"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Tilstand" msgstr "Tilstand"
@@ -1683,9 +1772,9 @@ msgstr "Dette vil permanent slette alle poster fra databasen."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Gennemløb af {extraFsName}" msgstr "Gennemløb af {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Gennemløb af rodfilsystemet" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Udløser når 5 minut belastning gennemsnit overstiger en tærskel" msgstr "Udløser når 5 minut belastning gennemsnit overstiger en tærskel"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Udløser når en Docker-containers helbredstjek rapporterer usund" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Udløser når en sensor overstiger en tærskel" msgstr "Udløser når en sensor overstiger en tærskel"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Udløses når batteriniveauet falder under en tærskel" msgstr "Udløses når batteriniveauet falder under en tærskel"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universalnøgle" msgstr "Universalnøgle"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Ukendt" msgstr "Ukendt"
@@ -1851,6 +1945,7 @@ msgstr "Opdater"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Opdateret" msgstr "Opdateret"
@@ -1868,20 +1963,25 @@ msgstr "Overfør"
msgid "Uptime" msgid "Uptime"
msgstr "Oppetid" msgstr "Oppetid"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Forbrug" msgstr "Forbrug"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Brug af rodpartition" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Brugt" msgstr "Brugt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows-kommando" msgstr "Windows-kommando"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Skriv" msgstr "Skriv"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML Konfiguration" msgstr "YAML Konfiguration"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} Stunde} other {{countString} Stunden}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} Minute} other {{countString} Minuten}}" msgstr "{count, plural, one {{countString} Minute} other {{countString} Minuten}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# Thread} other {# Threads}}" msgstr "{threads, plural, one {# Thread} other {# Threads}}"
@@ -93,6 +97,7 @@ msgstr "5 Min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Aktionen" msgstr "Aktionen"
@@ -191,6 +196,11 @@ msgstr "Bist du sicher?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatisches Kopieren erfordert einen sicheren Kontext." msgstr "Automatisches Kopieren erfordert einen sicheren Kontext."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Durchschnitt" msgstr "Durchschnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Fähigkeiten" msgstr "Fähigkeiten"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapazität" msgstr "Kapazität"
@@ -380,8 +391,14 @@ msgstr "Überprüfen Sie Ihren Überwachungsdienst"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Überprüfe deinen Benachrichtigungsdienst" msgstr "Überprüfe deinen Benachrichtigungsdienst"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Löschen" msgstr "Löschen"
@@ -394,6 +411,10 @@ msgstr "Klicke auf einen Container, um weitere Informationen zu sehen."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klicke auf ein Gerät, um weitere Informationen zu sehen." msgstr "Klicke auf ein Gerät, um weitere Informationen zu sehen."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klicke auf ein System, um weitere Informationen zu sehen." msgstr "Klicke auf ein System, um weitere Informationen zu sehen."
@@ -559,14 +580,30 @@ msgstr "Erstellt"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritisch (%)" msgstr "Kritisch (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativer Download" msgstr "Kumulativer Download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativer Upload" msgstr "Kumulativer Upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Wird entladen"
msgid "Disk" msgid "Disk"
msgstr "Festplatte" msgstr "Festplatte"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Festplatten-I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Festplatteneinheit" msgstr "Festplatteneinheit"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fehlgeschlagen"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Fehlgeschlagene Attribute:" msgstr "Fehlgeschlagene Attribute:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Authentifizierung fehlgeschlagen" msgstr "Authentifizierung fehlgeschlagen"
@@ -839,6 +875,8 @@ msgstr "Lüfter"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Für <0>{min}</0> {min, plural, one {Minute} other {Minuten}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Passwort vergessen?" msgstr "Passwort vergessen?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Raster" msgstr "Raster"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Gesundheit" msgstr "Gesundheit"
@@ -1101,6 +1146,10 @@ msgstr "Speichernutzung der Container"
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netzwerkeinheit"
msgid "No" msgid "No"
msgstr "Nein" msgstr "Nein"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Für dieses Gerät sind keine S.M.A.R.T.-Attribute verfügbar."
msgid "No systems found." msgid "No systems found."
msgstr "Keine Systeme gefunden." msgstr "Keine Systeme gefunden."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Benachrichtigungen" msgstr "Benachrichtigungen"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC-Unterstützung" msgstr "OAuth 2 / OIDC-Unterstützung"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC-Unterstützung"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Bei jedem Neustart werden die Systeme in der Datenbank aktualisiert, um den in der Datei definierten Systemen zu entsprechen." msgstr "Bei jedem Neustart werden die Systeme in der Datenbank aktualisiert, um den in der Datei definierten Systemen zu entsprechen."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Einmalpasswort"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
@@ -1309,6 +1379,14 @@ msgstr "In der <0>Dokumentation</0> findest du weitere Anweisungen."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Bitte melde dich bei deinem Konto an" msgstr "Bitte melde dich bei deinem Konto an"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Warteschlangentiefe"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Ruhezeiten" msgstr "Ruhezeiten"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lesen" msgstr "Lesen"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Empfangen" msgstr "Empfangen"
@@ -1369,6 +1454,7 @@ msgstr "Empfangen"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Aktualisieren" msgstr "Aktualisieren"
@@ -1410,6 +1496,8 @@ msgstr "Neustarts"
msgid "Resume" msgid "Resume"
msgstr "Fortsetzen" msgstr "Fortsetzen"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Startzeit"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Dadurch werden alle ausgewählten Datensätze dauerhaft aus der Datenban
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Durchsatz von {extraFsName}" msgstr "Durchsatz von {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Durchsatz des Root-Dateisystems" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Löst aus, wenn der Lastdurchschnitt der letzten 5 Minuten einen Schwellenwert überschreitet" msgstr "Löst aus, wenn der Lastdurchschnitt der letzten 5 Minuten einen Schwellenwert überschreitet"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Löst aus, wenn der Healthcheck eines Docker-Containers als ungesund gemeldet wird" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Löst aus, wenn ein Sensor einen Schwellenwert überschreitet" msgstr "Löst aus, wenn ein Sensor einen Schwellenwert überschreitet"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Löst aus, wenn der Batterieladestand unter einen Schwellenwert fällt" msgstr "Löst aus, wenn der Batterieladestand unter einen Schwellenwert fällt"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universeller Token" msgstr "Universeller Token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Unbekannt" msgstr "Unbekannt"
@@ -1851,6 +1945,7 @@ msgstr "Aktualisieren"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Aktualisiert" msgstr "Aktualisiert"
@@ -1868,20 +1963,25 @@ msgstr "Hochladen"
msgid "Uptime" msgid "Uptime"
msgstr "Betriebszeit" msgstr "Betriebszeit"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Nutzung" msgstr "Nutzung"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Nutzung der Root-Partition" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Verwendet" msgstr "Verwendet"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows-Befehl" msgstr "Windows-Befehl"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Schreiben" msgstr "Schreiben"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML-Konfiguration" msgstr "YAML-Konfiguration"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} ώρα} other {{countString} ώρες
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} λεπτό} other {{countString} λεπτά}}" msgstr "{count, plural, one {{countString} λεπτό} other {{countString} λεπτά}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# threads}}" msgstr "{threads, plural, one {# thread} other {# threads}}"
@@ -93,6 +97,7 @@ msgstr "5 λ"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Ενέργειες" msgstr "Ενέργειες"
@@ -191,6 +196,11 @@ msgstr "Είστε βέβαιοι;"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Η αυτόματη αντιγραφή απαιτεί ασφαλές περιβάλλον." msgstr "Η αυτόματη αντιγραφή απαιτεί ασφαλές περιβάλλον."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Μέσος όρος" msgstr "Μέσος όρος"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Δυνατότητες" msgstr "Δυνατότητες"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Χωρητικότητα" msgstr "Χωρητικότητα"
@@ -380,8 +391,14 @@ msgstr "Ελέγξτε την υπηρεσία παρακολούθησής σα
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Ελέγξτε την υπηρεσία ειδοποιήσεών σας" msgstr "Ελέγξτε την υπηρεσία ειδοποιήσεών σας"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Εκκαθάριση" msgstr "Εκκαθάριση"
@@ -394,6 +411,10 @@ msgstr "Κάντε κλικ σε ένα κοντέινερ για να δείτ
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Κάντε κλικ σε μια συσκευή για να δείτε περισσότερες πληροφορίες." msgstr "Κάντε κλικ σε μια συσκευή για να δείτε περισσότερες πληροφορίες."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Κάντε κλικ σε ένα σύστημα για να δείτε περισσότερες πληροφορίες." msgstr "Κάντε κλικ σε ένα σύστημα για να δείτε περισσότερες πληροφορίες."
@@ -424,6 +445,14 @@ msgstr "Διενέξεις"
msgid "Connection is down" msgid "Connection is down"
msgstr "Η σύνδεση είναι εκτός λειτουργίας" msgstr "Η σύνδεση είναι εκτός λειτουργίας"
#: src/lib/alerts.ts
msgid "Container"
msgstr ""
#: src/lib/alerts.ts
msgid "Container Health"
msgstr ""
#: src/components/routes/system.tsx #: src/components/routes/system.tsx
msgid "Containers" msgid "Containers"
msgstr "Κοντέινερ" msgstr "Κοντέινερ"
@@ -507,10 +536,18 @@ msgstr "CPU"
msgid "CPU Cores" msgid "CPU Cores"
msgstr "Πυρήνες CPU" msgstr "Πυρήνες CPU"
#: src/lib/alerts.ts
msgid "CPU I/O Wait"
msgstr ""
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "CPU Peak" msgid "CPU Peak"
msgstr "Μέγιστη CPU" msgstr "Μέγιστη CPU"
#: src/lib/alerts.ts
msgid "CPU Steal Time"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "CPU time" msgid "CPU time"
msgstr "Χρόνος CPU" msgstr "Χρόνος CPU"
@@ -543,14 +580,30 @@ msgstr "Δημιουργήθηκε"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Κρίσιμο (%)" msgstr "Κρίσιμο (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Συνολική λήψη" msgstr "Συνολική λήψη"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Συνολική αποστολή" msgstr "Συνολική αποστολή"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -610,15 +663,10 @@ msgstr "Αποφορτίζεται"
msgid "Disk" msgid "Disk"
msgstr "Δίσκος" msgstr "Δίσκος"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O δίσκου"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Μονάδα δίσκου" msgstr "Μονάδα δίσκου"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -788,6 +836,10 @@ msgstr "Απέτυχε"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Αποτυχημένα χαρακτηριστικά:" msgstr "Αποτυχημένα χαρακτηριστικά:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Η ταυτοποίηση απέτυχε" msgstr "Η ταυτοποίηση απέτυχε"
@@ -823,6 +875,8 @@ msgstr "Ανεμιστήρες"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -844,6 +898,12 @@ msgstr "Για <0>{min}</0> {min, plural, one {λεπτό} other {λεπτά}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Ξεχάσατε τον κωδικό πρόσβασης;" msgstr "Ξεχάσατε τον κωδικό πρόσβασης;"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -888,6 +948,7 @@ msgid "Grid"
msgstr "Πλέγμα" msgstr "Πλέγμα"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Υγεία" msgstr "Υγεία"
@@ -1085,6 +1146,10 @@ msgstr "Χρήση μνήμης των κοντέινερ"
msgid "Model" msgid "Model"
msgstr "Μοντέλο" msgstr "Μοντέλο"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1120,6 +1185,10 @@ msgstr "Μονάδα δικτύου"
msgid "No" msgid "No"
msgstr "Όχι" msgstr "Όχι"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1143,12 +1212,20 @@ msgstr "Δεν υπάρχουν διαθέσιμα χαρακτηριστικά
msgid "No systems found." msgid "No systems found."
msgstr "Δεν βρέθηκαν συστήματα." msgstr "Δεν βρέθηκαν συστήματα."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Ειδοποιήσεις" msgstr "Ειδοποιήσεις"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Υποστήριξη OAuth 2 / OIDC" msgstr "Υποστήριξη OAuth 2 / OIDC"
@@ -1157,6 +1234,14 @@ msgstr "Υποστήριξη OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Σε κάθε επανεκκίνηση, τα συστήματα στη βάση δεδομένων θα ενημερώνονται ώστε να αντιστοιχούν στα συστήματα που ορίζονται στο αρχείο." msgstr "Σε κάθε επανεκκίνηση, τα συστήματα στη βάση δεδομένων θα ενημερώνονται ώστε να αντιστοιχούν στα συστήματα που ορίζονται στο αρχείο."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1170,6 +1255,7 @@ msgstr "Κωδικός μίας χρήσης"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Άνοιγμα μενού" msgstr "Άνοιγμα μενού"
@@ -1293,6 +1379,14 @@ msgstr "Ανατρέξτε στην <0>τεκμηρίωση</0> για οδηγ
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Συνδεθείτε στον λογαριασμό σας" msgstr "Συνδεθείτε στον λογαριασμό σας"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Θύρα" msgstr "Θύρα"
@@ -1338,14 +1432,21 @@ msgstr "Βάθος ουράς"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Ώρες σίγασης" msgstr "Ώρες σίγασης"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Ανάγνωση" msgstr "Ανάγνωση"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Λήφθηκαν" msgstr "Λήφθηκαν"
@@ -1353,6 +1454,7 @@ msgstr "Λήφθηκαν"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Ανανέωση" msgstr "Ανανέωση"
@@ -1394,6 +1496,8 @@ msgstr "Επανεκκινήσεις"
msgid "Resume" msgid "Resume"
msgstr "Συνέχιση" msgstr "Συνέχιση"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1539,6 +1643,7 @@ msgstr "Ώρα έναρξης"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Κατάσταση" msgstr "Κατάσταση"
@@ -1667,9 +1772,9 @@ msgstr "Αυτό θα διαγράψει οριστικά όλες τις επι
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Ρυθμός μεταφοράς του {extraFsName}" msgstr "Ρυθμός μεταφοράς του {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Ρυθμός μεταφοράς του ριζικού συστήματος αρχείων" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1741,10 +1846,18 @@ msgstr "Ενεργοποιείται όταν ο μέσος φόρτος 15 λε
msgid "Triggers when 5 minute load average exceeds a threshold" msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Ενεργοποιείται όταν ο μέσος φόρτος 5 λεπτών υπερβαίνει ένα όριο" msgstr "Ενεργοποιείται όταν ο μέσος φόρτος 5 λεπτών υπερβαίνει ένα όριο"
#: src/lib/alerts.ts
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Ενεργοποιείται όταν οποιοσδήποτε αισθητήρας υπερβαίνει ένα όριο" msgstr "Ενεργοποιείται όταν οποιοσδήποτε αισθητήρας υπερβαίνει ένα όριο"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Ενεργοποιείται όταν η φόρτιση της μπαταρίας πέσει κάτω από ένα όριο" msgstr "Ενεργοποιείται όταν η φόρτιση της μπαταρίας πέσει κάτω από ένα όριο"
@@ -1753,6 +1866,14 @@ msgstr "Ενεργοποιείται όταν η φόρτιση της μπατ
msgid "Triggers when combined up/down exceeds a threshold" msgid "Triggers when combined up/down exceeds a threshold"
msgstr "Ενεργοποιείται όταν η συνδυασμένη κίνηση αποστολής/λήψης υπερβαίνει ένα όριο" msgstr "Ενεργοποιείται όταν η συνδυασμένη κίνηση αποστολής/λήψης υπερβαίνει ένα όριο"
#: src/lib/alerts.ts
msgid "Triggers when CPU I/O wait exceeds a threshold"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when CPU steal time exceeds a threshold"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when CPU usage exceeds a threshold" msgid "Triggers when CPU usage exceeds a threshold"
msgstr "Ενεργοποιείται όταν η χρήση CPU υπερβαίνει ένα όριο" msgstr "Ενεργοποιείται όταν η χρήση CPU υπερβαίνει ένα όριο"
@@ -1779,6 +1900,10 @@ msgstr "Ενεργοποιείται όταν η χρήση οποιουδήπο
msgid "Type" msgid "Type"
msgstr "Τύπος" msgstr "Τύπος"
#: src/lib/alerts.ts
msgid "Unhealthy"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "Unit file" msgid "Unit file"
msgstr "Αρχείο μονάδας" msgstr "Αρχείο μονάδας"
@@ -1794,6 +1919,7 @@ msgid "Universal token"
msgstr "Καθολικό διακριτικό" msgstr "Καθολικό διακριτικό"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Άγνωστο" msgstr "Άγνωστο"
@@ -1819,6 +1945,7 @@ msgstr "Ενημέρωση"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Ενημερώθηκε" msgstr "Ενημερώθηκε"
@@ -1836,20 +1963,25 @@ msgstr "Αποστολή"
msgid "Uptime" msgid "Uptime"
msgstr "Χρόνος λειτουργίας" msgstr "Χρόνος λειτουργίας"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Χρήση" msgstr "Χρήση"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Χρήση διαμερίσματος root" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Χρησιμοποιείται" msgstr "Χρησιμοποιείται"
@@ -1923,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Εντολή Windows" msgstr "Εντολή Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Εγγραφή" msgstr "Εγγραφή"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Διαμ. YAML" msgstr "Διαμ. YAML"

View File

@@ -41,6 +41,10 @@ msgstr "{count, plural, one {{countString} hour} other {{countString} hours}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgstr "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr "{diskName} I/O"
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# threads}}" msgstr "{threads, plural, one {# thread} other {# threads}}"
@@ -88,6 +92,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Actions" msgstr "Actions"
@@ -186,6 +191,11 @@ msgstr "Are you sure?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatic copy requires a secure context." msgstr "Automatic copy requires a secure context."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr "Available"
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Average" msgstr "Average"
@@ -323,6 +333,7 @@ msgid "Capabilities"
msgstr "Capabilities" msgstr "Capabilities"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capacity" msgstr "Capacity"
@@ -375,8 +386,14 @@ msgstr "Check your monitoring service"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Check your notification service" msgstr "Check your notification service"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr "Checksum errors"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Clear" msgstr "Clear"
@@ -389,6 +406,10 @@ msgstr "Click on a container to view more information."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Click on a device to view more information." msgstr "Click on a device to view more information."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr "Click on a pool to view vdev and dataset details."
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Click on a system to view more information." msgstr "Click on a system to view more information."
@@ -554,14 +575,30 @@ msgstr "Created"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Critical (%)" msgstr "Critical (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr "Cumulative data read since boot"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr "Cumulative data written since boot"
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Cumulative Download" msgstr "Cumulative Download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr "Cumulative Read"
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Cumulative Upload" msgstr "Cumulative Upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr "Cumulative Write"
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -621,15 +658,10 @@ msgstr "Discharging"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Disk unit" msgstr "Disk unit"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -799,6 +831,10 @@ msgstr "Failed"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Failed Attributes:" msgstr "Failed Attributes:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr "Failed Services"
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Failed to authenticate" msgstr "Failed to authenticate"
@@ -834,6 +870,8 @@ msgstr "Fans"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -855,6 +893,12 @@ msgstr "For <0>{min}</0> {min, plural, one {minute} other {minutes}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Forgot password?" msgstr "Forgot password?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr "Free"
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -899,6 +943,7 @@ msgid "Grid"
msgstr "Grid" msgstr "Grid"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Health" msgstr "Health"
@@ -1096,6 +1141,10 @@ msgstr "Memory usage of containers"
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr "Mountpoint"
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1131,6 +1180,10 @@ msgstr "Network unit"
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr "No detail data for this pool."
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1154,12 +1207,20 @@ msgstr "No S.M.A.R.T. attributes available for this device."
msgid "No systems found." msgid "No systems found."
msgstr "No systems found." msgstr "No systems found."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr "None"
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notifications" msgstr "Notifications"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr "Notifications may include recent container log excerpts."
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC support" msgstr "OAuth 2 / OIDC support"
@@ -1168,6 +1229,14 @@ msgstr "OAuth 2 / OIDC support"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "On each restart, systems in the database will be updated to match the systems defined in the file." msgstr "On each restart, systems in the database will be updated to match the systems defined in the file."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr "One or more containers are unhealthy"
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr "One or more services are in a failed state"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1181,6 +1250,7 @@ msgstr "One-time password"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Open menu" msgstr "Open menu"
@@ -1304,6 +1374,14 @@ msgstr "Please see <0>the documentation</0> for instructions."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Please sign in to your account" msgstr "Please sign in to your account"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr "Pool Health"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr "Pool Usage"
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1349,14 +1427,21 @@ msgstr "Queue Depth"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Quiet Hours" msgstr "Quiet Hours"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Read" msgstr "Read"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr "Read errors"
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Received" msgstr "Received"
@@ -1364,6 +1449,7 @@ msgstr "Received"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Refresh" msgstr "Refresh"
@@ -1405,6 +1491,8 @@ msgstr "Restarts"
msgid "Resume" msgid "Resume"
msgstr "Resume" msgstr "Resume"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1550,6 +1638,7 @@ msgstr "Start Time"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "State" msgstr "State"
@@ -1678,9 +1767,9 @@ msgstr "This will permanently delete all selected records from the database."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Throughput of {extraFsName}" msgstr "Throughput of {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Throughput of root filesystem" msgstr "Throughput of ZFS pool {poolName}"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1753,13 +1842,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Triggers when 5 minute load average exceeds a threshold" msgstr "Triggers when 5 minute load average exceeds a threshold"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Triggers when a Docker container's health check reports unhealthy" msgstr "Triggers when a container's health check reports unhealthy"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Triggers when any sensor exceeds a threshold" msgstr "Triggers when any sensor exceeds a threshold"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr "Triggers when any systemd service enters the failed state"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Triggers when battery charge drops below a threshold" msgstr "Triggers when battery charge drops below a threshold"
@@ -1821,6 +1914,7 @@ msgid "Universal token"
msgstr "Universal token" msgstr "Universal token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Unknown" msgstr "Unknown"
@@ -1846,6 +1940,7 @@ msgstr "Update"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Updated" msgstr "Updated"
@@ -1863,20 +1958,25 @@ msgstr "Upload"
msgid "Uptime" msgid "Uptime"
msgstr "Uptime" msgstr "Uptime"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Usage" msgstr "Usage"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Usage of root partition" msgstr "Usage of ZFS pool {poolName}"
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Used" msgstr "Used"
@@ -1950,14 +2050,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows command" msgstr "Windows command"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Write" msgstr "Write"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr "Write errors"
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML Config" msgstr "YAML Config"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} hora} other {{countString} horas}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuto} other {{countString} minutos}}" msgstr "{count, plural, one {{countString} minuto} other {{countString} minutos}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# hilo} other {# hilos}}" msgstr "{threads, plural, one {# hilo} other {# hilos}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Acciones" msgstr "Acciones"
@@ -191,6 +196,11 @@ msgstr "¿Estás seguro?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "La copia automática requiere un contexto seguro." msgstr "La copia automática requiere un contexto seguro."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Promedio" msgstr "Promedio"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacidades" msgstr "Capacidades"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capacidad" msgstr "Capacidad"
@@ -380,8 +391,14 @@ msgstr "Compruebe su servicio de monitorización"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Verifica tu servicio de notificaciones" msgstr "Verifica tu servicio de notificaciones"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Limpiar" msgstr "Limpiar"
@@ -394,6 +411,10 @@ msgstr "Haz clic en un contenedor para ver más información."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Haz clic en un dispositivo para ver más información." msgstr "Haz clic en un dispositivo para ver más información."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Haz clic en un sistema para ver más información." msgstr "Haz clic en un sistema para ver más información."
@@ -559,14 +580,30 @@ msgstr "Creada"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Crítico (%)" msgstr "Crítico (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Descarga acumulada" msgstr "Descarga acumulada"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Carga acumulada" msgstr "Carga acumulada"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Descargando"
msgid "Disk" msgid "Disk"
msgstr "Disco" msgstr "Disco"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "E/S de Disco"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Unidad de disco" msgstr "Unidad de disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fallido"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Atributos fallidos:" msgstr "Atributos fallidos:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Error al autenticar" msgstr "Error al autenticar"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Por <0>{min}</0> {min, plural, one {minuto} other {minutos}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "¿Olvidaste tu contraseña?" msgstr "¿Olvidaste tu contraseña?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Cuadrícula" msgstr "Cuadrícula"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Estado" msgstr "Estado"
@@ -1101,6 +1146,10 @@ msgstr "Uso de memoria de los contenedores"
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unidad de red"
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "No hay atributos S.M.A.R.T. disponibles para este dispositivo."
msgid "No systems found." msgid "No systems found."
msgstr "No se encontraron sistemas." msgstr "No se encontraron sistemas."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notificaciones" msgstr "Notificaciones"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Soporte para OAuth 2 / OIDC" msgstr "Soporte para OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Soporte para OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "En cada reinicio, los sistemas en la base de datos se actualizarán para coincidir con los sistemas definidos en el archivo." msgstr "En cada reinicio, los sistemas en la base de datos se actualizarán para coincidir con los sistemas definidos en el archivo."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Contraseña de un solo uso"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Abrir menú" msgstr "Abrir menú"
@@ -1309,6 +1379,14 @@ msgstr "Por favor, consulta <0>la documentación</0> para obtener instrucciones.
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Por favor, inicia sesión en tu cuenta" msgstr "Por favor, inicia sesión en tu cuenta"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Puerto" msgstr "Puerto"
@@ -1354,14 +1432,21 @@ msgstr "Profundidad de cola"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Horas de silencio" msgstr "Horas de silencio"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lectura" msgstr "Lectura"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Recibido" msgstr "Recibido"
@@ -1369,6 +1454,7 @@ msgstr "Recibido"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Actualizar" msgstr "Actualizar"
@@ -1410,6 +1496,8 @@ msgstr "Reinicios"
msgid "Resume" msgid "Resume"
msgstr "Reanudar" msgstr "Reanudar"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Hora de inicio"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Estado" msgstr "Estado"
@@ -1683,9 +1772,9 @@ msgstr "Esto eliminará permanentemente todos los registros seleccionados de la
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Rendimiento de {extraFsName}" msgstr "Rendimiento de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Rendimiento del sistema de archivos raíz" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Se activa cuando la carga media de 5 minutos supera un umbral" msgstr "Se activa cuando la carga media de 5 minutos supera un umbral"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Se activa cuando el healthcheck de un contenedor Docker indica un estado no saludable" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Se activa cuando cualquier sensor supera un umbral" msgstr "Se activa cuando cualquier sensor supera un umbral"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Se activa cuando la carga de la batería baja de un umbral" msgstr "Se activa cuando la carga de la batería baja de un umbral"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal" msgstr "Token universal"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Desconocida" msgstr "Desconocida"
@@ -1851,6 +1945,7 @@ msgstr "Actualizar"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Actualizado" msgstr "Actualizado"
@@ -1868,20 +1963,25 @@ msgstr "Cargar"
msgid "Uptime" msgid "Uptime"
msgstr "Tiempo de actividad" msgstr "Tiempo de actividad"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Uso" msgstr "Uso"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Uso de la partición raíz" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Usado" msgstr "Usado"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Comando Windows" msgstr "Comando Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Escritura" msgstr "Escritura"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Configuración YAML" msgstr "Configuración YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} ساعت} other {{countString} ساع
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} دقیقه} few {{countString} دقیقه} many {{countString} دقیقه} other {{countString} دقیقه}}" msgstr "{count, plural, one {{countString} دقیقه} few {{countString} دقیقه} many {{countString} دقیقه} other {{countString} دقیقه}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# رشته} other {# رشته}}" msgstr "{threads, plural, one {# رشته} other {# رشته}}"
@@ -93,6 +97,7 @@ msgstr "۵ دقیقه"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "عملیات" msgstr "عملیات"
@@ -191,6 +196,11 @@ msgstr "آیا مطمئن هستید؟"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "کپی خودکار نیاز به یک زمینه امن دارد." msgstr "کپی خودکار نیاز به یک زمینه امن دارد."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "میانگین" msgstr "میانگین"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "قابلیت‌ها" msgstr "قابلیت‌ها"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "ظرفیت" msgstr "ظرفیت"
@@ -380,8 +391,14 @@ msgstr "سرویس نظارتی خود را بررسی کنید"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "سرویس اطلاع‌رسانی خود را بررسی کنید" msgstr "سرویس اطلاع‌رسانی خود را بررسی کنید"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "پاک کردن" msgstr "پاک کردن"
@@ -394,6 +411,10 @@ msgstr "برای مشاهده اطلاعات بیشتر روی کانتینر ک
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "برای مشاهده اطلاعات بیشتر روی دستگاه کلیک کنید." msgstr "برای مشاهده اطلاعات بیشتر روی دستگاه کلیک کنید."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "برای مشاهده اطلاعات بیشتر روی یک سیستم کلیک کنید." msgstr "برای مشاهده اطلاعات بیشتر روی یک سیستم کلیک کنید."
@@ -559,14 +580,30 @@ msgstr "ایجاد شده"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "بحرانی (%)" msgstr "بحرانی (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "دانلود تجمعی" msgstr "دانلود تجمعی"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "آپلود تجمعی" msgstr "آپلود تجمعی"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "در حال تخلیه"
msgid "Disk" msgid "Disk"
msgstr "دیسک" msgstr "دیسک"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "ورودی/خروجی دیسک"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "واحد دیسک" msgstr "واحد دیسک"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "ناموفق"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "ویژگی‌های ناموفق:" msgstr "ویژگی‌های ناموفق:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "احراز هویت ناموفق بود" msgstr "احراز هویت ناموفق بود"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "برای <0>{min}</0> {min, plural, one {دقیقه} other {دقیقه}}
msgid "Forgot password?" msgid "Forgot password?"
msgstr "رمز عبور را فراموش کرده‌اید؟" msgstr "رمز عبور را فراموش کرده‌اید؟"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "جدول" msgstr "جدول"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "سلامتی" msgstr "سلامتی"
@@ -1101,6 +1146,10 @@ msgstr "میزان استفاده حافظه کانتینرها"
msgid "Model" msgid "Model"
msgstr "مدل" msgstr "مدل"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "واحد شبکه"
msgid "No" msgid "No"
msgstr "خیر" msgstr "خیر"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "هیچ ویژگی S.M.A.R.T برای این دستگاه موجود نی
msgid "No systems found." msgid "No systems found."
msgstr "هیچ سیستمی یافت نشد." msgstr "هیچ سیستمی یافت نشد."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "اعلان‌ها" msgstr "اعلان‌ها"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "پشتیبانی از OAuth 2 / OIDC" msgstr "پشتیبانی از OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "پشتیبانی از OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "در هر بار راه‌اندازی مجدد، سیستم‌های موجود در پایگاه داده با سیستم‌های تعریف شده در فایل مطابقت داده می‌شوند." msgstr "در هر بار راه‌اندازی مجدد، سیستم‌های موجود در پایگاه داده با سیستم‌های تعریف شده در فایل مطابقت داده می‌شوند."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "رمز عبور یک‌بار مصرف"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "باز کردن منو" msgstr "باز کردن منو"
@@ -1309,6 +1379,14 @@ msgstr "لطفاً برای دستورالعمل‌ها به <0>مستندات</
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "لطفاً به حساب کاربری خود وارد شوید" msgstr "لطفاً به حساب کاربری خود وارد شوید"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "پورت" msgstr "پورت"
@@ -1354,14 +1432,21 @@ msgstr "عمق صف"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "ساعات آرام" msgstr "ساعات آرام"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "خواندن" msgstr "خواندن"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "دریافت شد" msgstr "دریافت شد"
@@ -1369,6 +1454,7 @@ msgstr "دریافت شد"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "تازه‌سازی" msgstr "تازه‌سازی"
@@ -1410,6 +1496,8 @@ msgstr "راه‌اندازی مجدد"
msgid "Resume" msgid "Resume"
msgstr "ادامه" msgstr "ادامه"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "زمان شروع"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "وضعیت" msgstr "وضعیت"
@@ -1683,9 +1772,9 @@ msgstr "این کار تمام رکوردهای انتخاب شده را برا
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "توان عملیاتی {extraFsName}" msgstr "توان عملیاتی {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "توان عملیاتی سیستم فایل ریشه" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "هنگامی که میانگین بار ۵ دقیقه‌ای از یک آستانه فراتر رود، فعال می‌شود" msgstr "هنگامی که میانگین بار ۵ دقیقه‌ای از یک آستانه فراتر رود، فعال می‌شود"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "هنگامی که بررسی سلامت یک کانتینر Docker وضعیت ناسالم را گزارش می‌کند، فعال می‌شود" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "هنگامی که هر حسگری از یک آستانه فراتر رود، فعال می‌شود" msgstr "هنگامی که هر حسگری از یک آستانه فراتر رود، فعال می‌شود"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "زمانی که شارژ باتری زیر آستانه قرار می‌گیرد، فعال می‌شود" msgstr "زمانی که شارژ باتری زیر آستانه قرار می‌گیرد، فعال می‌شود"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "توکن جهانی" msgstr "توکن جهانی"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "ناشناخته" msgstr "ناشناخته"
@@ -1851,6 +1945,7 @@ msgstr "به‌روزرسانی"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "به‌روزرسانی شد" msgstr "به‌روزرسانی شد"
@@ -1868,20 +1963,25 @@ msgstr "آپلود"
msgid "Uptime" msgid "Uptime"
msgstr "آپتایم" msgstr "آپتایم"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "میزان استفاده" msgstr "میزان استفاده"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "میزان استفاده از پارتیشن ریشه" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "استفاده شده" msgstr "استفاده شده"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "دستور Windows" msgstr "دستور Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "نوشتن" msgstr "نوشتن"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "پیکربندی YAML" msgstr "پیکربندی YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} heure} other {{countString} heures}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minute} other {{countString} minutes}}" msgstr "{count, plural, one {{countString} minute} other {{countString} minutes}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# threads}}" msgstr "{threads, plural, one {# thread} other {# threads}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Actions" msgstr "Actions"
@@ -191,6 +196,11 @@ msgstr "Êtes-vous sûr ?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "La copie automatique nécessite un contexte sécurisé." msgstr "La copie automatique nécessite un contexte sécurisé."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Moyenne" msgstr "Moyenne"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacités" msgstr "Capacités"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capacité" msgstr "Capacité"
@@ -380,8 +391,14 @@ msgstr "Vérifiez votre service de surveillance"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Vérifiez votre service de notification" msgstr "Vérifiez votre service de notification"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Effacer" msgstr "Effacer"
@@ -394,6 +411,10 @@ msgstr "Cliquez sur un conteneur pour voir plus d'informations."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Cliquez sur un appareil pour voir plus d'informations." msgstr "Cliquez sur un appareil pour voir plus d'informations."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Cliquez sur un système pour voir plus d'informations." msgstr "Cliquez sur un système pour voir plus d'informations."
@@ -559,14 +580,30 @@ msgstr "Date de création"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Critique (%)" msgstr "Critique (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Téléchargement cumulatif" msgstr "Téléchargement cumulatif"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Téléversement cumulatif" msgstr "Téléversement cumulatif"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "En décharge"
msgid "Disk" msgid "Disk"
msgstr "Disque" msgstr "Disque"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Entrée/Sortie disque"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Unité disque" msgstr "Unité disque"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Échoué"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Attributs défaillants :" msgstr "Attributs défaillants :"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Échec de l'authentification" msgstr "Échec de l'authentification"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Pendant <0>{min}</0> {min, plural, one {minute} other {minutes}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Mot de passe oublié ?" msgstr "Mot de passe oublié ?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Grille" msgstr "Grille"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Santé" msgstr "Santé"
@@ -1101,6 +1146,10 @@ msgstr "Utilisation de la mémoire des conteneurs"
msgid "Model" msgid "Model"
msgstr "Modèle" msgstr "Modèle"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unité réseau"
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Aucun attribut S.M.A.R.T. disponible pour cet appareil."
msgid "No systems found." msgid "No systems found."
msgstr "Aucun système trouvé." msgstr "Aucun système trouvé."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notifications" msgstr "Notifications"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Support OAuth 2 / OIDC" msgstr "Support OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Support OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "À chaque redémarrage, les systèmes dans la base de données seront mis à jour pour correspondre aux systèmes définis dans le fichier." msgstr "À chaque redémarrage, les systèmes dans la base de données seront mis à jour pour correspondre aux systèmes définis dans le fichier."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Mot de passe à usage unique"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Ouvrir le menu" msgstr "Ouvrir le menu"
@@ -1309,6 +1379,14 @@ msgstr "Veuillez consulter <0>la documentation</0> pour les instructions."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Veuillez vous connecter à votre compte" msgstr "Veuillez vous connecter à votre compte"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Profondeur de file d'attente"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Heures calmes" msgstr "Heures calmes"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lecture" msgstr "Lecture"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Reçu" msgstr "Reçu"
@@ -1369,6 +1454,7 @@ msgstr "Reçu"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Actualiser" msgstr "Actualiser"
@@ -1410,6 +1496,8 @@ msgstr "Redémarrages"
msgid "Resume" msgid "Resume"
msgstr "Reprendre" msgstr "Reprendre"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Heure de début"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "État" msgstr "État"
@@ -1683,9 +1772,9 @@ msgstr "Ceci supprimera définitivement tous les enregistrements sélectionnés
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Débit de {extraFsName}" msgstr "Débit de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Débit du système de fichiers racine" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Se déclenche lorsque la charge moyenne sur 5 minutes dépasse un seuil" msgstr "Se déclenche lorsque la charge moyenne sur 5 minutes dépasse un seuil"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Se déclenche lorsque le contrôle de santé (healthcheck) d'un conteneur Docker le signale comme non sain" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Déclenchement lorsque tout capteur dépasse un seuil" msgstr "Déclenchement lorsque tout capteur dépasse un seuil"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Déclenchement lorsque la charge de la batterie descend en dessous d'un seuil" msgstr "Déclenchement lorsque la charge de la batterie descend en dessous d'un seuil"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universel" msgstr "Token universel"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Inconnue" msgstr "Inconnue"
@@ -1851,6 +1945,7 @@ msgstr "Mettre à jour"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Mis à jour" msgstr "Mis à jour"
@@ -1868,20 +1963,25 @@ msgstr "Téléverser"
msgid "Uptime" msgid "Uptime"
msgstr "Temps de fonctionnement" msgstr "Temps de fonctionnement"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Utilisation" msgstr "Utilisation"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Utilisation de la partition racine" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Utilisé" msgstr "Utilisé"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Commande Windows" msgstr "Commande Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Écriture" msgstr "Écriture"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Configuration YAML" msgstr "Configuration YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} שעה} two {{countString} שעות}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} דקה} two {{countString} דקות} other {{countString} דקות}}" msgstr "{count, plural, one {{countString} דקה} two {{countString} דקות} other {{countString} דקות}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# תהליכון} other {# תהליכונים}}" msgstr "{threads, plural, one {# תהליכון} other {# תהליכונים}}"
@@ -93,6 +97,7 @@ msgstr "5 דק'"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "פעולות" msgstr "פעולות"
@@ -191,6 +196,11 @@ msgstr "האם אתה בטוח?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "העתקה אוטומטית דורשת הקשר מאובטח." msgstr "העתקה אוטומטית דורשת הקשר מאובטח."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "ממוצע" msgstr "ממוצע"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "יכולות" msgstr "יכולות"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "קיבולת" msgstr "קיבולת"
@@ -380,8 +391,14 @@ msgstr "בדוק את שירות הניטור שלך"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "בדוק את שירות ההתראות שלך" msgstr "בדוק את שירות ההתראות שלך"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "נקה" msgstr "נקה"
@@ -394,6 +411,10 @@ msgstr "לחץ על קונטיינר כדי לצפות במידע נוסף."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "לחץ על התקן כדי לצפות במידע נוסף." msgstr "לחץ על התקן כדי לצפות במידע נוסף."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "לחץ על מערכת כדי לצפות במידע נוסף." msgstr "לחץ על מערכת כדי לצפות במידע נוסף."
@@ -559,14 +580,30 @@ msgstr "נוצר"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "קריטי (%)" msgstr "קריטי (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "הורדה מצטברת" msgstr "הורדה מצטברת"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "העלאה מצטברת" msgstr "העלאה מצטברת"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "בפריקה"
msgid "Disk" msgid "Disk"
msgstr "דיסק" msgstr "דיסק"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "דיסק I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "יחידת דיסק" msgstr "יחידת דיסק"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "נכשל"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "מאפיינים שנכשלו:" msgstr "מאפיינים שנכשלו:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "אימות נכשל" msgstr "אימות נכשל"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "למשך <0>{min}</0> {min, plural, one {דקה} other {דקות}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "שכחת סיסמה?" msgstr "שכחת סיסמה?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "רשת" msgstr "רשת"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "בריאות" msgstr "בריאות"
@@ -1101,6 +1146,10 @@ msgstr "שימוש בזיכרון של קונטיינרים"
msgid "Model" msgid "Model"
msgstr "דגם" msgstr "דגם"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "יחידת רשת"
msgid "No" msgid "No"
msgstr "לא" msgstr "לא"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "אין מאפייני S.M.A.R.T. זמינים עבור התקן זה."
msgid "No systems found." msgid "No systems found."
msgstr "לא נמצאו מערכות." msgstr "לא נמצאו מערכות."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "התראות" msgstr "התראות"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "תמיכה ב-OAuth 2 / OIDC" msgstr "תמיכה ב-OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "תמיכה ב-OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "בכל הפעלה מחדש, המערכות במסד הנתונים יעודכנו כדי להתאים למערכות המוגדרות בקובץ." msgstr "בכל הפעלה מחדש, המערכות במסד הנתונים יעודכנו כדי להתאים למערכות המוגדרות בקובץ."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "סיסמה חד-פעמית"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "פתח תפריט" msgstr "פתח תפריט"
@@ -1309,6 +1379,14 @@ msgstr "אנא ראה <0>את התיעוד</0> להוראות."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "אנא התחבר לחשבון שלך" msgstr "אנא התחבר לחשבון שלך"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "פורט" msgstr "פורט"
@@ -1354,14 +1432,21 @@ msgstr "עומק תור"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "שעות שקט" msgstr "שעות שקט"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "קריאה" msgstr "קריאה"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "התקבל" msgstr "התקבל"
@@ -1369,6 +1454,7 @@ msgstr "התקבל"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "רענן" msgstr "רענן"
@@ -1410,6 +1496,8 @@ msgstr "הפעלות מחדש"
msgid "Resume" msgid "Resume"
msgstr "המשך" msgstr "המשך"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "זמן התחלה"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "מצב" msgstr "מצב"
@@ -1683,9 +1772,9 @@ msgstr "פעולה זו תמחק לצמיתות את כל הרשומות שנב
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "תפוקה של {extraFsName}" msgstr "תפוקה של {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "תפוקה של מערכת הקבצים הראשית" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "מופעל כאשר ממוצע העומס ל-5 דקות עולה על סף" msgstr "מופעל כאשר ממוצע העומס ל-5 דקות עולה על סף"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "מופעל כאשר בדיקת התקינות (health check) של קונטיינר Docker מדווחת שהוא לא תקין" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "מופעל כאשר כל חיישן עולה על סף" msgstr "מופעל כאשר כל חיישן עולה על סף"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "מופעל כאשר טעינת הסוללה יורדת מתחת לסף" msgstr "מופעל כאשר טעינת הסוללה יורדת מתחת לסף"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "token אוניברסלי" msgstr "token אוניברסלי"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "לא ידוע" msgstr "לא ידוע"
@@ -1851,6 +1945,7 @@ msgstr "עדכן"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "עודכן" msgstr "עודכן"
@@ -1868,20 +1963,25 @@ msgstr "העלאה"
msgid "Uptime" msgid "Uptime"
msgstr "זמן פעילות" msgstr "זמן פעילות"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "שימוש" msgstr "שימוש"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "שימוש במחיצה הראשית" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "בשימוש" msgstr "בשימוש"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "פקודת Windows" msgstr "פקודת Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "כתיבה" msgstr "כתיבה"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "תצורת YAML" msgstr "תצורת YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} sat} other {{countString} sati}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuta} few {{countString} minuta} many {{countString} minuta} other {{countString} minute}}" msgstr "{count, plural, one {{countString} minuta} few {{countString} minuta} many {{countString} minuta} other {{countString} minute}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# nit} few {# niti} other {# niti}}" msgstr "{threads, plural, one {# nit} few {# niti} other {# niti}}"
@@ -93,6 +97,7 @@ msgstr "5 minuta"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Akcije" msgstr "Akcije"
@@ -191,6 +196,11 @@ msgstr "Jeste li sigurni?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatsko kopiranje zahtijeva siguran kontekst." msgstr "Automatsko kopiranje zahtijeva siguran kontekst."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Prosjek" msgstr "Prosjek"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Mogućnosti" msgstr "Mogućnosti"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapacitet" msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Provjerite svoju uslugu nadzora"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Provjerite svoju obavještajnu uslugu" msgstr "Provjerite svoju obavještajnu uslugu"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Očisti" msgstr "Očisti"
@@ -394,6 +411,10 @@ msgstr "Kliknite na spremnik za prikaz više informacija."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Kliknite na uređaj da biste vidjeli više informacija." msgstr "Kliknite na uređaj da biste vidjeli više informacija."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Odaberite sustav za prikaz više informacija." msgstr "Odaberite sustav za prikaz više informacija."
@@ -559,14 +580,30 @@ msgstr "Kreiran"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritično (%)" msgstr "Kritično (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativno preuzimanje" msgstr "Kumulativno preuzimanje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativno otpremanje" msgstr "Kumulativno otpremanje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Prazni se"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Mjerna jedinica za disk" msgstr "Mjerna jedinica za disk"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Neuspješno"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Neuspjeli atributi:" msgstr "Neuspjeli atributi:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Neuspješna provjera autentičnosti" msgstr "Neuspješna provjera autentičnosti"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minutu} other {minute}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Zaboravljena lozinka?" msgstr "Zaboravljena lozinka?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rešetka" msgstr "Rešetka"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Zdravlje" msgstr "Zdravlje"
@@ -1101,6 +1146,10 @@ msgstr "Upotreba memorije spremnika"
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Mjerna jedinica za mrežu"
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Nema dostupnih S.M.A.R.T. atributa za ovaj uređaj."
msgid "No systems found." msgid "No systems found."
msgstr "Nije pronađen nijedan sustav." msgstr "Nije pronađen nijedan sustav."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Obavijesti" msgstr "Obavijesti"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Podrška za OAuth 2 / OIDC" msgstr "Podrška za OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Podrška za OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Prilikom svakog ponovnog pokretanja, sustavi u bazi podataka bit će ažurirani kako bi odgovarali sustavima definiranim u datoteci." msgstr "Prilikom svakog ponovnog pokretanja, sustavi u bazi podataka bit će ažurirani kako bi odgovarali sustavima definiranim u datoteci."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Jednokratna lozinka"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Otvori meni" msgstr "Otvori meni"
@@ -1309,6 +1379,14 @@ msgstr "Molimo provjerite <0>dokumentaciju</0> za upute."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Molimo prijavite se u svoj račun" msgstr "Molimo prijavite se u svoj račun"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Dubina reda"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Tihi sati" msgstr "Tihi sati"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Pročitaj" msgstr "Pročitaj"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Primljeno" msgstr "Primljeno"
@@ -1369,6 +1454,7 @@ msgstr "Primljeno"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Osvježi" msgstr "Osvježi"
@@ -1410,6 +1496,8 @@ msgstr "Ponovna pokretanja"
msgid "Resume" msgid "Resume"
msgstr "Nastavi" msgstr "Nastavi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Vrijeme početka"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Stanje" msgstr "Stanje"
@@ -1683,9 +1772,9 @@ msgstr "Ovom radnjom će se trajno izbrisati svi odabrani zapisi iz baze podatak
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Protok {extraFsName}" msgstr "Protok {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Protok root datotečnog sustava" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Pokreće se kada prosječna opterećenost sustava unutar 5 minuta prijeđe prag" msgstr "Pokreće se kada prosječna opterećenost sustava unutar 5 minuta prijeđe prag"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Pokreće se kada provjera zdravlja Docker kontejnera prijavi da je nezdrav" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Pokreće se kada bilo koji senzor prijeđe prag" msgstr "Pokreće se kada bilo koji senzor prijeđe prag"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Pokreće se kada razina baterije padne ispod praga" msgstr "Pokreće se kada razina baterije padne ispod praga"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Sveopći token" msgstr "Sveopći token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Nepoznato" msgstr "Nepoznato"
@@ -1851,6 +1945,7 @@ msgstr "Ažuriraj"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Ažurirano" msgstr "Ažurirano"
@@ -1868,20 +1963,25 @@ msgstr "Otpremi"
msgid "Uptime" msgid "Uptime"
msgstr "Vrijeme rada" msgstr "Vrijeme rada"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Iskorištenost" msgstr "Iskorištenost"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Iskorištenost root datotečnog sustava" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Iskorišteno" msgstr "Iskorišteno"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows naredba" msgstr "Windows naredba"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Piši" msgstr "Piši"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML konfiguracija" msgstr "YAML konfiguracija"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} óra} other {{countString} óra}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} perc} few {{countString} perc} many {{countString} perc} other {{countString} perc}}" msgstr "{count, plural, one {{countString} perc} few {{countString} perc} many {{countString} perc} other {{countString} perc}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# szál} other {# szál}}" msgstr "{threads, plural, one {# szál} other {# szál}}"
@@ -93,6 +97,7 @@ msgstr "5 perc"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Műveletek" msgstr "Műveletek"
@@ -191,6 +196,11 @@ msgstr "Biztos vagy benne?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Az automatikus másolás biztonságos környezetet igényel." msgstr "Az automatikus másolás biztonságos környezetet igényel."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Átlag" msgstr "Átlag"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Képességek" msgstr "Képességek"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapacitás" msgstr "Kapacitás"
@@ -380,8 +391,14 @@ msgstr "Ellenőrizze a megfigyelő szolgáltatást"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Ellenőrizd az értesítési szolgáltatásodat" msgstr "Ellenőrizd az értesítési szolgáltatásodat"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Törlés" msgstr "Törlés"
@@ -394,6 +411,10 @@ msgstr "Kattintson egy konténerre a további információk megtekintéséhez."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Kattintson egy eszközre további információk megtekintéséhez." msgstr "Kattintson egy eszközre további információk megtekintéséhez."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "További információkért kattints egy rendszerre." msgstr "További információkért kattints egy rendszerre."
@@ -559,14 +580,30 @@ msgstr "Létrehozva"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritikus (%)" msgstr "Kritikus (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulatív letöltés" msgstr "Kumulatív letöltés"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulatív feltöltés" msgstr "Kumulatív feltöltés"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Kisül"
msgid "Disk" msgid "Disk"
msgstr "Lemez" msgstr "Lemez"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Lemez I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Lemez mértékegysége" msgstr "Lemez mértékegysége"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Sikertelen"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Sikertelen attribútumok:" msgstr "Sikertelen attribútumok:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Hitelesítés sikertelen" msgstr "Hitelesítés sikertelen"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {percig} other {percig}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Elfelejtette a jelszavát?" msgstr "Elfelejtette a jelszavát?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rács" msgstr "Rács"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Egészség" msgstr "Egészség"
@@ -1101,6 +1146,10 @@ msgstr "Konténerek memóriahasználata"
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Sávszélesség mértékegysége"
msgid "No" msgid "No"
msgstr "Nem" msgstr "Nem"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Ehhez az eszközhöz nem állnak rendelkezésre S.M.A.R.T. attribútumok
msgid "No systems found." msgid "No systems found."
msgstr "Nem található rendszer." msgstr "Nem található rendszer."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Értesítések" msgstr "Értesítések"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC támogatás" msgstr "OAuth 2 / OIDC támogatás"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC támogatás"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Minden újraindításkor az adatbázisban lévő rendszerek frissítésre kerülnek, hogy megfeleljenek a fájlban meghatározott rendszereknek." msgstr "Minden újraindításkor az adatbázisban lévő rendszerek frissítésre kerülnek, hogy megfeleljenek a fájlban meghatározott rendszereknek."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Egyszeri jelszó"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Menü megnyitása" msgstr "Menü megnyitása"
@@ -1309,6 +1379,14 @@ msgstr "Kérjük, nézze meg <0>a dokumentációt</0> az utasításokért."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Kérjük, jelentkezzen be a fiókjába" msgstr "Kérjük, jelentkezzen be a fiókjába"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Várakozási sor mélysége"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Csendes órák" msgstr "Csendes órák"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Olvasás" msgstr "Olvasás"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Fogadott" msgstr "Fogadott"
@@ -1369,6 +1454,7 @@ msgstr "Fogadott"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Frissítés" msgstr "Frissítés"
@@ -1410,6 +1496,8 @@ msgstr "Újraindítások"
msgid "Resume" msgid "Resume"
msgstr "Folytatás" msgstr "Folytatás"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Kezdési idő"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Állapot" msgstr "Állapot"
@@ -1683,9 +1772,9 @@ msgstr "Ez véglegesen törli az összes kijelölt bejegyzést az adatbázisból
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "A {extraFsName} átviteli teljesítménye" msgstr "A {extraFsName} átviteli teljesítménye"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "A gyökér fájlrendszer átviteli teljesítménye" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Riaszt, ha az 5 perces terhelési átlag túllép egy küszöbértéket" msgstr "Riaszt, ha az 5 perces terhelési átlag túllép egy küszöbértéket"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Riaszt, amikor egy Docker konténer health check ellenőrzése nem egészséges állapotot jelez" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Riaszt, ha bármelyik hőmérséklet érzékelő túllép egy küszöbértéket" msgstr "Riaszt, ha bármelyik hőmérséklet érzékelő túllép egy küszöbértéket"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Riaszt, ha az akkumulátor töltöttségi szintje egy küszöbérték alá esik" msgstr "Riaszt, ha az akkumulátor töltöttségi szintje egy küszöbérték alá esik"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzális token" msgstr "Univerzális token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Ismeretlen" msgstr "Ismeretlen"
@@ -1851,6 +1945,7 @@ msgstr "Frissítés"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Frissítve" msgstr "Frissítve"
@@ -1868,20 +1963,25 @@ msgstr "Feltöltés"
msgid "Uptime" msgid "Uptime"
msgstr "Üzemidő" msgstr "Üzemidő"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Használat" msgstr "Használat"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Root partíció kihasználtsága" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Felhasznált" msgstr "Felhasznált"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows parancs" msgstr "Windows parancs"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Írás" msgstr "Írás"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML konfiguráció" msgstr "YAML konfiguráció"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} jam} other {{countString} jam}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} menit} few {{countString} menit} many {{countString} menit} other {{countString} menit}}" msgstr "{count, plural, one {{countString} menit} few {{countString} menit} many {{countString} menit} other {{countString} menit}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# thread}}" msgstr "{threads, plural, one {# thread} other {# thread}}"
@@ -93,6 +97,7 @@ msgstr "5 mnt"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Aksi" msgstr "Aksi"
@@ -191,6 +196,11 @@ msgstr "Apakah anda yakin?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Copy memerlukan https." msgstr "Copy memerlukan https."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Rata-rata" msgstr "Rata-rata"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Kapabilitas" msgstr "Kapabilitas"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapasitas" msgstr "Kapasitas"
@@ -380,8 +391,14 @@ msgstr "Periksa layanan pemantauan Anda"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Periksa jasa penyedia notifikasi anda" msgstr "Periksa jasa penyedia notifikasi anda"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Bersihkan" msgstr "Bersihkan"
@@ -394,6 +411,10 @@ msgstr "Klik pada kontainer untuk melihat informasi lebih banyak."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klik pada perangkat untuk melihat informasi lebih banyak." msgstr "Klik pada perangkat untuk melihat informasi lebih banyak."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klik pada sistem untuk melihat informasi lebih banyak." msgstr "Klik pada sistem untuk melihat informasi lebih banyak."
@@ -559,14 +580,30 @@ msgstr "Dibuat"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritis (%)" msgstr "Kritis (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Akumulasi Download" msgstr "Akumulasi Download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Akumulasi Upload" msgstr "Akumulasi Upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Sedang tidak di charge"
msgid "Disk" msgid "Disk"
msgstr "" msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O Disk"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Unit disk" msgstr "Unit disk"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Gagal"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Atribut yang Gagal:" msgstr "Atribut yang Gagal:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Gagal mengautentikasi" msgstr "Gagal mengautentikasi"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Untuk <0>{min}</0> {min, plural, one {menit} other {menit}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Lupa kata sandi?" msgstr "Lupa kata sandi?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Kartu" msgstr "Kartu"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Kesehatan" msgstr "Kesehatan"
@@ -1101,6 +1146,10 @@ msgstr "Penggunaan memori container"
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unit jaringan"
msgid "No" msgid "No"
msgstr "Tidak" msgstr "Tidak"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Tidak ada atribut S.M.A.R.T. yang tersedia untuk perangkat ini."
msgid "No systems found." msgid "No systems found."
msgstr "Sistem tidak ditemukan." msgstr "Sistem tidak ditemukan."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notifikasi" msgstr "Notifikasi"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Dukungan OAuth 2 / OIDC" msgstr "Dukungan OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Dukungan OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Pada setiap restart, sistem dalam database akan diperbarui untuk mencocokkan sistem yang didefinisikan dalam file." msgstr "Pada setiap restart, sistem dalam database akan diperbarui untuk mencocokkan sistem yang didefinisikan dalam file."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Kata sandi sekali pakai (OTP)"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Buka menu" msgstr "Buka menu"
@@ -1309,6 +1379,14 @@ msgstr "Silakan lihat <0>dokumentasi</0> untuk instruksi."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Silakan masuk ke akun anda" msgstr "Silakan masuk ke akun anda"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "" msgstr ""
@@ -1354,14 +1432,21 @@ msgstr "Kedalaman Antrian"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Jam Tenang" msgstr "Jam Tenang"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Baca" msgstr "Baca"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Diterima" msgstr "Diterima"
@@ -1369,6 +1454,7 @@ msgstr "Diterima"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Muat ulang" msgstr "Muat ulang"
@@ -1410,6 +1496,8 @@ msgstr "Restart"
msgid "Resume" msgid "Resume"
msgstr "Lanjutkan" msgstr "Lanjutkan"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Waktu Mulai"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Ini akan menghapus secara permanen semua record yang dipilih dari databa
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Throughput dari {extraFsName}" msgstr "Throughput dari {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Throughput dari filesystem root" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Dipicu ketika rata-rata beban 5 menit melebihi ambang batas" msgstr "Dipicu ketika rata-rata beban 5 menit melebihi ambang batas"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Dipicu ketika pemeriksaan kesehatan (health check) kontainer Docker melaporkan kondisi tidak sehat" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Dipicu ketika sensor apa pun melebihi ambang batas" msgstr "Dipicu ketika sensor apa pun melebihi ambang batas"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Dipicu ketika baterai turun di bawah ambang batas" msgstr "Dipicu ketika baterai turun di bawah ambang batas"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal" msgstr "Token universal"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Tidak diketahui" msgstr "Tidak diketahui"
@@ -1851,6 +1945,7 @@ msgstr "Perbarui"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Diperbarui" msgstr "Diperbarui"
@@ -1868,20 +1963,25 @@ msgstr "Unggah"
msgid "Uptime" msgid "Uptime"
msgstr "Waktu aktif" msgstr "Waktu aktif"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Penggunaan" msgstr "Penggunaan"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Penggunaan partisi root" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Digunakan" msgstr "Digunakan"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Perintah Windows" msgstr "Perintah Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Tulis" msgstr "Tulis"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Konfigurasi YAML" msgstr "Konfigurasi YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} ora} other {{countString} ore}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuto} other {{countString} minuti}}" msgstr "{count, plural, one {{countString} minuto} other {{countString} minuti}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# thread}}" msgstr "{threads, plural, one {# thread} other {# thread}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Azioni" msgstr "Azioni"
@@ -191,6 +196,11 @@ msgstr "Sei sicuro?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "La copia automatica richiede un contesto sicuro." msgstr "La copia automatica richiede un contesto sicuro."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Media" msgstr "Media"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Funzionalità" msgstr "Funzionalità"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capacità" msgstr "Capacità"
@@ -380,8 +391,14 @@ msgstr "Controlla il tuo servizio di monitoraggio"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Controlla il tuo servizio di notifica" msgstr "Controlla il tuo servizio di notifica"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Cancella" msgstr "Cancella"
@@ -394,6 +411,10 @@ msgstr "Fare clic su un contenitore per visualizzare ulteriori informazioni."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Fare clic su un dispositivo per visualizzare più informazioni." msgstr "Fare clic su un dispositivo per visualizzare più informazioni."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Clicca su un sistema per visualizzare più informazioni." msgstr "Clicca su un sistema per visualizzare più informazioni."
@@ -559,14 +580,30 @@ msgstr "Creato"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Critico (%)" msgstr "Critico (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Download cumulativo" msgstr "Download cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Upload cumulativo" msgstr "Upload cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "In scarica"
msgid "Disk" msgid "Disk"
msgstr "Disco" msgstr "Disco"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O Disco"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Unità disco" msgstr "Unità disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fallito"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Attributi falliti:" msgstr "Attributi falliti:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Autenticazione fallita" msgstr "Autenticazione fallita"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Per <0>{min}</0> {min, plural, one {minuto} other {minuti}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Password dimenticata?" msgstr "Password dimenticata?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Griglia" msgstr "Griglia"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Stato" msgstr "Stato"
@@ -1101,6 +1146,10 @@ msgstr "Utilizzo della memoria dei container"
msgid "Model" msgid "Model"
msgstr "Modello" msgstr "Modello"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unità rete"
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Nessun attributo S.M.A.R.T. disponibile per questo dispositivo."
msgid "No systems found." msgid "No systems found."
msgstr "Nessun sistema trovato." msgstr "Nessun sistema trovato."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notifiche" msgstr "Notifiche"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Supporto OAuth 2 / OIDC" msgstr "Supporto OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Supporto OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Ad ogni riavvio, i sistemi nel database verranno aggiornati per corrispondere ai sistemi definiti nel file." msgstr "Ad ogni riavvio, i sistemi nel database verranno aggiornati per corrispondere ai sistemi definiti nel file."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Password monouso"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Apri menu" msgstr "Apri menu"
@@ -1309,6 +1379,14 @@ msgstr "Si prega di consultare <0>la documentazione</0> per le istruzioni."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Si prega di accedere al proprio account" msgstr "Si prega di accedere al proprio account"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Porta" msgstr "Porta"
@@ -1354,14 +1432,21 @@ msgstr "Profondità coda"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Ore silenziose" msgstr "Ore silenziose"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lettura" msgstr "Lettura"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Ricevuto" msgstr "Ricevuto"
@@ -1369,6 +1454,7 @@ msgstr "Ricevuto"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Aggiorna" msgstr "Aggiorna"
@@ -1410,6 +1496,8 @@ msgstr "Riavvii"
msgid "Resume" msgid "Resume"
msgstr "Riprendi" msgstr "Riprendi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Ora di inizio"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Stato" msgstr "Stato"
@@ -1683,9 +1772,9 @@ msgstr "Questo eliminerà permanentemente tutti i record selezionati dal databas
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Throughput di {extraFsName}" msgstr "Throughput di {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Throughput del filesystem root" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Si attiva quando la media di carico di 5 minuti supera una soglia" msgstr "Si attiva quando la media di carico di 5 minuti supera una soglia"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Si attiva quando il controllo di integrità (health check) di un container Docker restituisce uno stato non sano" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Attiva quando un sensore supera una soglia" msgstr "Attiva quando un sensore supera una soglia"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Attiva quando la carica della batteria scende sotto una soglia" msgstr "Attiva quando la carica della batteria scende sotto una soglia"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universale" msgstr "Token universale"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Sconosciuta" msgstr "Sconosciuta"
@@ -1851,6 +1945,7 @@ msgstr "Aggiorna"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Aggiornato" msgstr "Aggiornato"
@@ -1868,20 +1963,25 @@ msgstr "Carica"
msgid "Uptime" msgid "Uptime"
msgstr "Tempo di attività" msgstr "Tempo di attività"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Utilizzo" msgstr "Utilizzo"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Utilizzo della partizione root" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Utilizzato" msgstr "Utilizzato"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Comando Windows" msgstr "Comando Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Scrittura" msgstr "Scrittura"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Configurazione YAML" msgstr "Configurazione YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} 時間} other {{countString} 時間}}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} 分} few {{countString} 分} many {{countString} 分} other {{countString} 分}}" msgstr "{count, plural, one {{countString} 分} few {{countString} 分} many {{countString} 分} other {{countString} 分}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# スレッド} other {# スレッド}}" msgstr "{threads, plural, one {# スレッド} other {# スレッド}}"
@@ -93,6 +97,7 @@ msgstr "5分"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "アクション" msgstr "アクション"
@@ -191,6 +196,11 @@ msgstr "よろしいですか?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "自動コピーには安全なコンテキストが必要です。" msgstr "自動コピーには安全なコンテキストが必要です。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "平均" msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "機能" msgstr "機能"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "容量" msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "監視サービスを確認する"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "通知サービスを確認してください" msgstr "通知サービスを確認してください"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "クリア" msgstr "クリア"
@@ -394,6 +411,10 @@ msgstr "詳細情報を表示するにはコンテナをクリックしてくだ
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "詳細情報を表示するにはデバイスをクリックしてください。" msgstr "詳細情報を表示するにはデバイスをクリックしてください。"
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "システムをクリックして詳細を表示します。" msgstr "システムをクリックして詳細を表示します。"
@@ -559,14 +580,30 @@ msgstr "作成日"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "致命的 (%)" msgstr "致命的 (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "累積ダウンロード" msgstr "累積ダウンロード"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "累積アップロード" msgstr "累積アップロード"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk" msgid "Disk"
msgstr "ディスク" msgstr "ディスク"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "ディスクI/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "ディスク単位" msgstr "ディスク単位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "失敗した属性:" msgstr "失敗した属性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "認証に失敗しました" msgstr "認証に失敗しました"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {分} other {分}}の間"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "パスワードをお忘れですか?" msgstr "パスワードをお忘れですか?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "グリッド" msgstr "グリッド"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "ヘルス" msgstr "ヘルス"
@@ -1101,6 +1146,10 @@ msgstr "コンテナのメモリ使用量"
msgid "Model" msgid "Model"
msgstr "モデル" msgstr "モデル"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "ネットワーク単位"
msgid "No" msgid "No"
msgstr "いいえ" msgstr "いいえ"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "このデバイスのS.M.A.R.T.属性は利用できません。"
msgid "No systems found." msgid "No systems found."
msgstr "システムが見つかりませんでした。" msgstr "システムが見つかりませんでした。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "通知" msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDCサポート" msgstr "OAuth 2 / OIDCサポート"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDCサポート"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "再起動のたびに、データベース内のシステムはファイルに定義されたシステムに一致するように更新されます。" msgstr "再起動のたびに、データベース内のシステムはファイルに定義されたシステムに一致するように更新されます。"
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "ワンタイムパスワード"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "メニューを開く" msgstr "メニューを開く"
@@ -1309,6 +1379,14 @@ msgstr "手順については<0>ドキュメント</0>を参照してくださ
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "アカウントにサインインしてください" msgstr "アカウントにサインインしてください"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "ポート" msgstr "ポート"
@@ -1354,14 +1432,21 @@ msgstr "キューの深さ"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "サイレント時間" msgstr "サイレント時間"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "読み取り" msgstr "読み取り"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "受信" msgstr "受信"
@@ -1369,6 +1454,7 @@ msgstr "受信"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "更新" msgstr "更新"
@@ -1410,6 +1496,8 @@ msgstr "再起動"
msgid "Resume" msgid "Resume"
msgstr "再開" msgstr "再開"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "状態" msgstr "状態"
@@ -1683,9 +1772,9 @@ msgstr "これにより、選択したすべてのレコードがデータベー
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}のスループット" msgstr "{extraFsName}のスループット"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "ルートファイルシステムのスループット" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5分間の負荷平均がしきい値を超えたときにトリガーされます" msgstr "5分間の負荷平均がしきい値を超えたときにトリガーされます"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Dockerコンテナのヘルスチェックが異常を報告したときにトリガーされます" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "センサーがしきい値を超えたときにトリガーされます" msgstr "センサーがしきい値を超えたときにトリガーされます"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "バッテリーの充電量がしきい値を下回ったときにトリガーされます" msgstr "バッテリーの充電量がしきい値を下回ったときにトリガーされます"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "ユニバーサルトークン" msgstr "ユニバーサルトークン"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "不明" msgstr "不明"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "更新済み" msgstr "更新済み"
@@ -1868,20 +1963,25 @@ msgstr "アップロード"
msgid "Uptime" msgid "Uptime"
msgstr "稼働時間" msgstr "稼働時間"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "使用量" msgstr "使用量"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "ルートパーティションの使用量" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "使用中" msgstr "使用中"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows コマンド" msgstr "Windows コマンド"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "書き込み" msgstr "書き込み"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML設定" msgstr "YAML設定"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} 시간} other {{countString} 시간}}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} 분} few {{countString} 분} many {{countString} 분} other {{countString} 분}}" msgstr "{count, plural, one {{countString} 분} few {{countString} 분} many {{countString} 분} other {{countString} 분}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 스레드} other {# 스레드}}" msgstr "{threads, plural, one {# 스레드} other {# 스레드}}"
@@ -93,6 +97,7 @@ msgstr "5분"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "작업" msgstr "작업"
@@ -191,6 +196,11 @@ msgstr "확실합니까?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "자동 복사는 안전한 컨텍스트가 필요합니다." msgstr "자동 복사는 안전한 컨텍스트가 필요합니다."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "평균" msgstr "평균"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "권한" msgstr "권한"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "용량" msgstr "용량"
@@ -380,8 +391,14 @@ msgstr "모니터링 서비스 확인"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "알림 서비스를 확인하세요." msgstr "알림 서비스를 확인하세요."
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "지우기" msgstr "지우기"
@@ -394,6 +411,10 @@ msgstr "더 많은 정보를 보려면 컨테이너를 클릭하세요."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "더 많은 정보를 보려면 장치를 클릭하세요." msgstr "더 많은 정보를 보려면 장치를 클릭하세요."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "더 많은 정보를 보려면 시스템을 클릭하세요." msgstr "더 많은 정보를 보려면 시스템을 클릭하세요."
@@ -559,14 +580,30 @@ msgstr "생성됨"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "위험 (%)" msgstr "위험 (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "누적 다운로드" msgstr "누적 다운로드"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "누적 업로드" msgstr "누적 업로드"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "방전 중"
msgid "Disk" msgid "Disk"
msgstr "디스크" msgstr "디스크"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "디스크 I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "디스크 단위" msgstr "디스크 단위"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "실패"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "실패한 속성:" msgstr "실패한 속성:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "인증 실패" msgstr "인증 실패"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {분} other {분}} 동안"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "비밀번호를 잊으셨나요?" msgstr "비밀번호를 잊으셨나요?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "그리드" msgstr "그리드"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "상태" msgstr "상태"
@@ -1101,6 +1146,10 @@ msgstr "컨테이너 메모리 사용량"
msgid "Model" msgid "Model"
msgstr "모델" msgstr "모델"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "네트워크 단위"
msgid "No" msgid "No"
msgstr "아니오" msgstr "아니오"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "이 장치에 사용할 수 있는 S.M.A.R.T. 속성이 없습니다."
msgid "No systems found." msgid "No systems found."
msgstr "시스템을 찾을 수 없습니다." msgstr "시스템을 찾을 수 없습니다."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "알림" msgstr "알림"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC 지원" msgstr "OAuth 2 / OIDC 지원"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC 지원"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "매 시작 시, 데이터베이스가 파일에 정의된 시스템과 일치하도록 업데이트됩니다." msgstr "매 시작 시, 데이터베이스가 파일에 정의된 시스템과 일치하도록 업데이트됩니다."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "OTP"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "메뉴 열기" msgstr "메뉴 열기"
@@ -1309,6 +1379,14 @@ msgstr "사용법은 <0>문서</0>를 참조하세요."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "계정에 로그인하세요." msgstr "계정에 로그인하세요."
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "포트" msgstr "포트"
@@ -1354,14 +1432,21 @@ msgstr "대기열 깊이"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "조용한 시간" msgstr "조용한 시간"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "읽기" msgstr "읽기"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "수신됨" msgstr "수신됨"
@@ -1369,6 +1454,7 @@ msgstr "수신됨"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "새로고침" msgstr "새로고침"
@@ -1410,6 +1496,8 @@ msgstr "재시작 횟수"
msgid "Resume" msgid "Resume"
msgstr "재개" msgstr "재개"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "시작 시간"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "상태" msgstr "상태"
@@ -1683,9 +1772,9 @@ msgstr "선택한 모든 레코드를 데이터베이스에서 영구적으로
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}의 처리량" msgstr "{extraFsName}의 처리량"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "루트 파일 시스템의 처리량" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5분 부하 평균이 임계값을 초과하면 트리거됩니다." msgstr "5분 부하 평균이 임계값을 초과하면 트리거됩니다."
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Docker 컨테이너의 상태 확인(health check)에서 비정상 상태가 보고되면 트리거됩니다" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "센서가 임계값을 초과할 때 트리거됩니다." msgstr "센서가 임계값을 초과할 때 트리거됩니다."
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "배터리 충전량이 임계값 아래로 떨어질 때 트리거됩니다." msgstr "배터리 충전량이 임계값 아래로 떨어질 때 트리거됩니다."
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "범용 토큰" msgstr "범용 토큰"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "알 수 없음" msgstr "알 수 없음"
@@ -1851,6 +1945,7 @@ msgstr "업데이트"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "업데이트됨" msgstr "업데이트됨"
@@ -1868,20 +1963,25 @@ msgstr "업로드"
msgid "Uptime" msgid "Uptime"
msgstr "가동시간" msgstr "가동시간"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "사용량" msgstr "사용량"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "루트 파티션의 사용량" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "사용됨" msgstr "사용됨"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows 명령어" msgstr "Windows 명령어"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "쓰기" msgstr "쓰기"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML 구성" msgstr "YAML 구성"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} uur} other {{countString} uren}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuut} other {{countString} minuten}}" msgstr "{count, plural, one {{countString} minuut} other {{countString} minuten}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# threads}}" msgstr "{threads, plural, one {# thread} other {# threads}}"
@@ -93,6 +97,7 @@ msgstr "5 minuten"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Acties" msgstr "Acties"
@@ -191,6 +196,11 @@ msgstr "Weet je het zeker?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatisch kopiëren vereist een veilige context." msgstr "Automatisch kopiëren vereist een veilige context."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Gemiddelde" msgstr "Gemiddelde"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Mogelijkheden" msgstr "Mogelijkheden"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capaciteit" msgstr "Capaciteit"
@@ -380,8 +391,14 @@ msgstr "Controleer je monitoringservice"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Controleer je meldingsservice" msgstr "Controleer je meldingsservice"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Wissen" msgstr "Wissen"
@@ -394,6 +411,10 @@ msgstr "Klik op een container om meer informatie te zien."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klik op een apparaat om meer informatie te bekijken." msgstr "Klik op een apparaat om meer informatie te bekijken."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klik op een systeem om meer informatie te bekijken." msgstr "Klik op een systeem om meer informatie te bekijken."
@@ -559,14 +580,30 @@ msgstr "Aangemaakt"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritiek (%)" msgstr "Kritiek (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Cumulatieve download" msgstr "Cumulatieve download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Cumulatieve upload" msgstr "Cumulatieve upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Ontladen"
msgid "Disk" msgid "Disk"
msgstr "Schijf" msgstr "Schijf"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Schijf I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Schijf eenheid" msgstr "Schijf eenheid"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislukt"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Mislukte kenmerken:" msgstr "Mislukte kenmerken:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Authenticatie mislukt" msgstr "Authenticatie mislukt"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Voor <0>{min}</0> {min, plural, one {minuut} other {minuten}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Wachtwoord vergeten?" msgstr "Wachtwoord vergeten?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Raster" msgstr "Raster"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Gezondheid" msgstr "Gezondheid"
@@ -1101,6 +1146,10 @@ msgstr "Geheugengebruik van containers"
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netwerk eenheid"
msgid "No" msgid "No"
msgstr "Nee" msgstr "Nee"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Geen S.M.A.R.T. kenmerken beschikbaar voor dit apparaat."
msgid "No systems found." msgid "No systems found."
msgstr "Geen systemen gevonden." msgstr "Geen systemen gevonden."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Meldingen" msgstr "Meldingen"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC ondersteuning" msgstr "OAuth 2 / OIDC ondersteuning"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC ondersteuning"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Bij elke herstart zullen systemen in de database worden bijgewerkt om overeen te komen met de systemen die in het bestand zijn gedefinieerd." msgstr "Bij elke herstart zullen systemen in de database worden bijgewerkt om overeen te komen met de systemen die in het bestand zijn gedefinieerd."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Eenmalig wachtwoord"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Menu openen" msgstr "Menu openen"
@@ -1309,6 +1379,14 @@ msgstr "Bekijk <0>de documentatie</0> voor instructies."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Meld je aan bij je account" msgstr "Meld je aan bij je account"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Poort" msgstr "Poort"
@@ -1354,14 +1432,21 @@ msgstr "Wachtrijdiepte"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Stille uren" msgstr "Stille uren"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lezen" msgstr "Lezen"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Ontvangen" msgstr "Ontvangen"
@@ -1369,6 +1454,7 @@ msgstr "Ontvangen"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Vernieuwen" msgstr "Vernieuwen"
@@ -1410,6 +1496,8 @@ msgstr "Herstarten"
msgid "Resume" msgid "Resume"
msgstr "Hervatten" msgstr "Hervatten"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttijd"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Status" msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Dit zal alle geselecteerde records verwijderen uit de database."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Doorvoer van {extraFsName}" msgstr "Doorvoer van {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Doorvoer van het root bestandssysteem" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Triggert wanneer de 5 minuten gemiddelde belasting een drempelwaarde overschrijdt" msgstr "Triggert wanneer de 5 minuten gemiddelde belasting een drempelwaarde overschrijdt"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Triggert wanneer de health check van een Docker-container ongezond rapporteert" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Triggert wanneer een sensor een drempelwaarde overschrijdt" msgstr "Triggert wanneer een sensor een drempelwaarde overschrijdt"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Triggert wanneer de batterijlading onder een drempelwaarde daalt" msgstr "Triggert wanneer de batterijlading onder een drempelwaarde daalt"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universele token" msgstr "Universele token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Onbekend" msgstr "Onbekend"
@@ -1851,6 +1945,7 @@ msgstr "Bijwerken"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Bijgewerkt" msgstr "Bijgewerkt"
@@ -1868,20 +1963,25 @@ msgstr "Uploaden"
msgid "Uptime" msgid "Uptime"
msgstr "Actief" msgstr "Actief"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Gebruik" msgstr "Gebruik"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Gebruik van root-partitie" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Gebruikt" msgstr "Gebruikt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows-commando" msgstr "Windows-commando"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Schrijven" msgstr "Schrijven"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML Configuratie" msgstr "YAML Configuratie"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} time} other {{countString} timer}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minutt} other {{countString} minutter}}" msgstr "{count, plural, one {{countString} minutt} other {{countString} minutter}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# tråd} other {# tråder}}" msgstr "{threads, plural, one {# tråd} other {# tråder}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Handlinger" msgstr "Handlinger"
@@ -191,6 +196,11 @@ msgstr "Er du sikker?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatisk kopiering krever en sikker kontekst." msgstr "Automatisk kopiering krever en sikker kontekst."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Gjennomsnitt" msgstr "Gjennomsnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Kapabiliteter" msgstr "Kapabiliteter"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapasitet" msgstr "Kapasitet"
@@ -380,8 +391,14 @@ msgstr "Sjekk overvåkingstjenesten din"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Sjekk din meldingstjeneste" msgstr "Sjekk din meldingstjeneste"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Tøm" msgstr "Tøm"
@@ -394,6 +411,10 @@ msgstr "Klikk på en container for å se mer informasjon."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klikk på en enhet for å se mer informasjon." msgstr "Klikk på en enhet for å se mer informasjon."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klikk på et system for å se mer informasjon." msgstr "Klikk på et system for å se mer informasjon."
@@ -559,14 +580,30 @@ msgstr "Opprettet"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritisk (%)" msgstr "Kritisk (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativ nedlasting" msgstr "Kumulativ nedlasting"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativ opplasting" msgstr "Kumulativ opplasting"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Lader ut"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Diskenhet" msgstr "Diskenhet"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislyktes"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Mislykkede attributter:" msgstr "Mislykkede attributter:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Autentisering mislyktes" msgstr "Autentisering mislyktes"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "I <0>{min}</0> {min, plural, one {minutt} other {minutter}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Glemt passord?" msgstr "Glemt passord?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rutenett" msgstr "Rutenett"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Helse" msgstr "Helse"
@@ -1101,6 +1146,10 @@ msgstr "Minnebruk for containere"
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Nettverksenhet"
msgid "No" msgid "No"
msgstr "Nei" msgstr "Nei"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Ingen S.M.A.R.T.-attributter tilgjengelig for denne enheten."
msgid "No systems found." msgid "No systems found."
msgstr "Ingen systemer funnet." msgstr "Ingen systemer funnet."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Varslinger" msgstr "Varslinger"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC-støtte" msgstr "OAuth 2 / OIDC-støtte"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC-støtte"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Ved hver omstart vil systemer i databasen bli oppdatert til å matche systemene definert i fila." msgstr "Ved hver omstart vil systemer i databasen bli oppdatert til å matche systemene definert i fila."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Engangspassord"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Åpne meny" msgstr "Åpne meny"
@@ -1309,6 +1379,14 @@ msgstr "Vennligst se <0>dokumentasjonen</0> for instrukser."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Vennligst logg inn på kontoen din" msgstr "Vennligst logg inn på kontoen din"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kødybde"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Stille timer" msgstr "Stille timer"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Lesing" msgstr "Lesing"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Mottatt" msgstr "Mottatt"
@@ -1369,6 +1454,7 @@ msgstr "Mottatt"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Oppdater" msgstr "Oppdater"
@@ -1410,6 +1496,8 @@ msgstr "Omstarter"
msgid "Resume" msgid "Resume"
msgstr "Gjenoppta" msgstr "Gjenoppta"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Tilstand" msgstr "Tilstand"
@@ -1683,9 +1772,9 @@ msgstr "Dette vil permanent slette alle valgte oppføringer fra databasen."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Gjennomstrømning av {extraFsName}" msgstr "Gjennomstrømning av {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Gjennomstrømning av rot-filsystemet" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Slår inn når gjennomsnittsbelastningen over 5 minutter overstiger en grenseverdi" msgstr "Slår inn når gjennomsnittsbelastningen over 5 minutter overstiger en grenseverdi"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Slår inn når helsesjekken til en Docker-container rapporterer usunn" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Slår inn når hvilken som helst sensor overstiger en grenseverdi" msgstr "Slår inn når hvilken som helst sensor overstiger en grenseverdi"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Utløses når batterilading faller under en terskel" msgstr "Utløses når batterilading faller under en terskel"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universal token" msgstr "Universal token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Ukjent" msgstr "Ukjent"
@@ -1851,6 +1945,7 @@ msgstr "Oppdater"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Oppdatert" msgstr "Oppdatert"
@@ -1868,20 +1963,25 @@ msgstr "Last opp"
msgid "Uptime" msgid "Uptime"
msgstr "Oppetid" msgstr "Oppetid"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Forbruk" msgstr "Forbruk"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Forbruk av rot-partisjon" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Brukt" msgstr "Brukt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows-kommando" msgstr "Windows-kommando"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Skriving" msgstr "Skriving"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML Oppsett" msgstr "YAML Oppsett"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {godzina} few {{countString} godziny} many {{countSt
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuta} few {{countString} minuty} many {{countString} minut} other {{countString} minut}}" msgstr "{count, plural, one {{countString} minuta} few {{countString} minuty} many {{countString} minut} other {{countString} minut}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# wątek} few {# wątki} many {# wątków} other {# wątków}}" msgstr "{threads, plural, one {# wątek} few {# wątki} many {# wątków} other {# wątków}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Akcje" msgstr "Akcje"
@@ -191,6 +196,11 @@ msgstr "Czy jesteś pewien?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatyczne kopiowanie wymaga bezpiecznego kontekstu." msgstr "Automatyczne kopiowanie wymaga bezpiecznego kontekstu."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Średnia" msgstr "Średnia"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Możliwości" msgstr "Możliwości"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Pojemność" msgstr "Pojemność"
@@ -380,8 +391,14 @@ msgstr "Sprawdź usługę monitorowania"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Sprawdź swój serwis powiadomień" msgstr "Sprawdź swój serwis powiadomień"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Wyczyść" msgstr "Wyczyść"
@@ -394,6 +411,10 @@ msgstr "Wybierz kontener, aby wyświetlić więcej informacji."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Wybierz urządzenie, aby wyświetlić więcej informacji." msgstr "Wybierz urządzenie, aby wyświetlić więcej informacji."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Wybierz system, aby wyświetlić więcej informacji." msgstr "Wybierz system, aby wyświetlić więcej informacji."
@@ -559,14 +580,30 @@ msgstr "Utworzono"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Krytyczny (%)" msgstr "Krytyczny (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Pobieranie łącznie" msgstr "Pobieranie łącznie"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Wysyłanie łącznie" msgstr "Wysyłanie łącznie"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Rozładowuje się"
msgid "Disk" msgid "Disk"
msgstr "Dysk" msgstr "Dysk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Dysk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Jednostka dysku" msgstr "Jednostka dysku"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Nieudane"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Nieudane atrybuty:" msgstr "Nieudane atrybuty:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Błąd autoryzacji" msgstr "Błąd autoryzacji"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Na <0>{min}</0> {min, plural, one {minutę} other {minut}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Zapomniałeś hasła?" msgstr "Zapomniałeś hasła?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Siatka" msgstr "Siatka"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Kondycja" msgstr "Kondycja"
@@ -1101,6 +1146,10 @@ msgstr "Zużycie pamięci przez kontenery"
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Jednostka sieciowa"
msgid "No" msgid "No"
msgstr "Nie" msgstr "Nie"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Brak dostępnych atrybutów S.M.A.R.T. dla tego urządzenia."
msgid "No systems found." msgid "No systems found."
msgstr "Nie znaleziono systemów." msgstr "Nie znaleziono systemów."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Powiadomienia" msgstr "Powiadomienia"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Wsparcie OAuth 2 / OIDC" msgstr "Wsparcie OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Wsparcie OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Przy każdym ponownym uruchomieniu systemy w bazie danych będą aktualizowane, aby odpowiadały systemom zdefiniowanym w pliku." msgstr "Przy każdym ponownym uruchomieniu systemy w bazie danych będą aktualizowane, aby odpowiadały systemom zdefiniowanym w pliku."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Hasło jednorazowe"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Otwórz menu" msgstr "Otwórz menu"
@@ -1309,6 +1379,14 @@ msgstr "Proszę zapoznać się z <0>dokumentacją</0>."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Zaloguj się na swoje konto" msgstr "Zaloguj się na swoje konto"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Głębokość kolejki"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Godziny ciszy" msgstr "Godziny ciszy"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Odczyt" msgstr "Odczyt"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Otrzymane" msgstr "Otrzymane"
@@ -1369,6 +1454,7 @@ msgstr "Otrzymane"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Odśwież" msgstr "Odśwież"
@@ -1410,6 +1496,8 @@ msgstr "Uruchamia ponownie"
msgid "Resume" msgid "Resume"
msgstr "Wznów" msgstr "Wznów"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Czas rozpoczęcia"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Stan" msgstr "Stan"
@@ -1683,9 +1772,9 @@ msgstr "Spowoduje to trwałe usunięcie wszystkich zaznaczonych rekordów z bazy
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Przepustowość {extraFsName}" msgstr "Przepustowość {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Przepustowość głównego systemu plików" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Uruchamia się, gdy 5-minutowe średnie obciążenie systemu przekroczy ustawiony próg" msgstr "Uruchamia się, gdy 5-minutowe średnie obciążenie systemu przekroczy ustawiony próg"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Wyzwalane, gdy kontrola kondycji (health check) kontenera Docker zgłasza stan niesprawny" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Wyzwalane, gdy jakikolwiek czujnik przekroczy ustalony próg." msgstr "Wyzwalane, gdy jakikolwiek czujnik przekroczy ustalony próg."
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Uruchamia się, gdy poziom baterii spadnie poniżej wybranej wartości" msgstr "Uruchamia się, gdy poziom baterii spadnie poniżej wybranej wartości"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Uniwersalny token" msgstr "Uniwersalny token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Nieznana" msgstr "Nieznana"
@@ -1851,6 +1945,7 @@ msgstr "Aktualizuj"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Zaktualizowano" msgstr "Zaktualizowano"
@@ -1868,20 +1963,25 @@ msgstr "Wysyłanie"
msgid "Uptime" msgid "Uptime"
msgstr "Czas pracy" msgstr "Czas pracy"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Wykorzystanie" msgstr "Wykorzystanie"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Użycie partycji głównej" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Używane" msgstr "Używane"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Polecenie Windows" msgstr "Polecenie Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Zapis" msgstr "Zapis"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Konf. YAML" msgstr "Konf. YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} hora} other {{countString} horas}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuto} other {{countString} minutos}}" msgstr "{count, plural, one {{countString} minuto} other {{countString} minutos}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# thread} other {# threads}}" msgstr "{threads, plural, one {# thread} other {# threads}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Ações" msgstr "Ações"
@@ -191,6 +196,11 @@ msgstr "Tem certeza?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "A cópia automática requer um contexto seguro." msgstr "A cópia automática requer um contexto seguro."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Média" msgstr "Média"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacidades" msgstr "Capacidades"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Capacidade" msgstr "Capacidade"
@@ -380,8 +391,14 @@ msgstr "Verifique o seu serviço de monitorização"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Verifique seu serviço de notificação" msgstr "Verifique seu serviço de notificação"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Limpar" msgstr "Limpar"
@@ -394,6 +411,10 @@ msgstr "Clique num contentor para ver mais informações."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Clique em um dispositivo para ver mais informações." msgstr "Clique em um dispositivo para ver mais informações."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Clique em um sistema para ver mais informações." msgstr "Clique em um sistema para ver mais informações."
@@ -559,14 +580,30 @@ msgstr "Criado"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Crítico (%)" msgstr "Crítico (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Download cumulativo" msgstr "Download cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Upload cumulativo" msgstr "Upload cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Descarregando"
msgid "Disk" msgid "Disk"
msgstr "Disco" msgstr "Disco"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "E/S de Disco"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Unidade de disco" msgstr "Unidade de disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Falhou"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Atributos com Falha:" msgstr "Atributos com Falha:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Falha na autenticação" msgstr "Falha na autenticação"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Por <0>{min}</0> {min, plural, one {minuto} other {minutos}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Esqueceu a senha?" msgstr "Esqueceu a senha?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Grade" msgstr "Grade"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Saúde" msgstr "Saúde"
@@ -1101,6 +1146,10 @@ msgstr "Utilização de memória dos contentores"
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unidade de rede"
msgid "No" msgid "No"
msgstr "Não" msgstr "Não"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Nenhum atributo S.M.A.R.T. disponível para este dispositivo."
msgid "No systems found." msgid "No systems found."
msgstr "Nenhum sistema encontrado." msgstr "Nenhum sistema encontrado."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Notificações" msgstr "Notificações"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Suporte a OAuth 2 / OIDC" msgstr "Suporte a OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Suporte a OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "A cada reinício, os sistemas no banco de dados serão atualizados para corresponder aos sistemas definidos no arquivo." msgstr "A cada reinício, os sistemas no banco de dados serão atualizados para corresponder aos sistemas definidos no arquivo."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Senha de uso único"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Abrir menu" msgstr "Abrir menu"
@@ -1309,6 +1379,14 @@ msgstr "Por favor, veja <0>a documentação</0> para instruções."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Por favor, entre na sua conta" msgstr "Por favor, entre na sua conta"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Porta" msgstr "Porta"
@@ -1354,14 +1432,21 @@ msgstr "Profundidade da fila"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Horas Silenciosas" msgstr "Horas Silenciosas"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Ler" msgstr "Ler"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Recebido" msgstr "Recebido"
@@ -1369,6 +1454,7 @@ msgstr "Recebido"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
@@ -1410,6 +1496,8 @@ msgstr "Reinícios"
msgid "Resume" msgid "Resume"
msgstr "Retomar" msgstr "Retomar"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Hora de Início"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Estado" msgstr "Estado"
@@ -1683,9 +1772,9 @@ msgstr "Isso excluirá permanentemente todos os registros selecionados do banco
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Taxa de transferência de {extraFsName}" msgstr "Taxa de transferência de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Taxa de transferência do sistema de arquivos raiz" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Dispara quando a média de carga de 5 minutos excede um limite" msgstr "Dispara quando a média de carga de 5 minutos excede um limite"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Dispara quando a verificação de saúde (health check) de um contentor Docker reporta um estado não saudável" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Dispara quando qualquer sensor excede um limite" msgstr "Dispara quando qualquer sensor excede um limite"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Dispara quando a carga da bateria cai abaixo de um limite" msgstr "Dispara quando a carga da bateria cai abaixo de um limite"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal" msgstr "Token universal"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Desconhecida" msgstr "Desconhecida"
@@ -1851,6 +1945,7 @@ msgstr "Atualizar"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Atualizado" msgstr "Atualizado"
@@ -1868,20 +1963,25 @@ msgstr "Carregar"
msgid "Uptime" msgid "Uptime"
msgstr "Tempo de Atividade" msgstr "Tempo de Atividade"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Uso" msgstr "Uso"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Uso da partição raiz" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Usado" msgstr "Usado"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Comando Windows" msgstr "Comando Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Escrever" msgstr "Escrever"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Configuração YAML" msgstr "Configuração YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} час} other {{countString} часо
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} минута} few {{countString} минут} many {{countString} минут} other {{countString} минуты}}" msgstr "{count, plural, one {{countString} минута} few {{countString} минут} many {{countString} минут} other {{countString} минуты}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# поток} few {# потока} many {# потоков} other {# потоков}}" msgstr "{threads, plural, one {# поток} few {# потока} many {# потоков} other {# потоков}}"
@@ -93,6 +97,7 @@ msgstr "5 мин"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Действия" msgstr "Действия"
@@ -191,6 +196,11 @@ msgstr "Вы уверены?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Автоматическое копирование требует безопасного контекста." msgstr "Автоматическое копирование требует безопасного контекста."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Среднее" msgstr "Среднее"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Возможности" msgstr "Возможности"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Емкость" msgstr "Емкость"
@@ -380,8 +391,14 @@ msgstr "Проверьте ваш сервис мониторинга"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Проверьте ваш сервис уведомлений" msgstr "Проверьте ваш сервис уведомлений"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Очистить" msgstr "Очистить"
@@ -394,6 +411,10 @@ msgstr "Нажмите на контейнер для просмотра доп
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Нажмите на устройство для просмотра дополнительной информации." msgstr "Нажмите на устройство для просмотра дополнительной информации."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Нажмите на систему для просмотра дополнительной информации." msgstr "Нажмите на систему для просмотра дополнительной информации."
@@ -559,14 +580,30 @@ msgstr "Создано"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Критический (%)" msgstr "Критический (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Совокупная загрузка" msgstr "Совокупная загрузка"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Совокупная отдача" msgstr "Совокупная отдача"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Разряжается"
msgid "Disk" msgid "Disk"
msgstr "Диск" msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Дисковый ввод/вывод"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Единицы измерения дисковой активности" msgstr "Единицы измерения дисковой активности"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неудачно"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Неудачные атрибуты:" msgstr "Неудачные атрибуты:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Не удалось аутентифицировать" msgstr "Не удалось аутентифицировать"
@@ -839,6 +875,8 @@ msgstr "Вентиляторы"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "На <0>{min}</0> {min, plural, one {минуту} other {минут}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Забыли пароль?" msgstr "Забыли пароль?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Сетка" msgstr "Сетка"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Здоровье" msgstr "Здоровье"
@@ -1101,6 +1146,10 @@ msgstr "Использование памяти контейнерами"
msgid "Model" msgid "Model"
msgstr "Модель" msgstr "Модель"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Единицы измерения скорости сети"
msgid "No" msgid "No"
msgstr "Нет" msgstr "Нет"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Для этого устройства нет доступных атр
msgid "No systems found." msgid "No systems found."
msgstr "Системы не найдены." msgstr "Системы не найдены."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Уведомления" msgstr "Уведомления"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Поддержка OAuth 2 / OIDC" msgstr "Поддержка OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Поддержка OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "При каждом перезапуске системы в базе данных будут обновлены в соответствии с системами, определенными в файле." msgstr "При каждом перезапуске системы в базе данных будут обновлены в соответствии с системами, определенными в файле."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Одноразовый пароль"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Открыть меню" msgstr "Открыть меню"
@@ -1309,6 +1379,14 @@ msgstr "Пожалуйста, смотрите <0>документацию</0>
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Пожалуйста, войдите в свою учетную запись" msgstr "Пожалуйста, войдите в свою учетную запись"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Глубина очереди"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Тихие часы" msgstr "Тихие часы"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Чтение" msgstr "Чтение"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Получено" msgstr "Получено"
@@ -1369,6 +1454,7 @@ msgstr "Получено"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Обновить" msgstr "Обновить"
@@ -1410,6 +1496,8 @@ msgstr "Перезапуски"
msgid "Resume" msgid "Resume"
msgstr "Возобновить" msgstr "Возобновить"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Время начала"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Состояние" msgstr "Состояние"
@@ -1683,9 +1772,9 @@ msgstr "Это навсегда удалит все выбранные запи
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Пропускная способность {extraFsName}" msgstr "Пропускная способность {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Пропускная способность корневой файловой системы" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Срабатывает, когда средняя загрузка за 5 минут превышает порог" msgstr "Срабатывает, когда средняя загрузка за 5 минут превышает порог"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Срабатывает, когда проверка состояния (health check) Docker-контейнера сообщает статус нездоровый" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Срабатывает, когда любой датчик превышает порог" msgstr "Срабатывает, когда любой датчик превышает порог"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Срабатывает, когда заряд батареи опускается ниже порога" msgstr "Срабатывает, когда заряд батареи опускается ниже порога"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универсальный токен" msgstr "Универсальный токен"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Неизвестно" msgstr "Неизвестно"
@@ -1851,6 +1945,7 @@ msgstr "Обновить"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Обновлено" msgstr "Обновлено"
@@ -1868,20 +1963,25 @@ msgstr "Отдача"
msgid "Uptime" msgid "Uptime"
msgstr "Время работы" msgstr "Время работы"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Использование" msgstr "Использование"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Использование корневого раздела" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Использовано" msgstr "Использовано"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Команда Windows" msgstr "Команда Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Запись" msgstr "Запись"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML конфиг" msgstr "YAML конфиг"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} ura} two {{countString} uri} few {{co
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minuta} few {{countString} minuti} many {{countString} minut} other {{countString} minut}}" msgstr "{count, plural, one {{countString} minuta} few {{countString} minuti} many {{countString} minut} other {{countString} minut}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# nit} two {# niti} few {# niti} other {# niti}}" msgstr "{threads, plural, one {# nit} two {# niti} few {# niti} other {# niti}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Dejanja" msgstr "Dejanja"
@@ -191,6 +196,11 @@ msgstr "Ali ste prepričani?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Za samodejno kopiranje je potreben varen kontekst." msgstr "Za samodejno kopiranje je potreben varen kontekst."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Povprečno" msgstr "Povprečno"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Zmožnosti" msgstr "Zmožnosti"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapaciteta" msgstr "Kapaciteta"
@@ -380,8 +391,14 @@ msgstr "Preverite svojo storitev za spremljanje"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Preverite storitev obveščanja" msgstr "Preverite storitev obveščanja"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Počisti" msgstr "Počisti"
@@ -394,6 +411,10 @@ msgstr "Kliknite na kontejner za več informacij."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Kliknite na napravo za več informacij." msgstr "Kliknite na napravo za več informacij."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Kliknite na sistem za več informacij." msgstr "Kliknite na sistem za več informacij."
@@ -559,14 +580,30 @@ msgstr "Ustvarjeno"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritično (%)" msgstr "Kritično (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativno prenos" msgstr "Kumulativno prenos"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativno nalaganje" msgstr "Kumulativno nalaganje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Prazni se"
msgid "Disk" msgid "Disk"
msgstr "" msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk V/I"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Enota diska" msgstr "Enota diska"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Neuspešno"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Neuspeli atributi:" msgstr "Neuspeli atributi:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Preverjanje pristnosti ni uspelo" msgstr "Preverjanje pristnosti ni uspelo"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minuto} other {minut}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Pozabljeno geslo?" msgstr "Pozabljeno geslo?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Mreža" msgstr "Mreža"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Zdravje" msgstr "Zdravje"
@@ -1101,6 +1146,10 @@ msgstr "Poraba pomnilnika vsebnikov"
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Enota omrežja"
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Za to napravo ni na voljo atributov S.M.A.R.T."
msgid "No systems found." msgid "No systems found."
msgstr "Ne najdem sistema." msgstr "Ne najdem sistema."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Obvestila" msgstr "Obvestila"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Podpora za OAuth 2 / OIDC" msgstr "Podpora za OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Podpora za OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Ob vsakem ponovnem zagonu bodo sistemi v zbirki podatkov posodobljeni, da se bodo ujemali s sistemi, definiranimi v datoteki." msgstr "Ob vsakem ponovnem zagonu bodo sistemi v zbirki podatkov posodobljeni, da se bodo ujemali s sistemi, definiranimi v datoteki."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Enkratno geslo"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Odpri menu" msgstr "Odpri menu"
@@ -1309,6 +1379,14 @@ msgstr "Za navodila glejte <0>dokumentacijo</0>."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Prijavite se v svoj račun" msgstr "Prijavite se v svoj račun"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Vrata" msgstr "Vrata"
@@ -1354,14 +1432,21 @@ msgstr "Globina čakalne vrste"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Tihi čas" msgstr "Tihi čas"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Preberano" msgstr "Preberano"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Prejeto" msgstr "Prejeto"
@@ -1369,6 +1454,7 @@ msgstr "Prejeto"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Osveži" msgstr "Osveži"
@@ -1410,6 +1496,8 @@ msgstr "Ponovni zagoni"
msgid "Resume" msgid "Resume"
msgstr "Nadaljuj" msgstr "Nadaljuj"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Čas začetka"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Stanje" msgstr "Stanje"
@@ -1683,9 +1772,9 @@ msgstr "To bo trajno izbrisalo vse izbrane zapise iz zbirke podatkov."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Prepustnost {extraFsName}" msgstr "Prepustnost {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Prepustnost korenskega datotečnega sistema" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Sproži se, ko 5-minutna povprečna obremenitev preseže prag" msgstr "Sproži se, ko 5-minutna povprečna obremenitev preseže prag"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Sproži se, ko preverjanje zdravja vsebnika Docker javi stanje nezdravo" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Sproži se, ko kateri koli senzor preseže prag" msgstr "Sproži se, ko kateri koli senzor preseže prag"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Sproži se, ko napolnjenost baterije pade pod prag" msgstr "Sproži se, ko napolnjenost baterije pade pod prag"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzalni žeton" msgstr "Univerzalni žeton"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Neznana" msgstr "Neznana"
@@ -1851,6 +1945,7 @@ msgstr "Posodobi"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Posodobljeno" msgstr "Posodobljeno"
@@ -1868,20 +1963,25 @@ msgstr "Naloži"
msgid "Uptime" msgid "Uptime"
msgstr "Čas delovanja" msgstr "Čas delovanja"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Uporaba" msgstr "Uporaba"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Uporaba korenske particije" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Uporabljeno" msgstr "Uporabljeno"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Ukaz Windows" msgstr "Ukaz Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Pisanje" msgstr "Pisanje"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML nastaviitev" msgstr "YAML nastaviitev"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} сат} few {{countString} сата}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} минут} few {{countString} минута} many {{countString} минута} other {{countString} минута}}" msgstr "{count, plural, one {{countString} минут} few {{countString} минута} many {{countString} минута} other {{countString} минута}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# nit} few {# niti} other {# niti}}" msgstr "{threads, plural, one {# nit} few {# niti} other {# niti}}"
@@ -93,6 +97,7 @@ msgstr "5 мин"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Акције" msgstr "Акције"
@@ -191,6 +196,11 @@ msgstr "Да ли сте сигурни?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Аутоматско копирање захтева безбедан контекст." msgstr "Аутоматско копирање захтева безбедан контекст."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Просек" msgstr "Просек"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Могућности" msgstr "Могућности"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Капацитет" msgstr "Капацитет"
@@ -380,8 +391,14 @@ msgstr "Proverite svoju uslugu monitoringa"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Проверите ваш сервис за обавештавања" msgstr "Проверите ваш сервис за обавештавања"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Обриши" msgstr "Обриши"
@@ -394,6 +411,10 @@ msgstr "Кликните на контејнер да видите више ин
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Кликните на уређај да видите више информација." msgstr "Кликните на уређај да видите више информација."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Кликните на систем да видите више информација." msgstr "Кликните на систем да видите више информација."
@@ -559,14 +580,30 @@ msgstr "Креирано"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Критично (%)" msgstr "Критично (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Кумулативно преузимање" msgstr "Кумулативно преузимање"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Кумулативно отпремање" msgstr "Кумулативно отпремање"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Празни се"
msgid "Disk" msgid "Disk"
msgstr "Диск" msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Диск I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Диск јединица" msgstr "Диск јединица"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неуспело"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Неуспели атрибути:" msgstr "Неуспели атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Неуспела аутентификација" msgstr "Неуспела аутентификација"
@@ -839,6 +875,8 @@ msgstr "Вентилатори"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "За <0>{min}</0> {min, plural, one {минуту} few {минута} ot
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Заборављена лозинка?" msgstr "Заборављена лозинка?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Мрежа" msgstr "Мрежа"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Здравље" msgstr "Здравље"
@@ -1101,6 +1146,10 @@ msgstr "Коришћење меморије контејнера"
msgid "Model" msgid "Model"
msgstr "Модел" msgstr "Модел"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Мрежна јединица"
msgid "No" msgid "No"
msgstr "Не" msgstr "Не"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Нема доступних S.M.A.R.T. атрибута за овај у
msgid "No systems found." msgid "No systems found."
msgstr "Нису пронађени системи." msgstr "Нису пронађени системи."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Обавештења" msgstr "Обавештења"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC подршка" msgstr "OAuth 2 / OIDC подршка"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC подршка"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "При сваком поновном покретању, системи у бази података ће се ажурирати да одговарају системима дефинисаним у датотеци." msgstr "При сваком поновном покретању, системи у бази података ће се ажурирати да одговарају системима дефинисаним у датотеци."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Једнократна лозинка"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Отвори мени" msgstr "Отвори мени"
@@ -1309,6 +1379,14 @@ msgstr "Молимо вас погледајте <0>документацију</
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Молимо вас да се пријавите на ваш налог" msgstr "Молимо вас да се пријавите на ваш налог"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Дубина реда"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Тихи сати" msgstr "Тихи сати"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Читање" msgstr "Читање"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Примљено" msgstr "Примљено"
@@ -1369,6 +1454,7 @@ msgstr "Примљено"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Освежи" msgstr "Освежи"
@@ -1410,6 +1496,8 @@ msgstr "Поновна покретања"
msgid "Resume" msgid "Resume"
msgstr "Настави" msgstr "Настави"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Време почетка"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Стање" msgstr "Стање"
@@ -1683,9 +1772,9 @@ msgstr "Ово ће трајно избрисати све изабране за
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Проток {extraFsName}" msgstr "Проток {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Проток root фајл система" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Окида се када просечно оптерећење од 5 минута премаши праг" msgstr "Окида се када просечно оптерећење од 5 минута премаши праг"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Окида се када провера здравља Docker контејнера пријави да је нездрав" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Окида се када било који сензор премаши праг" msgstr "Окида се када било који сензор премаши праг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Pokreće se kada nivo baterije padne ispod praga" msgstr "Pokreće se kada nivo baterije padne ispod praga"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универзални токен" msgstr "Универзални токен"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Непознато" msgstr "Непознато"
@@ -1851,6 +1945,7 @@ msgstr "Ажурирај"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Ажурирано" msgstr "Ажурирано"
@@ -1868,20 +1963,25 @@ msgstr "Отпреми"
msgid "Uptime" msgid "Uptime"
msgstr "Време рада" msgstr "Време рада"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Употреба" msgstr "Употреба"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Употреба root партиције" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Коришћено" msgstr "Коришћено"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows команда" msgstr "Windows команда"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Писање" msgstr "Писање"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML конфигурација" msgstr "YAML конфигурација"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} timme} other {{countString} timmar}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} minut} few {{countString} minuter} many {{countString} minuter} other {{countString} minuter}}" msgstr "{count, plural, one {{countString} minut} few {{countString} minuter} many {{countString} minuter} other {{countString} minuter}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# tråd} other {# trådar}}" msgstr "{threads, plural, one {# tråd} other {# trådar}}"
@@ -93,6 +97,7 @@ msgstr "5 min"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Åtgärder" msgstr "Åtgärder"
@@ -191,6 +196,11 @@ msgstr "Är du säker?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Automatisk kopiering kräver en säker kontext." msgstr "Automatisk kopiering kräver en säker kontext."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Genomsnitt" msgstr "Genomsnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Förmågor" msgstr "Förmågor"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapacitet" msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Kontrollera din övervakningstjänst"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Kontrollera din aviseringstjänst" msgstr "Kontrollera din aviseringstjänst"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Rensa" msgstr "Rensa"
@@ -394,6 +411,10 @@ msgstr "Klicka på en behållare för att visa mer information."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Klicka på en enhet för att visa mer information." msgstr "Klicka på en enhet för att visa mer information."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Klicka på ett system för att visa mer information." msgstr "Klicka på ett system för att visa mer information."
@@ -559,14 +580,30 @@ msgstr "Skapad"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritisk (%)" msgstr "Kritisk (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kumulativ nedladdning" msgstr "Kumulativ nedladdning"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kumulativ uppladdning" msgstr "Kumulativ uppladdning"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Urladdar"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk-I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Diskenhet" msgstr "Diskenhet"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Misslyckades"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Misslyckade attribut:" msgstr "Misslyckade attribut:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Autentisering misslyckades" msgstr "Autentisering misslyckades"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Under <0>{min}</0> {min, plural, one {minut} other {minuter}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Glömt lösenordet?" msgstr "Glömt lösenordet?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rutnät" msgstr "Rutnät"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Hälsa" msgstr "Hälsa"
@@ -1101,6 +1146,10 @@ msgstr "Minnesanvändning för containrar"
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Nätverksenhet"
msgid "No" msgid "No"
msgstr "Nej" msgstr "Nej"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Inga S.M.A.R.T.-attribut tillgängliga för den här enheten."
msgid "No systems found." msgid "No systems found."
msgstr "Inga system hittades." msgstr "Inga system hittades."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Aviseringar" msgstr "Aviseringar"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Stöd för OAuth 2 / OIDC" msgstr "Stöd för OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Stöd för OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Vid varje omstart kommer systemen i databasen att uppdateras för att matcha systemen som definieras i filen." msgstr "Vid varje omstart kommer systemen i databasen att uppdateras för att matcha systemen som definieras i filen."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Engångslösenord"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Öppna menyn" msgstr "Öppna menyn"
@@ -1309,6 +1379,14 @@ msgstr "Vänligen se <0>dokumentationen</0> för instruktioner."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Vänligen logga in på ditt konto" msgstr "Vänligen logga in på ditt konto"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kö-djup"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Tysta timmar" msgstr "Tysta timmar"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Läs" msgstr "Läs"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Mottaget" msgstr "Mottaget"
@@ -1369,6 +1454,7 @@ msgstr "Mottaget"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Uppdatera" msgstr "Uppdatera"
@@ -1410,6 +1496,8 @@ msgstr "Omstarter"
msgid "Resume" msgid "Resume"
msgstr "Återuppta" msgstr "Återuppta"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Tillstånd" msgstr "Tillstånd"
@@ -1683,9 +1772,9 @@ msgstr "Detta kommer permanent att ta bort alla valda poster från databasen."
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Genomströmning av {extraFsName}" msgstr "Genomströmning av {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Genomströmning av rotfilsystemet" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Utlöses när 5-minuters genomsnittlig belastning överskrider ett tröskelvärde" msgstr "Utlöses när 5-minuters genomsnittlig belastning överskrider ett tröskelvärde"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Utlöses när en Docker-containers hälsokontroll rapporterar osund" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Utlöses när någon sensor överskrider ett tröskelvärde" msgstr "Utlöses när någon sensor överskrider ett tröskelvärde"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Utlöses när batteriladdningen sjunker under ett tröskelvärde" msgstr "Utlöses när batteriladdningen sjunker under ett tröskelvärde"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universell nyckel" msgstr "Universell nyckel"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Okänd" msgstr "Okänd"
@@ -1851,6 +1945,7 @@ msgstr "Uppdatera"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Uppdaterad" msgstr "Uppdaterad"
@@ -1868,20 +1963,25 @@ msgstr "Ladda upp"
msgid "Uptime" msgid "Uptime"
msgstr "Drifttid" msgstr "Drifttid"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Användning" msgstr "Användning"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Användning av rotpartitionen" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Använt" msgstr "Använt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows-kommando" msgstr "Windows-kommando"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Skriv" msgstr "Skriv"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML-konfiguration" msgstr "YAML-konfiguration"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} saat} other {{countString} saat}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} dakika} few {{countString} dakika} many {{countString} dakika} other {{countString} dakika}}" msgstr "{count, plural, one {{countString} dakika} few {{countString} dakika} many {{countString} dakika} other {{countString} dakika}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# iş parçacığı} other {# iş parçacığı}}" msgstr "{threads, plural, one {# iş parçacığı} other {# iş parçacığı}}"
@@ -93,6 +97,7 @@ msgstr "5 dk"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Eylemler" msgstr "Eylemler"
@@ -191,6 +196,11 @@ msgstr "Emin misiniz?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Otomatik kopyalama güvenli bir bağlam gerektirir." msgstr "Otomatik kopyalama güvenli bir bağlam gerektirir."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Ortalama" msgstr "Ortalama"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Yetenekler" msgstr "Yetenekler"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Kapasite" msgstr "Kapasite"
@@ -380,8 +391,14 @@ msgstr "İzleme servisinizi kontrol edin"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Bildirim hizmetinizi kontrol edin" msgstr "Bildirim hizmetinizi kontrol edin"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Temizle" msgstr "Temizle"
@@ -394,6 +411,10 @@ msgstr "Daha fazla bilgi görüntülemek için bir konteynere tıklayın."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Daha fazla bilgi görüntülemek için bir cihaza tıklayın." msgstr "Daha fazla bilgi görüntülemek için bir cihaza tıklayın."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Daha fazla bilgi görmek için bir sisteme tıklayın." msgstr "Daha fazla bilgi görmek için bir sisteme tıklayın."
@@ -559,14 +580,30 @@ msgstr "Oluşturuldu"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritik (%)" msgstr "Kritik (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Kümülatif İndirme" msgstr "Kümülatif İndirme"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Kümülatif Yükleme" msgstr "Kümülatif Yükleme"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Boşalıyor"
msgid "Disk" msgid "Disk"
msgstr "Depolama alanı" msgstr "Depolama alanı"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk G/Ç"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Disk birimi" msgstr "Disk birimi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Başarısız"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Başarısız Özellikler:" msgstr "Başarısız Özellikler:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Kimlik doğrulama başarısız" msgstr "Kimlik doğrulama başarısız"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {dakika} other {dakika}} için"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Şifrenizi mi unuttunuz?" msgstr "Şifrenizi mi unuttunuz?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Izgara" msgstr "Izgara"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Sağlık" msgstr "Sağlık"
@@ -1101,6 +1146,10 @@ msgstr "Konteynerlerin bellek kullanımı"
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Ağ birimi"
msgid "No" msgid "No"
msgstr "Hayır" msgstr "Hayır"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Bu cihaz için kullanılabilir S.M.A.R.T. özelliği yok."
msgid "No systems found." msgid "No systems found."
msgstr "Sistem bulunamadı." msgstr "Sistem bulunamadı."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Bildirimler" msgstr "Bildirimler"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC desteği" msgstr "OAuth 2 / OIDC desteği"
@@ -1173,6 +1234,14 @@ msgstr "OAuth 2 / OIDC desteği"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Her yeniden başlatmada, veritabanındaki sistemler dosyada tanımlanan sistemlerle eşleşecek şekilde güncellenecektir." msgstr "Her yeniden başlatmada, veritabanındaki sistemler dosyada tanımlanan sistemlerle eşleşecek şekilde güncellenecektir."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Tek kullanımlık şifre"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Menüyü aç" msgstr "Menüyü aç"
@@ -1309,6 +1379,14 @@ msgstr "Talimatlar için lütfen <0>dokümantasyonu</0> inceleyin."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Lütfen hesabınıza giriş yapın" msgstr "Lütfen hesabınıza giriş yapın"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kuyruk Derinliği"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Sessiz Saatler" msgstr "Sessiz Saatler"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Oku" msgstr "Oku"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Alındı" msgstr "Alındı"
@@ -1369,6 +1454,7 @@ msgstr "Alındı"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Yenile" msgstr "Yenile"
@@ -1410,6 +1496,8 @@ msgstr "Yeniden başlatmalar"
msgid "Resume" msgid "Resume"
msgstr "Devam et" msgstr "Devam et"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Başlangıç Saati"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Durum" msgstr "Durum"
@@ -1683,9 +1772,9 @@ msgstr "Bu, seçilen tüm kayıtları veritabanından kalıcı olarak silecektir
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName} verimliliği" msgstr "{extraFsName} verimliliği"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Kök dosya sisteminin verimliliği" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5 dakikalık yük ortalaması bir eşiği aştığında tetiklenir" msgstr "5 dakikalık yük ortalaması bir eşiği aştığında tetiklenir"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Bir Docker konteynerinin sağlık kontrolü sağlıksız durumunu bildirdiğinde tetiklenir" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Herhangi bir sensör bir eşiği aştığında tetiklenir" msgstr "Herhangi bir sensör bir eşiği aştığında tetiklenir"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Pil şarjı bir eşiğin altına düştüğünde tetiklenir" msgstr "Pil şarjı bir eşiğin altına düştüğünde tetiklenir"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Evrensel token" msgstr "Evrensel token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Bilinmiyor" msgstr "Bilinmiyor"
@@ -1851,6 +1945,7 @@ msgstr "Güncelle"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Güncellendi" msgstr "Güncellendi"
@@ -1868,20 +1963,25 @@ msgstr "Yükle"
msgid "Uptime" msgid "Uptime"
msgstr "Çalışma Süresi" msgstr "Çalışma Süresi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Kullanım" msgstr "Kullanım"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Kök bölümün kullanımı" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Kullanıldı" msgstr "Kullanıldı"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows komutu" msgstr "Windows komutu"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Yaz" msgstr "Yaz"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML Yapılandırması" msgstr "YAML Yapılandırması"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} година} few {{countString} го
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} хвилина} few {{countString} хвилини} many {{countString} хвилин} other {{countString} хвилини}}" msgstr "{count, plural, one {{countString} хвилина} few {{countString} хвилини} many {{countString} хвилин} other {{countString} хвилини}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# потік} few {# потоки} many {# потоків} other {# потоків}}" msgstr "{threads, plural, one {# потік} few {# потоки} many {# потоків} other {# потоків}}"
@@ -93,6 +97,7 @@ msgstr "5 хв"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Дії" msgstr "Дії"
@@ -191,6 +196,11 @@ msgstr "Ви впевнені?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Автоматичне копіювання вимагає безпечного контексту." msgstr "Автоматичне копіювання вимагає безпечного контексту."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Середнє" msgstr "Середнє"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Можливості" msgstr "Можливості"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Ємність" msgstr "Ємність"
@@ -380,8 +391,14 @@ msgstr "Перевірте ваш сервіс моніторингу"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Перевірте ваш сервіс сповіщень" msgstr "Перевірте ваш сервіс сповіщень"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Очистити" msgstr "Очистити"
@@ -394,6 +411,10 @@ msgstr "Натисніть на контейнер, щоб переглянут
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Натисніть на пристрій, щоб переглянути більше інформації." msgstr "Натисніть на пристрій, щоб переглянути більше інформації."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Натисніть на систему, щоб переглянути більше інформації." msgstr "Натисніть на систему, щоб переглянути більше інформації."
@@ -559,14 +580,30 @@ msgstr "Створено"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Критично (%)" msgstr "Критично (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Кумулятивне завантаження" msgstr "Кумулятивне завантаження"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Кумулятивне відвантаження" msgstr "Кумулятивне відвантаження"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Розряджається"
msgid "Disk" msgid "Disk"
msgstr "Диск" msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Дисковий ввід/вивід"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Одиниця виміру диска" msgstr "Одиниця виміру диска"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Не вдалося"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Невдалі атрибути:" msgstr "Невдалі атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Не вдалося автентифікувати" msgstr "Не вдалося автентифікувати"
@@ -839,6 +875,8 @@ msgstr "Вентилятори"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Протягом <0>{min}</0> {min, plural, one {хвилини} other {
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Забули пароль?" msgstr "Забули пароль?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Сітка" msgstr "Сітка"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Здоров’я" msgstr "Здоров’я"
@@ -1101,6 +1146,10 @@ msgstr "Використання пам’яті контейнерами"
msgid "Model" msgid "Model"
msgstr "Модель" msgstr "Модель"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Одиниця виміру мережі"
msgid "No" msgid "No"
msgstr "Ні" msgstr "Ні"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Для цього пристрою немає доступних атр
msgid "No systems found." msgid "No systems found."
msgstr "Систем не знайдено." msgstr "Систем не знайдено."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Сповіщення" msgstr "Сповіщення"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Підтримка OAuth 2 / OIDC" msgstr "Підтримка OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Підтримка OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "При кожному перезапуску системи в базі даних оновлюватимуться відповідно до систем, визначених у файлі." msgstr "При кожному перезапуску системи в базі даних оновлюватимуться відповідно до систем, визначених у файлі."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Одноразовий пароль"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Відкрити меню" msgstr "Відкрити меню"
@@ -1309,6 +1379,14 @@ msgstr "Будь ласка, перегляньте <0>документацію<
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Будь ласка, увійдіть у свій обліковий запис" msgstr "Будь ласка, увійдіть у свій обліковий запис"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Порт" msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Глибина черги"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Тихі години" msgstr "Тихі години"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Читання" msgstr "Читання"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Отримано" msgstr "Отримано"
@@ -1369,6 +1454,7 @@ msgstr "Отримано"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Оновити" msgstr "Оновити"
@@ -1410,6 +1496,8 @@ msgstr "Перезапуски"
msgid "Resume" msgid "Resume"
msgstr "Відновити" msgstr "Відновити"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Час початку"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Стан" msgstr "Стан"
@@ -1683,9 +1772,9 @@ msgstr "Це назавжди видалить усі вибрані запис
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Пропускна здатність {extraFsName}" msgstr "Пропускна здатність {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Пропускна здатність кореневої файлової системи" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Спрацьовує, коли середнє навантаження за 5 хвилин перевищує поріг" msgstr "Спрацьовує, коли середнє навантаження за 5 хвилин перевищує поріг"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Спрацьовує, коли перевірка стану (health check) Docker-контейнера повідомляє про нездоровий стан" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Спрацьовує, коли будь-який датчик перевищує поріг" msgstr "Спрацьовує, коли будь-який датчик перевищує поріг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Спрацьовує, коли заряд батареї опускається нижче порогу" msgstr "Спрацьовує, коли заряд батареї опускається нижче порогу"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Універсальний токен" msgstr "Універсальний токен"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Невідомо" msgstr "Невідомо"
@@ -1851,6 +1945,7 @@ msgstr "Оновити"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Оновлено" msgstr "Оновлено"
@@ -1868,20 +1963,25 @@ msgstr "Відвантажити"
msgid "Uptime" msgid "Uptime"
msgstr "Час роботи" msgstr "Час роботи"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Використання" msgstr "Використання"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Використання кореневого розділу" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Використано" msgstr "Використано"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Команда Windows" msgstr "Команда Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Запис" msgstr "Запис"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Конфігурація YAML" msgstr "Конфігурація YAML"

View File

@@ -41,6 +41,10 @@ msgstr "{count, plural, other {{countString} soat}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, other {{countString} daqiqa}}" msgstr "{count, plural, other {{countString} daqiqa}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, other {# ip}}" msgstr "{threads, plural, other {# ip}}"
@@ -88,6 +92,7 @@ msgstr "5 daq"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Amallar" msgstr "Amallar"
@@ -186,6 +191,11 @@ msgstr "Ishonchingiz komilmi?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Avtomatik nusxalash xavfsiz kontekstni talab qiladi." msgstr "Avtomatik nusxalash xavfsiz kontekstni talab qiladi."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "O'rtacha" msgstr "O'rtacha"
@@ -323,6 +333,7 @@ msgid "Capabilities"
msgstr "Imkoniyatlar" msgstr "Imkoniyatlar"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Sig'im" msgstr "Sig'im"
@@ -375,8 +386,14 @@ msgstr "Monitoring xizmatingizni tekshiring"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Bildirishnoma xizmatingizni tekshiring" msgstr "Bildirishnoma xizmatingizni tekshiring"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Tozalash" msgstr "Tozalash"
@@ -389,6 +406,10 @@ msgstr "Batafsil ma'lumot uchun konteynerni bosing."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Batafsil ma'lumot uchun qurilmani bosing." msgstr "Batafsil ma'lumot uchun qurilmani bosing."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Batafsil ma'lumot uchun tizimni bosing." msgstr "Batafsil ma'lumot uchun tizimni bosing."
@@ -419,6 +440,14 @@ msgstr "Ziddiyatlar"
msgid "Connection is down" msgid "Connection is down"
msgstr "Ulanish uzildi" msgstr "Ulanish uzildi"
#: src/lib/alerts.ts
msgid "Container"
msgstr ""
#: src/lib/alerts.ts
msgid "Container Health"
msgstr ""
#: src/components/routes/system.tsx #: src/components/routes/system.tsx
msgid "Containers" msgid "Containers"
msgstr "Konteynerlar" msgstr "Konteynerlar"
@@ -502,10 +531,18 @@ msgstr "CPU"
msgid "CPU Cores" msgid "CPU Cores"
msgstr "CPU yadrolar" msgstr "CPU yadrolar"
#: src/lib/alerts.ts
msgid "CPU I/O Wait"
msgstr ""
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "CPU Peak" msgid "CPU Peak"
msgstr "CPU yuqori ko'rsatkichi" msgstr "CPU yuqori ko'rsatkichi"
#: src/lib/alerts.ts
msgid "CPU Steal Time"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "CPU time" msgid "CPU time"
msgstr "CPU vaqti" msgstr "CPU vaqti"
@@ -538,14 +575,30 @@ msgstr "Yaratilgan"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Kritik (%)" msgstr "Kritik (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Jami yuklab olish" msgstr "Jami yuklab olish"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Jami yuklash" msgstr "Jami yuklash"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -605,15 +658,10 @@ msgstr "Razryadlanmoqda"
msgid "Disk" msgid "Disk"
msgstr "Disk" msgstr "Disk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Disk birligi" msgstr "Disk birligi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -783,6 +831,10 @@ msgstr "Muvaffaqiyatsiz"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Muvaffaqiyatsiz atributlar:" msgstr "Muvaffaqiyatsiz atributlar:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Autentifikatsiya muvaffaqiyatsiz tugadi" msgstr "Autentifikatsiya muvaffaqiyatsiz tugadi"
@@ -818,6 +870,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -839,6 +893,12 @@ msgstr "<0>{min}</0> {min, plural, other {daqiqa}} uchun"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Parolni unutdingizmi?" msgstr "Parolni unutdingizmi?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -883,6 +943,7 @@ msgid "Grid"
msgstr "Grid" msgstr "Grid"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Sog'lik" msgstr "Sog'lik"
@@ -1080,6 +1141,10 @@ msgstr ""
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1115,6 +1180,10 @@ msgstr "Tarmoq birligi"
msgid "No" msgid "No"
msgstr "Yo'q" msgstr "Yo'q"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1138,12 +1207,20 @@ msgstr "Ushbu qurilma uchun S.M.A.R.T. atributlari mavjud emas."
msgid "No systems found." msgid "No systems found."
msgstr "Tizimlar topilmadi." msgstr "Tizimlar topilmadi."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Bildirishnomalar" msgstr "Bildirishnomalar"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "OAuth 2 / OIDC qo'llab-quvvatlash" msgstr "OAuth 2 / OIDC qo'llab-quvvatlash"
@@ -1152,6 +1229,14 @@ msgstr "OAuth 2 / OIDC qo'llab-quvvatlash"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Har qayta ishga tushirilganda, ma'lumotlar bazasidagi tizimlar fayldagi tizimlarga mos yangilanadi." msgstr "Har qayta ishga tushirilganda, ma'lumotlar bazasidagi tizimlar fayldagi tizimlarga mos yangilanadi."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1165,6 +1250,7 @@ msgstr "Bir martalik parol"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Menyuni ochish" msgstr "Menyuni ochish"
@@ -1288,6 +1374,14 @@ msgstr "Ko'rsatmalar uchun <0>hujjatlarni</0> ko'ring."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Hisobingizga kiring" msgstr "Hisobingizga kiring"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1333,14 +1427,21 @@ msgstr "Navbat chuqurligi"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Tinch soatlar" msgstr "Tinch soatlar"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "O'qish" msgstr "O'qish"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Qabul qilindi" msgstr "Qabul qilindi"
@@ -1348,6 +1449,7 @@ msgstr "Qabul qilindi"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Yangilash" msgstr "Yangilash"
@@ -1389,6 +1491,8 @@ msgstr "Qayta ishga tushirishlar"
msgid "Resume" msgid "Resume"
msgstr "Davom ettirish" msgstr "Davom ettirish"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1534,6 +1638,7 @@ msgstr "Boshlanish vaqti"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Holat" msgstr "Holat"
@@ -1662,9 +1767,9 @@ msgstr "Bu barcha tanlangan yozuvlarni ma'lumotlar bazasidan butunlay o'chiradi.
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName} ning o'tkazish qobiliyati" msgstr "{extraFsName} ning o'tkazish qobiliyati"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Ildiz fayl tizimining o'tkazish qobiliyati" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1736,10 +1841,18 @@ msgstr "15 daqiqalik o'rtacha yuklanish chegaradan oshganda ishga tushadi"
msgid "Triggers when 5 minute load average exceeds a threshold" msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5 daqiqalik o'rtacha yuklanish chegaradan oshganda ishga tushadi" msgstr "5 daqiqalik o'rtacha yuklanish chegaradan oshganda ishga tushadi"
#: src/lib/alerts.ts
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Biron-bir sensor chegaradan oshganda ishga tushadi" msgstr "Biron-bir sensor chegaradan oshganda ishga tushadi"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Batareya zaryadi chegaradan pastga tushganda ishga tushadi" msgstr "Batareya zaryadi chegaradan pastga tushganda ishga tushadi"
@@ -1748,6 +1861,14 @@ msgstr "Batareya zaryadi chegaradan pastga tushganda ishga tushadi"
msgid "Triggers when combined up/down exceeds a threshold" msgid "Triggers when combined up/down exceeds a threshold"
msgstr "Birlashtirilgan yuklash/yuklab olish chegaradan oshganda ishga tushadi" msgstr "Birlashtirilgan yuklash/yuklab olish chegaradan oshganda ishga tushadi"
#: src/lib/alerts.ts
msgid "Triggers when CPU I/O wait exceeds a threshold"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when CPU steal time exceeds a threshold"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when CPU usage exceeds a threshold" msgid "Triggers when CPU usage exceeds a threshold"
msgstr "CPU yuklanishi chegaradan oshganda ishga tushadi" msgstr "CPU yuklanishi chegaradan oshganda ishga tushadi"
@@ -1774,6 +1895,10 @@ msgstr "Biron-bir disk ishlatilishi chegaradan oshganda ishga tushadi"
msgid "Type" msgid "Type"
msgstr "Tur" msgstr "Tur"
#: src/lib/alerts.ts
msgid "Unhealthy"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "Unit file" msgid "Unit file"
msgstr "Birlik fayl" msgstr "Birlik fayl"
@@ -1789,6 +1914,7 @@ msgid "Universal token"
msgstr "Universal token" msgstr "Universal token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Noma'lum" msgstr "Noma'lum"
@@ -1814,6 +1940,7 @@ msgstr "Yangilash"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Yangilandi" msgstr "Yangilandi"
@@ -1831,20 +1958,25 @@ msgstr "Yuklash"
msgid "Uptime" msgid "Uptime"
msgstr "Ishlash vaqti" msgstr "Ishlash vaqti"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Ishlatilishi" msgstr "Ishlatilishi"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Ildiz bo'limi ishlatilishi" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Ishlatilgan" msgstr "Ishlatilgan"
@@ -1918,14 +2050,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows buyrug'i" msgstr "Windows buyrug'i"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Yozish" msgstr "Yozish"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML konfiguratsiya" msgstr "YAML konfiguratsiya"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} giờ} other {{countString} giờ}}"
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} phút} few {{countString} phút} many {{countString} phút} other {{countString} phút}}" msgstr "{count, plural, one {{countString} phút} few {{countString} phút} many {{countString} phút} other {{countString} phút}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# luồng} other {# luồng}}" msgstr "{threads, plural, one {# luồng} other {# luồng}}"
@@ -93,6 +97,7 @@ msgstr "5 phút"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "Hành động" msgstr "Hành động"
@@ -191,6 +196,11 @@ msgstr "Bạn có chắc không?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "Sao chép tự động yêu cầu một ngữ cảnh an toàn." msgstr "Sao chép tự động yêu cầu một ngữ cảnh an toàn."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "Trung bình" msgstr "Trung bình"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Khả năng" msgstr "Khả năng"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "Dung lượng" msgstr "Dung lượng"
@@ -380,8 +391,14 @@ msgstr "Kiểm tra dịch vụ giám sát của bạn"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "Kiểm tra dịch vụ thông báo của bạn" msgstr "Kiểm tra dịch vụ thông báo của bạn"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "Xóa" msgstr "Xóa"
@@ -394,6 +411,10 @@ msgstr "Nhấp vào container để xem thêm thông tin."
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "Nhấp vào thiết bị để xem thêm thông tin." msgstr "Nhấp vào thiết bị để xem thêm thông tin."
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "Nhấp vào hệ thống để xem thêm thông tin." msgstr "Nhấp vào hệ thống để xem thêm thông tin."
@@ -559,14 +580,30 @@ msgstr "Đã tạo"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "Độ nghiêm trọng (%)" msgstr "Độ nghiêm trọng (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "Tải xuống tích lũy" msgstr "Tải xuống tích lũy"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "Tải lên tích lũy" msgstr "Tải lên tích lũy"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Đang xả"
msgid "Disk" msgid "Disk"
msgstr "Đĩa" msgstr "Đĩa"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Đĩa I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "Đơn vị đĩa" msgstr "Đơn vị đĩa"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Thất bại"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "Thuộc tính thất bại:" msgstr "Thuộc tính thất bại:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "Xác thực thất bại" msgstr "Xác thực thất bại"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Trong <0>{min}</0> {min, plural, one {phút} other {phút}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "Quên mật khẩu?" msgstr "Quên mật khẩu?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Lưới" msgstr "Lưới"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "Sức khỏe" msgstr "Sức khỏe"
@@ -1101,6 +1146,10 @@ msgstr "Mức sử dụng bộ nhớ của các container"
msgid "Model" msgid "Model"
msgstr "Mô hình" msgstr "Mô hình"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Đơn vị mạng"
msgid "No" msgid "No"
msgstr "Không" msgstr "Không"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Không có thuộc tính S.M.A.R.T. nào khả dụng cho thiết bị n
msgid "No systems found." msgid "No systems found."
msgstr "Không tìm thấy hệ thống." msgstr "Không tìm thấy hệ thống."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "Thông báo" msgstr "Thông báo"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "Hỗ trợ OAuth 2 / OIDC" msgstr "Hỗ trợ OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "Hỗ trợ OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "Mỗi khi khởi động lại, các hệ thống trong cơ sở dữ liệu sẽ được cập nhật để khớp với các hệ thống được định nghĩa trong tệp." msgstr "Mỗi khi khởi động lại, các hệ thống trong cơ sở dữ liệu sẽ được cập nhật để khớp với các hệ thống được định nghĩa trong tệp."
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "Mật khẩu một lần"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "Mở menu" msgstr "Mở menu"
@@ -1309,6 +1379,14 @@ msgstr "Vui lòng xem <0>tài liệu</0> để biết hướng dẫn."
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "Vui lòng đăng nhập vào tài khoản của bạn" msgstr "Vui lòng đăng nhập vào tài khoản của bạn"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Cổng" msgstr "Cổng"
@@ -1354,14 +1432,21 @@ msgstr "Độ sâu hàng đợi"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "Giờ yên tĩnh" msgstr "Giờ yên tĩnh"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "Đọc" msgstr "Đọc"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "Đã nhận" msgstr "Đã nhận"
@@ -1369,6 +1454,7 @@ msgstr "Đã nhận"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "Làm mới" msgstr "Làm mới"
@@ -1410,6 +1496,8 @@ msgstr "Khởi động lại"
msgid "Resume" msgid "Resume"
msgstr "Tiếp tục" msgstr "Tiếp tục"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Thời gian bắt đầu"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "Trạng thái" msgstr "Trạng thái"
@@ -1683,9 +1772,9 @@ msgstr "Thao tác này sẽ xóa vĩnh viễn tất cả các bản ghi đã ch
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "Thông lượng của {extraFsName}" msgstr "Thông lượng của {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Thông lượng của hệ thống tệp gốc" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Kích hoạt khi tải trung bình 5 phút vượt quá ngưỡng" msgstr "Kích hoạt khi tải trung bình 5 phút vượt quá ngưỡng"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "Kích hoạt khi kiểm tra sức khỏe (health check) của container Docker báo cáo trạng thái không khỏe mạnh" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "Kích hoạt khi bất kỳ cảm biến nào vượt quá ngưỡng" msgstr "Kích hoạt khi bất kỳ cảm biến nào vượt quá ngưỡng"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "Kích hoạt khi mức pin giảm xuống dưới ngưỡng" msgstr "Kích hoạt khi mức pin giảm xuống dưới ngưỡng"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token chung" msgstr "Token chung"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "Không xác định" msgstr "Không xác định"
@@ -1851,6 +1945,7 @@ msgstr "Cập nhật"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "Đã cập nhật" msgstr "Đã cập nhật"
@@ -1868,20 +1963,25 @@ msgstr "Tải lên"
msgid "Uptime" msgid "Uptime"
msgstr "Thời gian hoạt động" msgstr "Thời gian hoạt động"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "Sử dụng" msgstr "Sử dụng"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Sử dụng phân vùng gốc" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "Đã sử dụng" msgstr "Đã sử dụng"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Lệnh Windows" msgstr "Lệnh Windows"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "Ghi" msgstr "Ghi"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "Cấu hình YAML" msgstr "Cấu hình YAML"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} 小时} other {{countString} 小时}}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} 分钟} few {{countString} 分钟} many {{countString} 分钟} other {{countString} 分钟}}" msgstr "{count, plural, one {{countString} 分钟} few {{countString} 分钟} many {{countString} 分钟} other {{countString} 分钟}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 线程} other {# 线程}}" msgstr "{threads, plural, one {# 线程} other {# 线程}}"
@@ -93,6 +97,7 @@ msgstr "5 分钟"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "操作" msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您确定吗?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "自动复制所需的安全上下文。" msgstr "自动复制所需的安全上下文。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "平均" msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力" msgstr "能力"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "容量" msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "检查您的监控服务"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "检查您的通知服务" msgstr "检查您的通知服务"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "清除" msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "点击容器查看更多信息。"
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "点击设备查看更多信息。" msgstr "点击设备查看更多信息。"
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "点击系统查看更多信息。" msgstr "点击系统查看更多信息。"
@@ -559,14 +580,30 @@ msgstr "创建时间"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "临界 (%)" msgstr "临界 (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "累计下载" msgstr "累计下载"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "累计上传" msgstr "累计上传"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放电中"
msgid "Disk" msgid "Disk"
msgstr "磁盘" msgstr "磁盘"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁盘 I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "磁盘单位" msgstr "磁盘单位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失败"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "失败属性:" msgstr "失败属性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "认证失败" msgstr "认证失败"
@@ -839,6 +875,8 @@ msgstr "风扇"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持续<0>{min}</0> {min, plural, one {分钟} other {分钟}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "忘记密码?" msgstr "忘记密码?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "网格" msgstr "网格"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "健康" msgstr "健康"
@@ -1101,6 +1146,10 @@ msgstr "容器内存使用量"
msgid "Model" msgid "Model"
msgstr "型号" msgstr "型号"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "网络单位"
msgid "No" msgid "No"
msgstr "否" msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此设备没有可用的 S.M.A.R.T. 属性。"
msgid "No systems found." msgid "No systems found."
msgstr "未找到系统。" msgstr "未找到系统。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "通知" msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "支持 OAuth 2/OIDC" msgstr "支持 OAuth 2/OIDC"
@@ -1173,6 +1234,14 @@ msgstr "支持 OAuth 2/OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "每次重启时,数据库中的系统将更新以匹配文件中定义的系统。" msgstr "每次重启时,数据库中的系统将更新以匹配文件中定义的系统。"
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "一次性密码"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "打开菜单" msgstr "打开菜单"
@@ -1309,6 +1379,14 @@ msgstr "请参阅<0>文档</0>以获取说明。"
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "请登录您的账户" msgstr "请登录您的账户"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "端口" msgstr "端口"
@@ -1354,14 +1432,21 @@ msgstr "队列深度"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "静默时间" msgstr "静默时间"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "读取" msgstr "读取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "接收" msgstr "接收"
@@ -1369,6 +1454,7 @@ msgstr "接收"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "刷新" msgstr "刷新"
@@ -1410,6 +1496,8 @@ msgstr "重启次数"
msgid "Resume" msgid "Resume"
msgstr "恢复" msgstr "恢复"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "开始时间"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "状态" msgstr "状态"
@@ -1683,9 +1772,9 @@ msgstr "这将永久删除数据库中所有选定的记录。"
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的吞吐量" msgstr "{extraFsName}的吞吐量"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "根文件系统的吞吐量" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "当 5 分钟内的平均负载超过阈值时触发" msgstr "当 5 分钟内的平均负载超过阈值时触发"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "当 Docker 容器的健康检查报告不健康状态时触发" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "当任何传感器超过阈值时触发" msgstr "当任何传感器超过阈值时触发"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "当电池电量降至阈值以下时触发" msgstr "当电池电量降至阈值以下时触发"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用令牌" msgstr "通用令牌"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "未知" msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "更新于" msgstr "更新于"
@@ -1868,20 +1963,25 @@ msgstr "上传"
msgid "Uptime" msgid "Uptime"
msgstr "运行时间" msgstr "运行时间"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "使用" msgstr "使用"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "根分区的使用" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "已用" msgstr "已用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows 安装命令" msgstr "Windows 安装命令"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "写入" msgstr "写入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML 配置" msgstr "YAML 配置"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} 小時} other {{countString} 小時}}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} 分鐘} few {{countString} 分鐘} many {{countString} 分鐘} other {{countString} 分鐘}}" msgstr "{count, plural, one {{countString} 分鐘} few {{countString} 分鐘} many {{countString} 分鐘} other {{countString} 分鐘}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}" msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}"
@@ -93,6 +97,7 @@ msgstr "5 分鐘"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "操作" msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您確定嗎?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "自動複製需要安全的上下文。" msgstr "自動複製需要安全的上下文。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "平均" msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力" msgstr "能力"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "容量" msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "檢查您的監控服務"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "檢查您的通知服務" msgstr "檢查您的通知服務"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "清除" msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "點擊容器以查看更多資訊。"
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "點擊裝置以查看更多資訊。" msgstr "點擊裝置以查看更多資訊。"
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "點擊系統以查看更多資訊。" msgstr "點擊系統以查看更多資訊。"
@@ -559,14 +580,30 @@ msgstr "已建立"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "嚴重 (%)" msgstr "嚴重 (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "累計下載" msgstr "累計下載"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "累計上傳" msgstr "累計上傳"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk" msgid "Disk"
msgstr "磁碟" msgstr "磁碟"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁碟 I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "磁碟單位" msgstr "磁碟單位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "失敗屬性:" msgstr "失敗屬性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "認證失敗" msgstr "認證失敗"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持續<0>{min}</0> {min, plural, one {分鐘} other {分鐘}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "忘記密碼?" msgstr "忘記密碼?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "網格" msgstr "網格"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "健康狀態" msgstr "健康狀態"
@@ -1101,6 +1146,10 @@ msgstr "容器記憶體使用量"
msgid "Model" msgid "Model"
msgstr "型號" msgstr "型號"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "網路單位"
msgid "No" msgid "No"
msgstr "否" msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此裝置沒有可用的 S.M.A.R.T. 屬性。"
msgid "No systems found." msgid "No systems found."
msgstr "未找到系統。" msgstr "未找到系統。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "通知" msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "支援 OAuth 2 / OIDC" msgstr "支援 OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "支援 OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "每次重新啟動時,將會以檔案中的系統定義更新資料庫。" msgstr "每次重新啟動時,將會以檔案中的系統定義更新資料庫。"
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "一次性密碼"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "開啟選單" msgstr "開啟選單"
@@ -1309,6 +1379,14 @@ msgstr "請參閱<0>文件</0>以取得說明。"
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "請登入您的帳號" msgstr "請登入您的帳號"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "端口" msgstr "端口"
@@ -1354,14 +1432,21 @@ msgstr "隊列深度"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "靜音時段" msgstr "靜音時段"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "讀取" msgstr "讀取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "接收" msgstr "接收"
@@ -1369,6 +1454,7 @@ msgstr "接收"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "重新整理" msgstr "重新整理"
@@ -1410,6 +1496,8 @@ msgstr "重啟次數"
msgid "Resume" msgid "Resume"
msgstr "恢復" msgstr "恢復"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "狀態" msgstr "狀態"
@@ -1683,9 +1772,9 @@ msgstr "這將從資料庫中永久刪除所有選定的記錄。"
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的吞吐量" msgstr "{extraFsName}的吞吐量"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "根文件系統的吞吐量" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "當 5 分鐘平均負載超過閾值時觸發" msgstr "當 5 分鐘平均負載超過閾值時觸發"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "當 Docker 容器的健康檢查回報不健康狀態時觸發" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "當任何傳感器超過閾值時觸發" msgstr "當任何傳感器超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "當電池電量降至閾值以下時觸發" msgstr "當電池電量降至閾值以下時觸發"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用令牌" msgstr "通用令牌"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "未知" msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "已更新" msgstr "已更新"
@@ -1868,20 +1963,25 @@ msgstr "上傳"
msgid "Uptime" msgid "Uptime"
msgstr "運行時間" msgstr "運行時間"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "使用" msgstr "使用"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "根分區的使用" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "已用" msgstr "已用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows 指令" msgstr "Windows 指令"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "寫入" msgstr "寫入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML配置" msgstr "YAML配置"

View File

@@ -46,6 +46,10 @@ msgstr "{count, plural, one {{countString} 小時} other {{countString} 小時}}
msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}" msgid "{count, plural, one {{countString} minute} few {{countString} minutes} many {{countString} minutes} other {{countString} minutes}}"
msgstr "{count, plural, one {{countString} 分鐘} few {{countString} 分鐘} many {{countString} 分鐘} other {{countString} 分鐘}}" msgstr "{count, plural, one {{countString} 分鐘} few {{countString} 分鐘} many {{countString} 分鐘} other {{countString} 分鐘}}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "{diskName} I/O"
msgstr ""
#: src/components/routes/system/info-bar.tsx #: src/components/routes/system/info-bar.tsx
msgid "{threads, plural, one {# thread} other {# threads}}" msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}" msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}"
@@ -93,6 +97,7 @@ msgstr "5 分鐘"
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Actions" msgid "Actions"
msgstr "操作" msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您確定嗎?"
msgid "Automatic copy requires a secure context." msgid "Automatic copy requires a secure context."
msgstr "只有在受保護的環境HTTPS才能自動複製。" msgstr "只有在受保護的環境HTTPS才能自動複製。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
msgid "Average" msgid "Average"
msgstr "平均" msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力" msgstr "能力"
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity" msgid "Capacity"
msgstr "容量" msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "檢查您的監控服務"
msgid "Check your notification service" msgid "Check your notification service"
msgstr "檢查您的通知服務" msgstr "檢查您的通知服務"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Clear" msgid "Clear"
msgstr "清除" msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "點擊容器以查看更多資訊。"
msgid "Click on a device to view more information." msgid "Click on a device to view more information."
msgstr "點擊裝置以查看更多資訊。" msgstr "點擊裝置以查看更多資訊。"
#: src/components/routes/system/zfs-table.tsx
msgid "Click on a pool to view vdev and dataset details."
msgstr ""
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Click on a system to view more information." msgid "Click on a system to view more information."
msgstr "點擊系統以查看更多資訊。" msgstr "點擊系統以查看更多資訊。"
@@ -559,14 +580,30 @@ msgstr "已建立"
msgid "Critical (%)" msgid "Critical (%)"
msgstr "嚴重 (%)" msgstr "嚴重 (%)"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data read since boot"
msgstr ""
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative data written since boot"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Download" msgid "Cumulative Download"
msgstr "累計下載" msgstr "累計下載"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx #: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload" msgid "Cumulative Upload"
msgstr "累計上傳" msgstr "累計上傳"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state #. Context: Battery state
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx #: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk" msgid "Disk"
msgstr "磁碟" msgstr "磁碟"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁碟 I/O"
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Disk unit" msgid "Disk unit"
msgstr "磁碟單位" msgstr "磁碟單位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Disk Usage" msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:" msgid "Failed Attributes:"
msgstr "失敗屬性:" msgstr "失敗屬性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts #: src/lib/api.ts
msgid "Failed to authenticate" msgid "Failed to authenticate"
msgstr "認證失敗" msgstr "認證失敗"
@@ -839,6 +875,8 @@ msgstr "風扇"
#: src/components/routes/settings/alerts-history-data-table.tsx #: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.tsx #: src/components/routes/system/chart-card.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
#: src/components/systems-table/systems-table.tsx #: src/components/systems-table/systems-table.tsx
msgid "Filter..." msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持續<0>{min}</0> {min, plural, one {分鐘} other {分鐘}}"
msgid "Forgot password?" msgid "Forgot password?"
msgstr "忘記密碼?" msgstr "忘記密碼?"
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgctxt "Free space"
msgid "Free"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command" msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "網格" msgstr "網格"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health" msgid "Health"
msgstr "健康狀態" msgstr "健康狀態"
@@ -1101,6 +1146,10 @@ msgstr "容器的記憶體使用量"
msgid "Model" msgid "Model"
msgstr "型號" msgstr "型號"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "網路單位"
msgid "No" msgid "No"
msgstr "否" msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx #: src/components/systemd-table/systemd-table.tsx
msgid "No results found." msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此裝置沒有可用的 S.M.A.R.T. 屬性。"
msgid "No systems found." msgid "No systems found."
msgstr "找不到任何系統。" msgstr "找不到任何系統。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx #: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx #: src/components/routes/settings/notifications.tsx
msgid "Notifications" msgid "Notifications"
msgstr "通知" msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx #: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support" msgid "OAuth 2 / OIDC support"
msgstr "支援 OAuth 2 / OIDC" msgstr "支援 OAuth 2 / OIDC"
@@ -1173,6 +1234,14 @@ msgstr "支援 OAuth 2 / OIDC"
msgid "On each restart, systems in the database will be updated to match the systems defined in the file." msgid "On each restart, systems in the database will be updated to match the systems defined in the file."
msgstr "每次重新啟動時,將會以檔案中的系統定義更新資料庫。" msgstr "每次重新啟動時,將會以檔案中的系統定義更新資料庫。"
#: src/lib/alerts.ts
msgid "One or more containers are unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "One or more services are in a failed state"
msgstr ""
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
msgid "One-time" msgid "One-time"
@@ -1186,6 +1255,7 @@ msgstr "一次性密碼"
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx #: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu" msgid "Open menu"
msgstr "開啟選單" msgstr "開啟選單"
@@ -1309,6 +1379,14 @@ msgstr "請參閱<0>文件</0>以取得說明。"
msgid "Please sign in to your account" msgid "Please sign in to your account"
msgstr "請登入您的帳號" msgstr "請登入您的帳號"
#: src/components/routes/system/zfs-table.tsx
msgid "Pool Health"
msgstr ""
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Pool Usage"
msgstr ""
#: src/components/add-system.tsx #: src/components/add-system.tsx
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "隊列深度"
msgid "Quiet Hours" msgid "Quiet Hours"
msgstr "靜音時段" msgstr "靜音時段"
#. Disk read
#. Disk read #. Disk read
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Read" msgid "Read"
msgstr "讀取" msgstr "讀取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx #: src/components/routes/system/charts/network-charts.tsx
msgid "Received" msgid "Received"
msgstr "接收" msgstr "接收"
@@ -1369,6 +1454,7 @@ msgstr "接收"
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/containers-table/containers-table.tsx #: src/components/containers-table/containers-table.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh" msgid "Refresh"
msgstr "重新整理" msgstr "重新整理"
@@ -1410,6 +1496,8 @@ msgstr "重啟次數"
msgid "Resume" msgid "Resume"
msgstr "繼續" msgstr "繼續"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/systems-table/systems-table-columns.tsx #: src/components/systems-table/systems-table-columns.tsx
msgctxt "Root disk label" msgctxt "Root disk label"
msgid "Root" msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved) #. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx #: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx #: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "State" msgid "State"
msgstr "狀態" msgstr "狀態"
@@ -1683,9 +1772,9 @@ msgstr "這將從資料庫中永久刪除所有選定的記錄。"
msgid "Throughput of {extraFsName}" msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的傳輸速率" msgstr "{extraFsName}的傳輸速率"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of root filesystem" msgid "Throughput of ZFS pool {poolName}"
msgstr "Root 檔案系統的傳輸速率" msgstr ""
#: src/components/routes/settings/general.tsx #: src/components/routes/settings/general.tsx
msgid "Time format" msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "當 5 分鐘平均負載超過閾值時觸發" msgstr "當 5 分鐘平均負載超過閾值時觸發"
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy" msgid "Triggers when a container's health check reports unhealthy"
msgstr "當 Docker 容器的健康檢查回報不健康狀態時觸發" msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold" msgid "Triggers when any sensor exceeds a threshold"
msgstr "當任何感應器超過閾值時觸發" msgstr "當任何感應器超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts #: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold" msgid "Triggers when battery charge drops below a threshold"
msgstr "當電池電量降至閾值以下時觸發" msgstr "當電池電量降至閾值以下時觸發"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用 Token" msgstr "通用 Token"
#. Context: Battery state #. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts #: src/lib/i18n.ts
msgid "Unknown" msgid "Unknown"
msgstr "未知" msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx #: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx #: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx #: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated" msgid "Updated"
msgstr "已更新" msgstr "已更新"
@@ -1868,20 +1963,25 @@ msgstr "上傳"
msgid "Uptime" msgid "Uptime"
msgstr "運行時間" msgstr "運行時間"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/gpu-charts.tsx #: src/components/routes/system/charts/gpu-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx #: src/components/routes/system/cpu-sheet.tsx
msgid "Usage" msgid "Usage"
msgstr "使用量" msgstr "使用量"
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of root partition" msgid "Usage of ZFS pool {poolName}"
msgstr "Root 分區的使用量" msgstr ""
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/charts/memory-charts.tsx #: src/components/routes/system/charts/memory-charts.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used" msgid "Used"
msgstr "已使用" msgstr "已使用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command" msgid "Windows command"
msgstr "Windows 指令" msgstr "Windows 指令"
#. Disk write
#. Disk write #. Disk write
#: src/components/routes/system/charts/disk-charts.tsx #: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/zfs-charts.tsx
#: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
#: src/components/routes/system/disk-io-sheet.tsx #: src/components/routes/system/disk-io-sheet.tsx
msgid "Write" msgid "Write"
msgstr "寫入" msgstr "寫入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx #: src/components/routes/settings/layout.tsx
msgid "YAML Config" msgid "YAML Config"
msgstr "YAML 設定檔" msgstr "YAML 設定檔"