From a7ac638ac835a46617597a361e482bc73e6c9aba Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Tue, 15 Aug 2023 13:45:06 +0200 Subject: [PATCH] feat: added an alert that informs that turning off the fan is not recommended action before turning off the fan (#1567) --- Kit/scripts/i18n.py | 2 ++ Modules/Sensors/popup.swift | 24 ++++++++++++++++++- .../bg.lproj/Localizable.strings | 3 +++ .../ca.lproj/Localizable.strings | 3 +++ .../cs.lproj/Localizable.strings | 3 +++ .../da.lproj/Localizable.strings | 3 +++ .../de.lproj/Localizable.strings | 3 +++ .../el.lproj/Localizable.strings | 3 +++ .../en.lproj/Localizable.strings | 3 +++ .../es.lproj/Localizable.strings | 3 +++ .../et.lproj/Localizable.strings | 3 +++ .../fa.lproj/Localizable.strings | 3 +++ .../fr.lproj/Localizable.strings | 3 +++ .../he.lproj/Localizable.strings | 3 +++ .../hr.lproj/Localizable.strings | 3 +++ .../hu.lproj/Localizable.strings | 3 +++ .../id.lproj/Localizable.strings | 3 +++ .../it.lproj/Localizable.strings | 3 +++ .../ja.lproj/Localizable.strings | 3 +++ .../ko.lproj/Localizable.strings | 3 +++ .../nb.lproj/Localizable.strings | 3 +++ .../nl.lproj/Localizable.strings | 3 +++ .../pl.lproj/Localizable.strings | 3 +++ .../pt-BR.lproj/Localizable.strings | 3 +++ .../pt-PT.lproj/Localizable.strings | 3 +++ .../ro.lproj/Localizable.strings | 3 +++ .../ru.lproj/Localizable.strings | 3 +++ .../sk.lproj/Localizable.strings | 3 +++ .../sl.lproj/Localizable.strings | 3 +++ .../sv.lproj/Localizable.strings | 3 +++ .../th.lproj/Localizable.strings | 3 +++ .../tr.lproj/Localizable.strings | 3 +++ .../uk.lproj/Localizable.strings | 3 +++ .../vi.lproj/Localizable.strings | 3 +++ .../zh-Hans.lproj/Localizable.strings | 3 +++ .../zh-Hant.lproj/Localizable.strings | 3 +++ 36 files changed, 127 insertions(+), 1 deletion(-) diff --git a/Kit/scripts/i18n.py b/Kit/scripts/i18n.py index 2e42af24..3e031f1d 100644 --- a/Kit/scripts/i18n.py +++ b/Kit/scripts/i18n.py @@ -41,6 +41,8 @@ class i18n: for v in en_dict: en_key = en_dict[v].get("key") + if v not in lang_dict: + sys.exit(f"missing key `{en_key}` in `{name}` on line `{v}`") lang_ley = lang_dict[v].get("key") if lang_ley != en_key: sys.exit(f"missing or wrong key `{lang_ley}` in `{name}` on line `{v}`, must be `{en_key}`") diff --git a/Modules/Sensors/popup.swift b/Modules/Sensors/popup.swift index 0a0179cf..1f711a10 100644 --- a/Modules/Sensors/popup.swift +++ b/Modules/Sensors/popup.swift @@ -1084,10 +1084,32 @@ private class ModeButtons: NSStackView { @objc private func offMode(_ sender: NSButton) { if sender.state.rawValue == 0 { - self.turboBtn.state = .on + self.offBtn.state = .on return } + if !Store.shared.bool(key: "Sensors_turnOffFanAlert", defaultValue: false) { + let alert = NSAlert() + alert.messageText = localizedString("Turn off fan") + alert.informativeText = localizedString("You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?") + alert.showsSuppressionButton = true + alert.addButton(withTitle: localizedString("Turn off")) + alert.addButton(withTitle: localizedString("Cancel")) + + if alert.runModal() == .alertFirstButtonReturn { + if let suppressionButton = alert.suppressionButton, suppressionButton.state == .on { + Store.shared.set(key: "Sensors_turnOffFanAlert", value: true) + } + self.toggleOffMode(sender) + } else { + self.offBtn.state = .off + } + } else { + self.toggleOffMode(sender) + } + } + + private func toggleOffMode(_ sender: NSButton) { self.manualBtn.state = .off self.autoBtn.state = .off self.offBtn.state = .on diff --git a/Stats/Supporting Files/bg.lproj/Localizable.strings b/Stats/Supporting Files/bg.lproj/Localizable.strings index 93dfe237..d1eac191 100644 --- a/Stats/Supporting Files/bg.lproj/Localizable.strings +++ b/Stats/Supporting Files/bg.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Настройки на Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Качване"; diff --git a/Stats/Supporting Files/ca.lproj/Localizable.strings b/Stats/Supporting Files/ca.lproj/Localizable.strings index 2ece5742..4006ebe3 100644 --- a/Stats/Supporting Files/ca.lproj/Localizable.strings +++ b/Stats/Supporting Files/ca.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Carregant"; diff --git a/Stats/Supporting Files/cs.lproj/Localizable.strings b/Stats/Supporting Files/cs.lproj/Localizable.strings index b7d79139..29641749 100644 --- a/Stats/Supporting Files/cs.lproj/Localizable.strings +++ b/Stats/Supporting Files/cs.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Nastavení"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Nastavení Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Nainstalovat pomocnou aplikaci ovládání ventilátorů"; "Uninstall fan helper" = "Odinstalovat pomocnou aplikaci ventilátorů"; "Fan value" = "Hodnota ventilátoru"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Nahrávání"; diff --git a/Stats/Supporting Files/da.lproj/Localizable.strings b/Stats/Supporting Files/da.lproj/Localizable.strings index 3c3c2437..27314275 100644 --- a/Stats/Supporting Files/da.lproj/Localizable.strings +++ b/Stats/Supporting Files/da.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Indstillinger"; "Name" = "Navn"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats opsætning"; @@ -295,6 +296,8 @@ "Install fan helper" = "Tillad blæserkontrol"; "Uninstall fan helper" = "Afinstaller blæserkontrol"; "Fan value" = "Blæserværdi"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/de.lproj/Localizable.strings b/Stats/Supporting Files/de.lproj/Localizable.strings index 5aa3742d..b8fcc122 100644 --- a/Stats/Supporting Files/de.lproj/Localizable.strings +++ b/Stats/Supporting Files/de.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Einstellungen"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats einrichten"; @@ -295,6 +296,8 @@ "Install fan helper" = "Lüftersteuerung installieren"; "Uninstall fan helper" = "Lüftersteuerung deinstallieren"; "Fan value" = "Lüftergeschwindigkeitswert"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/el.lproj/Localizable.strings b/Stats/Supporting Files/el.lproj/Localizable.strings index 1ddade2f..8b559ffd 100644 --- a/Stats/Supporting Files/el.lproj/Localizable.strings +++ b/Stats/Supporting Files/el.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Ρυθμίσεις"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Εγκατάσταση Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Εγκατάσταση fan helper"; "Uninstall fan helper" = "Απεγκατάσταση fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Μεταφόρτωση"; diff --git a/Stats/Supporting Files/en.lproj/Localizable.strings b/Stats/Supporting Files/en.lproj/Localizable.strings index 5dc2cfd8..46b41b09 100644 --- a/Stats/Supporting Files/en.lproj/Localizable.strings +++ b/Stats/Supporting Files/en.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/es.lproj/Localizable.strings b/Stats/Supporting Files/es.lproj/Localizable.strings index 4900f78c..cb752198 100644 --- a/Stats/Supporting Files/es.lproj/Localizable.strings +++ b/Stats/Supporting Files/es.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Ajustes"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Configuración de Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Carga"; diff --git a/Stats/Supporting Files/et.lproj/Localizable.strings b/Stats/Supporting Files/et.lproj/Localizable.strings index b5b67be5..026151f7 100644 --- a/Stats/Supporting Files/et.lproj/Localizable.strings +++ b/Stats/Supporting Files/et.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Seaded"; "Name" = "Nimi"; "Format" = "Vorming"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Seadistamine"; @@ -295,6 +296,8 @@ "Install fan helper" = "Installi ventilaatoriabi"; "Uninstall fan helper" = "Desinstalli fänniabi"; "Fan value" = "Fänni väärtus"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Üleslaadimine"; diff --git a/Stats/Supporting Files/fa.lproj/Localizable.strings b/Stats/Supporting Files/fa.lproj/Localizable.strings index 7dcf2d4a..7e69a8b7 100644 --- a/Stats/Supporting Files/fa.lproj/Localizable.strings +++ b/Stats/Supporting Files/fa.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "نصب Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "آپلود"; diff --git a/Stats/Supporting Files/fr.lproj/Localizable.strings b/Stats/Supporting Files/fr.lproj/Localizable.strings index 9972e337..a756c27d 100644 --- a/Stats/Supporting Files/fr.lproj/Localizable.strings +++ b/Stats/Supporting Files/fr.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Paramètres"; "Name" = "Nom"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Configuration de Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Installer l'assistant des ventilateurs"; "Uninstall fan helper" = "Désinstaller l'assistant des ventilateurs"; "Fan value" = "Vitesse du ventilateur"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Envoi"; diff --git a/Stats/Supporting Files/he.lproj/Localizable.strings b/Stats/Supporting Files/he.lproj/Localizable.strings index 5c138006..5eaf7d82 100644 --- a/Stats/Supporting Files/he.lproj/Localizable.strings +++ b/Stats/Supporting Files/he.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "העלאה"; diff --git a/Stats/Supporting Files/hr.lproj/Localizable.strings b/Stats/Supporting Files/hr.lproj/Localizable.strings index e6168629..23318828 100644 --- a/Stats/Supporting Files/hr.lproj/Localizable.strings +++ b/Stats/Supporting Files/hr.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Postavljanje programa Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Slanje"; diff --git a/Stats/Supporting Files/hu.lproj/Localizable.strings b/Stats/Supporting Files/hu.lproj/Localizable.strings index a0da39ab..dde4fd71 100644 --- a/Stats/Supporting Files/hu.lproj/Localizable.strings +++ b/Stats/Supporting Files/hu.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Beállítások"; "Name" = "Név"; "Format" = "Formátum"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "A Stats beállítása"; @@ -295,6 +296,8 @@ "Install fan helper" = "Ventillátor segítő telepítése"; "Uninstall fan helper" = "Ventillátor segítő törlése"; "Fan value" = "Ventillátor érték"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Feltöltés"; diff --git a/Stats/Supporting Files/id.lproj/Localizable.strings b/Stats/Supporting Files/id.lproj/Localizable.strings index 81536f21..7924b007 100644 --- a/Stats/Supporting Files/id.lproj/Localizable.strings +++ b/Stats/Supporting Files/id.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Unggah"; diff --git a/Stats/Supporting Files/it.lproj/Localizable.strings b/Stats/Supporting Files/it.lproj/Localizable.strings index 0ac6e29a..68bf4855 100644 --- a/Stats/Supporting Files/it.lproj/Localizable.strings +++ b/Stats/Supporting Files/it.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Impostazioni"; "Name" = "Nome"; "Format" = "Formato"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Configurazione Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Installa estensione ventole"; "Uninstall fan helper" = "Disinstalla estensione ventole"; "Fan value" = "Valore ventola"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Upload"; diff --git a/Stats/Supporting Files/ja.lproj/Localizable.strings b/Stats/Supporting Files/ja.lproj/Localizable.strings index 190749f7..60aedcec 100644 --- a/Stats/Supporting Files/ja.lproj/Localizable.strings +++ b/Stats/Supporting Files/ja.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "送信"; diff --git a/Stats/Supporting Files/ko.lproj/Localizable.strings b/Stats/Supporting Files/ko.lproj/Localizable.strings index 42315f6c..bbc7bc3c 100644 --- a/Stats/Supporting Files/ko.lproj/Localizable.strings +++ b/Stats/Supporting Files/ko.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "설정"; "Name" = "이름"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats 설정"; @@ -295,6 +296,8 @@ "Install fan helper" = "팬 헬퍼 설치"; "Uninstall fan helper" = "팬 헬퍼 제거"; "Fan value" = "팬 값"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "업로드"; diff --git a/Stats/Supporting Files/nb.lproj/Localizable.strings b/Stats/Supporting Files/nb.lproj/Localizable.strings index 21aceeb5..88a60cb4 100644 --- a/Stats/Supporting Files/nb.lproj/Localizable.strings +++ b/Stats/Supporting Files/nb.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Innstillinger"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats-oppsett"; @@ -295,6 +296,8 @@ "Install fan helper" = "Installer viftehjelper"; "Uninstall fan helper" = "Avinstaller viftehjelper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Opplasting"; diff --git a/Stats/Supporting Files/nl.lproj/Localizable.strings b/Stats/Supporting Files/nl.lproj/Localizable.strings index 92a71214..eddf9a8f 100644 --- a/Stats/Supporting Files/nl.lproj/Localizable.strings +++ b/Stats/Supporting Files/nl.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Uploaden"; diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index 0bbe9a53..095157f7 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Ustawienia"; "Name" = "Nazwa"; "Format" = "Format"; +"Turn off" = "Wyłączyć"; // Setup "Stats Setup" = "Konfiguracja Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Zainstaluj narzędzie do wentylatora"; "Uninstall fan helper" = "Odinstaluj narzędzie do wentylatora"; "Fan value" = "Wartość wentylatora"; +"Turn off fan" = "Wyłączyć wentylator"; +"You are going to turn off the fan. That is not recommended action that can broke 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ć?"; // 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 0588267e..884cbaaf 100644 --- a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Configurações"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Configurar Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Instalar software auxiliar para ventoinha"; "Uninstall fan helper" = "Desinstalar software auxiliar para ventoinha"; "Fan value" = "Valor do ventoinha"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Enviando"; diff --git a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings index e193168d..0028ebab 100644 --- a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Definições"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Configurações do Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Instalar auxiliar das ventoinhas"; "Uninstall fan helper" = "Desinstalar auxiliar das ventoinhas"; "Fan value" = "Valor da ventoinha"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Enviando"; diff --git a/Stats/Supporting Files/ro.lproj/Localizable.strings b/Stats/Supporting Files/ro.lproj/Localizable.strings index 287f8d60..1da91d10 100644 --- a/Stats/Supporting Files/ro.lproj/Localizable.strings +++ b/Stats/Supporting Files/ro.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Incarcă"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index 1204d10e..22f81d15 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Настройки"; "Name" = "Название"; "Format" = "Формат"; +"Turn off" = "Выключить"; // Setup "Stats Setup" = "Настройки Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Установить помощник для вентилятора"; "Uninstall fan helper" = "Удалить помощник для вентилятора"; "Fan value" = "Значение вентилятора"; +"Turn off fan" = "Выключить вентилятор"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "Вы собираетесь выключить вентилятор. Это не рекомендуемое действие, которое может сломать ваш Mac. Вы уверены, что хотите это сделать?"; // Network "Uploading" = "Выгрузка"; diff --git a/Stats/Supporting Files/sk.lproj/Localizable.strings b/Stats/Supporting Files/sk.lproj/Localizable.strings index 6e407129..acebf040 100644 --- a/Stats/Supporting Files/sk.lproj/Localizable.strings +++ b/Stats/Supporting Files/sk.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Nastavenia"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Nastavenie Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Inštalácia pomocníka pre ventilátor"; "Uninstall fan helper" = "Odinštalácia pomocníka ventilátora"; "Fan value" = "Otáčky ventilátora"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Nahrávanie (upload)"; diff --git a/Stats/Supporting Files/sl.lproj/Localizable.strings b/Stats/Supporting Files/sl.lproj/Localizable.strings index c454c8f1..22b8b8ee 100644 --- a/Stats/Supporting Files/sl.lproj/Localizable.strings +++ b/Stats/Supporting Files/sl.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Nastavitve"; "Name" = "Ime"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats konfigurator"; @@ -295,6 +296,8 @@ "Install fan helper" = "Namesti pomočnika za ventilatorje"; "Uninstall fan helper" = "Odstrani pomočnika za ventilatorje"; "Fan value" = "Vrednost ventilatorja"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Oddajanje"; diff --git a/Stats/Supporting Files/sv.lproj/Localizable.strings b/Stats/Supporting Files/sv.lproj/Localizable.strings index f687be71..48e1725e 100644 --- a/Stats/Supporting Files/sv.lproj/Localizable.strings +++ b/Stats/Supporting Files/sv.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Skickar"; diff --git a/Stats/Supporting Files/th.lproj/Localizable.strings b/Stats/Supporting Files/th.lproj/Localizable.strings index 1d65a7b0..e7d3e611 100644 --- a/Stats/Supporting Files/th.lproj/Localizable.strings +++ b/Stats/Supporting Files/th.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "การตั้งค่า"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "การตั้งค่าสถิติ"; @@ -295,6 +296,8 @@ "Install fan helper" = "ติดตั้งตัวช่วยพัดลม"; "Uninstall fan helper" = "ถอนการติดตั้งตัวช่วยพัดลม"; "Fan value" = "ค่าพัดลม"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "กำลังอัปโหลด"; diff --git a/Stats/Supporting Files/tr.lproj/Localizable.strings b/Stats/Supporting Files/tr.lproj/Localizable.strings index 2ffd68ca..f5fddf69 100644 --- a/Stats/Supporting Files/tr.lproj/Localizable.strings +++ b/Stats/Supporting Files/tr.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats Kurulumu"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "Yükleme"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index bfba8c8a..97a7e56d 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Налаштування"; "Name" = "Назва"; "Format" = "Формат"; +"Turn off" = "Вимкнути"; // Setup "Stats Setup" = "Stats Setup"; @@ -295,6 +296,8 @@ "Install fan helper" = "Встановити помічник для вентилятора"; "Uninstall fan helper" = "Видалити помічник для вентилятора"; "Fan value" = "Значення вентилятора"; +"Turn off fan" = "Вимкнути вентилятор"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "Ви збираєтеся вимкнути вентилятор. Це не рекомендована дія, яка може зламати ваш Mac. Ви впевнені, що хочете це зробити?"; // Network "Uploading" = "Висилання"; diff --git a/Stats/Supporting Files/vi.lproj/Localizable.strings b/Stats/Supporting Files/vi.lproj/Localizable.strings index 92c24cfc..da029210 100644 --- a/Stats/Supporting Files/vi.lproj/Localizable.strings +++ b/Stats/Supporting Files/vi.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "Settings"; "Name" = "Name"; "Format" = "Format"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Cài đặt Stats"; @@ -295,6 +296,8 @@ "Install fan helper" = "Install fan helper"; "Uninstall fan helper" = "Uninstall fan helper"; "Fan value" = "Fan value"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // 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 a9d97622..a136533f 100644 --- a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "设置"; "Name" = "名称"; "Format" = "格式"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats 设置"; @@ -295,6 +296,8 @@ "Install fan helper" = "安装风扇控制程序"; "Uninstall fan helper" = "卸载风扇控制程序"; "Fan value" = "风扇转数"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "上传"; diff --git a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings index aa50594d..4232af23 100644 --- a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings @@ -73,6 +73,7 @@ "Settings" = "設定"; "Name" = "名稱"; "Format" = "格式"; +"Turn off" = "Turn off"; // Setup "Stats Setup" = "Stats 設定"; @@ -295,6 +296,8 @@ "Install fan helper" = "安裝風扇輔助程式"; "Uninstall fan helper" = "解除安裝風扇輔助程式"; "Fan value" = "風扇轉速值"; +"Turn off fan" = "Turn off fan"; +"You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?" = "You are going to turn off the fan. That is not recommended action that can broke your mac, are you sure you want to do that?"; // Network "Uploading" = "上傳";