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
@@ -126,9 +126,9 @@ export function DiskUsageChart({ systemData, extraFsName }: { systemData: System
}
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 description = extraFsName ? t`Disk usage of ${extraFsName}` : t`Disk usage of ${rootLabel}`
const description = t`Disk usage of ${{extraFsName: extraFsName ?? rootLabel.toLowerCase()}}`
return (
<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 rootLabel = rootName ?? t`Root`
const title = extraFsName ? `${extraFsName} I/O` : `${rootLabel} I/O`
const description = extraFsName ? t`Throughput of ${extraFsName}` : t`Throughput of ${rootLabel}`
const rootLabel = rootName ?? t({ message: `Root`, context: "Root disk label" })
const title = t`${{diskName: extraFsName ?? rootLabel}} I/O`
const description = t`Throughput of ${{extraFsName: extraFsName ?? rootLabel.toLowerCase()}}`
const hasMoreIOMetrics = chartData.systemStats?.some((record) => record.stats?.dios?.at(0))
@@ -85,7 +85,7 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
{
accessorKey: "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>,
},
{
@@ -101,7 +101,7 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
id: "size",
accessorFn: (record) => record.size,
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>,
},
{
@@ -115,13 +115,13 @@ const columns: ColumnDef<ZfsPoolRecord>[] = [
id: "free",
accessorFn: (record) => record.free,
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>,
},
{
id: "scrub",
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 }) => {
const scrub = row.original.scrub
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>
<TableHeader>
<TableRow>
<TableHead>{t`Vdev`}</TableHead>
<TableHead>Vdev</TableHead>
<TableHead>{t`State`}</TableHead>
<TableHead className="text-right">{t`Read errors`}</TableHead>
<TableHead className="text-right">{t`Write errors`}</TableHead>
@@ -201,7 +201,7 @@ const datasetColumns: ColumnDef<ZfsDataset>[] = [
{
accessorKey: "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>,
},
{
@@ -215,7 +215,7 @@ const datasetColumns: ColumnDef<ZfsDataset>[] = [
id: "avail",
accessorFn: (ds) => ds.avail ?? 0,
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>,
},
{
@@ -248,12 +248,10 @@ function DatasetTable({ datasets }: { datasets: ZfsDataset[] }) {
return (
<div>
<div className="mb-2 flex items-center justify-between gap-4">
<h3 className="text-base font-semibold">
<Trans>Datasets</Trans>
</h3>
<h3 className="text-base font-semibold">Datasets</h3>
<div className="relative w-64 max-w-full">
<Input
placeholder={t`Filter datasets...`}
placeholder={t`Filter...`}
value={filter}
onChange={(e) => setFilter(e.target.value)}
className="px-4 w-full"
@@ -347,7 +345,7 @@ function PoolSheet({
<SheetContent className="w-full sm:max-w-220 gap-0 overflow-y-auto">
<SheetHeader className="mb-0 border-b">
<SheetTitle className="flex items-center gap-2">
{pool ? pool.name : t`ZFS Pool`}
{pool ? pool.name : `ZFS Pool`}
{pool && <Badge variant={healthVariantValue}>{health}</Badge>}
</SheetTitle>
<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" />
<span>
<Trans>Free</Trans>: {formatCapacity(pool.free)}
<Trans context="Free space">Free</Trans>: {formatCapacity(pool.free)}
</span>
</>
) : null}
@@ -385,7 +383,7 @@ function PoolSheet({
</AlertTitle>
{pool.scrub?.state && (
<AlertDescription>
<Trans>Scrub</Trans>: {pool.scrub.state}
Scrub: {pool.scrub.state}
{pool.scrub.progress ? ` (${pool.scrub.progress})` : ""}
{pool.scrub.errors ? `, ${pool.scrub.errors} errors` : ""}
</AlertDescription>
+1 -1
View File
@@ -120,7 +120,7 @@ export const alertInfo: Record<string, AlertInfo> = {
unit: "",
icon: ServerCrashIcon,
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 */
noDuration: true,
},
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# خيط} other {# خيط}}"
@@ -93,6 +97,7 @@ msgstr "5 دقائق"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "إجراءات"
@@ -191,6 +196,11 @@ msgstr "هل أنت متأكد؟"
msgid "Automatic copy requires a secure context."
msgstr "النسخ التلقائي يتطلب سياقًا آمنًا."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "متوسط"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "القدرات"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "السعة"
@@ -380,8 +391,14 @@ msgstr "تحقق من خدمة المراقبة الخاصة بك"
msgid "Check your notification service"
msgstr "تحقق من خدمة الإشعارات الخاصة بك"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "مسح"
@@ -394,6 +411,10 @@ msgstr "انقر على حاوية لعرض مزيد من المعلومات."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "انقر على نظام لعرض مزيد من المعلومات."
@@ -559,14 +580,30 @@ msgstr "أنشئت"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "التنزيل التراكمي"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "الرفع التراكمي"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "قيد التفريغ"
msgid "Disk"
msgstr "القرص"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "إدخال/إخراج القرص"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "وحدة القرص"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "فشل"
msgid "Failed Attributes:"
msgstr "السمات الفاشلة:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "فشل في المصادقة"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "لمدة <0>{min}</0> {min, plural, one {دقيقة} other {دقائق}}
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "شبكة"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "الصحة"
@@ -1101,6 +1146,10 @@ msgstr "استخدام الذاكرة للحاويات"
msgid "Model"
msgstr "الموديل"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "وحدة الشبكة"
msgid "No"
msgstr "لا"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "لا توجد سمات S.M.A.R.T. متاحة لهذا الجهاز."
msgid "No systems found."
msgstr "لم يتم العثور على أنظمة."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "الإشعارات"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "فتح القائمة"
@@ -1309,6 +1379,14 @@ msgstr "يرجى الاطلاع على <0>التوثيق</0> للحصول على
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "المنفذ"
@@ -1354,14 +1432,21 @@ msgstr "عمق الدور"
msgid "Quiet Hours"
msgstr "ساعات الهدوء"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "قراءة"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "تم الاستلام"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "تحديث"
@@ -1410,6 +1496,8 @@ msgstr "إعادة التشغيل"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "وقت البدء"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "الحالة"
@@ -1683,9 +1772,9 @@ msgstr "سيؤدي هذا إلى حذف جميع السجلات المحددة
msgid "Throughput of {extraFsName}"
msgstr "معدل نقل {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "معدل نقل نظام الملفات الجذر"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "يتم التفعيل عندما يتجاوز متوسط التحميل لمدة 5 دقائق عتبة معينة"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "يتم التفعيل عندما يُبلّغ فحص سلامة حاوية Docker بأنها غير سليمة"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "يتم التفعيل عندما يتجاوز أي مستشعر عتبة معينة"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "يتم التفعيل عندما تنخفض شحنة البطارية أقل من عتبة معينة"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "رمز مميز عالمي"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "غير معروفة"
@@ -1851,6 +1945,7 @@ msgstr "تحديث"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "تم التحديث"
@@ -1868,20 +1963,25 @@ msgstr "رفع"
msgid "Uptime"
msgstr "مدة التشغيل"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "الاستخدام"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "استخدام القسم الجذر"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "مستخدم"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "أمر ويندوز"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "كتابة"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "تكوين YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# нишка} other {# нишки}}"
@@ -93,6 +97,7 @@ msgstr "5 минути"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Действия"
@@ -191,6 +196,11 @@ msgstr "Сигурни ли сте?"
msgid "Automatic copy requires a secure context."
msgstr "Автоматичното копиране изисква защитен контескт."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Средно"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Възможности"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Капацитет"
@@ -380,8 +391,14 @@ msgstr "Проверете мониторинг услугата си"
msgid "Check your notification service"
msgstr "Провери услугата си за удостоверяване"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Изчисти"
@@ -394,6 +411,10 @@ msgstr "Кликнете върху контейнер, за да видите
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Кликнете върху система, за да видите повече информация."
@@ -559,14 +580,30 @@ msgstr "Създаден"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Кумулативно изтегляне"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Кумулативно качване"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Разреждане"
msgid "Disk"
msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Диск I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Единица за диск"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неуспешно"
msgid "Failed Attributes:"
msgstr "Неуспешни атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Неуспешно удостоверяване"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "За <0>{min}</0> {min, plural, one {минута} other {минути}}
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Мрежово"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Здраве"
@@ -1101,6 +1146,10 @@ msgstr "Използване на паметта от контейнерите"
msgid "Model"
msgstr "Модел"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Единица за измерване на скорост"
msgid "No"
msgstr "Не"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Няма налични S.M.A.R.T. атрибути за това уст
msgid "No systems found."
msgstr "Няма намерени системи."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Нотификации"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Отвори менюто"
@@ -1309,6 +1379,14 @@ msgstr "Моля виж <0>документацията</0> за инструк
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Дълбочина на опашката"
msgid "Quiet Hours"
msgstr "Тихи часове"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Прочети"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Получени"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "Опресни"
@@ -1410,6 +1496,8 @@ msgstr "Рестартирания"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Начален час"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Състояние"
@@ -1683,9 +1772,9 @@ msgstr "Това ще доведе до трайно изтриване на в
msgid "Throughput of {extraFsName}"
msgstr "Пропускателна способност на {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Пропускателна способност на root файловата система"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Задейства се, когато употребата на паметта за 5 минута надвиши зададен праг"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Задейства се, когато проверката за състояние на Docker контейнер докладва нездравословно състояние"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "Задейства се, когато някой даден сензор надвиши зададен праг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "Задейства се, когато зарядът на батерията падне под зададен праг"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универсален тоукън"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Неизвестна"
@@ -1851,6 +1945,7 @@ msgstr "Актуализирай"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Актуализирано"
@@ -1868,20 +1963,25 @@ msgstr "Качване"
msgid "Uptime"
msgstr "Време на работа"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Употреба"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Употреба на root partition-а"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Използвани"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Команда Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Запиши"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML конфигурация"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Akce"
@@ -191,6 +196,11 @@ msgstr "Jste si jistý?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Průměr"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Schopnosti"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapacita"
@@ -380,8 +391,14 @@ msgstr "Zkontrolujte svou monitorovací službu"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klikněte na systém pro zobrazení více informací."
@@ -559,14 +580,30 @@ msgstr "Vytvořeno"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativní stažení"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativní odeslání"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Vybíjení"
msgid "Disk"
msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O disku"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Disková jednotka"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Selhalo"
msgid "Failed Attributes:"
msgstr "Neúspěšné atributy:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Ověření se nezdařilo"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minutu} few {minuty} other {minut}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Mřížka"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Zdraví"
@@ -1101,6 +1146,10 @@ msgstr "Využití paměti kontejnery"
msgid "Model"
msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Síťová jednotka"
msgid "No"
msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Nenalezeny žádné systémy."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Upozornění"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Otevřít menu"
@@ -1309,6 +1379,14 @@ msgstr "Instrukce naleznete v <0>dokumentaci</0>."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr ""
@@ -1354,14 +1432,21 @@ msgstr "Hloubka fronty"
msgid "Quiet Hours"
msgstr "Tiché hodiny"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Číst"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Aktualizovat"
@@ -1410,6 +1496,8 @@ msgstr "Restarty"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Čas začátku"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Stav"
@@ -1683,9 +1772,9 @@ msgstr "Tímto trvale odstraníte všechny vybrané záznamy z databáze."
msgid "Throughput of {extraFsName}"
msgstr "Propustnost {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Propustnost kořenového souborového systému"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Spouští se, když kontrola stavu (health check) kontejneru Dockeru nahlásí stav nezdravý"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Spustí se, když úroveň nabití baterie klesne pod prahovou hodnotu"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzální token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Neznámá"
@@ -1851,6 +1945,7 @@ msgstr "Aktualizovat"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Aktualizováno"
@@ -1868,20 +1963,25 @@ msgstr "Odeslání"
msgid "Uptime"
msgstr "Doba provozu"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Využití"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Využití kořenového oddílu"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Využito"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows příkaz"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Psát"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML konfigurace"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Handlinger"
@@ -191,6 +196,11 @@ msgstr "Er du sikker?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Gennemsnitlig"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Funktioner"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Tjek din overvågningstjeneste"
msgid "Check your notification service"
msgstr "Tjek din notifikationstjeneste"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klik på et system for at se mere information."
@@ -559,14 +580,30 @@ msgstr "Oprettet"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativ download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativ upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Aflader"
msgid "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
msgid "Disk unit"
msgstr "Diskenhed"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislykkedes"
msgid "Failed Attributes:"
msgstr "Mislykkede attributter:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Kunne ikke godkende"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "For <0>{min}</0> {min, plural, one {minut} other {minutter}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Gitter"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Sundhed"
@@ -1101,6 +1146,10 @@ msgstr "Containeres hukommelsesforbrug"
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netværksenhed"
msgid "No"
msgstr "Nej"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Ingen systemer fundet."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notifikationer"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Åbn menu"
@@ -1309,6 +1379,14 @@ msgstr "Se <0>dokumentationen</0> for instruktioner."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kødybde"
msgid "Quiet Hours"
msgstr "Stille timer"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Læs"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Modtaget"
@@ -1369,6 +1454,7 @@ msgstr "Modtaget"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Opdater"
@@ -1410,6 +1496,8 @@ msgstr "Genstarter"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Tilstand"
@@ -1683,9 +1772,9 @@ msgstr "Dette vil permanent slette alle poster fra databasen."
msgid "Throughput of {extraFsName}"
msgstr "Gennemløb af {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Gennemløb af rodfilsystemet"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Udløser når en Docker-containers helbredstjek rapporterer usund"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Udløses når batteriniveauet falder under en tærskel"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universalnøgle"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Ukendt"
@@ -1851,6 +1945,7 @@ msgstr "Opdater"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Opdateret"
@@ -1868,20 +1963,25 @@ msgstr "Overfør"
msgid "Uptime"
msgstr "Oppetid"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Forbrug"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Brug af rodpartition"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Brugt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows-kommando"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Skriv"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML Konfiguration"
+120 -13
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Aktionen"
@@ -191,6 +196,11 @@ msgstr "Bist du sicher?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Durchschnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Fähigkeiten"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapazität"
@@ -380,8 +391,14 @@ msgstr "Überprüfen Sie Ihren Überwachungsdienst"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klicke auf ein System, um weitere Informationen zu sehen."
@@ -559,14 +580,30 @@ msgstr "Erstellt"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativer Download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativer Upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Wird entladen"
msgid "Disk"
msgstr "Festplatte"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Festplatten-I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Festplatteneinheit"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fehlgeschlagen"
msgid "Failed Attributes:"
msgstr "Fehlgeschlagene Attribute:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Authentifizierung fehlgeschlagen"
@@ -839,6 +875,8 @@ msgstr "Lüfter"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Für <0>{min}</0> {min, plural, one {Minute} other {Minuten}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Raster"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Gesundheit"
@@ -1101,6 +1146,10 @@ msgstr "Speichernutzung der Container"
msgid "Model"
msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netzwerkeinheit"
msgid "No"
msgstr "Nein"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Keine Systeme gefunden."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Benachrichtigungen"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Menü öffnen"
@@ -1309,6 +1379,14 @@ msgstr "In der <0>Dokumentation</0> findest du weitere Anweisungen."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Warteschlangentiefe"
msgid "Quiet Hours"
msgstr "Ruhezeiten"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lesen"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Empfangen"
@@ -1369,6 +1454,7 @@ msgstr "Empfangen"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Aktualisieren"
@@ -1410,6 +1496,8 @@ msgstr "Neustarts"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Startzeit"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Dadurch werden alle ausgewählten Datensätze dauerhaft aus der Datenban
msgid "Throughput of {extraFsName}"
msgstr "Durchsatz von {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Durchsatz des Root-Dateisystems"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Löst aus, wenn der Healthcheck eines Docker-Containers als ungesund gemeldet wird"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Löst aus, wenn der Batterieladestand unter einen Schwellenwert fällt"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universeller Token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Unbekannt"
@@ -1851,6 +1945,7 @@ msgstr "Aktualisieren"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Aktualisiert"
@@ -1868,20 +1963,25 @@ msgstr "Hochladen"
msgid "Uptime"
msgstr "Betriebszeit"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Nutzung"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Nutzung der Root-Partition"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Verwendet"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows-Befehl"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Schreiben"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML-Konfiguration"
+150 -11
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Ενέργειες"
@@ -191,6 +196,11 @@ msgstr "Είστε βέβαιοι;"
msgid "Automatic copy requires a secure context."
msgstr "Η αυτόματη αντιγραφή απαιτεί ασφαλές περιβάλλον."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Μέσος όρος"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Δυνατότητες"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Χωρητικότητα"
@@ -380,8 +391,14 @@ msgstr "Ελέγξτε την υπηρεσία παρακολούθησής σα
msgid "Check your notification service"
msgstr "Ελέγξτε την υπηρεσία ειδοποιήσεών σας"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Εκκαθάριση"
@@ -394,6 +411,10 @@ msgstr "Κάντε κλικ σε ένα κοντέινερ για να δείτ
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Κάντε κλικ σε ένα σύστημα για να δείτε περισσότερες πληροφορίες."
@@ -424,6 +445,14 @@ msgstr "Διενέξεις"
msgid "Connection is down"
msgstr "Η σύνδεση είναι εκτός λειτουργίας"
#: src/lib/alerts.ts
msgid "Container"
msgstr ""
#: src/lib/alerts.ts
msgid "Container Health"
msgstr ""
#: src/components/routes/system.tsx
msgid "Containers"
msgstr "Κοντέινερ"
@@ -507,10 +536,18 @@ msgstr "CPU"
msgid "CPU Cores"
msgstr "Πυρήνες CPU"
#: src/lib/alerts.ts
msgid "CPU I/O Wait"
msgstr ""
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "CPU Peak"
msgstr "Μέγιστη CPU"
#: src/lib/alerts.ts
msgid "CPU Steal Time"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx
msgid "CPU time"
msgstr "Χρόνος CPU"
@@ -543,14 +580,30 @@ msgstr "Δημιουργήθηκε"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Συνολική λήψη"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Συνολική αποστολή"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -610,15 +663,10 @@ msgstr "Αποφορτίζεται"
msgid "Disk"
msgstr "Δίσκος"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O δίσκου"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Μονάδα δίσκου"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -788,6 +836,10 @@ msgstr "Απέτυχε"
msgid "Failed Attributes:"
msgstr "Αποτυχημένα χαρακτηριστικά:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Η ταυτοποίηση απέτυχε"
@@ -823,6 +875,8 @@ msgstr "Ανεμιστήρες"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -844,6 +898,12 @@ msgstr "Για <0>{min}</0> {min, plural, one {λεπτό} other {λεπτά}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -888,6 +948,7 @@ msgid "Grid"
msgstr "Πλέγμα"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Υγεία"
@@ -1085,6 +1146,10 @@ msgstr "Χρήση μνήμης των κοντέινερ"
msgid "Model"
msgstr "Μοντέλο"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1120,6 +1185,10 @@ msgstr "Μονάδα δικτύου"
msgid "No"
msgstr "Όχι"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1143,12 +1212,20 @@ msgstr "Δεν υπάρχουν διαθέσιμα χαρακτηριστικά
msgid "No systems found."
msgstr "Δεν βρέθηκαν συστήματα."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Ειδοποιήσεις"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Άνοιγμα μενού"
@@ -1293,6 +1379,14 @@ msgstr "Ανατρέξτε στην <0>τεκμηρίωση</0> για οδηγ
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Θύρα"
@@ -1338,14 +1432,21 @@ msgstr "Βάθος ουράς"
msgid "Quiet Hours"
msgstr "Ώρες σίγασης"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Ανάγνωση"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Λήφθηκαν"
@@ -1353,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "Ανανέωση"
@@ -1394,6 +1496,8 @@ msgstr "Επανεκκινήσεις"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1539,6 +1643,7 @@ msgstr "Ώρα έναρξης"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Κατάσταση"
@@ -1667,9 +1772,9 @@ msgstr "Αυτό θα διαγράψει οριστικά όλες τις επι
msgid "Throughput of {extraFsName}"
msgstr "Ρυθμός μεταφοράς του {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Ρυθμός μεταφοράς του ριζικού συστήματος αρχείων"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1741,10 +1846,18 @@ msgstr "Ενεργοποιείται όταν ο μέσος φόρτος 15 λε
msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Ενεργοποιείται όταν ο μέσος φόρτος 5 λεπτών υπερβαίνει ένα όριο"
#: src/lib/alerts.ts
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "Ενεργοποιείται όταν οποιοσδήποτε αισθητήρας υπερβαίνει ένα όριο"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "Ενεργοποιείται όταν η φόρτιση της μπαταρίας πέσει κάτω από ένα όριο"
@@ -1753,6 +1866,14 @@ msgstr "Ενεργοποιείται όταν η φόρτιση της μπατ
msgid "Triggers when combined up/down exceeds a threshold"
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
msgid "Triggers when CPU usage exceeds a threshold"
msgstr "Ενεργοποιείται όταν η χρήση CPU υπερβαίνει ένα όριο"
@@ -1779,6 +1900,10 @@ msgstr "Ενεργοποιείται όταν η χρήση οποιουδήπο
msgid "Type"
msgstr "Τύπος"
#: src/lib/alerts.ts
msgid "Unhealthy"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx
msgid "Unit file"
msgstr "Αρχείο μονάδας"
@@ -1794,6 +1919,7 @@ msgid "Universal token"
msgstr "Καθολικό διακριτικό"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Άγνωστο"
@@ -1819,6 +1945,7 @@ msgstr "Ενημέρωση"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Ενημερώθηκε"
@@ -1836,20 +1963,25 @@ msgstr "Αποστολή"
msgid "Uptime"
msgstr "Χρόνος λειτουργίας"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Χρήση"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Χρήση διαμερίσματος root"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Χρησιμοποιείται"
@@ -1923,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Εντολή Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Εγγραφή"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Διαμ. YAML"
+120 -13
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Actions"
@@ -186,6 +191,11 @@ msgstr "Are you sure?"
msgid "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
msgid "Average"
msgstr "Average"
@@ -323,6 +333,7 @@ msgid "Capabilities"
msgstr "Capabilities"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capacity"
@@ -375,8 +386,14 @@ msgstr "Check your monitoring service"
msgid "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/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
msgid "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."
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
msgid "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 (%)"
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
msgid "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
msgid "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
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -621,15 +658,10 @@ msgstr "Discharging"
msgid "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
msgid "Disk unit"
msgstr "Disk unit"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -799,6 +831,10 @@ msgstr "Failed"
msgid "Failed Attributes:"
msgstr "Failed Attributes:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr "Failed Services"
#: src/lib/api.ts
msgid "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/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -855,6 +893,12 @@ msgstr "For <0>{min}</0> {min, plural, one {minute} other {minutes}}"
msgid "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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -899,6 +943,7 @@ msgid "Grid"
msgstr "Grid"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Health"
@@ -1096,6 +1141,10 @@ msgstr "Memory usage of containers"
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr "Mountpoint"
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1131,6 +1180,10 @@ msgstr "Network unit"
msgid "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/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1154,12 +1207,20 @@ msgstr "No S.M.A.R.T. attributes available for this device."
msgid "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/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "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
msgid "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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "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"
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
msgid "Port"
msgstr "Port"
@@ -1349,14 +1427,21 @@ msgstr "Queue Depth"
msgid "Quiet Hours"
msgstr "Quiet Hours"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Read"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr "Read errors"
#: src/components/routes/system/charts/network-charts.tsx
msgid "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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Refresh"
@@ -1405,6 +1491,8 @@ msgstr "Restarts"
msgid "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
msgctxt "Root disk label"
msgid "Root"
@@ -1550,6 +1638,7 @@ msgstr "Start Time"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "State"
@@ -1678,9 +1767,9 @@ msgstr "This will permanently delete all selected records from the database."
msgid "Throughput of {extraFsName}"
msgstr "Throughput of {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Throughput of root filesystem"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr "Throughput of ZFS pool {poolName}"
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Triggers when a Docker container's health check reports unhealthy"
msgid "Triggers when a container's health check reports unhealthy"
msgstr "Triggers when a container's health check reports unhealthy"
#: src/lib/alerts.ts
msgid "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
msgid "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"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Unknown"
@@ -1846,6 +1940,7 @@ msgstr "Update"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Updated"
@@ -1863,20 +1958,25 @@ msgstr "Upload"
msgid "Uptime"
msgstr "Uptime"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Usage"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Usage of root partition"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
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/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Used"
msgstr "Used"
@@ -1950,14 +2050,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows command"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Write"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr "Write errors"
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML Config"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Acciones"
@@ -191,6 +196,11 @@ msgstr "¿Estás seguro?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Promedio"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacidades"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capacidad"
@@ -380,8 +391,14 @@ msgstr "Compruebe su servicio de monitorización"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Haz clic en un sistema para ver más información."
@@ -559,14 +580,30 @@ msgstr "Creada"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Descarga acumulada"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Carga acumulada"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Descargando"
msgid "Disk"
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
msgid "Disk unit"
msgstr "Unidad de disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fallido"
msgid "Failed Attributes:"
msgstr "Atributos fallidos:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Error al autenticar"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Por <0>{min}</0> {min, plural, one {minuto} other {minutos}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Cuadrícula"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Estado"
@@ -1101,6 +1146,10 @@ msgstr "Uso de memoria de los contenedores"
msgid "Model"
msgstr "Modelo"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unidad de red"
msgid "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/systemd-table/systemd-table.tsx
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."
msgstr "No se encontraron sistemas."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notificaciones"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
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"
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
msgid "Port"
msgstr "Puerto"
@@ -1354,14 +1432,21 @@ msgstr "Profundidad de cola"
msgid "Quiet Hours"
msgstr "Horas de silencio"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lectura"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Recibido"
@@ -1369,6 +1454,7 @@ msgstr "Recibido"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Actualizar"
@@ -1410,6 +1496,8 @@ msgstr "Reinicios"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Hora de inicio"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Estado"
@@ -1683,9 +1772,9 @@ msgstr "Esto eliminará permanentemente todos los registros seleccionados de la
msgid "Throughput of {extraFsName}"
msgstr "Rendimiento de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Rendimiento del sistema de archivos raíz"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Se activa cuando el healthcheck de un contenedor Docker indica un estado no saludable"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Se activa cuando la carga de la batería baja de un umbral"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Desconocida"
@@ -1851,6 +1945,7 @@ msgstr "Actualizar"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Actualizado"
@@ -1868,20 +1963,25 @@ msgstr "Cargar"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Uso"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Uso de la partición raíz"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Usado"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Comando Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Escritura"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Configuración YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# رشته} other {# رشته}}"
@@ -93,6 +97,7 @@ msgstr "۵ دقیقه"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "عملیات"
@@ -191,6 +196,11 @@ msgstr "آیا مطمئن هستید؟"
msgid "Automatic copy requires a secure context."
msgstr "کپی خودکار نیاز به یک زمینه امن دارد."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "میانگین"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "قابلیت‌ها"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "ظرفیت"
@@ -380,8 +391,14 @@ msgstr "سرویس نظارتی خود را بررسی کنید"
msgid "Check your notification service"
msgstr "سرویس اطلاع‌رسانی خود را بررسی کنید"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "پاک کردن"
@@ -394,6 +411,10 @@ msgstr "برای مشاهده اطلاعات بیشتر روی کانتینر ک
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "برای مشاهده اطلاعات بیشتر روی یک سیستم کلیک کنید."
@@ -559,14 +580,30 @@ msgstr "ایجاد شده"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "دانلود تجمعی"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "آپلود تجمعی"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "در حال تخلیه"
msgid "Disk"
msgstr "دیسک"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "ورودی/خروجی دیسک"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "واحد دیسک"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "ناموفق"
msgid "Failed Attributes:"
msgstr "ویژگی‌های ناموفق:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "احراز هویت ناموفق بود"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "برای <0>{min}</0> {min, plural, one {دقیقه} other {دقیقه}}
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "جدول"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "سلامتی"
@@ -1101,6 +1146,10 @@ msgstr "میزان استفاده حافظه کانتینرها"
msgid "Model"
msgstr "مدل"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "واحد شبکه"
msgid "No"
msgstr "خیر"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "هیچ ویژگی S.M.A.R.T برای این دستگاه موجود نی
msgid "No systems found."
msgstr "هیچ سیستمی یافت نشد."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "اعلان‌ها"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "باز کردن منو"
@@ -1309,6 +1379,14 @@ msgstr "لطفاً برای دستورالعمل‌ها به <0>مستندات</
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "پورت"
@@ -1354,14 +1432,21 @@ msgstr "عمق صف"
msgid "Quiet Hours"
msgstr "ساعات آرام"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "خواندن"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "دریافت شد"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "تازه‌سازی"
@@ -1410,6 +1496,8 @@ msgstr "راه‌اندازی مجدد"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "زمان شروع"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "وضعیت"
@@ -1683,9 +1772,9 @@ msgstr "این کار تمام رکوردهای انتخاب شده را برا
msgid "Throughput of {extraFsName}"
msgstr "توان عملیاتی {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "توان عملیاتی سیستم فایل ریشه"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "هنگامی که میانگین بار ۵ دقیقه‌ای از یک آستانه فراتر رود، فعال می‌شود"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "هنگامی که بررسی سلامت یک کانتینر Docker وضعیت ناسالم را گزارش می‌کند، فعال می‌شود"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "هنگامی که هر حسگری از یک آستانه فراتر رود، فعال می‌شود"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "زمانی که شارژ باتری زیر آستانه قرار می‌گیرد، فعال می‌شود"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "توکن جهانی"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "ناشناخته"
@@ -1851,6 +1945,7 @@ msgstr "به‌روزرسانی"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "به‌روزرسانی شد"
@@ -1868,20 +1963,25 @@ msgstr "آپلود"
msgid "Uptime"
msgstr "آپتایم"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "میزان استفاده"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "میزان استفاده از پارتیشن ریشه"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "استفاده شده"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "دستور Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "نوشتن"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "پیکربندی YAML"
+120 -13
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Actions"
@@ -191,6 +196,11 @@ msgstr "Êtes-vous sûr ?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Moyenne"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacités"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capacité"
@@ -380,8 +391,14 @@ msgstr "Vérifiez votre service de surveillance"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Cliquez sur un système pour voir plus d'informations."
@@ -559,14 +580,30 @@ msgstr "Date de création"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Téléchargement cumulatif"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Téléversement cumulatif"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "En décharge"
msgid "Disk"
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
msgid "Disk unit"
msgstr "Unité disque"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Échoué"
msgid "Failed Attributes:"
msgstr "Attributs défaillants :"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Échec de l'authentification"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Pendant <0>{min}</0> {min, plural, one {minute} other {minutes}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Grille"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Santé"
@@ -1101,6 +1146,10 @@ msgstr "Utilisation de la mémoire des conteneurs"
msgid "Model"
msgstr "Modèle"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unité réseau"
msgid "No"
msgstr "Non"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Aucun attribut S.M.A.R.T. disponible pour cet appareil."
msgid "No systems found."
msgstr "Aucun système trouvé."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notifications"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open 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"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Profondeur de file d'attente"
msgid "Quiet Hours"
msgstr "Heures calmes"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lecture"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Actualiser"
@@ -1410,6 +1496,8 @@ msgstr "Redémarrages"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Heure de début"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "État"
@@ -1683,9 +1772,9 @@ msgstr "Ceci supprimera définitivement tous les enregistrements sélectionnés
msgid "Throughput of {extraFsName}"
msgstr "Débit de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Débit du système de fichiers racine"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker 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"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
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"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Inconnue"
@@ -1851,6 +1945,7 @@ msgstr "Mettre à jour"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Mis à jour"
@@ -1868,20 +1963,25 @@ msgstr "Téléverser"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Utilisation"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Utilisation de la partition racine"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Utilisé"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Commande Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Écriture"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Configuration YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# תהליכון} other {# תהליכונים}}"
@@ -93,6 +97,7 @@ msgstr "5 דק'"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "פעולות"
@@ -191,6 +196,11 @@ msgstr "האם אתה בטוח?"
msgid "Automatic copy requires a secure context."
msgstr "העתקה אוטומטית דורשת הקשר מאובטח."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "ממוצע"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "יכולות"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "קיבולת"
@@ -380,8 +391,14 @@ msgstr "בדוק את שירות הניטור שלך"
msgid "Check your notification service"
msgstr "בדוק את שירות ההתראות שלך"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "נקה"
@@ -394,6 +411,10 @@ msgstr "לחץ על קונטיינר כדי לצפות במידע נוסף."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "לחץ על מערכת כדי לצפות במידע נוסף."
@@ -559,14 +580,30 @@ msgstr "נוצר"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "הורדה מצטברת"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "העלאה מצטברת"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "בפריקה"
msgid "Disk"
msgstr "דיסק"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "דיסק I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "יחידת דיסק"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "נכשל"
msgid "Failed Attributes:"
msgstr "מאפיינים שנכשלו:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "אימות נכשל"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "למשך <0>{min}</0> {min, plural, one {דקה} other {דקות}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "רשת"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "בריאות"
@@ -1101,6 +1146,10 @@ msgstr "שימוש בזיכרון של קונטיינרים"
msgid "Model"
msgstr "דגם"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "יחידת רשת"
msgid "No"
msgstr "לא"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "אין מאפייני S.M.A.R.T. זמינים עבור התקן זה."
msgid "No systems found."
msgstr "לא נמצאו מערכות."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "התראות"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "פתח תפריט"
@@ -1309,6 +1379,14 @@ msgstr "אנא ראה <0>את התיעוד</0> להוראות."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "פורט"
@@ -1354,14 +1432,21 @@ msgstr "עומק תור"
msgid "Quiet Hours"
msgstr "שעות שקט"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "קריאה"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "התקבל"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "רענן"
@@ -1410,6 +1496,8 @@ msgstr "הפעלות מחדש"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "זמן התחלה"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "מצב"
@@ -1683,9 +1772,9 @@ msgstr "פעולה זו תמחק לצמיתות את כל הרשומות שנב
msgid "Throughput of {extraFsName}"
msgstr "תפוקה של {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "תפוקה של מערכת הקבצים הראשית"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "מופעל כאשר ממוצע העומס ל-5 דקות עולה על סף"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "מופעל כאשר בדיקת התקינות (health check) של קונטיינר Docker מדווחת שהוא לא תקין"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "מופעל כאשר כל חיישן עולה על סף"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "מופעל כאשר טעינת הסוללה יורדת מתחת לסף"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "token אוניברסלי"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "לא ידוע"
@@ -1851,6 +1945,7 @@ msgstr "עדכן"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "עודכן"
@@ -1868,20 +1963,25 @@ msgstr "העלאה"
msgid "Uptime"
msgstr "זמן פעילות"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "שימוש"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "שימוש במחיצה הראשית"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "בשימוש"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "פקודת Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "כתיבה"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "תצורת YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Akcije"
@@ -191,6 +196,11 @@ msgstr "Jeste li sigurni?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Prosjek"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Mogućnosti"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Provjerite svoju uslugu nadzora"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Odaberite sustav za prikaz više informacija."
@@ -559,14 +580,30 @@ msgstr "Kreiran"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativno preuzimanje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativno otpremanje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Prazni se"
msgid "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
msgid "Disk unit"
msgstr "Mjerna jedinica za disk"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Neuspješno"
msgid "Failed Attributes:"
msgstr "Neuspjeli atributi:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Neuspješna provjera autentičnosti"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minutu} other {minute}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rešetka"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Zdravlje"
@@ -1101,6 +1146,10 @@ msgstr "Upotreba memorije spremnika"
msgid "Model"
msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Mjerna jedinica za mrežu"
msgid "No"
msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Nije pronađen nijedan sustav."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Obavijesti"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Otvori meni"
@@ -1309,6 +1379,14 @@ msgstr "Molimo provjerite <0>dokumentaciju</0> za upute."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Dubina reda"
msgid "Quiet Hours"
msgstr "Tihi sati"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Pročitaj"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Primljeno"
@@ -1369,6 +1454,7 @@ msgstr "Primljeno"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Osvježi"
@@ -1410,6 +1496,8 @@ msgstr "Ponovna pokretanja"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Vrijeme početka"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Stanje"
@@ -1683,9 +1772,9 @@ msgstr "Ovom radnjom će se trajno izbrisati svi odabrani zapisi iz baze podatak
msgid "Throughput of {extraFsName}"
msgstr "Protok {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Protok root datotečnog sustava"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Pokreće se kada provjera zdravlja Docker kontejnera prijavi da je nezdrav"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Pokreće se kada razina baterije padne ispod praga"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Sveopći token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Nepoznato"
@@ -1851,6 +1945,7 @@ msgstr "Ažuriraj"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Ažurirano"
@@ -1868,20 +1963,25 @@ msgstr "Otpremi"
msgid "Uptime"
msgstr "Vrijeme rada"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Iskorištenost"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Iskorištenost root datotečnog sustava"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Iskorišteno"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows naredba"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Piši"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML konfiguracija"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Műveletek"
@@ -191,6 +196,11 @@ msgstr "Biztos vagy benne?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Átlag"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Képességek"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapacitás"
@@ -380,8 +391,14 @@ msgstr "Ellenőrizze a megfigyelő szolgáltatást"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "További információkért kattints egy rendszerre."
@@ -559,14 +580,30 @@ msgstr "Létrehozva"
msgid "Critical (%)"
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
msgid "Cumulative Download"
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
msgid "Cumulative Upload"
msgstr "Kumulatív feltöltés"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Kisül"
msgid "Disk"
msgstr "Lemez"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Lemez I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Lemez mértékegysége"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Sikertelen"
msgid "Failed Attributes:"
msgstr "Sikertelen attribútumok:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Hitelesítés sikertelen"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {percig} other {percig}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rács"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Egészség"
@@ -1101,6 +1146,10 @@ msgstr "Konténerek memóriahasználata"
msgid "Model"
msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-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"
msgstr "Nem"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Nem található rendszer."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Értesítések"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
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"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Várakozási sor mélysége"
msgid "Quiet Hours"
msgstr "Csendes órák"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Olvasás"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Fogadott"
@@ -1369,6 +1454,7 @@ msgstr "Fogadott"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Frissítés"
@@ -1410,6 +1496,8 @@ msgstr "Újraindítások"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Kezdési idő"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
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}"
msgstr "A {extraFsName} átviteli teljesítménye"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "A gyökér fájlrendszer átviteli teljesítménye"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Riaszt, amikor egy Docker konténer health check ellenőrzése nem egészséges állapotot jelez"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
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"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
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"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzális token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Ismeretlen"
@@ -1851,6 +1945,7 @@ msgstr "Frissítés"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Frissítve"
@@ -1868,20 +1963,25 @@ msgstr "Feltöltés"
msgid "Uptime"
msgstr "Üzemidő"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Használat"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Root partíció kihasználtsága"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Felhasznált"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows parancs"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Írás"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML konfiguráció"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Aksi"
@@ -191,6 +196,11 @@ msgstr "Apakah anda yakin?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Rata-rata"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Kapabilitas"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapasitas"
@@ -380,8 +391,14 @@ msgstr "Periksa layanan pemantauan Anda"
msgid "Check your notification service"
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/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
msgid "Clear"
msgstr "Bersihkan"
@@ -394,6 +411,10 @@ msgstr "Klik pada kontainer untuk melihat informasi lebih banyak."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Klik pada sistem untuk melihat informasi lebih banyak."
@@ -559,14 +580,30 @@ msgstr "Dibuat"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Akumulasi Download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Akumulasi Upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Sedang tidak di charge"
msgid "Disk"
msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O Disk"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Unit disk"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Gagal"
msgid "Failed Attributes:"
msgstr "Atribut yang Gagal:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Gagal mengautentikasi"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Untuk <0>{min}</0> {min, plural, one {menit} other {menit}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Kartu"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Kesehatan"
@@ -1101,6 +1146,10 @@ msgstr "Penggunaan memori container"
msgid "Model"
msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unit jaringan"
msgid "No"
msgstr "Tidak"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Sistem tidak ditemukan."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notifikasi"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Buka menu"
@@ -1309,6 +1379,14 @@ msgstr "Silakan lihat <0>dokumentasi</0> untuk instruksi."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr ""
@@ -1354,14 +1432,21 @@ msgstr "Kedalaman Antrian"
msgid "Quiet Hours"
msgstr "Jam Tenang"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Baca"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Diterima"
@@ -1369,6 +1454,7 @@ msgstr "Diterima"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Muat ulang"
@@ -1410,6 +1496,8 @@ msgstr "Restart"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Waktu Mulai"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Ini akan menghapus secara permanen semua record yang dipilih dari databa
msgid "Throughput of {extraFsName}"
msgstr "Throughput dari {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Throughput dari filesystem root"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Dipicu ketika pemeriksaan kesehatan (health check) kontainer Docker melaporkan kondisi tidak sehat"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Dipicu ketika baterai turun di bawah ambang batas"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Tidak diketahui"
@@ -1851,6 +1945,7 @@ msgstr "Perbarui"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Diperbarui"
@@ -1868,20 +1963,25 @@ msgstr "Unggah"
msgid "Uptime"
msgstr "Waktu aktif"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Penggunaan"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Penggunaan partisi root"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Digunakan"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Perintah Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Tulis"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Konfigurasi YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Azioni"
@@ -191,6 +196,11 @@ msgstr "Sei sicuro?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Media"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Funzionalità"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capacità"
@@ -380,8 +391,14 @@ msgstr "Controlla il tuo servizio di monitoraggio"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Clicca su un sistema per visualizzare più informazioni."
@@ -559,14 +580,30 @@ msgstr "Creato"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Download cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Upload cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "In scarica"
msgid "Disk"
msgstr "Disco"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "I/O Disco"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Unità disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Fallito"
msgid "Failed Attributes:"
msgstr "Attributi falliti:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Autenticazione fallita"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Per <0>{min}</0> {min, plural, one {minuto} other {minuti}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Griglia"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Stato"
@@ -1101,6 +1146,10 @@ msgstr "Utilizzo della memoria dei container"
msgid "Model"
msgstr "Modello"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unità rete"
msgid "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/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Nessun attributo S.M.A.R.T. disponibile per questo dispositivo."
msgid "No systems found."
msgstr "Nessun sistema trovato."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notifiche"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open 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"
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
msgid "Port"
msgstr "Porta"
@@ -1354,14 +1432,21 @@ msgstr "Profondità coda"
msgid "Quiet Hours"
msgstr "Ore silenziose"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lettura"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Ricevuto"
@@ -1369,6 +1454,7 @@ msgstr "Ricevuto"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Aggiorna"
@@ -1410,6 +1496,8 @@ msgstr "Riavvii"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Ora di inizio"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Stato"
@@ -1683,9 +1772,9 @@ msgstr "Questo eliminerà permanentemente tutti i record selezionati dal databas
msgid "Throughput of {extraFsName}"
msgstr "Throughput di {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Throughput del filesystem root"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker 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"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Attiva quando la carica della batteria scende sotto una soglia"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universale"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Sconosciuta"
@@ -1851,6 +1945,7 @@ msgstr "Aggiorna"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Aggiornato"
@@ -1868,20 +1963,25 @@ msgstr "Carica"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Utilizzo"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Utilizzo della partizione root"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Utilizzato"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Comando Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Scrittura"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Configurazione YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# スレッド} other {# スレッド}}"
@@ -93,6 +97,7 @@ msgstr "5分"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "アクション"
@@ -191,6 +196,11 @@ msgstr "よろしいですか?"
msgid "Automatic copy requires a secure context."
msgstr "自動コピーには安全なコンテキストが必要です。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "機能"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "監視サービスを確認する"
msgid "Check your notification service"
msgstr "通知サービスを確認してください"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "クリア"
@@ -394,6 +411,10 @@ msgstr "詳細情報を表示するにはコンテナをクリックしてくだ
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "システムをクリックして詳細を表示します。"
@@ -559,14 +580,30 @@ msgstr "作成日"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "累積ダウンロード"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "累積アップロード"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk"
msgstr "ディスク"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "ディスクI/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "ディスク単位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:"
msgstr "失敗した属性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "認証に失敗しました"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {分} other {分}}の間"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "グリッド"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "ヘルス"
@@ -1101,6 +1146,10 @@ msgstr "コンテナのメモリ使用量"
msgid "Model"
msgstr "モデル"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "ネットワーク単位"
msgid "No"
msgstr "いいえ"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "このデバイスのS.M.A.R.T.属性は利用できません。"
msgid "No systems found."
msgstr "システムが見つかりませんでした。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "メニューを開く"
@@ -1309,6 +1379,14 @@ msgstr "手順については<0>ドキュメント</0>を参照してくださ
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "ポート"
@@ -1354,14 +1432,21 @@ msgstr "キューの深さ"
msgid "Quiet Hours"
msgstr "サイレント時間"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "読み取り"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "受信"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "更新"
@@ -1410,6 +1496,8 @@ msgstr "再起動"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "状態"
@@ -1683,9 +1772,9 @@ msgstr "これにより、選択したすべてのレコードがデータベー
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}のスループット"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "ルートファイルシステムのスループット"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5分間の負荷平均がしきい値を超えたときにトリガーされます"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Dockerコンテナのヘルスチェックが異常を報告したときにトリガーされます"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "センサーがしきい値を超えたときにトリガーされます"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "バッテリーの充電量がしきい値を下回ったときにトリガーされます"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "ユニバーサルトークン"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "不明"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "更新済み"
@@ -1868,20 +1963,25 @@ msgstr "アップロード"
msgid "Uptime"
msgstr "稼働時間"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "使用量"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "ルートパーティションの使用量"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "使用中"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows コマンド"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "書き込み"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML設定"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 스레드} other {# 스레드}}"
@@ -93,6 +97,7 @@ msgstr "5분"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "작업"
@@ -191,6 +196,11 @@ msgstr "확실합니까?"
msgid "Automatic copy requires a secure context."
msgstr "자동 복사는 안전한 컨텍스트가 필요합니다."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "평균"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "권한"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "용량"
@@ -380,8 +391,14 @@ msgstr "모니터링 서비스 확인"
msgid "Check your notification service"
msgstr "알림 서비스를 확인하세요."
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "지우기"
@@ -394,6 +411,10 @@ msgstr "더 많은 정보를 보려면 컨테이너를 클릭하세요."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "더 많은 정보를 보려면 시스템을 클릭하세요."
@@ -559,14 +580,30 @@ msgstr "생성됨"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "누적 다운로드"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "누적 업로드"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "방전 중"
msgid "Disk"
msgstr "디스크"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "디스크 I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "디스크 단위"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "실패"
msgid "Failed Attributes:"
msgstr "실패한 속성:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "인증 실패"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {분} other {분}} 동안"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "그리드"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "상태"
@@ -1101,6 +1146,10 @@ msgstr "컨테이너 메모리 사용량"
msgid "Model"
msgstr "모델"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "네트워크 단위"
msgid "No"
msgstr "아니오"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "이 장치에 사용할 수 있는 S.M.A.R.T. 속성이 없습니다."
msgid "No systems found."
msgstr "시스템을 찾을 수 없습니다."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "알림"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "메뉴 열기"
@@ -1309,6 +1379,14 @@ msgstr "사용법은 <0>문서</0>를 참조하세요."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "포트"
@@ -1354,14 +1432,21 @@ msgstr "대기열 깊이"
msgid "Quiet Hours"
msgstr "조용한 시간"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "읽기"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "수신됨"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "새로고침"
@@ -1410,6 +1496,8 @@ msgstr "재시작 횟수"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "시작 시간"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "상태"
@@ -1683,9 +1772,9 @@ msgstr "선택한 모든 레코드를 데이터베이스에서 영구적으로
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}의 처리량"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "루트 파일 시스템의 처리량"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "5분 부하 평균이 임계값을 초과하면 트리거됩니다."
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Docker 컨테이너의 상태 확인(health check)에서 비정상 상태가 보고되면 트리거됩니다"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "센서가 임계값을 초과할 때 트리거됩니다."
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "배터리 충전량이 임계값 아래로 떨어질 때 트리거됩니다."
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "범용 토큰"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "알 수 없음"
@@ -1851,6 +1945,7 @@ msgstr "업데이트"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "업데이트됨"
@@ -1868,20 +1963,25 @@ msgstr "업로드"
msgid "Uptime"
msgstr "가동시간"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "사용량"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "루트 파티션의 사용량"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "사용됨"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows 명령어"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "쓰기"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML 구성"
+120 -13
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Acties"
@@ -191,6 +196,11 @@ msgstr "Weet je het zeker?"
msgid "Automatic copy requires a secure 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
msgid "Average"
msgstr "Gemiddelde"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Mogelijkheden"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capaciteit"
@@ -380,8 +391,14 @@ msgstr "Controleer je monitoringservice"
msgid "Check your notification service"
msgstr "Controleer je meldingsservice"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klik op een systeem om meer informatie te bekijken."
@@ -559,14 +580,30 @@ msgstr "Aangemaakt"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Cumulatieve download"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Cumulatieve upload"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Ontladen"
msgid "Disk"
msgstr "Schijf"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Schijf I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Schijf eenheid"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislukt"
msgid "Failed Attributes:"
msgstr "Mislukte kenmerken:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Authenticatie mislukt"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Voor <0>{min}</0> {min, plural, one {minuut} other {minuten}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Raster"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Gezondheid"
@@ -1101,6 +1146,10 @@ msgstr "Geheugengebruik van containers"
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Netwerk eenheid"
msgid "No"
msgstr "Nee"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Geen S.M.A.R.T. kenmerken beschikbaar voor dit apparaat."
msgid "No systems found."
msgstr "Geen systemen gevonden."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Meldingen"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Menu openen"
@@ -1309,6 +1379,14 @@ msgstr "Bekijk <0>de documentatie</0> voor instructies."
msgid "Please sign in to your 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
msgid "Port"
msgstr "Poort"
@@ -1354,14 +1432,21 @@ msgstr "Wachtrijdiepte"
msgid "Quiet Hours"
msgstr "Stille uren"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lezen"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Ontvangen"
@@ -1369,6 +1454,7 @@ msgstr "Ontvangen"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Vernieuwen"
@@ -1410,6 +1496,8 @@ msgstr "Herstarten"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttijd"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Status"
@@ -1683,9 +1772,9 @@ msgstr "Dit zal alle geselecteerde records verwijderen uit de database."
msgid "Throughput of {extraFsName}"
msgstr "Doorvoer van {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Doorvoer van het root bestandssysteem"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Triggert wanneer de health check van een Docker-container ongezond rapporteert"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Triggert wanneer de batterijlading onder een drempelwaarde daalt"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universele token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Onbekend"
@@ -1851,6 +1945,7 @@ msgstr "Bijwerken"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Bijgewerkt"
@@ -1868,20 +1963,25 @@ msgstr "Uploaden"
msgid "Uptime"
msgstr "Actief"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Gebruik"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Gebruik van root-partitie"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Gebruikt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows-commando"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Schrijven"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML Configuratie"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Handlinger"
@@ -191,6 +196,11 @@ msgstr "Er du sikker?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Gjennomsnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Kapabiliteter"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapasitet"
@@ -380,8 +391,14 @@ msgstr "Sjekk overvåkingstjenesten din"
msgid "Check your notification service"
msgstr "Sjekk din meldingstjeneste"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klikk på et system for å se mer informasjon."
@@ -559,14 +580,30 @@ msgstr "Opprettet"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativ nedlasting"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativ opplasting"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Lader ut"
msgid "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
msgid "Disk unit"
msgstr "Diskenhet"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Mislyktes"
msgid "Failed Attributes:"
msgstr "Mislykkede attributter:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Autentisering mislyktes"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "I <0>{min}</0> {min, plural, one {minutt} other {minutter}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rutenett"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Helse"
@@ -1101,6 +1146,10 @@ msgstr "Minnebruk for containere"
msgid "Model"
msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Nettverksenhet"
msgid "No"
msgstr "Nei"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Ingen S.M.A.R.T.-attributter tilgjengelig for denne enheten."
msgid "No systems found."
msgstr "Ingen systemer funnet."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Varslinger"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Åpne meny"
@@ -1309,6 +1379,14 @@ msgstr "Vennligst se <0>dokumentasjonen</0> for instrukser."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kødybde"
msgid "Quiet Hours"
msgstr "Stille timer"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Lesing"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Mottatt"
@@ -1369,6 +1454,7 @@ msgstr "Mottatt"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Oppdater"
@@ -1410,6 +1496,8 @@ msgstr "Omstarter"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Tilstand"
@@ -1683,9 +1772,9 @@ msgstr "Dette vil permanent slette alle valgte oppføringer fra databasen."
msgid "Throughput of {extraFsName}"
msgstr "Gjennomstrømning av {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Gjennomstrømning av rot-filsystemet"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Slår inn når helsesjekken til en Docker-container rapporterer usunn"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Utløses når batterilading faller under en terskel"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universal token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Ukjent"
@@ -1851,6 +1945,7 @@ msgstr "Oppdater"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Oppdatert"
@@ -1868,20 +1963,25 @@ msgstr "Last opp"
msgid "Uptime"
msgstr "Oppetid"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Forbruk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Forbruk av rot-partisjon"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Brukt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows-kommando"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Skriving"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML Oppsett"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Akcje"
@@ -191,6 +196,11 @@ msgstr "Czy jesteś pewien?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Średnia"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Możliwości"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Pojemność"
@@ -380,8 +391,14 @@ msgstr "Sprawdź usługę monitorowania"
msgid "Check your notification service"
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/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
msgid "Clear"
msgstr "Wyczyść"
@@ -394,6 +411,10 @@ msgstr "Wybierz kontener, aby wyświetlić więcej informacji."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Wybierz system, aby wyświetlić więcej informacji."
@@ -559,14 +580,30 @@ msgstr "Utworzono"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Pobieranie łącznie"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Wysyłanie łącznie"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Rozładowuje się"
msgid "Disk"
msgstr "Dysk"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Dysk I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Jednostka dysku"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Nieudane"
msgid "Failed Attributes:"
msgstr "Nieudane atrybuty:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Błąd autoryzacji"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Na <0>{min}</0> {min, plural, one {minutę} other {minut}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Siatka"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Kondycja"
@@ -1101,6 +1146,10 @@ msgstr "Zużycie pamięci przez kontenery"
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Jednostka sieciowa"
msgid "No"
msgstr "Nie"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Nie znaleziono systemów."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Powiadomienia"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Otwórz menu"
@@ -1309,6 +1379,14 @@ msgstr "Proszę zapoznać się z <0>dokumentacją</0>."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Głębokość kolejki"
msgid "Quiet Hours"
msgstr "Godziny ciszy"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Odczyt"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Otrzymane"
@@ -1369,6 +1454,7 @@ msgstr "Otrzymane"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Odśwież"
@@ -1410,6 +1496,8 @@ msgstr "Uruchamia ponownie"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Czas rozpoczęcia"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Stan"
@@ -1683,9 +1772,9 @@ msgstr "Spowoduje to trwałe usunięcie wszystkich zaznaczonych rekordów z bazy
msgid "Throughput of {extraFsName}"
msgstr "Przepustowość {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Przepustowość głównego systemu plików"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Wyzwalane, gdy kontrola kondycji (health check) kontenera Docker zgłasza stan niesprawny"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Uruchamia się, gdy poziom baterii spadnie poniżej wybranej wartości"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Uniwersalny token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Nieznana"
@@ -1851,6 +1945,7 @@ msgstr "Aktualizuj"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Zaktualizowano"
@@ -1868,20 +1963,25 @@ msgstr "Wysyłanie"
msgid "Uptime"
msgstr "Czas pracy"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Wykorzystanie"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Użycie partycji głównej"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Używane"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Polecenie Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Zapis"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Konf. YAML"
+120 -13
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}}"
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
msgid "{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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Ações"
@@ -191,6 +196,11 @@ msgstr "Tem certeza?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Média"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Capacidades"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Capacidade"
@@ -380,8 +391,14 @@ msgstr "Verifique o seu serviço de monitorização"
msgid "Check your notification service"
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/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
msgid "Clear"
msgstr "Limpar"
@@ -394,6 +411,10 @@ msgstr "Clique num contentor para ver mais informações."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Clique em um sistema para ver mais informações."
@@ -559,14 +580,30 @@ msgstr "Criado"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Download cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Upload cumulativo"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Descarregando"
msgid "Disk"
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
msgid "Disk unit"
msgstr "Unidade de disco"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Falhou"
msgid "Failed Attributes:"
msgstr "Atributos com Falha:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Falha na autenticação"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Por <0>{min}</0> {min, plural, one {minuto} other {minutos}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Grade"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Saúde"
@@ -1101,6 +1146,10 @@ msgstr "Utilização de memória dos contentores"
msgid "Model"
msgstr "Modelo"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Unidade de rede"
msgid "No"
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/systemd-table/systemd-table.tsx
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."
msgstr "Nenhum sistema encontrado."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Notificações"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open 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"
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
msgid "Port"
msgstr "Porta"
@@ -1354,14 +1432,21 @@ msgstr "Profundidade da fila"
msgid "Quiet Hours"
msgstr "Horas Silenciosas"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Ler"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Recebido"
@@ -1369,6 +1454,7 @@ msgstr "Recebido"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Atualizar"
@@ -1410,6 +1496,8 @@ msgstr "Reinícios"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Hora de Início"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Estado"
@@ -1683,9 +1772,9 @@ msgstr "Isso excluirá permanentemente todos os registros selecionados do banco
msgid "Throughput of {extraFsName}"
msgstr "Taxa de transferência de {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Taxa de transferência do sistema de arquivos raiz"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker 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"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Dispara quando a carga da bateria cai abaixo de um limite"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token universal"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Desconhecida"
@@ -1851,6 +1945,7 @@ msgstr "Atualizar"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Atualizado"
@@ -1868,20 +1963,25 @@ msgstr "Carregar"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Uso"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Uso da partição raiz"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Usado"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Comando Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Escrever"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Configuração YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# поток} few {# потока} many {# потоков} other {# потоков}}"
@@ -93,6 +97,7 @@ msgstr "5 мин"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Действия"
@@ -191,6 +196,11 @@ msgstr "Вы уверены?"
msgid "Automatic copy requires a secure context."
msgstr "Автоматическое копирование требует безопасного контекста."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Среднее"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Возможности"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Емкость"
@@ -380,8 +391,14 @@ msgstr "Проверьте ваш сервис мониторинга"
msgid "Check your notification service"
msgstr "Проверьте ваш сервис уведомлений"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Очистить"
@@ -394,6 +411,10 @@ msgstr "Нажмите на контейнер для просмотра доп
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Нажмите на систему для просмотра дополнительной информации."
@@ -559,14 +580,30 @@ msgstr "Создано"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Совокупная загрузка"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Совокупная отдача"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Разряжается"
msgid "Disk"
msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Дисковый ввод/вывод"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Единицы измерения дисковой активности"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неудачно"
msgid "Failed Attributes:"
msgstr "Неудачные атрибуты:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Не удалось аутентифицировать"
@@ -839,6 +875,8 @@ msgstr "Вентиляторы"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "На <0>{min}</0> {min, plural, one {минуту} other {минут}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Сетка"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Здоровье"
@@ -1101,6 +1146,10 @@ msgstr "Использование памяти контейнерами"
msgid "Model"
msgstr "Модель"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Единицы измерения скорости сети"
msgid "No"
msgstr "Нет"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Для этого устройства нет доступных атр
msgid "No systems found."
msgstr "Системы не найдены."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Уведомления"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Открыть меню"
@@ -1309,6 +1379,14 @@ msgstr "Пожалуйста, смотрите <0>документацию</0>
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Глубина очереди"
msgid "Quiet Hours"
msgstr "Тихие часы"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Чтение"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Получено"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "Обновить"
@@ -1410,6 +1496,8 @@ msgstr "Перезапуски"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Время начала"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Состояние"
@@ -1683,9 +1772,9 @@ msgstr "Это навсегда удалит все выбранные запи
msgid "Throughput of {extraFsName}"
msgstr "Пропускная способность {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Пропускная способность корневой файловой системы"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Срабатывает, когда средняя загрузка за 5 минут превышает порог"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Срабатывает, когда проверка состояния (health check) Docker-контейнера сообщает статус нездоровый"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "Срабатывает, когда любой датчик превышает порог"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "Срабатывает, когда заряд батареи опускается ниже порога"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универсальный токен"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Неизвестно"
@@ -1851,6 +1945,7 @@ msgstr "Обновить"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Обновлено"
@@ -1868,20 +1963,25 @@ msgstr "Отдача"
msgid "Uptime"
msgstr "Время работы"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Использование"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Использование корневого раздела"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Использовано"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Команда Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Запись"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML конфиг"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Dejanja"
@@ -191,6 +196,11 @@ msgstr "Ali ste prepričani?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Povprečno"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Zmožnosti"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapaciteta"
@@ -380,8 +391,14 @@ msgstr "Preverite svojo storitev za spremljanje"
msgid "Check your notification service"
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/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
msgid "Clear"
msgstr "Počisti"
@@ -394,6 +411,10 @@ msgstr "Kliknite na kontejner za več informacij."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Kliknite na sistem za več informacij."
@@ -559,14 +580,30 @@ msgstr "Ustvarjeno"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativno prenos"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativno nalaganje"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Prazni se"
msgid "Disk"
msgstr ""
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk V/I"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Enota diska"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Neuspešno"
msgid "Failed Attributes:"
msgstr "Neuspeli atributi:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Preverjanje pristnosti ni uspelo"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Za <0>{min}</0> {min, plural, one {minuto} other {minut}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Mreža"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Zdravje"
@@ -1101,6 +1146,10 @@ msgstr "Poraba pomnilnika vsebnikov"
msgid "Model"
msgstr ""
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Enota omrežja"
msgid "No"
msgstr "Ne"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Ne najdem sistema."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Obvestila"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Odpri menu"
@@ -1309,6 +1379,14 @@ msgstr "Za navodila glejte <0>dokumentacijo</0>."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Vrata"
@@ -1354,14 +1432,21 @@ msgstr "Globina čakalne vrste"
msgid "Quiet Hours"
msgstr "Tihi čas"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Preberano"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Prejeto"
@@ -1369,6 +1454,7 @@ msgstr "Prejeto"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Osveži"
@@ -1410,6 +1496,8 @@ msgstr "Ponovni zagoni"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Čas začetka"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Stanje"
@@ -1683,9 +1772,9 @@ msgstr "To bo trajno izbrisalo vse izbrane zapise iz zbirke podatkov."
msgid "Throughput of {extraFsName}"
msgstr "Prepustnost {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Prepustnost korenskega datotečnega sistema"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Sproži se, ko preverjanje zdravja vsebnika Docker javi stanje nezdravo"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Sproži se, ko napolnjenost baterije pade pod prag"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Univerzalni žeton"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Neznana"
@@ -1851,6 +1945,7 @@ msgstr "Posodobi"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Posodobljeno"
@@ -1868,20 +1963,25 @@ msgstr "Naloži"
msgid "Uptime"
msgstr "Čas delovanja"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Uporaba"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Uporaba korenske particije"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Uporabljeno"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Ukaz Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Pisanje"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML nastaviitev"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Акције"
@@ -191,6 +196,11 @@ msgstr "Да ли сте сигурни?"
msgid "Automatic copy requires a secure context."
msgstr "Аутоматско копирање захтева безбедан контекст."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Просек"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Могућности"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Капацитет"
@@ -380,8 +391,14 @@ msgstr "Proverite svoju uslugu monitoringa"
msgid "Check your notification service"
msgstr "Проверите ваш сервис за обавештавања"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Обриши"
@@ -394,6 +411,10 @@ msgstr "Кликните на контејнер да видите више ин
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Кликните на систем да видите више информација."
@@ -559,14 +580,30 @@ msgstr "Креирано"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Кумулативно преузимање"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Кумулативно отпремање"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Празни се"
msgid "Disk"
msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Диск I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Диск јединица"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Неуспело"
msgid "Failed Attributes:"
msgstr "Неуспели атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Неуспела аутентификација"
@@ -839,6 +875,8 @@ msgstr "Вентилатори"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "За <0>{min}</0> {min, plural, one {минуту} few {минута} ot
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Мрежа"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Здравље"
@@ -1101,6 +1146,10 @@ msgstr "Коришћење меморије контејнера"
msgid "Model"
msgstr "Модел"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Мрежна јединица"
msgid "No"
msgstr "Не"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Нема доступних S.M.A.R.T. атрибута за овај у
msgid "No systems found."
msgstr "Нису пронађени системи."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Обавештења"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Отвори мени"
@@ -1309,6 +1379,14 @@ msgstr "Молимо вас погледајте <0>документацију</
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Дубина реда"
msgid "Quiet Hours"
msgstr "Тихи сати"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Читање"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Примљено"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "Освежи"
@@ -1410,6 +1496,8 @@ msgstr "Поновна покретања"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Време почетка"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Стање"
@@ -1683,9 +1772,9 @@ msgstr "Ово ће трајно избрисати све изабране за
msgid "Throughput of {extraFsName}"
msgstr "Проток {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Проток root фајл система"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Окида се када просечно оптерећење од 5 минута премаши праг"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Окида се када провера здравља Docker контејнера пријави да је нездрав"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "Окида се када било који сензор премаши праг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "Pokreće se kada nivo baterije padne ispod praga"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Универзални токен"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Непознато"
@@ -1851,6 +1945,7 @@ msgstr "Ажурирај"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Ажурирано"
@@ -1868,20 +1963,25 @@ msgstr "Отпреми"
msgid "Uptime"
msgstr "Време рада"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Употреба"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Употреба root партиције"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Коришћено"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows команда"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Писање"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML конфигурација"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Åtgärder"
@@ -191,6 +196,11 @@ msgstr "Är du säker?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Genomsnitt"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Förmågor"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapacitet"
@@ -380,8 +391,14 @@ msgstr "Kontrollera din övervakningstjänst"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Klicka på ett system för att visa mer information."
@@ -559,14 +580,30 @@ msgstr "Skapad"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kumulativ nedladdning"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kumulativ uppladdning"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Urladdar"
msgid "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
msgid "Disk unit"
msgstr "Diskenhet"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Misslyckades"
msgid "Failed Attributes:"
msgstr "Misslyckade attribut:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Autentisering misslyckades"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Under <0>{min}</0> {min, plural, one {minut} other {minuter}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Rutnät"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Hälsa"
@@ -1101,6 +1146,10 @@ msgstr "Minnesanvändning för containrar"
msgid "Model"
msgstr "Modell"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Nätverksenhet"
msgid "No"
msgstr "Nej"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
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."
msgstr "Inga system hittades."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Aviseringar"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Öppna menyn"
@@ -1309,6 +1379,14 @@ msgstr "Vänligen se <0>dokumentationen</0> för instruktioner."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kö-djup"
msgid "Quiet Hours"
msgstr "Tysta timmar"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Läs"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Mottaget"
@@ -1369,6 +1454,7 @@ msgstr "Mottaget"
#: 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/zfs-table.tsx
msgid "Refresh"
msgstr "Uppdatera"
@@ -1410,6 +1496,8 @@ msgstr "Omstarter"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Starttid"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Tillstånd"
@@ -1683,9 +1772,9 @@ msgstr "Detta kommer permanent att ta bort alla valda poster från databasen."
msgid "Throughput of {extraFsName}"
msgstr "Genomströmning av {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Genomströmning av rotfilsystemet"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Utlöses när en Docker-containers hälsokontroll rapporterar osund"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Utlöses när batteriladdningen sjunker under ett tröskelvärde"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Universell nyckel"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Okänd"
@@ -1851,6 +1945,7 @@ msgstr "Uppdatera"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Uppdaterad"
@@ -1868,20 +1963,25 @@ msgstr "Ladda upp"
msgid "Uptime"
msgstr "Drifttid"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Användning"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Användning av rotpartitionen"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Använt"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows-kommando"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Skriv"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML-konfiguration"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Eylemler"
@@ -191,6 +196,11 @@ msgstr "Emin misiniz?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "Ortalama"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Yetenekler"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Kapasite"
@@ -380,8 +391,14 @@ msgstr "İzleme servisinizi kontrol edin"
msgid "Check your notification service"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Daha fazla bilgi görmek için bir sisteme tıklayın."
@@ -559,14 +580,30 @@ msgstr "Oluşturuldu"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Kümülatif İndirme"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Kümülatif Yükleme"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Boşalıyor"
msgid "Disk"
msgstr "Depolama alanı"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Disk G/Ç"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Disk birimi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Başarısız"
msgid "Failed Attributes:"
msgstr "Başarısız Özellikler:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
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/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "<0>{min}</0> {min, plural, one {dakika} other {dakika}} için"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Izgara"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Sağlık"
@@ -1101,6 +1146,10 @@ msgstr "Konteynerlerin bellek kullanımı"
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Ağ birimi"
msgid "No"
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/systemd-table/systemd-table.tsx
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."
msgstr "Sistem bulunamadı."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Bildirimler"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
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"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "Kuyruk Derinliği"
msgid "Quiet Hours"
msgstr "Sessiz Saatler"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Oku"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Yenile"
@@ -1410,6 +1496,8 @@ msgstr "Yeniden başlatmalar"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Başlangıç Saati"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Durum"
@@ -1683,9 +1772,9 @@ msgstr "Bu, seçilen tüm kayıtları veritabanından kalıcı olarak silecektir
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName} verimliliği"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Kök dosya sisteminin verimliliği"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Bir Docker konteynerinin sağlık kontrolü sağlıksız durumunu bildirdiğinde tetiklenir"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
msgstr "Pil şarjı bir eşiğin altına düştüğünde tetiklenir"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Evrensel token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Bilinmiyor"
@@ -1851,6 +1945,7 @@ msgstr "Güncelle"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Güncellendi"
@@ -1868,20 +1963,25 @@ msgstr "Yükle"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Kullanım"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Kök bölümün kullanımı"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Kullanıldı"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows komutu"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Yaz"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML Yapılandırması"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# потік} few {# потоки} many {# потоків} other {# потоків}}"
@@ -93,6 +97,7 @@ msgstr "5 хв"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Дії"
@@ -191,6 +196,11 @@ msgstr "Ви впевнені?"
msgid "Automatic copy requires a secure context."
msgstr "Автоматичне копіювання вимагає безпечного контексту."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Середнє"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Можливості"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Ємність"
@@ -380,8 +391,14 @@ msgstr "Перевірте ваш сервіс моніторингу"
msgid "Check your notification service"
msgstr "Перевірте ваш сервіс сповіщень"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Очистити"
@@ -394,6 +411,10 @@ msgstr "Натисніть на контейнер, щоб переглянут
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Натисніть на систему, щоб переглянути більше інформації."
@@ -559,14 +580,30 @@ msgstr "Створено"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Кумулятивне завантаження"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Кумулятивне відвантаження"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Розряджається"
msgid "Disk"
msgstr "Диск"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Дисковий ввід/вивід"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Одиниця виміру диска"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Не вдалося"
msgid "Failed Attributes:"
msgstr "Невдалі атрибути:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Не вдалося автентифікувати"
@@ -839,6 +875,8 @@ msgstr "Вентилятори"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Протягом <0>{min}</0> {min, plural, one {хвилини} other {
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Сітка"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Здоров’я"
@@ -1101,6 +1146,10 @@ msgstr "Використання пам’яті контейнерами"
msgid "Model"
msgstr "Модель"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Одиниця виміру мережі"
msgid "No"
msgstr "Ні"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "Для цього пристрою немає доступних атр
msgid "No systems found."
msgstr "Систем не знайдено."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Сповіщення"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Відкрити меню"
@@ -1309,6 +1379,14 @@ msgstr "Будь ласка, перегляньте <0>документацію<
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Порт"
@@ -1354,14 +1432,21 @@ msgstr "Глибина черги"
msgid "Quiet Hours"
msgstr "Тихі години"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Читання"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "Отримано"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "Оновити"
@@ -1410,6 +1496,8 @@ msgstr "Перезапуски"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Час початку"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Стан"
@@ -1683,9 +1772,9 @@ msgstr "Це назавжди видалить усі вибрані запис
msgid "Throughput of {extraFsName}"
msgstr "Пропускна здатність {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Пропускна здатність кореневої файлової системи"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "Спрацьовує, коли середнє навантаження за 5 хвилин перевищує поріг"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "Спрацьовує, коли перевірка стану (health check) Docker-контейнера повідомляє про нездоровий стан"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "Спрацьовує, коли будь-який датчик перевищує поріг"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "Спрацьовує, коли заряд батареї опускається нижче порогу"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Універсальний токен"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Невідомо"
@@ -1851,6 +1945,7 @@ msgstr "Оновити"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Оновлено"
@@ -1868,20 +1963,25 @@ msgstr "Відвантажити"
msgid "Uptime"
msgstr "Час роботи"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Використання"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Використання кореневого розділу"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Використано"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Команда Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Запис"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Конфігурація YAML"
+150 -11
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, other {# ip}}"
@@ -88,6 +92,7 @@ msgstr "5 daq"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Amallar"
@@ -186,6 +191,11 @@ msgstr "Ishonchingiz komilmi?"
msgid "Automatic copy requires a secure context."
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
msgid "Average"
msgstr "O'rtacha"
@@ -323,6 +333,7 @@ msgid "Capabilities"
msgstr "Imkoniyatlar"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "Sig'im"
@@ -375,8 +386,14 @@ msgstr "Monitoring xizmatingizni tekshiring"
msgid "Check your notification service"
msgstr "Bildirishnoma xizmatingizni tekshiring"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "Tozalash"
@@ -389,6 +406,10 @@ msgstr "Batafsil ma'lumot uchun konteynerni bosing."
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "Batafsil ma'lumot uchun tizimni bosing."
@@ -419,6 +440,14 @@ msgstr "Ziddiyatlar"
msgid "Connection is down"
msgstr "Ulanish uzildi"
#: src/lib/alerts.ts
msgid "Container"
msgstr ""
#: src/lib/alerts.ts
msgid "Container Health"
msgstr ""
#: src/components/routes/system.tsx
msgid "Containers"
msgstr "Konteynerlar"
@@ -502,10 +531,18 @@ msgstr "CPU"
msgid "CPU Cores"
msgstr "CPU yadrolar"
#: src/lib/alerts.ts
msgid "CPU I/O Wait"
msgstr ""
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "CPU Peak"
msgstr "CPU yuqori ko'rsatkichi"
#: src/lib/alerts.ts
msgid "CPU Steal Time"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx
msgid "CPU time"
msgstr "CPU vaqti"
@@ -538,14 +575,30 @@ msgstr "Yaratilgan"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "Jami yuklab olish"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "Jami yuklash"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -605,15 +658,10 @@ msgstr "Razryadlanmoqda"
msgid "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
msgid "Disk unit"
msgstr "Disk birligi"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -783,6 +831,10 @@ msgstr "Muvaffaqiyatsiz"
msgid "Failed Attributes:"
msgstr "Muvaffaqiyatsiz atributlar:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "Autentifikatsiya muvaffaqiyatsiz tugadi"
@@ -818,6 +870,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -839,6 +893,12 @@ msgstr "<0>{min}</0> {min, plural, other {daqiqa}} uchun"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -883,6 +943,7 @@ msgid "Grid"
msgstr "Grid"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Sog'lik"
@@ -1080,6 +1141,10 @@ msgstr ""
msgid "Model"
msgstr "Model"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1115,6 +1180,10 @@ msgstr "Tarmoq birligi"
msgid "No"
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/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1138,12 +1207,20 @@ msgstr "Ushbu qurilma uchun S.M.A.R.T. atributlari mavjud emas."
msgid "No systems found."
msgstr "Tizimlar topilmadi."
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Bildirishnomalar"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "Menyuni ochish"
@@ -1288,6 +1374,14 @@ msgstr "Ko'rsatmalar uchun <0>hujjatlarni</0> ko'ring."
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1333,14 +1427,21 @@ msgstr "Navbat chuqurligi"
msgid "Quiet Hours"
msgstr "Tinch soatlar"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "O'qish"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Yangilash"
@@ -1389,6 +1491,8 @@ msgstr "Qayta ishga tushirishlar"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1534,6 +1638,7 @@ msgstr "Boshlanish vaqti"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "Holat"
@@ -1662,9 +1767,9 @@ msgstr "Bu barcha tanlangan yozuvlarni ma'lumotlar bazasidan butunlay o'chiradi.
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName} ning o'tkazish qobiliyati"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Ildiz fayl tizimining o'tkazish qobiliyati"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
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
msgid "Triggers when any sensor exceeds a threshold"
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
msgid "Triggers when battery charge drops below a threshold"
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"
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
msgid "Triggers when CPU usage exceeds a threshold"
msgstr "CPU yuklanishi chegaradan oshganda ishga tushadi"
@@ -1774,6 +1895,10 @@ msgstr "Biron-bir disk ishlatilishi chegaradan oshganda ishga tushadi"
msgid "Type"
msgstr "Tur"
#: src/lib/alerts.ts
msgid "Unhealthy"
msgstr ""
#: src/components/systemd-table/systemd-table.tsx
msgid "Unit file"
msgstr "Birlik fayl"
@@ -1789,6 +1914,7 @@ msgid "Universal token"
msgstr "Universal token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "Noma'lum"
@@ -1814,6 +1940,7 @@ msgstr "Yangilash"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Yangilandi"
@@ -1831,20 +1958,25 @@ msgstr "Yuklash"
msgid "Uptime"
msgstr "Ishlash vaqti"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "Ishlatilishi"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Ildiz bo'limi ishlatilishi"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Ishlatilgan"
@@ -1918,14 +2050,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows buyrug'i"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Yozish"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML konfiguratsiya"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
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/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "Hành động"
@@ -191,6 +196,11 @@ msgstr "Bạn có chắc không?"
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."
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "Trung bình"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "Khả năng"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
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"
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/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
msgid "Clear"
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."
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
msgid "Click on a system to view more information."
msgstr "Nhấp vào hệ thống để xem thêm thông tin."
@@ -559,14 +580,30 @@ msgstr "Đã tạo"
msgid "Critical (%)"
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
msgid "Cumulative Download"
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
msgid "Cumulative Upload"
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
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "Đang xả"
msgid "Disk"
msgstr "Đĩa"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "Đĩa I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "Đơn vị đĩa"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "Thất bại"
msgid "Failed Attributes:"
msgstr "Thuộc tính thất bại:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
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/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "Trong <0>{min}</0> {min, plural, one {phút} other {phút}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "Lưới"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "Sức khỏe"
@@ -1101,6 +1146,10 @@ msgstr "Mức sử dụng bộ nhớ của các container"
msgid "Model"
msgstr "Mô hình"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "Đơn vị mạng"
msgid "No"
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/systemd-table/systemd-table.tsx
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."
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/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "Thông báo"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open 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"
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
msgid "Port"
msgstr "Cổng"
@@ -1354,14 +1432,21 @@ msgstr "Độ sâu hàng đợi"
msgid "Quiet Hours"
msgstr "Giờ yên tĩnh"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "Đọc"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Refresh"
msgstr "Làm mới"
@@ -1410,6 +1496,8 @@ msgstr "Khởi động lại"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "Thời gian bắt đầu"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
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}"
msgstr "Thông lượng của {extraFsName}"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Thông lượng của hệ thống tệp gốc"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
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"
#: src/lib/alerts.ts
msgid "Triggers when a Docker 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"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
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"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
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"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "Token chung"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
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/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "Đã cập nhật"
@@ -1868,20 +1963,25 @@ msgstr "Tải lên"
msgid "Uptime"
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/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
msgid "Usage"
msgstr "Sử dụng"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Sử dụng phân vùng gốc"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "Đã sử dụng"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Lệnh Windows"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "Ghi"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "Cấu hình YAML"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 线程} other {# 线程}}"
@@ -93,6 +97,7 @@ msgstr "5 分钟"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您确定吗?"
msgid "Automatic copy requires a secure context."
msgstr "自动复制所需的安全上下文。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "检查您的监控服务"
msgid "Check your notification service"
msgstr "检查您的通知服务"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "点击容器查看更多信息。"
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "点击系统查看更多信息。"
@@ -559,14 +580,30 @@ msgstr "创建时间"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "累计下载"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "累计上传"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放电中"
msgid "Disk"
msgstr "磁盘"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁盘 I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "磁盘单位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失败"
msgid "Failed Attributes:"
msgstr "失败属性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "认证失败"
@@ -839,6 +875,8 @@ msgstr "风扇"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持续<0>{min}</0> {min, plural, one {分钟} other {分钟}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "网格"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "健康"
@@ -1101,6 +1146,10 @@ msgstr "容器内存使用量"
msgid "Model"
msgstr "型号"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "网络单位"
msgid "No"
msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此设备没有可用的 S.M.A.R.T. 属性。"
msgid "No systems found."
msgstr "未找到系统。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "打开菜单"
@@ -1309,6 +1379,14 @@ msgstr "请参阅<0>文档</0>以获取说明。"
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "端口"
@@ -1354,14 +1432,21 @@ msgstr "队列深度"
msgid "Quiet Hours"
msgstr "静默时间"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "读取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "接收"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "刷新"
@@ -1410,6 +1496,8 @@ msgstr "重启次数"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "开始时间"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "状态"
@@ -1683,9 +1772,9 @@ msgstr "这将永久删除数据库中所有选定的记录。"
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的吞吐量"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "根文件系统的吞吐量"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "当 5 分钟内的平均负载超过阈值时触发"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "当 Docker 容器的健康检查报告不健康状态时触发"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "当任何传感器超过阈值时触发"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "当电池电量降至阈值以下时触发"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用令牌"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "更新于"
@@ -1868,20 +1963,25 @@ msgstr "上传"
msgid "Uptime"
msgstr "运行时间"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "使用"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "根分区的使用"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "已用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows 安装命令"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "写入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML 配置"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}"
@@ -93,6 +97,7 @@ msgstr "5 分鐘"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您確定嗎?"
msgid "Automatic copy requires a secure context."
msgstr "自動複製需要安全的上下文。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "檢查您的監控服務"
msgid "Check your notification service"
msgstr "檢查您的通知服務"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "點擊容器以查看更多資訊。"
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "點擊系統以查看更多資訊。"
@@ -559,14 +580,30 @@ msgstr "已建立"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "累計下載"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "累計上傳"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk"
msgstr "磁碟"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁碟 I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "磁碟單位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:"
msgstr "失敗屬性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "認證失敗"
@@ -839,6 +875,8 @@ msgstr ""
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持續<0>{min}</0> {min, plural, one {分鐘} other {分鐘}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "網格"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "健康狀態"
@@ -1101,6 +1146,10 @@ msgstr "容器記憶體使用量"
msgid "Model"
msgstr "型號"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "網路單位"
msgid "No"
msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此裝置沒有可用的 S.M.A.R.T. 屬性。"
msgid "No systems found."
msgstr "未找到系統。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "開啟選單"
@@ -1309,6 +1379,14 @@ msgstr "請參閱<0>文件</0>以取得說明。"
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "端口"
@@ -1354,14 +1432,21 @@ msgstr "隊列深度"
msgid "Quiet Hours"
msgstr "靜音時段"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "讀取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "接收"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "重新整理"
@@ -1410,6 +1496,8 @@ msgstr "重啟次數"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "狀態"
@@ -1683,9 +1772,9 @@ msgstr "這將從資料庫中永久刪除所有選定的記錄。"
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的吞吐量"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "根文件系統的吞吐量"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "當 5 分鐘平均負載超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "當 Docker 容器的健康檢查回報不健康狀態時觸發"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "當任何傳感器超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "當電池電量降至閾值以下時觸發"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用令牌"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "已更新"
@@ -1868,20 +1963,25 @@ msgstr "上傳"
msgid "Uptime"
msgstr "運行時間"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "使用"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "根分區的使用"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "已用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows 指令"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "寫入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML配置"
+120 -13
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}}"
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
msgid "{threads, plural, one {# thread} other {# threads}}"
msgstr "{threads, plural, one {# 執行緒} other {# 執行緒}}"
@@ -93,6 +97,7 @@ msgstr "5 分鐘"
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/settings/tokens-fingerprints.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Actions"
msgstr "操作"
@@ -191,6 +196,11 @@ msgstr "您確定嗎?"
msgid "Automatic copy requires a secure context."
msgstr "只有在受保護的環境(HTTPS)才能自動複製。"
#: src/components/routes/system/zfs-table.tsx
msgctxt "Disk space available"
msgid "Available"
msgstr ""
#: src/components/routes/system/chart-card.tsx
msgid "Average"
msgstr "平均"
@@ -328,6 +338,7 @@ msgid "Capabilities"
msgstr "能力"
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Capacity"
msgstr "容量"
@@ -380,8 +391,14 @@ msgstr "檢查您的監控服務"
msgid "Check your notification service"
msgstr "檢查您的通知服務"
#: src/components/routes/system/zfs-table.tsx
msgid "Checksum errors"
msgstr ""
#: src/components/containers-table/containers-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
msgid "Clear"
msgstr "清除"
@@ -394,6 +411,10 @@ msgstr "點擊容器以查看更多資訊。"
msgid "Click on a device to view more information."
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
msgid "Click on a system to view more information."
msgstr "點擊系統以查看更多資訊。"
@@ -559,14 +580,30 @@ msgstr "已建立"
msgid "Critical (%)"
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
msgid "Cumulative Download"
msgstr "累計下載"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Read"
msgstr ""
#: src/components/routes/system/network-sheet.tsx
msgid "Cumulative Upload"
msgstr "累計上傳"
#: src/components/routes/system/disk-io-sheet.tsx
msgid "Cumulative Write"
msgstr ""
#. Context: Battery state
#. Context: Battery state
#: src/components/routes/system/charts/sensor-charts.tsx
@@ -626,15 +663,10 @@ msgstr "放電中"
msgid "Disk"
msgstr "磁碟"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Disk I/O"
msgstr "磁碟 I/O"
#: src/components/routes/settings/general.tsx
msgid "Disk unit"
msgstr "磁碟單位"
#: src/components/routes/system/charts/disk-charts.tsx
#: src/components/routes/system/charts/disk-charts.tsx
#: src/lib/alerts.ts
msgid "Disk Usage"
@@ -804,6 +836,10 @@ msgstr "失敗"
msgid "Failed Attributes:"
msgstr "失敗屬性:"
#: src/lib/alerts.ts
msgid "Failed Services"
msgstr ""
#: src/lib/api.ts
msgid "Failed to authenticate"
msgstr "認證失敗"
@@ -839,6 +875,8 @@ msgstr "風扇"
#: src/components/routes/settings/alerts-history-data-table.tsx
#: src/components/routes/system/chart-card.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/systems-table/systems-table.tsx
msgid "Filter..."
@@ -860,6 +898,12 @@ msgstr "持續<0>{min}</0> {min, plural, one {分鐘} other {分鐘}}"
msgid "Forgot password?"
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/routes/settings/tokens-fingerprints.tsx
msgctxt "Button to copy install command"
@@ -904,6 +948,7 @@ msgid "Grid"
msgstr "網格"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/zfs-table.tsx
msgid "Health"
msgstr "健康狀態"
@@ -1101,6 +1146,10 @@ msgstr "容器的記憶體使用量"
msgid "Model"
msgstr "型號"
#: src/components/routes/system/zfs-table.tsx
msgid "Mountpoint"
msgstr ""
#: src/components/add-system.tsx
#: src/components/alerts-history-columns.tsx
#: src/components/containers-table/containers-table-columns.tsx
@@ -1136,6 +1185,10 @@ msgstr "網路單位"
msgid "No"
msgstr "否"
#: src/components/routes/system/zfs-table.tsx
msgid "No detail data for this pool."
msgstr ""
#: src/components/command-palette.tsx
#: src/components/systemd-table/systemd-table.tsx
msgid "No results found."
@@ -1159,12 +1212,20 @@ msgstr "此裝置沒有可用的 S.M.A.R.T. 屬性。"
msgid "No systems found."
msgstr "找不到任何系統。"
#: src/components/routes/system/zfs-table.tsx
msgid "None"
msgstr ""
#: src/components/command-palette.tsx
#: src/components/routes/settings/layout.tsx
#: src/components/routes/settings/notifications.tsx
msgid "Notifications"
msgstr "通知"
#: src/lib/alerts.ts
msgid "Notifications may include recent container log excerpts."
msgstr ""
#: src/components/login/auth-form.tsx
msgid "OAuth 2 / OIDC support"
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."
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
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/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systems-table/systems-table-columns.tsx
msgid "Open menu"
msgstr "開啟選單"
@@ -1309,6 +1379,14 @@ msgstr "請參閱<0>文件</0>以取得說明。"
msgid "Please sign in to your account"
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
msgid "Port"
msgstr "Port"
@@ -1354,14 +1432,21 @@ msgstr "隊列深度"
msgid "Quiet Hours"
msgstr "靜音時段"
#. Disk read
#. Disk read
#: 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
msgid "Read"
msgstr "讀取"
#: src/components/routes/system/zfs-table.tsx
msgid "Read errors"
msgstr ""
#: src/components/routes/system/charts/network-charts.tsx
msgid "Received"
msgstr "接收"
@@ -1369,6 +1454,7 @@ 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/zfs-table.tsx
msgid "Refresh"
msgstr "重新整理"
@@ -1410,6 +1496,8 @@ msgstr "重啟次數"
msgid "Resume"
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
msgctxt "Root disk label"
msgid "Root"
@@ -1555,6 +1643,7 @@ msgstr "開始時間"
#. Context: alert state (active or resolved)
#: src/components/alerts-history-columns.tsx
#: src/components/routes/settings/quiet-hours.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "State"
msgstr "狀態"
@@ -1683,9 +1772,9 @@ msgstr "這將從資料庫中永久刪除所有選定的記錄。"
msgid "Throughput of {extraFsName}"
msgstr "{extraFsName}的傳輸速率"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Throughput of root filesystem"
msgstr "Root 檔案系統的傳輸速率"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Throughput of ZFS pool {poolName}"
msgstr ""
#: src/components/routes/settings/general.tsx
msgid "Time format"
@@ -1758,13 +1847,17 @@ msgid "Triggers when 5 minute load average exceeds a threshold"
msgstr "當 5 分鐘平均負載超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when a Docker container's health check reports unhealthy"
msgstr "當 Docker 容器的健康檢查回報不健康狀態時觸發"
msgid "Triggers when a container's health check reports unhealthy"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when any sensor exceeds a threshold"
msgstr "當任何感應器超過閾值時觸發"
#: src/lib/alerts.ts
msgid "Triggers when any systemd service enters the failed state"
msgstr ""
#: src/lib/alerts.ts
msgid "Triggers when battery charge drops below a threshold"
msgstr "當電池電量降至閾值以下時觸發"
@@ -1826,6 +1919,7 @@ msgid "Universal token"
msgstr "通用 Token"
#. Context: Battery state
#: src/components/routes/system/zfs-table.tsx
#: src/lib/i18n.ts
msgid "Unknown"
msgstr "未知"
@@ -1851,6 +1945,7 @@ msgstr "更新"
#: src/components/containers-table/containers-table-columns.tsx
#: src/components/routes/system/smart-table.tsx
#: src/components/routes/system/zfs-table.tsx
#: src/components/systemd-table/systemd-table-columns.tsx
msgid "Updated"
msgstr "已更新"
@@ -1868,20 +1963,25 @@ msgstr "上傳"
msgid "Uptime"
msgstr "運行時間"
#: 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/zfs-charts.tsx
#: src/components/routes/system/cpu-sheet.tsx
msgid "Usage"
msgstr "使用量"
#: src/components/routes/system/charts/disk-charts.tsx
msgid "Usage of root partition"
msgstr "Root 分區的使用量"
#: src/components/routes/system/charts/zfs-charts.tsx
msgid "Usage of ZFS pool {poolName}"
msgstr ""
#: 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"
msgstr "已使用"
@@ -1955,14 +2055,21 @@ msgctxt "Button to copy install command"
msgid "Windows command"
msgstr "Windows 指令"
#. Disk write
#. Disk write
#: 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
msgid "Write"
msgstr "寫入"
#: src/components/routes/system/zfs-table.tsx
msgid "Write errors"
msgstr ""
#: src/components/routes/settings/layout.tsx
msgid "YAML Config"
msgstr "YAML 設定檔"