diff --git a/Modules/CPU/settings.swift b/Modules/CPU/settings.swift index 08d353af..83d99334 100644 --- a/Modules/CPU/settings.swift +++ b/Modules/CPU/settings.swift @@ -128,19 +128,17 @@ internal class Settings: NSStackView, Settings_v { } @objc private func changeUpdateInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateIntervalValue = value - Store.shared.set(key: "\(self.title)_updateInterval", value: value) - self.setInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateIntervalValue = value + Store.shared.set(key: "\(self.title)_updateInterval", value: value) + self.setInterval(value) } @objc private func changeUpdateTopInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateTopIntervalValue = value - Store.shared.set(key: "\(self.title)_updateTopInterval", value: value) - self.setTopInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateTopIntervalValue = value + Store.shared.set(key: "\(self.title)_updateTopInterval", value: value) + self.setTopInterval(value) } @objc private func changeNumberOfProcesses(_ sender: NSMenuItem) { diff --git a/Modules/Disk/settings.swift b/Modules/Disk/settings.swift index d3dd0e37..6bbff602 100644 --- a/Modules/Disk/settings.swift +++ b/Modules/Disk/settings.swift @@ -137,9 +137,8 @@ internal class Settings: NSStackView, Settings_v { self.callback() } @objc private func changeUpdateInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.setUpdateInterval(value: value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.setUpdateInterval(value: value) } public func setUpdateInterval(value: Int) { self.updateIntervalValue = value diff --git a/Modules/GPU/settings.swift b/Modules/GPU/settings.swift index 0d1c622b..5f0cf102 100644 --- a/Modules/GPU/settings.swift +++ b/Modules/GPU/settings.swift @@ -108,11 +108,10 @@ internal class Settings: NSStackView, Settings_v { } @objc private func changeUpdateInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateIntervalValue = value - Store.shared.set(key: "\(self.title)_updateInterval", value: value) - self.setInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateIntervalValue = value + Store.shared.set(key: "\(self.title)_updateInterval", value: value) + self.setInterval(value) } @objc private func handleSelection(_ sender: NSMenuItem) { guard let key = sender.representedObject as? String else { return } diff --git a/Modules/RAM/settings.swift b/Modules/RAM/settings.swift index c97fab21..6c0036cc 100644 --- a/Modules/RAM/settings.swift +++ b/Modules/RAM/settings.swift @@ -139,18 +139,16 @@ internal class Settings: NSStackView, Settings_v, NSTextFieldDelegate { } @objc private func changeUpdateInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateIntervalValue = value - Store.shared.set(key: "\(self.title)_updateInterval", value: value) - self.setInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateIntervalValue = value + Store.shared.set(key: "\(self.title)_updateInterval", value: value) + self.setInterval(value) } @objc private func changeUpdateTopInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateTopIntervalValue = value - Store.shared.set(key: "\(self.title)_updateTopInterval", value: value) - self.setTopInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateTopIntervalValue = value + Store.shared.set(key: "\(self.title)_updateTopInterval", value: value) + self.setTopInterval(value) } @objc private func changeNumberOfProcesses(_ sender: NSMenuItem) { if let value = Int(sender.title) { diff --git a/Modules/Sensors/settings.swift b/Modules/Sensors/settings.swift index 1b5aec5e..352f729b 100644 --- a/Modules/Sensors/settings.swift +++ b/Modules/Sensors/settings.swift @@ -169,11 +169,10 @@ internal class Settings: NSStackView, Settings_v { self.callback() } @objc private func changeUpdateInterval(_ sender: NSMenuItem) { - if let value = Int(sender.title.replacingOccurrences(of: " sec", with: "")) { - self.updateIntervalValue = value - Store.shared.set(key: "\(self.title)_updateInterval", value: value) - self.setInterval(value) - } + guard let key = sender.representedObject as? String, let value = Int(key) else { return } + self.updateIntervalValue = value + Store.shared.set(key: "\(self.title)_updateInterval", value: value) + self.setInterval(value) } @objc private func toggleSpeedState(_ sender: NSControl) { self.fanSpeedState = controlState(sender) diff --git a/Stats/Supporting Files/ar.lproj/Localizable.strings b/Stats/Supporting Files/ar.lproj/Localizable.strings index ee27373d..22e10174 100644 --- a/Stats/Supporting Files/ar.lproj/Localizable.strings +++ b/Stats/Supporting Files/ar.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "إعدادات الإحصاءات"; diff --git a/Stats/Supporting Files/bg.lproj/Localizable.strings b/Stats/Supporting Files/bg.lproj/Localizable.strings index 3b811d1e..9178c57f 100644 --- a/Stats/Supporting Files/bg.lproj/Localizable.strings +++ b/Stats/Supporting Files/bg.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Настройки на Stats"; diff --git a/Stats/Supporting Files/ca.lproj/Localizable.strings b/Stats/Supporting Files/ca.lproj/Localizable.strings index f316b2cd..5a92cabf 100644 --- a/Stats/Supporting Files/ca.lproj/Localizable.strings +++ b/Stats/Supporting Files/ca.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configuració de Stats"; diff --git a/Stats/Supporting Files/cs.lproj/Localizable.strings b/Stats/Supporting Files/cs.lproj/Localizable.strings index 68a0a4b5..c63fa84e 100644 --- a/Stats/Supporting Files/cs.lproj/Localizable.strings +++ b/Stats/Supporting Files/cs.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Nastavení Stats"; diff --git a/Stats/Supporting Files/da.lproj/Localizable.strings b/Stats/Supporting Files/da.lproj/Localizable.strings index efe5574b..cd59a943 100644 --- a/Stats/Supporting Files/da.lproj/Localizable.strings +++ b/Stats/Supporting Files/da.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats opsætning"; diff --git a/Stats/Supporting Files/de.lproj/Localizable.strings b/Stats/Supporting Files/de.lproj/Localizable.strings index b5e13fa7..a0ef45a3 100644 --- a/Stats/Supporting Files/de.lproj/Localizable.strings +++ b/Stats/Supporting Files/de.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats einrichten"; diff --git a/Stats/Supporting Files/el.lproj/Localizable.strings b/Stats/Supporting Files/el.lproj/Localizable.strings index 300a247b..fc491358 100644 --- a/Stats/Supporting Files/el.lproj/Localizable.strings +++ b/Stats/Supporting Files/el.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Εγκατάσταση Stats"; diff --git a/Stats/Supporting Files/en-AU.lproj/Localizable.strings b/Stats/Supporting Files/en-AU.lproj/Localizable.strings index 8ff3d724..dba33048 100644 --- a/Stats/Supporting Files/en-AU.lproj/Localizable.strings +++ b/Stats/Supporting Files/en-AU.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/en-GB.lproj/Localizable.strings b/Stats/Supporting Files/en-GB.lproj/Localizable.strings index b8797d3d..25faeb12 100644 --- a/Stats/Supporting Files/en-GB.lproj/Localizable.strings +++ b/Stats/Supporting Files/en-GB.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/en.lproj/Localizable.strings b/Stats/Supporting Files/en.lproj/Localizable.strings index d4a5f3e0..a26ed596 100644 --- a/Stats/Supporting Files/en.lproj/Localizable.strings +++ b/Stats/Supporting Files/en.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/es.lproj/Localizable.strings b/Stats/Supporting Files/es.lproj/Localizable.strings index 56383842..a246571a 100644 --- a/Stats/Supporting Files/es.lproj/Localizable.strings +++ b/Stats/Supporting Files/es.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configuración de Stats"; diff --git a/Stats/Supporting Files/et.lproj/Localizable.strings b/Stats/Supporting Files/et.lproj/Localizable.strings index 5d1ac01f..99f5bb3b 100644 --- a/Stats/Supporting Files/et.lproj/Localizable.strings +++ b/Stats/Supporting Files/et.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Seadistamine"; diff --git a/Stats/Supporting Files/fa.lproj/Localizable.strings b/Stats/Supporting Files/fa.lproj/Localizable.strings index 6cf41365..e31242a8 100644 --- a/Stats/Supporting Files/fa.lproj/Localizable.strings +++ b/Stats/Supporting Files/fa.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "نصب Stats"; diff --git a/Stats/Supporting Files/fi.lproj/Localizable.strings b/Stats/Supporting Files/fi.lproj/Localizable.strings index 390ee760..2199de6a 100644 --- a/Stats/Supporting Files/fi.lproj/Localizable.strings +++ b/Stats/Supporting Files/fi.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats asennus"; diff --git a/Stats/Supporting Files/fr.lproj/Localizable.strings b/Stats/Supporting Files/fr.lproj/Localizable.strings index 1f716fb6..dccd26a6 100644 --- a/Stats/Supporting Files/fr.lproj/Localizable.strings +++ b/Stats/Supporting Files/fr.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configuration de Stats"; diff --git a/Stats/Supporting Files/he.lproj/Localizable.strings b/Stats/Supporting Files/he.lproj/Localizable.strings index 50069558..7066e6f7 100644 --- a/Stats/Supporting Files/he.lproj/Localizable.strings +++ b/Stats/Supporting Files/he.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/hi.lproj/Localizable.strings b/Stats/Supporting Files/hi.lproj/Localizable.strings index c7c860cd..9e933685 100644 --- a/Stats/Supporting Files/hi.lproj/Localizable.strings +++ b/Stats/Supporting Files/hi.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "आँकड़े सेटअप"; diff --git a/Stats/Supporting Files/hr.lproj/Localizable.strings b/Stats/Supporting Files/hr.lproj/Localizable.strings index bbe17cb7..e50793a5 100644 --- a/Stats/Supporting Files/hr.lproj/Localizable.strings +++ b/Stats/Supporting Files/hr.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Postavljanje programa Stats"; diff --git a/Stats/Supporting Files/hu.lproj/Localizable.strings b/Stats/Supporting Files/hu.lproj/Localizable.strings index a7af8910..d35914f3 100644 --- a/Stats/Supporting Files/hu.lproj/Localizable.strings +++ b/Stats/Supporting Files/hu.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "A Stats beállítása"; diff --git a/Stats/Supporting Files/id.lproj/Localizable.strings b/Stats/Supporting Files/id.lproj/Localizable.strings index 77961498..10bf0a52 100644 --- a/Stats/Supporting Files/id.lproj/Localizable.strings +++ b/Stats/Supporting Files/id.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/it.lproj/Localizable.strings b/Stats/Supporting Files/it.lproj/Localizable.strings index b2fd5245..3a53fb55 100644 --- a/Stats/Supporting Files/it.lproj/Localizable.strings +++ b/Stats/Supporting Files/it.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configurazione Stats"; diff --git a/Stats/Supporting Files/ja.lproj/Localizable.strings b/Stats/Supporting Files/ja.lproj/Localizable.strings index fd49c524..d9fda0d5 100644 --- a/Stats/Supporting Files/ja.lproj/Localizable.strings +++ b/Stats/Supporting Files/ja.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats セットアップ"; diff --git a/Stats/Supporting Files/ko.lproj/Localizable.strings b/Stats/Supporting Files/ko.lproj/Localizable.strings index 6dc9314f..b21c7545 100644 --- a/Stats/Supporting Files/ko.lproj/Localizable.strings +++ b/Stats/Supporting Files/ko.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats 설정"; diff --git a/Stats/Supporting Files/nb.lproj/Localizable.strings b/Stats/Supporting Files/nb.lproj/Localizable.strings index 19d622b6..308f20cd 100644 --- a/Stats/Supporting Files/nb.lproj/Localizable.strings +++ b/Stats/Supporting Files/nb.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats-oppsett"; diff --git a/Stats/Supporting Files/nl.lproj/Localizable.strings b/Stats/Supporting Files/nl.lproj/Localizable.strings index 1dfbc1c8..298b54cd 100644 --- a/Stats/Supporting Files/nl.lproj/Localizable.strings +++ b/Stats/Supporting Files/nl.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index 12d51609..a734f920 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Uruchomić"; "Stop" = "Zatrzymać"; "Uninstall" = "Odinstalować"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Konfiguracja Stats"; diff --git a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings index 82bc12d4..50b247ac 100644 --- a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configurar Stats"; diff --git a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings index 8b3634c9..1ace2902 100644 --- a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Configurações do Stats"; diff --git a/Stats/Supporting Files/ro.lproj/Localizable.strings b/Stats/Supporting Files/ro.lproj/Localizable.strings index 60f7807e..2d1d35bf 100644 --- a/Stats/Supporting Files/ro.lproj/Localizable.strings +++ b/Stats/Supporting Files/ro.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Setup"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index 976a07a5..49109dab 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Запустить"; "Stop" = "Остановить"; "Uninstall" = "Удалить"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Настройки Stats"; diff --git a/Stats/Supporting Files/sk.lproj/Localizable.strings b/Stats/Supporting Files/sk.lproj/Localizable.strings index 126e5cd8..66e41580 100644 --- a/Stats/Supporting Files/sk.lproj/Localizable.strings +++ b/Stats/Supporting Files/sk.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Nastavenie Stats"; diff --git a/Stats/Supporting Files/sl.lproj/Localizable.strings b/Stats/Supporting Files/sl.lproj/Localizable.strings index f3bcded0..fa16101f 100644 --- a/Stats/Supporting Files/sl.lproj/Localizable.strings +++ b/Stats/Supporting Files/sl.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats konfigurator"; diff --git a/Stats/Supporting Files/sv.lproj/Localizable.strings b/Stats/Supporting Files/sv.lproj/Localizable.strings index b36dce4b..716e8323 100644 --- a/Stats/Supporting Files/sv.lproj/Localizable.strings +++ b/Stats/Supporting Files/sv.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats-installation"; diff --git a/Stats/Supporting Files/th.lproj/Localizable.strings b/Stats/Supporting Files/th.lproj/Localizable.strings index 3d5d2329..f889745b 100644 --- a/Stats/Supporting Files/th.lproj/Localizable.strings +++ b/Stats/Supporting Files/th.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "การตั้งค่าสถิติ"; diff --git a/Stats/Supporting Files/tr.lproj/Localizable.strings b/Stats/Supporting Files/tr.lproj/Localizable.strings index 10eb4ed0..198197bb 100644 --- a/Stats/Supporting Files/tr.lproj/Localizable.strings +++ b/Stats/Supporting Files/tr.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats Kurulumu"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index fd2e1c8d..6caf5ace 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Запустити"; "Stop" = "Зупинити"; "Uninstall" = "Видалити"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Налаштування"; diff --git a/Stats/Supporting Files/vi.lproj/Localizable.strings b/Stats/Supporting Files/vi.lproj/Localizable.strings index 39a24956..b8cae943 100644 --- a/Stats/Supporting Files/vi.lproj/Localizable.strings +++ b/Stats/Supporting Files/vi.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Thiết lập Stats"; diff --git a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings index e1ba2d4d..516d1eb6 100644 --- a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "运行"; "Stop" = "停止"; "Uninstall" = "卸载"; +"1 sec" = "1 秒"; +"2 sec" = "2 秒"; +"3 sec" = "3 秒"; +"5 sec" = "5 秒"; +"10 sec" = "10 秒"; +"15 sec" = "15 秒"; +"30 sec" = "30 秒"; +"60 sec" = "60 秒"; // Setup "Stats Setup" = "Stats 设置"; diff --git a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings index 76901ad7..596ba3d8 100644 --- a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings @@ -92,6 +92,14 @@ "Run" = "Run"; "Stop" = "Stop"; "Uninstall" = "Uninstall"; +"1 sec" = "1 sec"; +"2 sec" = "2 sec"; +"3 sec" = "3 sec"; +"5 sec" = "5 sec"; +"10 sec" = "10 sec"; +"15 sec" = "15 sec"; +"30 sec" = "30 sec"; +"60 sec" = "60 sec"; // Setup "Stats Setup" = "Stats 設定";