mirror of
https://github.com/henrygd/beszel.git
synced 2026-08-19 00:37:48 +02:00
Compare commits
72 Commits
automation
...
l10n_main_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73ce72867c | ||
|
|
6449533687 | ||
|
|
f405c67935 | ||
|
|
03d3872803 | ||
|
|
ca12e63210 | ||
|
|
25a2e057b3 | ||
|
|
ac8ec0f4c2 | ||
|
|
0c87b943b9 | ||
|
|
4240927157 | ||
|
|
8333917b0e | ||
|
|
7e78bd2afc | ||
|
|
76671d32ab | ||
|
|
e2f47f2f7b | ||
|
|
106311339c | ||
|
|
58e1b601b5 | ||
|
|
e3d252457e | ||
|
|
da4aee9c3f | ||
|
|
acf17a2d53 | ||
|
|
584feac4e7 | ||
|
|
3900557bcc | ||
|
|
f4a8970d44 | ||
|
|
d3765015e6 | ||
|
|
878d465f24 | ||
|
|
956295bde1 | ||
|
|
7f338e3a53 | ||
|
|
03150dfeb5 | ||
|
|
8cc5cf2377 | ||
|
|
87e40e797b | ||
|
|
144ae59275 | ||
|
|
7966d1549c | ||
|
|
d2e750a726 | ||
|
|
552b162799 | ||
|
|
ca1113d029 | ||
|
|
873aedc27a | ||
|
|
1222a73b32 | ||
|
|
b5e4276c8e | ||
|
|
533c183fd2 | ||
|
|
2c1b4dd15d | ||
|
|
a67c5e1f8b | ||
|
|
43d39a5317 | ||
|
|
ae016ebfe7 | ||
|
|
a6163e0809 | ||
|
|
532e391398 | ||
|
|
1d2e714360 | ||
|
|
318f2328ef | ||
|
|
9731a74185 | ||
|
|
b1d3d6c7c4 | ||
|
|
08fc578dec | ||
|
|
b189aab61b | ||
|
|
5a70767bfe | ||
|
|
6072dd6071 | ||
|
|
001ed54d77 | ||
|
|
58c58072f7 | ||
|
|
1df49845ed | ||
|
|
965f313393 | ||
|
|
5790e00c2c | ||
|
|
30a57fcd3f | ||
|
|
b6c67a1b46 | ||
|
|
8b0b667559 | ||
|
|
5502112054 | ||
|
|
43faf7c5ea | ||
|
|
e31fd0ebe9 | ||
|
|
20a1f36ce5 | ||
|
|
fd2b0ba897 | ||
|
|
d6eddcc117 | ||
|
|
9578664bd4 | ||
|
|
6f3d77fb2e | ||
|
|
a8fdc2ca34 | ||
|
|
1ba9b46b85 | ||
|
|
2d30fd6ada | ||
|
|
b4ac1eef12 | ||
|
|
ebde392591 |
@@ -22,6 +22,9 @@ builds:
|
|||||||
- amd64
|
- amd64
|
||||||
- arm64
|
- arm64
|
||||||
- arm
|
- arm
|
||||||
|
goarm:
|
||||||
|
- "6"
|
||||||
|
- "7"
|
||||||
ignore:
|
ignore:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
goarch: arm64
|
goarch: arm64
|
||||||
@@ -39,8 +42,6 @@ builds:
|
|||||||
main: internal/cmd/agent/agent.go
|
main: internal/cmd/agent/agent.go
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=0
|
- CGO_ENABLED=0
|
||||||
ldflags:
|
|
||||||
- -s -w -X github.com/henrygd/beszel/internal/ghupdate.buildGOARM={{ .Arm }}
|
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
- darwin
|
- darwin
|
||||||
@@ -107,7 +108,6 @@ archives:
|
|||||||
{{ .Binary }}_
|
{{ .Binary }}_
|
||||||
{{- .Os }}_
|
{{- .Os }}_
|
||||||
{{- .Arch }}
|
{{- .Arch }}
|
||||||
{{- if ne .Arm "6" }}{{ with .Arm }}v{{ . }}{{ end }}{{ end }}
|
|
||||||
format_overrides:
|
format_overrides:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
formats: [zip]
|
formats: [zip]
|
||||||
|
|||||||
@@ -544,18 +544,11 @@ func (dm *dockerManager) updateContainerStats(ctr *container.ApiInfo, cacheTimeM
|
|||||||
// Get previous CPU values
|
// Get previous CPU values
|
||||||
prevCpuContainer, prevCpuSystem := dm.getCpuPreviousValues(cacheTimeMs, ctr.IdShort)
|
prevCpuContainer, prevCpuSystem := dm.getCpuPreviousValues(cacheTimeMs, ctr.IdShort)
|
||||||
|
|
||||||
// Calculate CPU percentage based on platform.
|
// Calculate CPU percentage based on platform
|
||||||
// Podman reports system_cpu_usage from cgroup cpu.stat (not /proc/stat), so it reflects
|
|
||||||
// only cgroup-tracked activity rather than total host capacity. Use a time-based method
|
|
||||||
// instead so the result is comparable to host CPU utilization. See:
|
|
||||||
// https://github.com/henrygd/beszel/issues/2049
|
|
||||||
var cpuPct float64
|
var cpuPct float64
|
||||||
if dm.isWindows {
|
if dm.isWindows {
|
||||||
prevRead := dm.lastCpuReadTime[cacheTimeMs][ctr.IdShort]
|
prevRead := dm.lastCpuReadTime[cacheTimeMs][ctr.IdShort]
|
||||||
cpuPct = res.CalculateCpuPercentWindows(prevCpuContainer, prevRead)
|
cpuPct = res.CalculateCpuPercentWindows(prevCpuContainer, prevRead)
|
||||||
} else if dm.usingPodman && res.CPUStats.OnlineCPUs > 0 {
|
|
||||||
prevRead := dm.lastCpuReadTime[cacheTimeMs][ctr.IdShort]
|
|
||||||
cpuPct = res.CalculateCpuPercentPodman(prevCpuContainer, prevRead)
|
|
||||||
} else {
|
} else {
|
||||||
cpuPct = res.CalculateCpuPercentLinux(prevCpuContainer, prevCpuSystem)
|
cpuPct = res.CalculateCpuPercentLinux(prevCpuContainer, prevCpuSystem)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1059,162 +1059,6 @@ func TestCpuPercentageWindowsHandlesCounterRollback(t *testing.T) {
|
|||||||
assert.Greater(t, stats.CalculateCpuPercentWindows(500_000, prevRead), 0.0)
|
assert.Greater(t, stats.CalculateCpuPercentWindows(500_000, prevRead), 0.0)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestCalculateCpuPercentPodman(t *testing.T) {
|
|
||||||
baseTime := time.Date(2026, 3, 15, 12, 0, 0, 0, time.UTC)
|
|
||||||
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
prevCpuContainer uint64
|
|
||||||
prevRead time.Time
|
|
||||||
currentUsage uint64
|
|
||||||
currentRead time.Time
|
|
||||||
onlineCPUs uint32
|
|
||||||
expectedPct float64
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "normal calculation",
|
|
||||||
// container used 2ms of CPU over 1s with 2 CPUs → 0.1%
|
|
||||||
prevCpuContainer: 1_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 1_002_000_000, // +2ms CPU time
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 2,
|
|
||||||
expectedPct: 0.1, // 2e6 / (1e9 * 2) * 100
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "first run returns zero",
|
|
||||||
prevCpuContainer: 0,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 5_000_000,
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 4,
|
|
||||||
expectedPct: 0.0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "zero online cpus returns zero",
|
|
||||||
prevCpuContainer: 1_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 1_010_000_000,
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 0,
|
|
||||||
expectedPct: 0.0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "same read time returns zero",
|
|
||||||
prevCpuContainer: 1_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 1_010_000_000,
|
|
||||||
currentRead: baseTime, // no elapsed time
|
|
||||||
onlineCPUs: 2,
|
|
||||||
expectedPct: 0.0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "counter rollback returns zero",
|
|
||||||
prevCpuContainer: 2_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 1_000_000_000,
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 2,
|
|
||||||
expectedPct: 0.0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "100% single cpu",
|
|
||||||
// container consumed a full CPU-second over 1s on a 1-CPU host → 100%
|
|
||||||
prevCpuContainer: 1_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 2_000_000_000, // +1s CPU time
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 1,
|
|
||||||
expectedPct: 100.0, // 1e9 / (1e9 * 1) * 100
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "high utilization on multi-cpu host",
|
|
||||||
// container used 800ms on a 4-CPU host over 1s → 20%
|
|
||||||
prevCpuContainer: 10_000_000_000,
|
|
||||||
prevRead: baseTime,
|
|
||||||
currentUsage: 10_800_000_000,
|
|
||||||
currentRead: baseTime.Add(time.Second),
|
|
||||||
onlineCPUs: 4,
|
|
||||||
expectedPct: 20.0, // 800e6 / (1e9 * 4) * 100
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
s := &container.ApiStats{
|
|
||||||
Read: tt.currentRead,
|
|
||||||
CPUStats: container.CPUStats{
|
|
||||||
CPUUsage: container.CPUUsage{TotalUsage: tt.currentUsage},
|
|
||||||
OnlineCPUs: tt.onlineCPUs,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
got := s.CalculateCpuPercentPodman(tt.prevCpuContainer, tt.prevRead)
|
|
||||||
assert.InDelta(t, tt.expectedPct, got, 0.001, "test %q", tt.name)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestUpdateContainerStatsPodmanCpuCalculation(t *testing.T) {
|
|
||||||
// Verify that Podman containers use the time-based CPU calculation
|
|
||||||
// when online_cpus is provided in the stats response.
|
|
||||||
// container used 20ms CPU over 1s with 2 CPUs → 1%
|
|
||||||
prevReadTime := time.Date(2026, 3, 15, 21, 26, 58, 0, time.UTC) // 1 second before stats read
|
|
||||||
const prevCpuUsage = uint64(5_000_000_000)
|
|
||||||
|
|
||||||
dm := &dockerManager{
|
|
||||||
client: &http.Client{Transport: roundTripFunc(func(req *http.Request) (*http.Response, error) {
|
|
||||||
switch req.URL.EscapedPath() {
|
|
||||||
case "/containers/0123456789ab/stats":
|
|
||||||
return &http.Response{
|
|
||||||
StatusCode: http.StatusOK,
|
|
||||||
Status: "200 OK",
|
|
||||||
Header: make(http.Header),
|
|
||||||
Body: io.NopCloser(strings.NewReader(`{
|
|
||||||
"read":"2026-03-15T21:26:59Z",
|
|
||||||
"cpu_stats":{"cpu_usage":{"total_usage":5020000000},"system_cpu_usage":9999999,"online_cpus":2},
|
|
||||||
"memory_stats":{"usage":1048576,"stats":{"inactive_file":262144}},
|
|
||||||
"networks":{"eth0":{"rx_bytes":0,"tx_bytes":0}}
|
|
||||||
}`)),
|
|
||||||
Request: req,
|
|
||||||
}, nil
|
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf("unexpected path: %s", req.URL.EscapedPath())
|
|
||||||
}
|
|
||||||
})},
|
|
||||||
containerStatsMap: make(map[string]*container.Stats),
|
|
||||||
apiStats: &container.ApiStats{},
|
|
||||||
usingPodman: true,
|
|
||||||
lastCpuContainer: map[uint16]map[string]uint64{
|
|
||||||
defaultCacheTimeMs: {"0123456789ab": prevCpuUsage},
|
|
||||||
},
|
|
||||||
lastCpuSystem: map[uint16]map[string]uint64{
|
|
||||||
defaultCacheTimeMs: {"0123456789ab": 1}, // intentionally tiny — should NOT be used
|
|
||||||
},
|
|
||||||
lastCpuReadTime: map[uint16]map[string]time.Time{
|
|
||||||
defaultCacheTimeMs: {"0123456789ab": prevReadTime},
|
|
||||||
},
|
|
||||||
networkSentTrackers: make(map[uint16]*deltatracker.DeltaTracker[string, uint64]),
|
|
||||||
networkRecvTrackers: make(map[uint16]*deltatracker.DeltaTracker[string, uint64]),
|
|
||||||
lastNetworkReadTime: make(map[uint16]map[string]time.Time),
|
|
||||||
}
|
|
||||||
|
|
||||||
ctr := &container.ApiInfo{
|
|
||||||
IdShort: "0123456789ab",
|
|
||||||
Names: []string{"/myapp"},
|
|
||||||
Status: "Up 5 minutes",
|
|
||||||
Image: "myapp:latest",
|
|
||||||
}
|
|
||||||
|
|
||||||
err := dm.updateContainerStats(ctr, defaultCacheTimeMs)
|
|
||||||
require.NoError(t, err)
|
|
||||||
|
|
||||||
// cpu delta = 5020000000 - 5000000000 = 20000000 ns (20ms)
|
|
||||||
// elapsed = 1s = 1000000000 ns, online_cpus = 2
|
|
||||||
// expected = 20000000 / (1000000000 * 2) * 100 = 1.0%
|
|
||||||
expectedCpu := 1.0
|
|
||||||
assert.InDelta(t, expectedCpu, dm.containerStatsMap[ctr.IdShort].Cpu, 0.01)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestNetworkStatsCalculationWithRealData(t *testing.T) {
|
func TestNetworkStatsCalculationWithRealData(t *testing.T) {
|
||||||
// Create synthetic test data to avoid timing issues
|
// Create synthetic test data to avoid timing issues
|
||||||
apiStats1 := &container.ApiStats{
|
apiStats1 := &container.ApiStats{
|
||||||
|
|||||||
@@ -74,30 +74,6 @@ func (s *ApiStats) CalculateCpuPercentLinux(prevCpuContainer uint64, prevCpuSyst
|
|||||||
return float64(cpuDelta) / float64(systemDelta) * 100.0
|
return float64(cpuDelta) / float64(systemDelta) * 100.0
|
||||||
}
|
}
|
||||||
|
|
||||||
// CalculateCpuPercentPodman calculates CPU percentage for Podman containers.
|
|
||||||
// Podman populates system_cpu_usage from cgroup cpu.stat rather than /proc/stat, so it
|
|
||||||
// represents only cgroup-accounted activity, not total host CPU capacity. Using it as
|
|
||||||
// a denominator inflates the result. Instead we use elapsed wall-clock time × online_cpus,
|
|
||||||
// matching the approach used for Windows and recommended in:
|
|
||||||
// https://github.com/henrygd/beszel/issues/2049
|
|
||||||
func (s *ApiStats) CalculateCpuPercentPodman(prevCpuContainer uint64, prevRead time.Time) float64 {
|
|
||||||
if prevCpuContainer == 0 || s.CPUStats.OnlineCPUs == 0 {
|
|
||||||
return 0.0
|
|
||||||
}
|
|
||||||
// Treat a reset or out-of-order counter as a new baseline instead of
|
|
||||||
// allowing unsigned subtraction to wrap to an enormous percentage.
|
|
||||||
if s.CPUStats.CPUUsage.TotalUsage < prevCpuContainer {
|
|
||||||
return 0.0
|
|
||||||
}
|
|
||||||
cpuDelta := s.CPUStats.CPUUsage.TotalUsage - prevCpuContainer
|
|
||||||
elapsedNs := uint64(s.Read.Sub(prevRead).Nanoseconds())
|
|
||||||
systemCapacity := elapsedNs * uint64(s.CPUStats.OnlineCPUs)
|
|
||||||
if systemCapacity == 0 {
|
|
||||||
return 0.0
|
|
||||||
}
|
|
||||||
return float64(cpuDelta) / float64(systemCapacity) * 100.0
|
|
||||||
}
|
|
||||||
|
|
||||||
// from: https://github.com/docker/cli/blob/master/cli/command/container/stats_helpers.go#L185
|
// from: https://github.com/docker/cli/blob/master/cli/command/container/stats_helpers.go#L185
|
||||||
func (s *ApiStats) CalculateCpuPercentWindows(prevCpuUsage uint64, prevRead time.Time) float64 {
|
func (s *ApiStats) CalculateCpuPercentWindows(prevCpuUsage uint64, prevRead time.Time) float64 {
|
||||||
// Max number of 100ns intervals between the previous time read and now
|
// Max number of 100ns intervals between the previous time read and now
|
||||||
@@ -122,10 +98,8 @@ func (s *ApiStats) CalculateCpuPercentWindows(prevCpuUsage uint64, prevRead time
|
|||||||
type CPUStats struct {
|
type CPUStats struct {
|
||||||
// CPU Usage. Linux and Windows.
|
// CPU Usage. Linux and Windows.
|
||||||
CPUUsage CPUUsage `json:"cpu_usage"`
|
CPUUsage CPUUsage `json:"cpu_usage"`
|
||||||
// System Usage. Linux only. Populated from /proc/stat on Docker; from cgroup cpu.stat on Podman.
|
// System Usage. Linux only.
|
||||||
SystemUsage uint64 `json:"system_cpu_usage,omitempty"`
|
SystemUsage uint64 `json:"system_cpu_usage,omitempty"`
|
||||||
// Number of online CPUs. Linux only. Used by Podman for time-based CPU calculation.
|
|
||||||
OnlineCPUs uint32 `json:"online_cpus,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type CPUUsage struct {
|
type CPUUsage struct {
|
||||||
|
|||||||
@@ -30,10 +30,6 @@ const (
|
|||||||
colorGray = "\033[90m"
|
colorGray = "\033[90m"
|
||||||
)
|
)
|
||||||
|
|
||||||
// buildGOARM is set by GoReleaser for agent builds. An empty value identifies
|
|
||||||
// legacy builds, which used GoReleaser's default GOARM value (ARMv6).
|
|
||||||
var buildGOARM string
|
|
||||||
|
|
||||||
func ColorPrint(color, text string) {
|
func ColorPrint(color, text string) {
|
||||||
fmt.Println(color + text + colorReset)
|
fmt.Println(color + text + colorReset)
|
||||||
}
|
}
|
||||||
@@ -133,7 +129,7 @@ func (p *updater) update() (updated bool, err error) {
|
|||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
suffix := archiveSuffix(p.config.ArchiveExecutable, runtime.GOOS, runtime.GOARCH, buildGOARM)
|
suffix := archiveSuffix(p.config.ArchiveExecutable, runtime.GOOS, runtime.GOARCH)
|
||||||
asset, err := latest.findAssetBySuffix(suffix)
|
asset, err := latest.findAssetBySuffix(suffix)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
@@ -350,7 +346,7 @@ func copyFile(src, dst string) error {
|
|||||||
return destFile.Chmod(sourceInfo.Mode())
|
return destFile.Chmod(sourceInfo.Mode())
|
||||||
}
|
}
|
||||||
|
|
||||||
func archiveSuffix(binaryName, goos, goarch, goarm string) string {
|
func archiveSuffix(binaryName, goos, goarch string) string {
|
||||||
if goos == "windows" {
|
if goos == "windows" {
|
||||||
return fmt.Sprintf("%s_%s_%s.zip", binaryName, goos, goarch)
|
return fmt.Sprintf("%s_%s_%s.zip", binaryName, goos, goarch)
|
||||||
}
|
}
|
||||||
@@ -358,11 +354,7 @@ func archiveSuffix(binaryName, goos, goarch, goarm string) string {
|
|||||||
if binaryName == "beszel-agent" && goos == "linux" && goarch == "amd64" && isGlibc() {
|
if binaryName == "beszel-agent" && goos == "linux" && goarch == "amd64" && isGlibc() {
|
||||||
return fmt.Sprintf("%s_%s_%s_glibc.tar.gz", binaryName, goos, goarch)
|
return fmt.Sprintf("%s_%s_%s_glibc.tar.gz", binaryName, goos, goarch)
|
||||||
}
|
}
|
||||||
armSuffix := ""
|
return fmt.Sprintf("%s_%s_%s.tar.gz", binaryName, goos, goarch)
|
||||||
if binaryName == "beszel-agent" && goarch == "arm" && (goarm == "5" || goarm == "7") {
|
|
||||||
armSuffix = "v" + goarm
|
|
||||||
}
|
|
||||||
return fmt.Sprintf("%s_%s_%s%s.tar.gz", binaryName, goos, goarch, armSuffix)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func isGlibc() bool {
|
func isGlibc() bool {
|
||||||
|
|||||||
@@ -8,31 +8,6 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestArchiveSuffix(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
binary, goos, goarch string
|
|
||||||
goarm, want string
|
|
||||||
}{
|
|
||||||
{"armv5 agent", "beszel-agent", "linux", "arm", "5", "beszel-agent_linux_armv5.tar.gz"},
|
|
||||||
{"armv6 keeps legacy name", "beszel-agent", "linux", "arm", "6", "beszel-agent_linux_arm.tar.gz"},
|
|
||||||
{"hub keeps legacy arm name", "beszel", "linux", "arm", "6", "beszel_linux_arm.tar.gz"},
|
|
||||||
{"armv7 agent", "beszel-agent", "linux", "arm", "7", "beszel-agent_linux_armv7.tar.gz"},
|
|
||||||
{"newer arm keeps legacy name", "beszel-agent", "linux", "arm", "8", "beszel-agent_linux_arm.tar.gz"},
|
|
||||||
{"unknown arm keeps legacy name", "beszel-agent", "linux", "arm", "", "beszel-agent_linux_arm.tar.gz"},
|
|
||||||
{"amd64 hub", "beszel", "linux", "amd64", "", "beszel_linux_amd64.tar.gz"},
|
|
||||||
{"windows", "beszel-agent", "windows", "amd64", "", "beszel-agent_windows_amd64.zip"},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
if got := archiveSuffix(tt.binary, tt.goos, tt.goarch, tt.goarm); got != tt.want {
|
|
||||||
t.Errorf("archiveSuffix() = %q, want %q", got, tt.want)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestReleaseFindAssetBySuffix(t *testing.T) {
|
func TestReleaseFindAssetBySuffix(t *testing.T) {
|
||||||
r := release{
|
r := release{
|
||||||
Assets: []*releaseAsset{
|
Assets: []*releaseAsset{
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-06-03 00:49\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "استخدام الذاكرة"
|
msgstr "استخدام الذاكرة"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "استخدام الذاكرة لحاويات دوكر"
|
msgstr "استخدام الذاكرة للحاويات"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "الشبكة"
|
msgstr "الشبكة"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "حركة مرور الشبكة لحاويات الدوكر"
|
msgstr "حركة مرور الشبكة للحاويات"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "نعم"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "تم تحديث إعدادات المستخدم الخاصة بك."
|
msgstr "تم تحديث إعدادات المستخدم الخاصة بك."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Употреба на паметта"
|
msgstr "Употреба на паметта"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Използването на памет от docker контейнерите"
|
msgstr "Използване на паметта от контейнерите"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Мрежов трафик на docker контейнери"
|
msgstr "Мрежов трафик на контейнерите"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Да"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Настройките за потребителя ти са обновени."
|
msgstr "Настройките за потребителя ти са обновени."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Využití paměti"
|
msgstr "Využití paměti"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Využití paměti docker kontejnerů"
|
msgstr "Využití paměti kontejnery"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Síť"
|
msgstr "Síť"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Síťový provoz kontejnerů docker"
|
msgstr "Síťový provoz kontejnerů"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ano"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Vaše uživatelská nastavení byla aktualizována."
|
msgstr "Vaše uživatelská nastavení byla aktualizována."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Hukommelsesforbrug"
|
msgstr "Hukommelsesforbrug"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Hukommelsesforbrug af dockercontainere"
|
msgstr "Containeres hukommelsesforbrug"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Net"
|
msgstr "Net"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Netværkstrafik af dockercontainere"
|
msgstr "Netværkstrafik for containere"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ja"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Dine brugerindstillinger er opdateret."
|
msgstr "Dine brugerindstillinger er opdateret."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Arbeitsspeichernutzung"
|
msgstr "Arbeitsspeichernutzung"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Arbeitsspeichernutzung der Docker-Container"
|
msgstr "Speichernutzung der Container"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Netzwerk"
|
msgstr "Netzwerk"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Netzwerkverkehr der Docker-Container"
|
msgstr "Netzwerkverkehr der Container"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ja"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Deine Benutzereinstellungen wurden aktualisiert."
|
msgstr "Deine Benutzereinstellungen wurden aktualisiert."
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Uso de memoria"
|
msgstr "Uso de memoria"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Uso de memoria de los contenedores Docker"
|
msgstr "Uso de memoria de los contenedores"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Red"
|
msgstr "Red"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Tráfico de red de los contenedores Docker"
|
msgstr "Tráfico de red de los contenedores"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Sí"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Tu configuración de usuario ha sido actualizada."
|
msgstr "Tu configuración de usuario ha sido actualizada."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:53\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "میزان استفاده از حافظه"
|
msgstr "میزان استفاده از حافظه"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "میزان استفاده از حافظه کانتینرهای داکر"
|
msgstr "میزان استفاده حافظه کانتینرها"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "شبکه"
|
msgstr "شبکه"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "ترافیک شبکه کانتینرهای داکر"
|
msgstr "ترافیک شبکه کانتینرها"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "بله"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "تنظیمات کاربری شما بهروزرسانی شد."
|
msgstr "تنظیمات کاربری شما بهروزرسانی شد."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-06-08 15:20\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Utilisation de la mémoire"
|
msgstr "Utilisation de la mémoire"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Utilisation de la mémoire des conteneurs Docker"
|
msgstr "Utilisation de la mémoire des conteneurs"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Rés"
|
msgstr "Rés"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Trafic réseau des conteneurs Docker"
|
msgstr "Trafic réseau des conteneurs"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Oui"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Vos paramètres utilisateur ont été mis à jour."
|
msgstr "Vos paramètres utilisateur ont été mis à jour."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "שימוש בזיכרון"
|
msgstr "שימוש בזיכרון"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "שימוש בזיכרון של קונטיינרים של Docker"
|
msgstr "שימוש בזיכרון של קונטיינרים"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "רשת"
|
msgstr "רשת"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "תעבורת רשת של קונטיינרים של Docker"
|
msgstr "תעבורת רשת של קונטיינרים"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "כן"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "הגדרות המשתמש שלך עודכנו."
|
msgstr "הגדרות המשתמש שלך עודכנו."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:53\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Iskorištenost memorije"
|
msgstr "Iskorištenost memorije"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Iskorištenost memorije Docker spremnika"
|
msgstr "Upotreba memorije spremnika"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Mreža"
|
msgstr "Mreža"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Mrežni promet Docker spremnika"
|
msgstr "Mrežni promet spremnika"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Da"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Vaše korisničke postavke su ažurirane."
|
msgstr "Vaše korisničke postavke su ažurirane."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Memóriahasználat"
|
msgstr "Memóriahasználat"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker konténerek memória használata"
|
msgstr "Konténerek memóriahasználata"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Hálózat"
|
msgstr "Hálózat"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker konténerek hálózati forgalma"
|
msgstr "Konténerek hálózati forgalma"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Igen"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "A felhasználói beállítások frissítésre kerültek."
|
msgstr "A felhasználói beállítások frissítésre kerültek."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Penggunaan Memori"
|
msgstr "Penggunaan Memori"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Penggunaan memori kontainer docker"
|
msgstr "Penggunaan memori container"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Jaringan"
|
msgstr "Jaringan"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Trafik jaringan kontainer docker"
|
msgstr "Lalu lintas jaringan container"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ya"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Pengaturan pengguna anda telah diperbarui."
|
msgstr "Pengaturan pengguna anda telah diperbarui."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-04-17 09:26\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -893,7 +893,7 @@ msgstr "Stato"
|
|||||||
|
|
||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Heartbeat"
|
msgid "Heartbeat"
|
||||||
msgstr "Hearthbeat"
|
msgstr "Heartbeat"
|
||||||
|
|
||||||
#: src/components/routes/settings/heartbeat.tsx
|
#: src/components/routes/settings/heartbeat.tsx
|
||||||
msgid "Heartbeat Monitoring"
|
msgid "Heartbeat Monitoring"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Utilizzo Memoria"
|
msgstr "Utilizzo Memoria"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Utilizzo della memoria dei container Docker"
|
msgstr "Utilizzo della memoria dei container"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Rete"
|
msgstr "Rete"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Traffico di rete dei container Docker"
|
msgstr "Traffico di rete dei container"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Sì"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Le impostazioni utente sono state aggiornate."
|
msgstr "Le impostazioni utente sono state aggiornate."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "メモリ使用率"
|
msgstr "メモリ使用率"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Dockerコンテナのメモリ使用率"
|
msgstr "コンテナのメモリ使用量"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "帯域"
|
msgstr "帯域"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Dockerコンテナのネットワークトラフィック"
|
msgstr "コンテナのネットワークトラフィック"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "はい"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "ユーザー設定が更新されました。"
|
msgstr "ユーザー設定が更新されました。"
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "메모리 사용량"
|
msgstr "메모리 사용량"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker 컨테이너의 메모리 사용량"
|
msgstr "컨테이너 메모리 사용량"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "네트워크"
|
msgstr "네트워크"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker 컨테이너의 네트워크 트래픽"
|
msgstr "컨테이너 네트워크 트래픽"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "예"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "사용자 설정이 업데이트되었습니다."
|
msgstr "사용자 설정이 업데이트되었습니다."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Geheugengebruik"
|
msgstr "Geheugengebruik"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Geheugengebruik van docker containers"
|
msgstr "Geheugengebruik van containers"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Netwerk"
|
msgstr "Netwerk"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Netwerkverkeer van docker containers"
|
msgstr "Netwerkverkeer van containers"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ja"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Je gebruikersinstellingen zijn bijgewerkt."
|
msgstr "Je gebruikersinstellingen zijn bijgewerkt."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-04-26 23:25\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Minnebruk"
|
msgstr "Minnebruk"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Minnebruk av docker-konteinere"
|
msgstr "Minnebruk for containere"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Nett"
|
msgstr "Nett"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Nettverkstrafikk av docker-konteinere"
|
msgstr "Nettverkstrafikk for containere"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ja"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Dine brukerinnstillinger har blitt oppdatert."
|
msgstr "Dine brukerinnstillinger har blitt oppdatert."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Użycie pamięci"
|
msgstr "Użycie pamięci"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Użycie pamięci przez kontenery Docker."
|
msgstr "Zużycie pamięci przez kontenery"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Sieć"
|
msgstr "Sieć"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Ruch sieciowy kontenerów Docker."
|
msgstr "Ruch sieciowy kontenerów"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Tak"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Twoje ustawienia użytkownika zostały zaktualizowane."
|
msgstr "Twoje ustawienia użytkownika zostały zaktualizowane."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-04 18:12\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Uso de Memória"
|
msgstr "Uso de Memória"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Uso de memória dos contêineres Docker"
|
msgstr "Utilização de memória dos contentores"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Rede"
|
msgstr "Rede"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Tráfego de rede dos contêineres Docker"
|
msgstr "Tráfego de rede dos contentores"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Sim"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "As configurações do seu usuário foram atualizadas."
|
msgstr "As configurações do seu usuário foram atualizadas."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-07-19 13:06\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||||
@@ -28,7 +28,7 @@ msgstr ""
|
|||||||
#. placeholder {1}: table.getFilteredRowModel().rows.length
|
#. placeholder {1}: table.getFilteredRowModel().rows.length
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
msgid "{0} of {1} row(s) selected."
|
msgid "{0} of {1} row(s) selected."
|
||||||
msgstr ""
|
msgstr "{0} din {1} rând(uri) selectat(e)."
|
||||||
|
|
||||||
#: src/components/routes/system/info-bar.tsx
|
#: src/components/routes/system/info-bar.tsx
|
||||||
msgid "{cores, plural, one {# core} other {# cores}}"
|
msgid "{cores, plural, one {# core} other {# cores}}"
|
||||||
@@ -127,7 +127,7 @@ msgstr "Adaugă URL"
|
|||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Adjust display options for charts."
|
msgid "Adjust display options for charts."
|
||||||
msgstr ""
|
msgstr "Ajustează opțiunile de afișare pentru grafice."
|
||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Adjust the width of the main layout"
|
msgid "Adjust the width of the main layout"
|
||||||
@@ -197,7 +197,7 @@ msgstr "Medie"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/cpu-charts.tsx
|
#: src/components/routes/system/charts/cpu-charts.tsx
|
||||||
msgid "Average CPU utilization of containers"
|
msgid "Average CPU utilization of containers"
|
||||||
msgstr ""
|
msgstr "Utilizarea medie a CPU-ului containerelor"
|
||||||
|
|
||||||
#. placeholder {0}: alertData.unit
|
#. placeholder {0}: alertData.unit
|
||||||
#: src/components/alerts/alerts-sheet.tsx
|
#: src/components/alerts/alerts-sheet.tsx
|
||||||
@@ -207,7 +207,7 @@ msgstr ""
|
|||||||
#. placeholder {0}: alertData.unit
|
#. placeholder {0}: alertData.unit
|
||||||
#: src/components/alerts/alerts-sheet.tsx
|
#: src/components/alerts/alerts-sheet.tsx
|
||||||
msgid "Average exceeds <0>{value}{0}</0>"
|
msgid "Average exceeds <0>{value}{0}</0>"
|
||||||
msgstr ""
|
msgstr "Media depășește <0>{value}{0}</0>"
|
||||||
|
|
||||||
#: src/components/routes/system/disk-io-sheet.tsx
|
#: src/components/routes/system/disk-io-sheet.tsx
|
||||||
msgid "Average number of I/O operations waiting to be serviced"
|
msgid "Average number of I/O operations waiting to be serviced"
|
||||||
@@ -215,7 +215,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/gpu-charts.tsx
|
#: src/components/routes/system/charts/gpu-charts.tsx
|
||||||
msgid "Average power consumption of GPUs"
|
msgid "Average power consumption of GPUs"
|
||||||
msgstr ""
|
msgstr "Consumul mediu de energie al GPU-urilor"
|
||||||
|
|
||||||
#: src/components/routes/system/disk-io-sheet.tsx
|
#: src/components/routes/system/disk-io-sheet.tsx
|
||||||
msgctxt "Disk I/O average operation time (iostat await)"
|
msgctxt "Disk I/O average operation time (iostat await)"
|
||||||
@@ -224,12 +224,12 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/cpu-charts.tsx
|
#: src/components/routes/system/charts/cpu-charts.tsx
|
||||||
msgid "Average system-wide CPU utilization"
|
msgid "Average system-wide CPU utilization"
|
||||||
msgstr ""
|
msgstr "Utilizarea medie a CPU-ului la nivel de sistem"
|
||||||
|
|
||||||
#. placeholder {0}: gpu.n
|
#. placeholder {0}: gpu.n
|
||||||
#: src/components/routes/system/charts/gpu-charts.tsx
|
#: src/components/routes/system/charts/gpu-charts.tsx
|
||||||
msgid "Average utilization of {0}"
|
msgid "Average utilization of {0}"
|
||||||
msgstr ""
|
msgstr "Utilizarea medie a {0}"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/gpu-charts.tsx
|
#: src/components/routes/system/charts/gpu-charts.tsx
|
||||||
msgid "Average utilization of GPU engines"
|
msgid "Average utilization of GPU engines"
|
||||||
@@ -238,7 +238,7 @@ msgstr ""
|
|||||||
#: src/components/command-palette.tsx
|
#: src/components/command-palette.tsx
|
||||||
#: src/components/navbar.tsx
|
#: src/components/navbar.tsx
|
||||||
msgid "Backups"
|
msgid "Backups"
|
||||||
msgstr ""
|
msgstr "Copii de rezervă"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/lib/alerts.ts
|
#: src/lib/alerts.ts
|
||||||
@@ -250,6 +250,7 @@ msgstr "Trafic"
|
|||||||
msgid "Bat"
|
msgid "Bat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/lib/alerts.ts
|
#: src/lib/alerts.ts
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
@@ -276,11 +277,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/components/login/auth-form.tsx
|
#: src/components/login/auth-form.tsx
|
||||||
msgid "Beszel supports OpenID Connect and many OAuth2 authentication providers."
|
msgid "Beszel supports OpenID Connect and many OAuth2 authentication providers."
|
||||||
msgstr ""
|
msgstr "Beszel acceptă OpenID Connect și mulți furnizori de autentificare OAuth2."
|
||||||
|
|
||||||
#: src/components/routes/settings/notifications.tsx
|
#: src/components/routes/settings/notifications.tsx
|
||||||
msgid "Beszel uses <0>Shoutrrr</0> to integrate with popular notification services."
|
msgid "Beszel uses <0>Shoutrrr</0> to integrate with popular notification services."
|
||||||
msgstr ""
|
msgstr "Beszel folosește <0>Shoutrrr</0> pentru integrarea cu servicii populare de notificare."
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
msgid "Binary"
|
msgid "Binary"
|
||||||
@@ -289,7 +290,7 @@ msgstr "Binar"
|
|||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Bits (Kbps, Mbps, Gbps)"
|
msgid "Bits (Kbps, Mbps, Gbps)"
|
||||||
msgstr ""
|
msgstr "Biți (Kbps, Mbps, Gbps)"
|
||||||
|
|
||||||
#: src/components/systemd-table/systemd-table.tsx
|
#: src/components/systemd-table/systemd-table.tsx
|
||||||
msgid "Boot state"
|
msgid "Boot state"
|
||||||
@@ -298,7 +299,7 @@ msgstr ""
|
|||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Bytes (KB/s, MB/s, GB/s)"
|
msgid "Bytes (KB/s, MB/s, GB/s)"
|
||||||
msgstr ""
|
msgstr "Octeți (KB/s, MB/s, GB/s)"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Cache / Buffers"
|
msgid "Cache / Buffers"
|
||||||
@@ -332,7 +333,7 @@ msgstr "Capacitate"
|
|||||||
|
|
||||||
#: src/components/routes/settings/config-yaml.tsx
|
#: src/components/routes/settings/config-yaml.tsx
|
||||||
msgid "Caution - potential data loss"
|
msgid "Caution - potential data loss"
|
||||||
msgstr ""
|
msgstr "Atenție - posibilă pierdere de date"
|
||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Celsius (°C)"
|
msgid "Celsius (°C)"
|
||||||
@@ -340,24 +341,24 @@ msgstr "Celsius (°C)"
|
|||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Change display units for metrics."
|
msgid "Change display units for metrics."
|
||||||
msgstr ""
|
msgstr "Schimbă unitățile de afișare pentru metrici."
|
||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Change general application options."
|
msgid "Change general application options."
|
||||||
msgstr ""
|
msgstr "Schimbă opțiunile generale ale aplicației."
|
||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Charge"
|
msgid "Charge"
|
||||||
msgstr ""
|
msgstr "Încărcare"
|
||||||
|
|
||||||
#. Context: Battery state
|
#. Context: Battery state
|
||||||
#: src/lib/i18n.ts
|
#: src/lib/i18n.ts
|
||||||
msgid "Charging"
|
msgid "Charging"
|
||||||
msgstr ""
|
msgstr "Se încarcă"
|
||||||
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Chart options"
|
msgid "Chart options"
|
||||||
msgstr ""
|
msgstr "Opțiuni pentru grafice"
|
||||||
|
|
||||||
#: src/components/routes/system/info-bar.tsx
|
#: src/components/routes/system/info-bar.tsx
|
||||||
msgid "Chart width"
|
msgid "Chart width"
|
||||||
@@ -365,11 +366,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/components/login/forgot-pass-form.tsx
|
#: src/components/login/forgot-pass-form.tsx
|
||||||
msgid "Check {email} for a reset link."
|
msgid "Check {email} for a reset link."
|
||||||
msgstr ""
|
msgstr "Verifică {email} pentru linkul de resetare."
|
||||||
|
|
||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Check logs for more details."
|
msgid "Check logs for more details."
|
||||||
msgstr ""
|
msgstr "Verifică jurnalele pentru mai multe detalii."
|
||||||
|
|
||||||
#: src/components/routes/settings/heartbeat.tsx
|
#: src/components/routes/settings/heartbeat.tsx
|
||||||
msgid "Check your monitoring service"
|
msgid "Check your monitoring service"
|
||||||
@@ -471,6 +472,10 @@ msgstr ""
|
|||||||
msgid "Copy name"
|
msgid "Copy name"
|
||||||
msgstr "Copiază nume"
|
msgstr "Copiază nume"
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Copy public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
msgstr "Copiază text"
|
msgstr "Copiază text"
|
||||||
@@ -547,6 +552,8 @@ msgid "Cumulative Upload"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Context: Battery state
|
#. Context: Battery state
|
||||||
|
#. Context: Battery state
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Current state"
|
msgid "Current state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -717,7 +724,6 @@ msgstr ""
|
|||||||
msgid "Ephemeral"
|
msgid "Ephemeral"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/login/auth-form.tsx
|
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/settings/config-yaml.tsx
|
#: src/components/routes/settings/config-yaml.tsx
|
||||||
#: src/components/routes/settings/heartbeat.tsx
|
#: src/components/routes/settings/heartbeat.tsx
|
||||||
@@ -809,6 +815,10 @@ msgstr ""
|
|||||||
msgid "Failed: {0}"
|
msgid "Failed: {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "Fans"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/system/chart-card.tsx
|
#: src/components/routes/system/chart-card.tsx
|
||||||
@@ -952,7 +962,6 @@ msgstr ""
|
|||||||
msgid "Invalid email address."
|
msgid "Invalid email address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/lang-toggle.tsx
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Limbă"
|
msgstr "Limbă"
|
||||||
@@ -1068,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Memorie Utilizată"
|
msgstr "Memorie Utilizată"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr ""
|
msgstr "Utilizarea memoriei de către containere"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1090,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Rețea"
|
msgstr "Rețea"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr ""
|
msgstr "Traficul de rețea al containerelor"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1311,6 +1320,10 @@ msgstr ""
|
|||||||
msgid "Process started"
|
msgid "Process started"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
msgid "Public Key"
|
msgid "Public Key"
|
||||||
@@ -1550,6 +1563,11 @@ msgstr ""
|
|||||||
msgid "Swap Usage"
|
msgid "Swap Usage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
msgid "Switch theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
#: src/components/containers-table/containers-table-columns.tsx
|
#: src/components/containers-table/containers-table-columns.tsx
|
||||||
@@ -1565,6 +1583,10 @@ msgstr ""
|
|||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistem"
|
msgstr "Sistem"
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "System fan speeds (RPM)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1657,11 +1679,6 @@ msgstr ""
|
|||||||
msgid "To email(s)"
|
msgid "To email(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
msgid "Toggle theme"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Token"
|
msgid "Token"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||||
@@ -474,7 +474,7 @@ msgstr "Копировать имя"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Copy public key"
|
msgid "Copy public key"
|
||||||
msgstr ""
|
msgstr "Копировать открытый ключ"
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
@@ -817,7 +817,7 @@ msgstr "Неудачно: {0}"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Fans"
|
msgid "Fans"
|
||||||
msgstr ""
|
msgstr "Вентиляторы"
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Использование памяти"
|
msgstr "Использование памяти"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Использование памяти контейнерами Docker"
|
msgstr "Использование памяти контейнерами"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Сеть"
|
msgstr "Сеть"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Сетевой трафик контейнеров Docker"
|
msgstr "Сетевой трафик контейнеров"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1322,7 +1322,7 @@ msgstr "Процесс запущен"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Public key"
|
msgid "Public key"
|
||||||
msgstr ""
|
msgstr "Открытый ключ"
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
@@ -1566,7 +1566,7 @@ msgstr "Использование подкачки"
|
|||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
msgid "Switch theme"
|
msgid "Switch theme"
|
||||||
msgstr ""
|
msgstr "Переключить тему"
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
@@ -1585,7 +1585,7 @@ msgstr "Система"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "System fan speeds (RPM)"
|
msgid "System fan speeds (RPM)"
|
||||||
msgstr ""
|
msgstr "Скорость вращения системных вентиляторов (об/мин)"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Да"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Ваши настройки пользователя были обновлены."
|
msgstr "Ваши настройки пользователя были обновлены."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sl\n"
|
"Language: sl\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Poraba pomnilnika"
|
msgstr "Poraba pomnilnika"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Poraba pomnilnika docker kontejnerjev"
|
msgstr "Poraba pomnilnika vsebnikov"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Mreža"
|
msgstr "Mreža"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Omrežni promet docker kontejnerjev"
|
msgstr "Omrežni promet vsebnikov"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Da"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Vaše uporabniške nastavitve so posodobljene."
|
msgstr "Vaše uporabniške nastavitve so posodobljene."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sr\n"
|
"Language: sr\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-04-22 14:14\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Cyrillic)\n"
|
"Language-Team: Serbian (Cyrillic)\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Употреба меморије"
|
msgstr "Употреба меморије"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Употреба меморије docker контејнера"
|
msgstr "Коришћење меморије контејнера"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Мрежни саобраћај docker контејнера"
|
msgstr "Мрежни саобраћај контејнера"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Да"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Ваша корисничка подешавања су ажурирана."
|
msgstr "Ваша корисничка подешавања су ажурирана."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Minnesanvändning"
|
msgstr "Minnesanvändning"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Minnesanvändning för dockercontainrar"
|
msgstr "Minnesanvändning för containrar"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Nät"
|
msgstr "Nät"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Nätverkstrafik för dockercontainrar"
|
msgstr "Nätverkstrafik för containrar"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Ja"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Dina användarinställningar har uppdaterats."
|
msgstr "Dina användarinställningar har uppdaterats."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:53\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Thai\n"
|
"Language-Team: Thai\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -250,6 +250,7 @@ msgstr ""
|
|||||||
msgid "Bat"
|
msgid "Bat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/lib/alerts.ts
|
#: src/lib/alerts.ts
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
@@ -471,6 +472,10 @@ msgstr ""
|
|||||||
msgid "Copy name"
|
msgid "Copy name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Copy public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -547,6 +552,8 @@ msgid "Cumulative Upload"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Context: Battery state
|
#. Context: Battery state
|
||||||
|
#. Context: Battery state
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Current state"
|
msgid "Current state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -717,7 +724,6 @@ msgstr ""
|
|||||||
msgid "Ephemeral"
|
msgid "Ephemeral"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/login/auth-form.tsx
|
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/settings/config-yaml.tsx
|
#: src/components/routes/settings/config-yaml.tsx
|
||||||
#: src/components/routes/settings/heartbeat.tsx
|
#: src/components/routes/settings/heartbeat.tsx
|
||||||
@@ -809,6 +815,10 @@ msgstr ""
|
|||||||
msgid "Failed: {0}"
|
msgid "Failed: {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "Fans"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/system/chart-card.tsx
|
#: src/components/routes/system/chart-card.tsx
|
||||||
@@ -952,7 +962,6 @@ msgstr ""
|
|||||||
msgid "Invalid email address."
|
msgid "Invalid email address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/lang-toggle.tsx
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1068,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr ""
|
msgstr "การใช้หน่วยความจำของคอนเทนเนอร์"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1090,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr ""
|
msgstr "การรับส่งข้อมูลเครือข่ายของคอนเทนเนอร์"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1311,6 +1320,10 @@ msgstr ""
|
|||||||
msgid "Process started"
|
msgid "Process started"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
msgid "Public Key"
|
msgid "Public Key"
|
||||||
@@ -1550,6 +1563,11 @@ msgstr ""
|
|||||||
msgid "Swap Usage"
|
msgid "Swap Usage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
msgid "Switch theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
#: src/components/containers-table/containers-table-columns.tsx
|
#: src/components/containers-table/containers-table-columns.tsx
|
||||||
@@ -1565,6 +1583,10 @@ msgstr ""
|
|||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "System fan speeds (RPM)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1657,11 +1679,6 @@ msgstr ""
|
|||||||
msgid "To email(s)"
|
msgid "To email(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
msgid "Toggle theme"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Token"
|
msgid "Token"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-05-30 22:33\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Bellek Kullanımı"
|
msgstr "Bellek Kullanımı"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker konteynerlerinin bellek kullanımı"
|
msgstr "Konteynerlerin bellek kullanımı"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Ağ"
|
msgstr "Ağ"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker konteynerlerinin ağ trafiği"
|
msgstr "Konteynerlerin ağ trafiği"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1714,7 +1714,7 @@ msgstr "Her arayüz için gönderilen toplam veri"
|
|||||||
#: src/components/routes/system/disk-io-sheet.tsx
|
#: src/components/routes/system/disk-io-sheet.tsx
|
||||||
msgctxt "Disk I/O"
|
msgctxt "Disk I/O"
|
||||||
msgid "Total time spent on read/write (can exceed 100%)"
|
msgid "Total time spent on read/write (can exceed 100%)"
|
||||||
msgstr "Okuma/yazma işlemlerinde harcanan toplam süre (100%’ü aşabilir)"
|
msgstr "Okuma/yazma işlemlerinde harcanan toplam süre (%100’ü aşabilir)"
|
||||||
|
|
||||||
#. placeholder {0}: data.length
|
#. placeholder {0}: data.length
|
||||||
#: src/components/systemd-table/systemd-table.tsx
|
#: src/components/systemd-table/systemd-table.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Evet"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Kullanıcı ayarlarınız güncellendi."
|
msgstr "Kullanıcı ayarlarınız güncellendi."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ug\n"
|
"Language: ug\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:53\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Uyghur\n"
|
"Language-Team: Uyghur\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@@ -250,6 +250,7 @@ msgstr ""
|
|||||||
msgid "Bat"
|
msgid "Bat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/lib/alerts.ts
|
#: src/lib/alerts.ts
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
@@ -471,6 +472,10 @@ msgstr ""
|
|||||||
msgid "Copy name"
|
msgid "Copy name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Copy public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -547,6 +552,8 @@ msgid "Cumulative Upload"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Context: Battery state
|
#. Context: Battery state
|
||||||
|
#. Context: Battery state
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Current state"
|
msgid "Current state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -717,7 +724,6 @@ msgstr ""
|
|||||||
msgid "Ephemeral"
|
msgid "Ephemeral"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/login/auth-form.tsx
|
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/settings/config-yaml.tsx
|
#: src/components/routes/settings/config-yaml.tsx
|
||||||
#: src/components/routes/settings/heartbeat.tsx
|
#: src/components/routes/settings/heartbeat.tsx
|
||||||
@@ -809,6 +815,10 @@ msgstr ""
|
|||||||
msgid "Failed: {0}"
|
msgid "Failed: {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "Fans"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
#: src/components/routes/system/chart-card.tsx
|
#: src/components/routes/system/chart-card.tsx
|
||||||
@@ -952,7 +962,6 @@ msgstr ""
|
|||||||
msgid "Invalid email address."
|
msgid "Invalid email address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/lang-toggle.tsx
|
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1068,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr ""
|
msgstr "كونتېينېرلارنىڭ ئەسلەك ئىشلىتىشى"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1090,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr ""
|
msgstr "كونتېينېرلارنىڭ تور ئېقىمى"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1311,6 +1320,10 @@ msgstr ""
|
|||||||
msgid "Process started"
|
msgid "Process started"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
|
msgid "Public key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
msgid "Public Key"
|
msgid "Public Key"
|
||||||
@@ -1550,6 +1563,11 @@ msgstr ""
|
|||||||
msgid "Swap Usage"
|
msgid "Swap Usage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
#: src/components/mode-toggle.tsx
|
||||||
|
msgid "Switch theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
#: src/components/containers-table/containers-table-columns.tsx
|
#: src/components/containers-table/containers-table-columns.tsx
|
||||||
@@ -1565,6 +1583,10 @@ msgstr ""
|
|||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
|
msgid "System fan speeds (RPM)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1657,11 +1679,6 @@ msgstr ""
|
|||||||
msgid "To email(s)"
|
msgid "To email(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
#: src/components/mode-toggle.tsx
|
|
||||||
msgid "Toggle theme"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Token"
|
msgid "Token"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-05-08 11:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||||
@@ -474,7 +474,7 @@ msgstr "Копіювати імʼя"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Copy public key"
|
msgid "Copy public key"
|
||||||
msgstr ""
|
msgstr "Копіювати відкритий ключ"
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
@@ -817,7 +817,7 @@ msgstr "Невдало: {0}"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Fans"
|
msgid "Fans"
|
||||||
msgstr ""
|
msgstr "Вентилятори"
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Використання пам'яті"
|
msgstr "Використання пам'яті"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Використання пам'яті контейнерами Docker"
|
msgstr "Використання пам’яті контейнерами"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Мережа"
|
msgstr "Мережа"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Мережевий трафік контейнерів Docker"
|
msgstr "Мережевий трафік контейнерів"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1322,7 +1322,7 @@ msgstr "Процес запущено"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Public key"
|
msgid "Public key"
|
||||||
msgstr ""
|
msgstr "Відкритий ключ"
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
@@ -1566,7 +1566,7 @@ msgstr "Використання підкачки"
|
|||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
msgid "Switch theme"
|
msgid "Switch theme"
|
||||||
msgstr ""
|
msgstr "Змінити тему"
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
@@ -1585,7 +1585,7 @@ msgstr "Система"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "System fan speeds (RPM)"
|
msgid "System fan speeds (RPM)"
|
||||||
msgstr ""
|
msgstr "Швидкість обертання вентиляторів (об/хв)"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Так"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Ваші налаштування користувача були оновлені."
|
msgstr "Ваші налаштування користувача були оновлені."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "Sử dụng Bộ nhớ"
|
msgstr "Sử dụng Bộ nhớ"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Sử dụng bộ nhớ của các container Docker"
|
msgstr "Mức sử dụng bộ nhớ của các container"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "Mạng"
|
msgstr "Mạng"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Lưu lượng mạng của các container Docker"
|
msgstr "Lưu lượng mạng của các container"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "Có"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "Cài đặt người dùng của bạn đã được cập nhật."
|
msgstr "Cài đặt người dùng của bạn đã được cập nhật."
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -474,7 +474,7 @@ msgstr "复制名称"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Copy public key"
|
msgid "Copy public key"
|
||||||
msgstr ""
|
msgstr "复制公钥"
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
@@ -817,7 +817,7 @@ msgstr "失败: {0}"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Fans"
|
msgid "Fans"
|
||||||
msgstr ""
|
msgstr "风扇"
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
@@ -854,7 +854,7 @@ msgstr "FreeBSD 命令"
|
|||||||
#: src/components/routes/system/info-bar.tsx
|
#: src/components/routes/system/info-bar.tsx
|
||||||
#: src/lib/i18n.ts
|
#: src/lib/i18n.ts
|
||||||
msgid "Full"
|
msgid "Full"
|
||||||
msgstr "满电"
|
msgstr "全宽"
|
||||||
|
|
||||||
#. Context: General settings
|
#. Context: General settings
|
||||||
#: src/components/routes/settings/general.tsx
|
#: src/components/routes/settings/general.tsx
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "内存使用率"
|
msgstr "内存使用率"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker 容器的内存使用率"
|
msgstr "容器内存使用量"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "网络"
|
msgstr "网络"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker 容器的网络流量"
|
msgstr "容器网络流量"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1322,7 +1322,7 @@ msgstr "进程启动"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Public key"
|
msgid "Public key"
|
||||||
msgstr ""
|
msgstr "公钥"
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
@@ -1566,7 +1566,7 @@ msgstr "SWAP 使用率"
|
|||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
msgid "Switch theme"
|
msgid "Switch theme"
|
||||||
msgstr ""
|
msgstr "切换主题"
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
@@ -1585,7 +1585,7 @@ msgstr "系统"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "System fan speeds (RPM)"
|
msgid "System fan speeds (RPM)"
|
||||||
msgstr ""
|
msgstr "系统风扇速度(RPM)"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "是"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "您的用户设置已更新。"
|
msgstr "您的用户设置已更新。"
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-08-17 19:22\n"
|
"PO-Revision-Date: 2026-08-18 17:53\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "記憶體使用"
|
msgstr "記憶體使用"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker 容器的記憶體使用量"
|
msgstr "容器記憶體使用量"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "網絡"
|
msgstr "網絡"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker 容器的網絡流量"
|
msgstr "容器網絡流量"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "是"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "您的用戶設置已更新。"
|
msgstr "您的用戶設置已更新。"
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: beszel\n"
|
"Project-Id-Version: beszel\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2026-06-29 04:59\n"
|
"PO-Revision-Date: 2026-08-18 17:52\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@@ -474,7 +474,7 @@ msgstr "複製名稱"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Copy public key"
|
msgid "Copy public key"
|
||||||
msgstr ""
|
msgstr "複製公鑰"
|
||||||
|
|
||||||
#: src/components/copy-to-clipboard.tsx
|
#: src/components/copy-to-clipboard.tsx
|
||||||
msgid "Copy text"
|
msgid "Copy text"
|
||||||
@@ -817,7 +817,7 @@ msgstr "失敗:{0}"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "Fans"
|
msgid "Fans"
|
||||||
msgstr ""
|
msgstr "風扇"
|
||||||
|
|
||||||
#: src/components/containers-table/containers-table.tsx
|
#: src/components/containers-table/containers-table.tsx
|
||||||
#: src/components/routes/settings/alerts-history-data-table.tsx
|
#: src/components/routes/settings/alerts-history-data-table.tsx
|
||||||
@@ -1077,8 +1077,8 @@ msgid "Memory Usage"
|
|||||||
msgstr "記憶體使用量"
|
msgstr "記憶體使用量"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/memory-charts.tsx
|
#: src/components/routes/system/charts/memory-charts.tsx
|
||||||
msgid "Memory usage of docker containers"
|
msgid "Memory usage of containers"
|
||||||
msgstr "Docker 容器的記憶體使用量"
|
msgstr "容器的記憶體使用量"
|
||||||
|
|
||||||
#. Device model
|
#. Device model
|
||||||
#: src/components/routes/system/smart-table.tsx
|
#: src/components/routes/system/smart-table.tsx
|
||||||
@@ -1099,8 +1099,8 @@ msgid "Net"
|
|||||||
msgstr "網路"
|
msgstr "網路"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
msgid "Network traffic of docker containers"
|
msgid "Network traffic of containers"
|
||||||
msgstr "Docker 容器的網路流量"
|
msgstr "容器的網路流量"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/network-charts.tsx
|
#: src/components/routes/system/charts/network-charts.tsx
|
||||||
#: src/components/routes/system/network-sheet.tsx
|
#: src/components/routes/system/network-sheet.tsx
|
||||||
@@ -1322,7 +1322,7 @@ msgstr "進程啟動"
|
|||||||
|
|
||||||
#: src/components/routes/settings/tokens-fingerprints.tsx
|
#: src/components/routes/settings/tokens-fingerprints.tsx
|
||||||
msgid "Public key"
|
msgid "Public key"
|
||||||
msgstr ""
|
msgstr "公鑰"
|
||||||
|
|
||||||
#. Use 'Key' if your language requires many more characters
|
#. Use 'Key' if your language requires many more characters
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
@@ -1566,7 +1566,7 @@ msgstr "交換空間使用量"
|
|||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
#: src/components/mode-toggle.tsx
|
#: src/components/mode-toggle.tsx
|
||||||
msgid "Switch theme"
|
msgid "Switch theme"
|
||||||
msgstr ""
|
msgstr "切換主題"
|
||||||
|
|
||||||
#: src/components/add-system.tsx
|
#: src/components/add-system.tsx
|
||||||
#: src/components/alerts-history-columns.tsx
|
#: src/components/alerts-history-columns.tsx
|
||||||
@@ -1585,7 +1585,7 @@ msgstr "系統"
|
|||||||
|
|
||||||
#: src/components/routes/system/charts/sensor-charts.tsx
|
#: src/components/routes/system/charts/sensor-charts.tsx
|
||||||
msgid "System fan speeds (RPM)"
|
msgid "System fan speeds (RPM)"
|
||||||
msgstr ""
|
msgstr "系統風扇速度(RPM)"
|
||||||
|
|
||||||
#: src/components/routes/system/charts/load-average-chart.tsx
|
#: src/components/routes/system/charts/load-average-chart.tsx
|
||||||
msgid "System load averages over time"
|
msgid "System load averages over time"
|
||||||
@@ -1714,7 +1714,7 @@ msgstr "每個介面的總傳送資料量"
|
|||||||
#: src/components/routes/system/disk-io-sheet.tsx
|
#: src/components/routes/system/disk-io-sheet.tsx
|
||||||
msgctxt "Disk I/O"
|
msgctxt "Disk I/O"
|
||||||
msgid "Total time spent on read/write (can exceed 100%)"
|
msgid "Total time spent on read/write (can exceed 100%)"
|
||||||
msgstr ""
|
msgstr "讀寫總耗時(可能超過 100%)"
|
||||||
|
|
||||||
#. placeholder {0}: data.length
|
#. placeholder {0}: data.length
|
||||||
#: src/components/systemd-table/systemd-table.tsx
|
#: src/components/systemd-table/systemd-table.tsx
|
||||||
@@ -1948,3 +1948,4 @@ msgstr "是"
|
|||||||
#: src/components/routes/settings/layout.tsx
|
#: src/components/routes/settings/layout.tsx
|
||||||
msgid "Your user settings have been updated."
|
msgid "Your user settings have been updated."
|
||||||
msgstr "已更新您的使用者設定"
|
msgstr "已更新您的使用者設定"
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ apiVersion: v1
|
|||||||
description: Installs beszel-agent in kubernetes
|
description: Installs beszel-agent in kubernetes
|
||||||
home: https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-agent
|
home: https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-agent
|
||||||
name: beszel-agent
|
name: beszel-agent
|
||||||
appVersion: "0.18.8"
|
appVersion: "0.18.7"
|
||||||
# Bump this version when publishing chart changes.
|
# Bump this version when publishing chart changes.
|
||||||
version: 0.1.5
|
version: 0.1.4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-agent
|
- https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-agent
|
||||||
- https://www.beszel.dev/
|
- https://www.beszel.dev/
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ Essential parameters to configure:
|
|||||||
| `secret.sshKey` | `ssh-key` | Key name in the secret for the SSH public key |
|
| `secret.sshKey` | `ssh-key` | Key name in the secret for the SSH public key |
|
||||||
| `secret.tokenKey` | `token` | Key name in the secret for the authentication token |
|
| `secret.tokenKey` | `token` | Key name in the secret for the authentication token |
|
||||||
| `image.repository` | `henrygd/beszel-agent` | Container image |
|
| `image.repository` | `henrygd/beszel-agent` | Container image |
|
||||||
| `image.tag` | Chart AppVersion (0.18.8) | Image version |
|
| `image.tag` | Chart AppVersion (0.18.7) | Image version |
|
||||||
| `hostNetwork` | `false` | Use host network for network monitoring |
|
| `hostNetwork` | `false` | Use host network for network monitoring |
|
||||||
| `tolerations` | Allows all taints | Tolerations for running on tainted nodes |
|
| `tolerations` | Allows all taints | Tolerations for running on tainted nodes |
|
||||||
|
|
||||||
@@ -385,7 +385,7 @@ helm upgrade beszel-agent ./beszel-agent \
|
|||||||
|
|
||||||
# Change image version
|
# Change image version
|
||||||
helm upgrade beszel-agent ./beszel-agent \
|
helm upgrade beszel-agent ./beszel-agent \
|
||||||
--set image.tag="0.18.8"
|
--set image.tag="0.18.7"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Restart All Agents
|
### Restart All Agents
|
||||||
@@ -522,7 +522,7 @@ kubectl get secret beszel-agent -o jsonpath='{.data.ssh-key}' | base64 -d
|
|||||||
## Chart Information
|
## Chart Information
|
||||||
|
|
||||||
- **Chart Version**: 0.1.0
|
- **Chart Version**: 0.1.0
|
||||||
- **App Version**: 0.18.8
|
- **App Version**: 0.18.7
|
||||||
- **Kubernetes Version**: 1.19+
|
- **Kubernetes Version**: 1.19+
|
||||||
- **Maintainer**: cloudwithdan (nikoloskid@pm.me)
|
- **Maintainer**: cloudwithdan (nikoloskid@pm.me)
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ apiVersion: v1
|
|||||||
description: Installs beszel-hub in kubernetes
|
description: Installs beszel-hub in kubernetes
|
||||||
home: https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-hub
|
home: https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-hub
|
||||||
name: beszel-hub
|
name: beszel-hub
|
||||||
appVersion: "0.18.8"
|
appVersion: "0.18.7"
|
||||||
# Bump this version when publishing chart changes.
|
# Bump this version when publishing chart changes.
|
||||||
version: 0.1.5
|
version: 0.1.4
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-hub
|
- https://github.com/henrygd/beszel/tree/main/supplemental/helm/beszel-hub
|
||||||
- https://www.beszel.dev/
|
- https://www.beszel.dev/
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ Key configuration options in `values.yaml`:
|
|||||||
|-----------|---------|-------------|
|
|-----------|---------|-------------|
|
||||||
| `replicaCount` | `1` | Number of Beszel Hub replicas |
|
| `replicaCount` | `1` | Number of Beszel Hub replicas |
|
||||||
| `image.repository` | `henrygd/beszel` | Container image repository |
|
| `image.repository` | `henrygd/beszel` | Container image repository |
|
||||||
| `image.tag` | Chart AppVersion (0.18.8) | Container image tag |
|
| `image.tag` | Chart AppVersion (0.18.7) | Container image tag |
|
||||||
| `image.pullPolicy` | `IfNotPresent` | Image pull policy |
|
| `image.pullPolicy` | `IfNotPresent` | Image pull policy |
|
||||||
| `service.port` | `8090` | Service port |
|
| `service.port` | `8090` | Service port |
|
||||||
| `persistentVolumeClaim.enabled` | `true` | Enable persistent volume |
|
| `persistentVolumeClaim.enabled` | `true` | Enable persistent volume |
|
||||||
@@ -169,7 +169,7 @@ tolerations:
|
|||||||
```yaml
|
```yaml
|
||||||
replicaCount: 3
|
replicaCount: 3
|
||||||
image:
|
image:
|
||||||
tag: "0.18.8"
|
tag: "0.18.7"
|
||||||
service:
|
service:
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
ingress:
|
ingress:
|
||||||
@@ -330,7 +330,7 @@ By default, Beszel Hub uses a PersistentVolumeClaim for data storage. Ensure you
|
|||||||
## Chart Information
|
## Chart Information
|
||||||
|
|
||||||
- **Chart Version**: 0.1.0
|
- **Chart Version**: 0.1.0
|
||||||
- **App Version**: 0.18.8
|
- **App Version**: 0.18.7
|
||||||
- **Kubernetes Version**: 1.19+
|
- **Kubernetes Version**: 1.19+
|
||||||
- **Maintainer**: cloudwithdan (nikoloskid@pm.me)
|
- **Maintainer**: cloudwithdan (nikoloskid@pm.me)
|
||||||
|
|
||||||
|
|||||||
@@ -215,15 +215,9 @@ detect_architecture() {
|
|||||||
x86_64)
|
x86_64)
|
||||||
arch="amd64"
|
arch="amd64"
|
||||||
;;
|
;;
|
||||||
armv5*)
|
armv6l|armv7l)
|
||||||
arch="armv5"
|
|
||||||
;;
|
|
||||||
armv6l)
|
|
||||||
arch="arm"
|
arch="arm"
|
||||||
;;
|
;;
|
||||||
armv7l)
|
|
||||||
arch="armv7"
|
|
||||||
;;
|
|
||||||
aarch64)
|
aarch64)
|
||||||
arch="arm64"
|
arch="arm64"
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user