From 96f007641a48fb773b77c0c05d62eb0f407f2626 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Sat, 23 Dec 2023 15:41:52 +0100 Subject: [PATCH] lang: added translation for notifications menu --- Modules/CPU/notifications.swift | 10 +++++----- Modules/RAM/notifications.swift | 6 +++--- SMC/Helper/Info.plist | 2 +- Stats/Supporting Files/bg.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/ca.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/cs.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/da.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/de.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/el.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/en.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/es.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/et.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/fa.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/fr.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/he.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/hi.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/hr.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/hu.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/id.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/it.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/ja.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/ko.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/nb.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/nl.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/pl.lproj/Localizable.strings | 12 ++++++++++++ .../Supporting Files/pt-BR.lproj/Localizable.strings | 12 ++++++++++++ .../Supporting Files/pt-PT.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/ro.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/ru.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/sk.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/sl.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/sv.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/th.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/tr.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/uk.lproj/Localizable.strings | 12 ++++++++++++ Stats/Supporting Files/vi.lproj/Localizable.strings | 12 ++++++++++++ .../zh-Hans.lproj/Localizable.strings | 12 ++++++++++++ .../zh-Hant.lproj/Localizable.strings | 12 ++++++++++++ 38 files changed, 429 insertions(+), 9 deletions(-) diff --git a/Modules/CPU/notifications.swift b/Modules/CPU/notifications.swift index 3780b0d1..e92927f1 100644 --- a/Modules/CPU/notifications.swift +++ b/Modules/CPU/notifications.swift @@ -86,27 +86,27 @@ class Notifications: NotificationsWrapper { let title = localizedString("CPU usage threshold") if let threshold = Double(self.totalLoadLevel) { - let subtitle = localizedString("Total usage is", "\(Int((value.totalUsage)*100))%") + let subtitle = "\(localizedString("Total load")): \(Int((value.totalUsage)*100))%" self.checkDouble(id: self.totalLoadID, value: value.totalUsage, threshold: threshold, title: title, subtitle: subtitle) } if let threshold = Double(self.systemLoadLevel) { - let subtitle = localizedString("System usage is", "\(Int((value.systemLoad)*100))%") + let subtitle = "\(localizedString("System load")): \(Int((value.systemLoad)*100))%" self.checkDouble(id: self.systemLoadID, value: value.systemLoad, threshold: threshold, title: title, subtitle: subtitle) } if let threshold = Double(self.userLoadLevel) { - let subtitle = localizedString("User usage is", "\(Int((value.systemLoad)*100))%") + let subtitle = "\(localizedString("User load")): \(Int((value.userLoad)*100))%" self.checkDouble(id: self.userLoadID, value: value.userLoad, threshold: threshold, title: title, subtitle: subtitle) } if let threshold = Double(self.eCoresLoadLevel), let usage = value.usageECores { - let subtitle = localizedString("Efficiency cores usage is", "\(Int((value.systemLoad)*100))%") + let subtitle = "\(localizedString("Efficiency cores load")): \(Int((usage)*100))%" self.checkDouble(id: self.eCoresLoadID, value: usage, threshold: threshold, title: title, subtitle: subtitle) } if let threshold = Double(self.pCoresLoadLevel), let usage = value.usagePCores { - let subtitle = localizedString("Performance cores usage is", "\(Int((value.systemLoad)*100))%") + let subtitle = "\(localizedString("Performance cores load")): \(Int((usage)*100))%" self.checkDouble(id: self.pCoresLoadID, value: usage, threshold: threshold, title: title, subtitle: subtitle) } } diff --git a/Modules/RAM/notifications.swift b/Modules/RAM/notifications.swift index 5254c6c8..71d2c66c 100644 --- a/Modules/RAM/notifications.swift +++ b/Modules/RAM/notifications.swift @@ -57,7 +57,7 @@ class Notifications: NotificationsWrapper { self.swapSize = Store.shared.string(key: "\(self.module)_notifications_swap", defaultValue: self.swapSize) self.addArrangedSubview(selectSettingsRow( - title: localizedString("Total usage"), + title: localizedString("Usage"), action: #selector(self.changeTotalUsage), items: notificationLevels, selected: self.totalUsageLevel @@ -106,14 +106,14 @@ class Notifications: NotificationsWrapper { value: Double(value.pressureLevel.rawValue), threshold: Double(threshold.rawValue), title: title, - subtitle: localizedString("RAM pressure is", thresholdPair.key) + subtitle: "\(localizedString("Memory pressure")): \(thresholdPair.key)" ) } } if let threshold = Double(self.swapSize) { let value = Units(bytes: Int64(value.swap.used)) - let subtitle = localizedString("RAM swap size is", value.getReadableMemory()) + let subtitle = "\(localizedString("Swap size")): \(value.getReadableMemory())" self.checkDouble(id: self.freeID, value: value.megabytes, threshold: threshold, title: title, subtitle: subtitle) } } diff --git a/SMC/Helper/Info.plist b/SMC/Helper/Info.plist index e606227f..07ad550c 100644 --- a/SMC/Helper/Info.plist +++ b/SMC/Helper/Info.plist @@ -7,7 +7,7 @@ CFBundleName eu.exelban.Stats.SMC.Helper CFBundleShortVersionString - 1.0.1 + 1.0.0 CFBundleVersion 1 SMAuthorizedClients diff --git a/Stats/Supporting Files/bg.lproj/Localizable.strings b/Stats/Supporting Files/bg.lproj/Localizable.strings index 15072c1e..4bb18dac 100644 --- a/Stats/Supporting Files/bg.lproj/Localizable.strings +++ b/Stats/Supporting Files/bg.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Настройки на Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Показване на графична карта"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Цвят на компресираната памет"; "Free color" = "Цвят на свободната памет"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Показване на преносими дискове"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Качване"; diff --git a/Stats/Supporting Files/ca.lproj/Localizable.strings b/Stats/Supporting Files/ca.lproj/Localizable.strings index c8e4380b..79bfaee5 100644 --- a/Stats/Supporting Files/ca.lproj/Localizable.strings +++ b/Stats/Supporting Files/ca.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU a mostrar"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Mostra els discs extraïbles"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Carregant"; diff --git a/Stats/Supporting Files/cs.lproj/Localizable.strings b/Stats/Supporting Files/cs.lproj/Localizable.strings index 51c57406..8dbe7084 100644 --- a/Stats/Supporting Files/cs.lproj/Localizable.strings +++ b/Stats/Supporting Files/cs.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Nastavení Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Seskupení klastrů"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU k zobrazení"; @@ -269,6 +277,9 @@ "Wired color" = "Barva pevné paměti"; "Compressed color" = "Barva kompresované paměti"; "Free color" = "Barva volné paměti"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Zobrazovat vyměnitelné disky"; @@ -299,6 +310,7 @@ "Fan value" = "Hodnota ventilátoru"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Nahrávání"; diff --git a/Stats/Supporting Files/da.lproj/Localizable.strings b/Stats/Supporting Files/da.lproj/Localizable.strings index 9080cc80..3522537a 100644 --- a/Stats/Supporting Files/da.lproj/Localizable.strings +++ b/Stats/Supporting Files/da.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Navn"; "Format" = "Format"; "Turn off" = "Sluk"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats opsætning"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Grupper efter type"; "Efficiency cores color" = "Efficiency kerner farve"; "Performance cores color" = "Performance kerner farve"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU der vises"; @@ -269,6 +277,9 @@ "Wired color" = "Brugt farve"; "Compressed color" = "Komprimeret farve"; "Free color" = "Fri farve"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Vis eksterne diske"; @@ -299,6 +310,7 @@ "Fan value" = "Blæserværdi"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Du er ved at slukke for blæseren. Dette er ikke en anbefalet handling, da det kan skade din Mac. Er du sikker på du vil fortsætte?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/de.lproj/Localizable.strings b/Stats/Supporting Files/de.lproj/Localizable.strings index 3a16ed16..cd5141da 100644 --- a/Stats/Supporting Files/de.lproj/Localizable.strings +++ b/Stats/Supporting Files/de.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Ausschalten"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats einrichten"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Clustergruppierung"; "Efficiency cores color" = "Efficiency Cores Farbe"; "Performance cores color" = "Performance Cores Farbe"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU auswählen"; @@ -269,6 +277,9 @@ "Wired color" = "Reserviert Farbe"; "Compressed color" = "Komprimiert Farbe"; "Free color" = "Frei Farbe"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Wechseldatenträger anzeigen"; @@ -299,6 +310,7 @@ "Fan value" = "Lüftergeschwindigkeitswert"; "Turn off fan" = "Lüfter ausschalten"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Sie sind dabei den Lüfter auszuschalten. Dies kann den Mac beschädigen und wird daher nicht empfohlen. Möchten Sie wirklich fortfahren?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/el.lproj/Localizable.strings b/Stats/Supporting Files/el.lproj/Localizable.strings index 531bfc82..6109068e 100644 --- a/Stats/Supporting Files/el.lproj/Localizable.strings +++ b/Stats/Supporting Files/el.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Εγκατάσταση Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU προς εμφάνιση"; @@ -269,6 +277,9 @@ "Wired color" = "Χρώμα Δεσμευμένης"; "Compressed color" = "Χρώμα Συμπίεσης"; "Free color" = "Χρώμα Ελεύθερου"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Εμφάνιση αφαιρούμενων δίσκων"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Μεταφόρτωση"; diff --git a/Stats/Supporting Files/en.lproj/Localizable.strings b/Stats/Supporting Files/en.lproj/Localizable.strings index de4b4c14..19552628 100644 --- a/Stats/Supporting Files/en.lproj/Localizable.strings +++ b/Stats/Supporting Files/en.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU to show"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Show removable disks"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/es.lproj/Localizable.strings b/Stats/Supporting Files/es.lproj/Localizable.strings index a6c2ba30..3dd9391a 100644 --- a/Stats/Supporting Files/es.lproj/Localizable.strings +++ b/Stats/Supporting Files/es.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Configuración de Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Agrupación de clústeres"; "Efficiency cores color" = "Color de núcleos de eficiencia"; "Performance cores color" = "Color de núcleos de rendimiento"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU a mostrar"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Mostrar los discos extraíbles"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Carga"; diff --git a/Stats/Supporting Files/et.lproj/Localizable.strings b/Stats/Supporting Files/et.lproj/Localizable.strings index d02439cd..0fcec058 100644 --- a/Stats/Supporting Files/et.lproj/Localizable.strings +++ b/Stats/Supporting Files/et.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Nimi"; "Format" = "Vorming"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Seadistamine"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Klastrite rühmitamine"; "Efficiency cores color" = "Tõhusatuumade värv"; "Performance cores color" = "Jõudlustuumade värv"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU, mida näidata"; @@ -269,6 +277,9 @@ "Wired color" = "Juhtmega värv"; "Compressed color" = "Tihendatud värv"; "Free color" = "Vaba värv"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Kuva irdkettad"; @@ -299,6 +310,7 @@ "Fan value" = "Fänni väärtus"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Üleslaadimine"; diff --git a/Stats/Supporting Files/fa.lproj/Localizable.strings b/Stats/Supporting Files/fa.lproj/Localizable.strings index 4d2a7344..9987c658 100644 --- a/Stats/Supporting Files/fa.lproj/Localizable.strings +++ b/Stats/Supporting Files/fa.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "نصب Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "گروه‌بندی کلاستر"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "نمایش جی پی یو"; @@ -269,6 +277,9 @@ "Wired color" = "رنگ سیستم‌بندی"; "Compressed color" = "رنگ فشرده شده"; "Free color" = "رنگ آزاد"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "نمایش حافظه‌های متصل شده"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "آپلود"; diff --git a/Stats/Supporting Files/fr.lproj/Localizable.strings b/Stats/Supporting Files/fr.lproj/Localizable.strings index d5e40470..d3d7b17e 100644 --- a/Stats/Supporting Files/fr.lproj/Localizable.strings +++ b/Stats/Supporting Files/fr.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Nom"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Configuration de Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Regroupement par cluster"; "Efficiency cores color" = "Couleur des cœurs d'efficacité énergétique"; "Performance cores color" = "Couleur des cœurs de performance"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU à afficher"; @@ -269,6 +277,9 @@ "Wired color" = "Couleur de la mémoire câblée"; "Compressed color" = "Couleur de la mémoire compressée"; "Free color" = "Couleur de la mémoire inactive"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Afficher les disques amovibles"; @@ -299,6 +310,7 @@ "Fan value" = "Vitesse du ventilateur"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Envoi"; diff --git a/Stats/Supporting Files/he.lproj/Localizable.strings b/Stats/Supporting Files/he.lproj/Localizable.strings index 568de2bf..a99e1579 100644 --- a/Stats/Supporting Files/he.lproj/Localizable.strings +++ b/Stats/Supporting Files/he.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "להראות GPU"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "הראה דיסקים הניתנים להסרה"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "העלאה"; diff --git a/Stats/Supporting Files/hi.lproj/Localizable.strings b/Stats/Supporting Files/hi.lproj/Localizable.strings index e651a239..e5869949 100644 --- a/Stats/Supporting Files/hi.lproj/Localizable.strings +++ b/Stats/Supporting Files/hi.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "नाम"; "Format" = "प्रारूप"; "Turn off" = "बंद करें"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "आँकड़े सेटअप"; @@ -230,6 +233,11 @@ "Cluster grouping" = "क्लस्टर समूहीकरण"; "Efficiency cores color" = "दक्षता कोर रंग"; "Performance cores color" = "प्रदर्शन कोर रंग"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "दिखाने के लिए जीपीयू"; @@ -269,6 +277,9 @@ "Wired color" = "वायर्ड रंग"; "Compressed color" = "संपीड़ित रंग"; "Free color" = "मुक्त रंग"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "हटाने योग्य डिस्क दिखाएँ"; @@ -299,6 +310,7 @@ "Fan value" = "फैन वैल्यू"; "Turn off fan" = "पंखा बंद करें"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "आप पंखे को बंद करने जा रहे हैं। यह अनुशंसित कार्रवाई नहीं है जो आपके मैक को नुकसान पहुंचा सकती है, क्या आप वाकई ऐसा करना चाहते हैं?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "अपलोड"; diff --git a/Stats/Supporting Files/hr.lproj/Localizable.strings b/Stats/Supporting Files/hr.lproj/Localizable.strings index a16bf28a..44a51d8a 100644 --- a/Stats/Supporting Files/hr.lproj/Localizable.strings +++ b/Stats/Supporting Files/hr.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Postavljanje programa Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Grafički procesor"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Prikaži prijenosne diskove"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Slanje"; diff --git a/Stats/Supporting Files/hu.lproj/Localizable.strings b/Stats/Supporting Files/hu.lproj/Localizable.strings index 1ef67992..786aac55 100644 --- a/Stats/Supporting Files/hu.lproj/Localizable.strings +++ b/Stats/Supporting Files/hu.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Név"; "Format" = "Formátum"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "A Stats beállítása"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Csoportosítás"; "Efficiency cores color" = "Energiatakarékos magok színe"; "Performance cores color" = "Teljesítmény magok színe"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Megjelenítendő GPU"; @@ -269,6 +277,9 @@ "Wired color" = "Nem lapozható színe"; "Compressed color" = "Tömörített színe"; "Free color" = "Szabad színe"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Eltávolítható adattárolók megjelenítése"; @@ -299,6 +310,7 @@ "Fan value" = "Ventillátor érték"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Feltöltés"; diff --git a/Stats/Supporting Files/id.lproj/Localizable.strings b/Stats/Supporting Files/id.lproj/Localizable.strings index e0288df8..9e5e1987 100644 --- a/Stats/Supporting Files/id.lproj/Localizable.strings +++ b/Stats/Supporting Files/id.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU yang ditampilkan"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Tampilkan disk yang dapat dilepas"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Unggah"; diff --git a/Stats/Supporting Files/it.lproj/Localizable.strings b/Stats/Supporting Files/it.lproj/Localizable.strings index 33369881..1d1c7cb6 100644 --- a/Stats/Supporting Files/it.lproj/Localizable.strings +++ b/Stats/Supporting Files/it.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Nome"; "Format" = "Formato"; "Turn off" = "Disattiva"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Configurazione Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Raggruppamento cluster"; "Efficiency cores color" = "Colore per efficiency core"; "Performance cores color" = "Colore per performance cores"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU da mostrare"; @@ -269,6 +277,9 @@ "Wired color" = "Colore Cablata"; "Compressed color" = "Colore Compressa"; "Free color" = "Colore Libera"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Mostra dischi rimovibili"; @@ -299,6 +310,7 @@ "Fan value" = "Valore ventola"; "Turn off fan" = "Disattiva la ventola"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Stai per disattivare la ventola. Questa azione non è consigliata e può danneggiare il tuo mac, sei sicuro di voler proseguire?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/ja.lproj/Localizable.strings b/Stats/Supporting Files/ja.lproj/Localizable.strings index 7cfb5e54..5dbecfb2 100644 --- a/Stats/Supporting Files/ja.lproj/Localizable.strings +++ b/Stats/Supporting Files/ja.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "名前"; "Format" = "フォーマット"; "Turn off" = "停止"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats セットアップ"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "表示する GPU"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "リムーバブルディスクを表示"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "ファンの停止"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "ファンの停止はmacに大きなダメージを与える可能性がある為、推奨されません。本当に実行しますか?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "送信"; diff --git a/Stats/Supporting Files/ko.lproj/Localizable.strings b/Stats/Supporting Files/ko.lproj/Localizable.strings index 87ea324c..d2a4252c 100644 --- a/Stats/Supporting Files/ko.lproj/Localizable.strings +++ b/Stats/Supporting Files/ko.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "이름"; "Format" = "형식"; "Turn off" = "끄기"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats 설정"; @@ -230,6 +233,11 @@ "Cluster grouping" = "클러스터 묶기"; "Efficiency cores color" = "효율 코어 색상"; "Performance cores color" = "성능 코어 색상"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "표시할 GPU"; @@ -269,6 +277,9 @@ "Wired color" = "연결됨 색상"; "Compressed color" = "압축됨 색상"; "Free color" = "여유 색상"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "이동식 디스크 표시"; @@ -299,6 +310,7 @@ "Fan value" = "팬 값"; "Turn off fan" = "팬 끄기"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "팬을 끄려고 합니다. 팬을 끄는 행위는 Mac을 손상시킬 수 있으므로 권장하지 않습니다. 정말 팬을 끄겠습니까?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "업로드"; diff --git a/Stats/Supporting Files/nb.lproj/Localizable.strings b/Stats/Supporting Files/nb.lproj/Localizable.strings index ebaa2912..eb3fe35f 100644 --- a/Stats/Supporting Files/nb.lproj/Localizable.strings +++ b/Stats/Supporting Files/nb.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats-oppsett"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Klyngegruppering"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU å vise"; @@ -269,6 +277,9 @@ "Wired color" = "Bundet farge"; "Compressed color" = "Komprimert farge"; "Free color" = "Ledig farge"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Vis utløsbare disker"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Opplasting"; diff --git a/Stats/Supporting Files/nl.lproj/Localizable.strings b/Stats/Supporting Files/nl.lproj/Localizable.strings index 9c7219e1..054e9a8f 100644 --- a/Stats/Supporting Files/nl.lproj/Localizable.strings +++ b/Stats/Supporting Files/nl.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU om te laten zien"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Toon verwijderbare schijven"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Uploaden"; diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index c7ca591c..ba12c6b3 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Nazwa"; "Format" = "Format"; "Turn off" = "Wyłączyć"; +"Warning" = "Ostrzeżenie"; +"Critical" = "Krytyczny"; +"Usage" = "Wykorzystanie"; // Setup "Stats Setup" = "Konfiguracja Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Grupowanie klastrów"; "Efficiency cores color" = "Kolor rdzeni energooszczędnych"; "Performance cores color" = "Kolor rdzeni wydajnościowych"; +"Total load" = "Całkowite obciążenie"; +"System load" = "Obciążenie systemu"; +"User load" = "Obciążenie użytkownika"; +"Efficiency cores load" = "Obciążenie rdzeni energooszczędnych"; +"Performance cores load" = "Obciążenie rdzeni wydajnościowych"; // GPU "GPU to show" = "GPU do wyświetlenia"; @@ -269,6 +277,9 @@ "Wired color" = "Kolor układowej przestrzeni"; "Compressed color" = "Kolor skompresowanej przestrzeni"; "Free color" = "Kolor wolnej przestrzeni"; +"Free memory (less than)" = "Wolna pamięć (mniej niż)"; +"Swap size" = "Rozmiar swap"; +"Free RAM is" = "Wolna pamięć RAM %0"; // Disk "Show removable disks" = "Pokaż dyski wymienne"; @@ -299,6 +310,7 @@ "Fan value" = "Wartość wentylatora"; "Turn off fan" = "Wyłączyć wentylator"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Zamierzasz wyłączyć wentylator. To nie jest zalecana czynność, która może spowodować uszkodzenie komputera Mac. Czy na pewno chcesz to zrobić?"; +"Sensor threshold" = "Próg czujnika"; // Network "Uploading" = "Wysyłanie"; diff --git a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings index fb75f51f..865e6dbe 100644 --- a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Nome"; "Format" = "Formato"; "Turn off" = "Deligar"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Configurar Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Agrupamento"; "Efficiency cores color" = "Cor para Núcleos de Eficiência"; "Performance cores color" = "Cor para Núcleos de Desempenho"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU para mostrar"; @@ -269,6 +277,9 @@ "Wired color" = "Cor para com fio"; "Compressed color" = "Cor para comprimido"; "Free color" = "Cor livre"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Mostrar discos removíveis"; @@ -299,6 +310,7 @@ "Fan value" = "Valor do ventoinha"; "Turn off fan" = "Desligar ventoninha"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Você irá desligar a ventoinha. Esta não é uma ação recomendada, pois pode danificar o seu mac, tem certeza que deseja fazer isto?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Enviando"; diff --git a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings index b5e1677d..4570732f 100644 --- a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Configurações do Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Agrupamento de cluster"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU para mostrar"; @@ -269,6 +277,9 @@ "Wired color" = "Cor por fio"; "Compressed color" = "Cor comprimida"; "Free color" = "Cor grátis"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Mostrar discos removíveis"; @@ -299,6 +310,7 @@ "Fan value" = "Valor da ventoinha"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Enviando"; diff --git a/Stats/Supporting Files/ro.lproj/Localizable.strings b/Stats/Supporting Files/ro.lproj/Localizable.strings index 48827a2a..687184d6 100644 --- a/Stats/Supporting Files/ro.lproj/Localizable.strings +++ b/Stats/Supporting Files/ro.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Placa video să fie arătată"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Arată discurile detașabile"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Incarcă"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index 1a74bc10..ceb6a360 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Название"; "Format" = "Формат"; "Turn off" = "Выключить"; +"Warning" = "Предупреждение"; +"Critical" = "Критический"; +"Usage" = "Использование"; // Setup "Stats Setup" = "Настройки Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Кластерная группировка"; "Efficiency cores color" = "Цвет энергоэффективных ядер"; "Performance cores color" = "Цвет производительных ядер"; +"Total load" = "Общая нагрузка"; +"System load" = "Системная нагрузка"; +"User load" = "Пользовательская нагрузка"; +"Efficiency cores load" = "Нагрузка энергоэффективных ядер"; +"Performance cores load" = "Нагрузка производительных ядер"; // GPU "GPU to show" = "Активный графический процессор"; @@ -269,6 +277,9 @@ "Wired color" = "Цвет зарезервированной памяти"; "Compressed color" = "Цвет сжатой памяти"; "Free color" = "Цвет свободной памяти"; +"Free memory (less than)" = "Свободная память (менее чем)"; +"Swap size" = "Размер swap"; +"Free RAM is" = "Свободная оперативная память %0"; // Disk "Show removable disks" = "Показать съемные диски"; @@ -299,6 +310,7 @@ "Fan value" = "Значение вентилятора"; "Turn off fan" = "Выключить вентилятор"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Вы собираетесь выключить вентилятор. Это не рекомендуемое действие, которое может сломать ваш Mac. Вы уверены, что хотите это сделать?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Выгрузка"; diff --git a/Stats/Supporting Files/sk.lproj/Localizable.strings b/Stats/Supporting Files/sk.lproj/Localizable.strings index 1fdbd440..587a2c84 100644 --- a/Stats/Supporting Files/sk.lproj/Localizable.strings +++ b/Stats/Supporting Files/sk.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Nastavenie Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Zoskupenie klastrov"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Zobraziť GPU"; @@ -269,6 +277,9 @@ "Wired color" = "Pevná"; "Compressed color" = "Komprimovaná"; "Free color" = "Voľná"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Zobrazovať vymeniteľné disky"; @@ -299,6 +310,7 @@ "Fan value" = "Otáčky ventilátora"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Nahrávanie (upload)"; diff --git a/Stats/Supporting Files/sl.lproj/Localizable.strings b/Stats/Supporting Files/sl.lproj/Localizable.strings index 4b01e5d2..a9ccafcb 100644 --- a/Stats/Supporting Files/sl.lproj/Localizable.strings +++ b/Stats/Supporting Files/sl.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Ime"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats konfigurator"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Združevanje v gruče"; "Efficiency cores color" = "Barva učinkovitih jeder"; "Performance cores color" = "Barva performančnih jeder"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPE za prikaz"; @@ -269,6 +277,9 @@ "Wired color" = "Žična barva"; "Compressed color" = "Stisnjena barva"; "Free color" = "Prosta barva"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Prikaži odstranljive diske"; @@ -299,6 +310,7 @@ "Fan value" = "Vrednost ventilatorja"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Oddajanje"; diff --git a/Stats/Supporting Files/sv.lproj/Localizable.strings b/Stats/Supporting Files/sv.lproj/Localizable.strings index ae1765cd..698412b7 100644 --- a/Stats/Supporting Files/sv.lproj/Localizable.strings +++ b/Stats/Supporting Files/sv.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Setup"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU att visa"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Visa flyttbara skivor"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Skickar"; diff --git a/Stats/Supporting Files/th.lproj/Localizable.strings b/Stats/Supporting Files/th.lproj/Localizable.strings index 8119917a..1c3817a4 100644 --- a/Stats/Supporting Files/th.lproj/Localizable.strings +++ b/Stats/Supporting Files/th.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "การตั้งค่าสถิติ"; @@ -230,6 +233,11 @@ "Cluster grouping" = "การจัดกลุ่ม Cluster"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "แสดง GPU"; @@ -269,6 +277,9 @@ "Wired color" = "สี Wired"; "Compressed color" = "สีที่บีบอัด"; "Free color" = "สีที่ว่าง"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "แสดงดิสก์ถอดได้"; @@ -299,6 +310,7 @@ "Fan value" = "ค่าพัดลม"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "กำลังอัปโหลด"; diff --git a/Stats/Supporting Files/tr.lproj/Localizable.strings b/Stats/Supporting Files/tr.lproj/Localizable.strings index 4cc00b1a..26eab89c 100644 --- a/Stats/Supporting Files/tr.lproj/Localizable.strings +++ b/Stats/Supporting Files/tr.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Ad"; "Format" = "Format"; "Turn off" = "Kapat"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats Kurulumu"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Küme gruplaması"; "Efficiency cores color" = "Verimlilik çekirdeklerinin rengi"; "Performance cores color" = "Performans çekirdeklerinin rengi"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "Gösterilecek GPU"; @@ -269,6 +277,9 @@ "Wired color" = "Bağlı rengi"; "Compressed color" = "Sıkıştırılmış rengi"; "Free color" = "Boşta rengi"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Çıkarılabilir diskleri göster"; @@ -299,6 +310,7 @@ "Fan value" = "Fan değeri"; "Turn off fan" = "Fanı kapat"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Fanı kapatacaksınız. Bu, Mac'inize zarar verebilecek bir eylemdir ve önerilmez. Bunu yapmak istediğinizden emin misiniz?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Yükleme"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index ecac93c5..8d0252db 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Назва"; "Format" = "Формат"; "Turn off" = "Вимкнути"; +"Warning" = "Попереджнння"; +"Critical" = "Критичний"; +"Usage" = "Використання"; // Setup "Stats Setup" = "Налаштування"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Кластерне групування"; "Efficiency cores color" = "Колір енергоефективних ядер"; "Performance cores color" = "Колір високопродуктивних ядер"; +"Total load" = "Загальне використання"; +"System load" = "Використання системи"; +"User load" = "Використання користувача"; +"Efficiency cores load" = "Використання енергоефективних ядер"; +"Performance cores load" = "Використання високопродуктивних ядер"; // GPU "GPU to show" = "Активний графічний процесор"; @@ -269,6 +277,9 @@ "Wired color" = "Колір постійної пам’яті"; "Compressed color" = "Колір стисненої пам’яті"; "Free color" = "Колір вільної пам’яті"; +"Free memory (less than)" = "Вільна пам'ять (менше ніж)"; +"Swap size" = "Розмір swap"; +"Free RAM is" = "Вільна оперативна пам'ять %0"; // Disk "Show removable disks" = "Показати зйомні диски"; @@ -299,6 +310,7 @@ "Fan value" = "Значення вентилятора"; "Turn off fan" = "Вимкнути вентилятор"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "Ви збираєтеся вимкнути вентилятор. Це не рекомендована дія, яка може зламати ваш Mac. Ви впевнені, що хочете це зробити?"; +"Sensor threshold" = "Поріг датчика"; // Network "Uploading" = "Висилання"; diff --git a/Stats/Supporting Files/vi.lproj/Localizable.strings b/Stats/Supporting Files/vi.lproj/Localizable.strings index 788b1132..2c0c4dc5 100644 --- a/Stats/Supporting Files/vi.lproj/Localizable.strings +++ b/Stats/Supporting Files/vi.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "Name"; "Format" = "Format"; "Turn off" = "Turn off"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Cài đặt Stats"; @@ -230,6 +233,11 @@ "Cluster grouping" = "Cluster grouping"; "Efficiency cores color" = "Efficiency cores color"; "Performance cores color" = "Performance cores color"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "GPU để hiển thị"; @@ -269,6 +277,9 @@ "Wired color" = "Wired color"; "Compressed color" = "Compressed color"; "Free color" = "Free color"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "Hiển thị các đĩa rời"; @@ -299,6 +310,7 @@ "Fan value" = "Fan value"; "Turn off fan" = "Turn off fan"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "Tải lên"; diff --git a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings index c09f1323..750da378 100644 --- a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "名称"; "Format" = "格式"; "Turn off" = "禁用"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats 设置"; @@ -230,6 +233,11 @@ "Cluster grouping" = "按集群分组"; "Efficiency cores color" = "能效核心颜色"; "Performance cores color" = "性能核心颜色"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "显示的 GPU"; @@ -269,6 +277,9 @@ "Wired color" = "联动内存颜色"; "Compressed color" = "被压缩内存颜色"; "Free color" = "可用内存颜色"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "显示可移动磁盘"; @@ -299,6 +310,7 @@ "Fan value" = "风扇转数"; "Turn off fan" = "禁用风扇"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "你想禁用你的风扇,这可能损害你的 Mac。不推荐进行这个操作,你确定要继续吗?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "上传"; diff --git a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings index 253be4c0..9fe1f561 100644 --- a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings @@ -74,6 +74,9 @@ "Name" = "名稱"; "Format" = "格式"; "Turn off" = "關閉"; +"Warning" = "Warning"; +"Critical" = "Critical"; +"Usage" = "Usage"; // Setup "Stats Setup" = "Stats 設定"; @@ -230,6 +233,11 @@ "Cluster grouping" = "依群集分組"; "Efficiency cores color" = "節能核心色彩"; "Performance cores color" = "效能核心色彩"; +"Total load" = "Total load"; +"System load" = "System load"; +"User load" = "User load"; +"Efficiency cores load" = "Efficiency cores load"; +"Performance cores load" = "Performance cores load"; // GPU "GPU to show" = "顯示顯示卡"; @@ -269,6 +277,9 @@ "Wired color" = "固定記憶體色彩"; "Compressed color" = "已壓縮色彩"; "Free color" = "可使用記憶體色彩"; +"Free memory (less than)" = "Free memory (less than)"; +"Swap size" = "Swap size"; +"Free RAM is" = "Free RAM is %0"; // Disk "Show removable disks" = "顯示抽取式磁碟"; @@ -299,6 +310,7 @@ "Fan value" = "風扇轉速值"; "Turn off fan" = "關閉風扇"; "You are going to turn off the fan. This is not recommended action that can damage your mac, are you sure you want to do that?" = "您似乎要關閉您 Mac 的風扇。這可能會造成 Mac 的損毀,不建議進行此操作,您確定仍要關閉風扇嗎?"; +"Sensor threshold" = "Sensor threshold"; // Network "Uploading" = "上傳";