lang: added translation for notifications menu

This commit is contained in:
Serhiy Mytrovtsiy
2023-12-23 15:41:52 +01:00
parent ff878e2421
commit 96f007641a
38 changed files with 429 additions and 9 deletions

View File

@@ -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)
}
}

View File

@@ -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)
}
}

View File

@@ -7,7 +7,7 @@
<key>CFBundleName</key>
<string>eu.exelban.Stats.SMC.Helper</string>
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>SMAuthorizedClients</key>

View File

@@ -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" = "Качване";

View File

@@ -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";

View File

@@ -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í";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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" = "Μεταφόρτωση";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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" = "آپلود";

View File

@@ -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";

View File

@@ -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" = "העלאה";

View File

@@ -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" = "अपलोड";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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" = "送信";

View File

@@ -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" = "업로드";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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ă";

View File

@@ -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" = "Выгрузка";

View File

@@ -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)";

View File

@@ -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";

View File

@@ -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";

View File

@@ -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" = "กำลังอัปโหลด";

View File

@@ -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";

View File

@@ -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" = "Висилання";

View File

@@ -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";

View File

@@ -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" = "上传";

View File

@@ -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" = "上傳";