diff --git a/.swiftlint.yml b/.swiftlint.yml index cbc29974..028f8217 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -41,6 +41,7 @@ identifier_name: - _values - _writeTS - LineChartHistory + - SpeedPictogramColor line_length: 200 diff --git a/Kit/Widgets/Speed.swift b/Kit/Widgets/Speed.swift index d399d7d1..e6f705ba 100644 --- a/Kit/Widgets/Speed.swift +++ b/Kit/Widgets/Speed.swift @@ -16,8 +16,8 @@ public class SpeedWidget: WidgetWrapper { private var valueState: Bool = true private var unitsState: Bool = true private var monochromeState: Bool = false - private var valueColorState: Bool = false - private var transparentIconsState: Bool = false + private var valueColorState: String = "none" + private var iconColorState: String = "default" private var valueAlignmentState: String = "right" private var modeState: String = "twoRows" private var reverseOrderState: Bool = false @@ -33,20 +33,36 @@ public class SpeedWidget: WidgetWrapper { private var width: CGFloat = 58 - private var valueColorView: NSSwitch? = nil - private var transparentIconView: NSSwitch? = nil + private var valueColorView: NSPopUpButton? = nil private var valueAlignmentView: NSPopUpButton? = nil private var iconAlignmentView: NSPopUpButton? = nil + private var iconColorView: NSPopUpButton? = nil + + private var downloadColor: (String) -> NSColor {{ state in + if state == "none" { return .textColor } + var color = self.monochromeState ? MonochromeColor.blue : (self.downloadColorState.additional as? NSColor ?? NSColor.systemBlue) + if self.downloadValue < 1024 { + if state == "transparent" { + color = .clear + } else if state == "default" { + color = .textColor + } + } + return color + }} + private var uploadColor: (String) -> NSColor {{ state in + if state == "none" { return .textColor } + var color = self.monochromeState ? MonochromeColor.red : (self.uploadColorState.additional as? NSColor ?? NSColor.red) + if self.uploadValue < 1024 { + if state == "transparent" { + color = .clear + } else if state == "default" { + color = .textColor + } + } + return color + }} - private var downloadColor: NSColor { - self.monochromeState ? MonochromeColor.blue : (self.downloadColorState.additional as? NSColor ?? NSColor.systemBlue) - } - private var uploadColor: NSColor { - self.monochromeState ? MonochromeColor.red : (self.uploadColorState.additional as? NSColor ?? NSColor.red) - } - private var noActivityColor: NSColor { - self.transparentIconsState ? NSColor.clear : NSColor.textColor - } private var valueAlignment: NSTextAlignment { get { if let alignmentPair = Alignments.first(where: { $0.key == self.valueAlignmentState }) { @@ -80,14 +96,17 @@ public class SpeedWidget: WidgetWrapper { self.icon = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_icon", defaultValue: self.icon) self.unitsState = Store.shared.bool(key: "\(self.title)_\(self.type.rawValue)_units", defaultValue: self.unitsState) self.monochromeState = Store.shared.bool(key: "\(self.title)_\(self.type.rawValue)_monochrome", defaultValue: self.monochromeState) - self.valueColorState = Store.shared.bool(key: "\(self.title)_\(self.type.rawValue)_valueColor", defaultValue: self.valueColorState) + self.valueColorState = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_valueColor", defaultValue: self.valueColorState) + if self.valueColorState == "0" { + self.valueColorState = "none" + } self.downloadColorState = SColor.fromString(Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_downloadColor", defaultValue: self.downloadColorState.key)) self.uploadColorState = SColor.fromString(Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_uploadColor", defaultValue: self.uploadColorState.key)) - self.transparentIconsState = Store.shared.bool(key: "\(self.title)_\(self.type.rawValue)_transparentIcons", defaultValue: self.transparentIconsState) self.valueAlignmentState = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_valueAlignment", defaultValue: self.valueAlignmentState) self.modeState = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_mode", defaultValue: self.modeState) self.reverseOrderState = Store.shared.bool(key: "\(self.title)_\(self.type.rawValue)_reverseOrder", defaultValue: self.reverseOrderState) self.iconAlignmentState = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_iconAlignment", defaultValue: self.iconAlignmentState) + self.iconColorState = Store.shared.string(key: "\(self.title)_\(self.type.rawValue)_iconColor", defaultValue: self.iconColorState) } if preview { @@ -120,40 +139,38 @@ public class SpeedWidget: WidgetWrapper { private func drawOneRow() -> CGFloat { var width: CGFloat = Constants.Widget.margin.x - let downloadIconColor = self.downloadValue >= 1_024 ? self.downloadColor : self.noActivityColor - let uploadIconColor = self.uploadValue >= 1_024 ? self.uploadColor : self.noActivityColor if self.reverseOrderState { width = self.drawRowItem( initWidth: width, symbol: self.symbols[1], - iconColor: downloadIconColor, + iconColor: self.downloadColor(self.iconColorState), value: self.downloadValue, - valueColor: self.valueColorState && self.downloadValue >= 1_024 ? self.downloadColor : NSColor.textColor + valueColor: self.downloadColor(self.valueColorState) ) width += 4 width = self.drawRowItem( initWidth: width, symbol: self.symbols[0], - iconColor: uploadIconColor, + iconColor: self.uploadColor(self.iconColorState), value: self.uploadValue, - valueColor: self.valueColorState && self.uploadValue >= 1_024 ? self.uploadColor : NSColor.textColor + valueColor: self.uploadColor(self.valueColorState) ) } else { width = self.drawRowItem( initWidth: width, symbol: self.symbols[0], - iconColor: uploadIconColor, + iconColor: self.uploadColor(self.iconColorState), value: self.uploadValue, - valueColor: self.valueColorState && self.uploadValue >= 1_024 ? self.uploadColor : NSColor.textColor + valueColor: self.uploadColor(self.valueColorState) ) width += 4 width = self.drawRowItem( initWidth: width, symbol: self.symbols[1], - iconColor: downloadIconColor, + iconColor: self.downloadColor(self.iconColorState), value: self.downloadValue, - valueColor: self.valueColorState && self.downloadValue >= 1_024 ? self.downloadColor : NSColor.textColor + valueColor: self.downloadColor(self.valueColorState) ) } @@ -310,12 +327,12 @@ public class SpeedWidget: WidgetWrapper { let downloadStringAttributes = [ NSAttributedString.Key.font: NSFont.systemFont(ofSize: 9, weight: .light), - NSAttributedString.Key.foregroundColor: self.valueColorState && self.downloadValue >= 1_024 ? self.downloadColor : NSColor.textColor, + NSAttributedString.Key.foregroundColor: self.downloadColor(self.valueColorState), NSAttributedString.Key.paragraphStyle: style ] let uploadStringAttributes = [ NSAttributedString.Key.font: NSFont.systemFont(ofSize: 9, weight: .light), - NSAttributedString.Key.foregroundColor: self.valueColorState && self.uploadValue >= 1_024 ? self.uploadColor : NSColor.textColor, + NSAttributedString.Key.foregroundColor: self.uploadColor(self.valueColorState), NSAttributedString.Key.paragraphStyle: style ] @@ -362,12 +379,12 @@ public class SpeedWidget: WidgetWrapper { var downloadCircle = NSBezierPath() downloadCircle = NSBezierPath(ovalIn: CGRect(x: x, y: downloadY, width: size, height: size)) - (self.downloadValue >= 1_024 ? self.downloadColor : self.noActivityColor).set() + self.downloadColor(self.iconColorState).set() downloadCircle.fill() var uploadCircle = NSBezierPath() uploadCircle = NSBezierPath(ovalIn: CGRect(x: x, y: uploadY, width: size, height: size)) - (self.uploadValue >= 1_024 ? self.uploadColor : self.noActivityColor).set() + self.uploadColor(self.iconColorState).set() uploadCircle.fill() } @@ -396,7 +413,7 @@ public class SpeedWidget: WidgetWrapper { arrowAngle: arrowAngle ) - (self.downloadValue >= 1_024 ? self.downloadColor : self.noActivityColor).set() + self.downloadColor(self.iconColorState).set() downloadArrow.lineWidth = lineWidth downloadArrow.stroke() downloadArrow.close() @@ -409,7 +426,7 @@ public class SpeedWidget: WidgetWrapper { arrowAngle: arrowAngle ) - (self.uploadValue >= 1_024 ? self.uploadColor : self.noActivityColor).set() + self.uploadColor(self.iconColorState).set() uploadArrow.lineWidth = lineWidth uploadArrow.stroke() uploadArrow.close() @@ -424,7 +441,7 @@ public class SpeedWidget: WidgetWrapper { if self.symbols.count > 1 { let downloadAttributes = [ NSAttributedString.Key.font: NSFont.systemFont(ofSize: 9, weight: .regular), - NSAttributedString.Key.foregroundColor: self.downloadValue >= 1_024 ? self.downloadColor : self.noActivityColor, + NSAttributedString.Key.foregroundColor: self.downloadColor(self.iconColorState), NSAttributedString.Key.paragraphStyle: NSMutableParagraphStyle() ] let rect = CGRect(x: x, y: downloadY, width: 8, height: rowHeight) @@ -435,7 +452,7 @@ public class SpeedWidget: WidgetWrapper { if !self.symbols.isEmpty { let uploadAttributes = [ NSAttributedString.Key.font: NSFont.systemFont(ofSize: 9, weight: .regular), - NSAttributedString.Key.foregroundColor: self.uploadValue >= 1_024 ? self.uploadColor : self.noActivityColor, + NSAttributedString.Key.foregroundColor: self.uploadColor(self.iconColorState), NSAttributedString.Key.paragraphStyle: NSMutableParagraphStyle() ] let rect = CGRect(x: x, y: uploadY, width: 8, height: rowHeight) @@ -449,22 +466,8 @@ public class SpeedWidget: WidgetWrapper { public override func settings() -> NSView { let view = SettingsContainerView() - let pictogramTransparency = switchView( - action: #selector(self.toggleTransparentIcons), - state: self.transparentIconsState - ) - pictogramTransparency.isEnabled = self.icon != "none" - self.transparentIconView = pictogramTransparency - - let colorizeValue = switchView( - action: #selector(self.toggleValueColor), - state: self.valueColorState - ) - colorizeValue.isEnabled = self.valueState - self.valueColorView = colorizeValue - let valueAlignment = selectView( - action: #selector(toggleValueAlignment), + action: #selector(self.toggleValueAlignment), items: Alignments, selected: self.valueAlignmentState ) @@ -472,13 +475,29 @@ public class SpeedWidget: WidgetWrapper { self.valueAlignmentView = valueAlignment let iconAlignment = selectView( - action: #selector(toggleIconAlignment), + action: #selector(self.toggleIconAlignment), items: Alignments.filter({ $0.key != "center" }), selected: self.iconAlignmentState ) iconAlignment.isEnabled = self.icon != "none" self.iconAlignmentView = iconAlignment + let iconColor = selectView( + action: #selector(self.toggleIconColor), + items: SpeedPictogramColor.filter({ $0.key != "none" }), + selected: self.iconColorState + ) + iconColor.isEnabled = self.icon != "none" + self.iconColorView = iconColor + + let valueColor = selectView( + action: #selector(self.toggleValueColor), + items: SpeedPictogramColor, + selected: self.valueColorState + ) + valueColor.isEnabled = self.valueState + self.valueColorView = valueColor + view.addArrangedSubview(PreferencesSection([ PreferencesRow(localizedString("Display mode"), component: selectView( action: #selector(self.changeDisplayMode), @@ -497,7 +516,7 @@ public class SpeedWidget: WidgetWrapper { items: SpeedPictogram, selected: self.icon )), - PreferencesRow(localizedString("Transparent pictogram when no activity"), component: pictogramTransparency), + PreferencesRow(localizedString("Colorize"), component: iconColor), PreferencesRow(localizedString("Alignment"), component: iconAlignment) ])) @@ -506,7 +525,7 @@ public class SpeedWidget: WidgetWrapper { action: #selector(self.toggleValue), state: self.valueState )), - PreferencesRow(localizedString("Colorize value"), component: colorizeValue), + PreferencesRow(localizedString("Colorize value"), component: valueColor), PreferencesRow(localizedString("Alignment"), component: valueAlignment), PreferencesRow(localizedString("Units"), component: switchView( action: #selector(self.toggleUnits), @@ -565,7 +584,7 @@ public class SpeedWidget: WidgetWrapper { @objc private func toggleIcon(_ sender: NSMenuItem) { guard let key = sender.representedObject as? String else { return } self.icon = key - self.transparentIconView?.isEnabled = self.icon != "none" + self.iconColorView?.isEnabled = self.icon != "none" self.iconAlignmentView?.isEnabled = self.icon != "none" Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_icon", value: key) self.display() @@ -577,9 +596,12 @@ public class SpeedWidget: WidgetWrapper { self.display() } - @objc private func toggleValueColor(_ sender: NSControl) { - self.valueColorState = controlState(sender) - Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_valueColor", value: self.valueColorState) + @objc private func toggleValueColor(_ sender: NSMenuItem) { + guard let key = sender.representedObject as? String else { return } + if let newColor = SpeedPictogramColor.first(where: { $0.key == key }) { + self.valueColorState = newColor.key + } + Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_valueColor", value: key) self.display() } @@ -619,12 +641,6 @@ public class SpeedWidget: WidgetWrapper { } } - @objc private func toggleTransparentIcons(_ sender: NSControl) { - self.transparentIconsState = controlState(sender) - Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_transparentIcons", value: self.transparentIconsState) - self.display() - } - @objc private func toggleValueAlignment(_ sender: NSMenuItem) { guard let key = sender.representedObject as? String else { return } if let newAlignment = Alignments.first(where: { $0.key == key }) { @@ -642,4 +658,13 @@ public class SpeedWidget: WidgetWrapper { Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_iconAlignment", value: key) self.display() } + + @objc private func toggleIconColor(_ sender: NSMenuItem) { + guard let key = sender.representedObject as? String else { return } + if let newColor = SpeedPictogramColor.first(where: { $0.key == key }) { + self.iconColorState = newColor.key + } + Store.shared.set(key: "\(self.title)_\(self.type.rawValue)_iconColor", value: key) + self.display() + } } diff --git a/Kit/types.swift b/Kit/types.swift index 0365df52..a2304707 100644 --- a/Kit/types.swift +++ b/Kit/types.swift @@ -116,6 +116,13 @@ internal let SpeedPictogram: [KeyValue_t] = [ KeyValue_t(key: "arrows", value: "Arrows"), KeyValue_t(key: "chars", value: "Characters") ] +internal let SpeedPictogramColor: [KeyValue_t] = [ + KeyValue_t(key: "none", value: "None"), + KeyValue_t(key: "separator", value: "separator"), + KeyValue_t(key: "default", value: "Default color"), + KeyValue_t(key: "transparent", value: "Transparent when no activity"), + KeyValue_t(key: "constant", value: "Constant color") +] internal let BatteryAdditionals: [KeyValue_t] = [ KeyValue_t(key: "none", value: "None"), diff --git a/Stats/Supporting Files/ar.lproj/Localizable.strings b/Stats/Supporting Files/ar.lproj/Localizable.strings index 3291524a..f2e3887c 100644 --- a/Stats/Supporting Files/ar.lproj/Localizable.strings +++ b/Stats/Supporting Files/ar.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "خط ذو تساوي المسافات"; "Reverse order" = "ترتيب عكسي"; "Chart history" = "مدة المخطط"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "فتح إعدادات الوحدة"; @@ -366,7 +369,6 @@ "Nonactive state color" = "لون الحالة غير النشطة"; "Connectivity host (ICMP)" = "مضيف الاتصال (ICMP)"; "Leave empty to disable the check" = "اتركه فارغًا لتعطيل الفحص"; -"Transparent pictogram when no activity" = "رمز بياني شفاف عند عدم وجود نشاط"; "Connectivity history" = "سجل الاتصال"; "Auto-refresh public IP address" = "تحديث تلقائي لعنوان IP العام"; "Every hour" = "كل ساعة"; diff --git a/Stats/Supporting Files/bg.lproj/Localizable.strings b/Stats/Supporting Files/bg.lproj/Localizable.strings index e21934a5..81b93ae9 100644 --- a/Stats/Supporting Files/bg.lproj/Localizable.strings +++ b/Stats/Supporting Files/bg.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Отваряне на настройките на модула"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Цвят на неактивното състояние"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Оставете празно, за да изключите проверката"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/ca.lproj/Localizable.strings b/Stats/Supporting Files/ca.lproj/Localizable.strings index 696bb963..882f6a37 100644 --- a/Stats/Supporting Files/ca.lproj/Localizable.strings +++ b/Stats/Supporting Files/ca.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Tipus de lletra monoespaiat"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Obre la configuració del mòdul"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/cs.lproj/Localizable.strings b/Stats/Supporting Files/cs.lproj/Localizable.strings index 18e4e814..3e36dab3 100644 --- a/Stats/Supporting Files/cs.lproj/Localizable.strings +++ b/Stats/Supporting Files/cs.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Otevřít nastavení modulu"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Barva neaktivního stavu"; "Connectivity host (ICMP)" = "Hostitel připojení (ICMP)"; "Leave empty to disable the check" = "Pro vypnutí kontroly ponechte prázdné pole"; -"Transparent pictogram when no activity" = "Průhledný piktogram při inaktivitě"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/da.lproj/Localizable.strings b/Stats/Supporting Files/da.lproj/Localizable.strings index e0c15772..568e9df5 100644 --- a/Stats/Supporting Files/da.lproj/Localizable.strings +++ b/Stats/Supporting Files/da.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced skrifttype"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Åben indstillinger for moduler"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Inaktiv farve"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Lad feltet være tom for at deaktivere tjekket"; -"Transparent pictogram when no activity" = "Gennemsigtigt pictogram ved inaktivitet"; "Connectivity history" = "Forbindelseshistorik"; "Auto-refresh public IP address" = "Automatisk opdatering af offentlig IP adresse"; "Every hour" = "Hver time"; diff --git a/Stats/Supporting Files/de.lproj/Localizable.strings b/Stats/Supporting Files/de.lproj/Localizable.strings index 446b4729..0e7c53bc 100644 --- a/Stats/Supporting Files/de.lproj/Localizable.strings +++ b/Stats/Supporting Files/de.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospace-Schrift"; "Reverse order" = "Reihenfolge umkehren"; "Chart history" = "Diagramm-Zeitfenster"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Modul Einstellungen öffnen"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Inaktiver-Status Farbe"; "Connectivity host (ICMP)" = "Verbindungsverfügbarkeits-Host (ICMP)"; "Leave empty to disable the check" = "Leer lassen zum Deaktivieren"; -"Transparent pictogram when no activity" = "Transparentes Piktogramm ohne Aktivität"; "Connectivity history" = "Verbindungshistorie"; "Auto-refresh public IP address" = "Öffentliche IP automatisch aktualisieren"; "Every hour" = "Jede Stunde"; diff --git a/Stats/Supporting Files/el.lproj/Localizable.strings b/Stats/Supporting Files/el.lproj/Localizable.strings index 1c36fe6f..df0591f8 100644 --- a/Stats/Supporting Files/el.lproj/Localizable.strings +++ b/Stats/Supporting Files/el.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Μονόχωρη γραμματοσειρά"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Άνοιγμα ρυθμίσεων ενότητας"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/en-GB.lproj/Localizable.strings b/Stats/Supporting Files/en-GB.lproj/Localizable.strings index 3011bbe4..0807a6ec 100644 --- a/Stats/Supporting Files/en-GB.lproj/Localizable.strings +++ b/Stats/Supporting Files/en-GB.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Open module settings"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state colour"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/en.lproj/Localizable.strings b/Stats/Supporting Files/en.lproj/Localizable.strings index 41de7442..630fe3ab 100644 --- a/Stats/Supporting Files/en.lproj/Localizable.strings +++ b/Stats/Supporting Files/en.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Open module settings"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/es.lproj/Localizable.strings b/Stats/Supporting Files/es.lproj/Localizable.strings index 70d3e51b..ed74f61e 100644 --- a/Stats/Supporting Files/es.lproj/Localizable.strings +++ b/Stats/Supporting Files/es.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Fuente monoespaciada"; "Reverse order" = "Orden inverso"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Abrir la configruación del módulo"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Color de estado inactivo"; "Connectivity host (ICMP)" = "Host de conectividad (ICMP)"; "Leave empty to disable the check" = "Dejar vacío para desactivar"; -"Transparent pictogram when no activity" = "Icono transparente si no hay actividad"; "Connectivity history" = "Historial de conectividad"; "Auto-refresh public IP address" = "Auto-actualizar IP pública"; "Every hour" = "Cada hora"; diff --git a/Stats/Supporting Files/et.lproj/Localizable.strings b/Stats/Supporting Files/et.lproj/Localizable.strings index c64a1650..e5f3c3d9 100644 --- a/Stats/Supporting Files/et.lproj/Localizable.strings +++ b/Stats/Supporting Files/et.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Üheruumiline kirjastiil"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Ava mooduli sätted"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Mitteaktiivse oleku värv"; "Connectivity host (ICMP)" = "Ühendushost (ICMP)"; "Leave empty to disable the check" = "Tšeki keelamiseks jätke tühjaks"; -"Transparent pictogram when no activity" = "Läbipaistev piktogramm, kui tegevus puudub"; "Connectivity history" = "Ühenduse ajalugu"; "Auto-refresh public IP address" = "Avaliku IP-aadressi automaatne värskendamine"; "Every hour" = "Iga tund"; diff --git a/Stats/Supporting Files/fa.lproj/Localizable.strings b/Stats/Supporting Files/fa.lproj/Localizable.strings index bf97cb96..89566c59 100644 --- a/Stats/Supporting Files/fa.lproj/Localizable.strings +++ b/Stats/Supporting Files/fa.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "باز کردن تنظیمات ماژول‌ها"; @@ -366,7 +369,6 @@ "Nonactive state color" = "رنگ حالت غیر فعال"; "Connectivity host (ICMP)" = "میزبان اتصال (ICMP)"; "Leave empty to disable the check" = "خالی بگذارید تا بررسی غیرفعال شود"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/fr.lproj/Localizable.strings b/Stats/Supporting Files/fr.lproj/Localizable.strings index d4d5dad6..08970275 100644 --- a/Stats/Supporting Files/fr.lproj/Localizable.strings +++ b/Stats/Supporting Files/fr.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Police à espacement fixe"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Ouvrir les paramètres du module"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Couleur de l'état inactif"; "Connectivity host (ICMP)" = "Hôte de connectivité (ICMP)"; "Leave empty to disable the check" = "Laissez vide pour désactiver la vérification"; -"Transparent pictogram when no activity" = "Pictogramme transparent en l'absence d'activité"; "Connectivity history" = "Historique de la connectivité"; "Auto-refresh public IP address" = "Actualiser automatiquement l'adresse IP publique"; "Every hour" = "Toutes les heures"; diff --git a/Stats/Supporting Files/he.lproj/Localizable.strings b/Stats/Supporting Files/he.lproj/Localizable.strings index 23956f65..574582d1 100644 --- a/Stats/Supporting Files/he.lproj/Localizable.strings +++ b/Stats/Supporting Files/he.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "פתח/י הגדרות מודל"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/hi.lproj/Localizable.strings b/Stats/Supporting Files/hi.lproj/Localizable.strings index 58a82c86..0c641229 100644 --- a/Stats/Supporting Files/hi.lproj/Localizable.strings +++ b/Stats/Supporting Files/hi.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "मोनोस्पेस्ड फ़ॉन्ट"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "ओपन मॉड्यूल सेटिंग्स"; @@ -366,7 +369,6 @@ "Nonactive state color" = "नॉनएक्टिव स्टेट कलर"; "Connectivity host (ICMP)" = "कनेक्टिविटी होस्ट (आईसीएमपी)"; "Leave empty to disable the check" = "चेक को अक्षम करने के लिए खाली छोड़ दें"; -"Transparent pictogram when no activity" = "पारदर्शी चित्रांकन जब कोई गतिविधि नहीं होती है"; "Connectivity history" = "कनेक्टिविटी इतिहास"; "Auto-refresh public IP address" = "ऑटो-रिफ्रेश सार्वजनिक आईपी पता"; "Every hour" = "हर घंटे"; diff --git a/Stats/Supporting Files/hr.lproj/Localizable.strings b/Stats/Supporting Files/hr.lproj/Localizable.strings index 04640ff8..e82e3a61 100644 --- a/Stats/Supporting Files/hr.lproj/Localizable.strings +++ b/Stats/Supporting Files/hr.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Otvori postavke modula"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/hu.lproj/Localizable.strings b/Stats/Supporting Files/hu.lproj/Localizable.strings index 6d7d75a4..e56323dc 100644 --- a/Stats/Supporting Files/hu.lproj/Localizable.strings +++ b/Stats/Supporting Files/hu.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Mono betűtípus"; "Reverse order" = "Fordított sorrend"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Modul beállításainak megnyitása"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Inaktív állapot színe"; "Connectivity host (ICMP)" = "Kapcsolati gazdagép (ICMP)"; "Leave empty to disable the check" = "Hagyd üresen az ellenőrzés kikapcsolásához"; -"Transparent pictogram when no activity" = "Átlátszó ikon, ha nincs forgalom"; "Connectivity history" = "Kapcsolati előzmények"; "Auto-refresh public IP address" = "Publikus IP cím automatikus frissítése"; "Every hour" = "Óránként"; diff --git a/Stats/Supporting Files/id.lproj/Localizable.strings b/Stats/Supporting Files/id.lproj/Localizable.strings index 20a5c78c..b8902814 100644 --- a/Stats/Supporting Files/id.lproj/Localizable.strings +++ b/Stats/Supporting Files/id.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Fon monospasi"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Buka pengaturan modul"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/it.lproj/Localizable.strings b/Stats/Supporting Files/it.lproj/Localizable.strings index eef92e49..7137cd9a 100644 --- a/Stats/Supporting Files/it.lproj/Localizable.strings +++ b/Stats/Supporting Files/it.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Font a larghezza fissa"; "Reverse order" = "Inverti ordine"; "Chart history" = "Durata grafico"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Apri impostazioni modulo"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Colore disattivo"; "Connectivity host (ICMP)" = "Host (ICMP)"; "Leave empty to disable the check" = "Lascia vuoto per disattivare la verifica"; -"Transparent pictogram when no activity" = "Pittogramma trasparente in assenza di attività"; "Connectivity history" = "Cronologia connettività"; "Auto-refresh public IP address" = "Aggiorna automaticamente indirizzo IP pubblico"; "Every hour" = "Ogni ora"; diff --git a/Stats/Supporting Files/ja.lproj/Localizable.strings b/Stats/Supporting Files/ja.lproj/Localizable.strings index 8f67a0d5..27f1f028 100644 --- a/Stats/Supporting Files/ja.lproj/Localizable.strings +++ b/Stats/Supporting Files/ja.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "等幅フォント"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "このモジュールの設定を開く"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/ko.lproj/Localizable.strings b/Stats/Supporting Files/ko.lproj/Localizable.strings index 21dd96ba..163c0658 100644 --- a/Stats/Supporting Files/ko.lproj/Localizable.strings +++ b/Stats/Supporting Files/ko.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "고정폭 서체"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "모듈 설정 열기"; @@ -366,7 +369,6 @@ "Nonactive state color" = "비활성 상태 색상"; "Connectivity host (ICMP)" = "연결성 확인 호스트 (ICMP)"; "Leave empty to disable the check" = "연결성 확인을 비활성화하려면 이 란을 비워 두세요"; -"Transparent pictogram when no activity" = "활동이 없을 때 상태 아이콘 숨기기"; "Connectivity history" = "연결성 기록"; "Auto-refresh public IP address" = "공개 IP주소 자동으로 새로고침"; "Every hour" = "매 시간마다"; diff --git a/Stats/Supporting Files/nb.lproj/Localizable.strings b/Stats/Supporting Files/nb.lproj/Localizable.strings index 3b11f169..9e0f7191 100644 --- a/Stats/Supporting Files/nb.lproj/Localizable.strings +++ b/Stats/Supporting Files/nb.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Skrifttype med fast bredde"; "Reverse order" = "Reversert rekkefølge"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Åpne modulinnstillinger"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Inaktiv statusfarge"; "Connectivity host (ICMP)" = "Tilkoblingsvert (ICMP)"; "Leave empty to disable the check" = "La stå tom for å deaktivere sjekken"; -"Transparent pictogram when no activity" = "Gjennomsiktig piktogram når ingen aktivitet"; "Connectivity history" = "Tilkoblingshistorikk"; "Auto-refresh public IP address" = "Auto-oppfrisk offentlig IP-adresse"; "Every hour" = "Hver time"; diff --git a/Stats/Supporting Files/nl.lproj/Localizable.strings b/Stats/Supporting Files/nl.lproj/Localizable.strings index 325be7d5..79af93e1 100644 --- a/Stats/Supporting Files/nl.lproj/Localizable.strings +++ b/Stats/Supporting Files/nl.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced lettertype"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Open module-instellingen"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index 27867237..3b96a0a3 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Czcionka o stałej szerokości"; "Reverse order" = "Odwrotna kolejność"; "Chart history" = "Historia wykresu"; +"Default color" = "Domyślny"; +"Transparent when no activity" = "Przejrzysty gdy nie ma żadnej aktywności"; +"Constant color" = "Stały"; // Module Kit "Open module settings" = "Otwórz ustawienia modułu"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Kolor stanu nieaktywnego"; "Connectivity host (ICMP)" = "Host łączności (ICMP)"; "Leave empty to disable the check" = "Pozostaw puste, aby wyłączyć sprawdzanie"; -"Transparent pictogram when no activity" = "Przejrzysty piktogram, przy braku aktywności"; "Connectivity history" = "Historia łączności"; "Auto-refresh public IP address" = "Automatyczne odświeżanie adresu IP"; "Every hour" = "Co godzinę"; diff --git a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings index 6fec4149..0d7cca35 100644 --- a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Fonte Monoespaçada"; "Reverse order" = "Ordem Reversa"; "Chart history" = "Período do gráfico"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Abrir configurações do módulo"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Cor do estado inativo"; "Connectivity host (ICMP)" = "Host de conectividade (ICMP)"; "Leave empty to disable the check" = "Deixe em branco para desativar a verificação"; -"Transparent pictogram when no activity" = "Pictograma transparente quando não houver atividade"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Atualizar endereço IP público automaticamente"; "Every hour" = "Cada 1 hora"; diff --git a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings index 2f4867d7..e79f861e 100644 --- a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Abrir definições do módulo"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Cor do estado inativo"; "Connectivity host (ICMP)" = "Host da conexão (ICMP)"; "Leave empty to disable the check" = "Deixar vazio para desativar o check"; -"Transparent pictogram when no activity" = "Pictograma transparente quando não há atividade"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/ro.lproj/Localizable.strings b/Stats/Supporting Files/ro.lproj/Localizable.strings index fba1faa5..34b2d8e2 100644 --- a/Stats/Supporting Files/ro.lproj/Localizable.strings +++ b/Stats/Supporting Files/ro.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Deschide setăriile modulului"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index 97cbcade..0f85a49a 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Моноширинный шрифт"; "Reverse order" = "Обратный порядок"; "Chart history" = "Продолжительность графика"; +"Default color" = "По умолчанию"; +"Transparent when no activity" = "Прозрачный когда нет активности"; +"Constant color" = "Постоянный"; // Module Kit "Open module settings" = "Открыть настройки модуля"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Цвет неактивного состояния"; "Connectivity host (ICMP)" = "Хост подключения (ICMP)"; "Leave empty to disable the check" = "Оставьте пустым, чтобы отключить проверку"; -"Transparent pictogram when no activity" = "Прозрачная пиктограмма при отсутствии активности"; "Connectivity history" = "История подключения"; "Auto-refresh public IP address" = "Автоматическое обновление IP-адреса"; "Every hour" = "Каждый час"; diff --git a/Stats/Supporting Files/sk.lproj/Localizable.strings b/Stats/Supporting Files/sk.lproj/Localizable.strings index 29deab7d..df337011 100644 --- a/Stats/Supporting Files/sk.lproj/Localizable.strings +++ b/Stats/Supporting Files/sk.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Nerozložené písmo"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Otvoriť nastavenia modulu"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Farba neaktívneho stavu"; "Connectivity host (ICMP)" = "Hostiteľ pripojenia (ICMP)"; "Leave empty to disable the check" = "Ponechajte prázdne, ak chcete vypnúť kontrolu"; -"Transparent pictogram when no activity" = "Priehľadný piktogram, keď sa nevykonáva žiadna činnosť"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/sl.lproj/Localizable.strings b/Stats/Supporting Files/sl.lproj/Localizable.strings index 2590974e..34cede49 100644 --- a/Stats/Supporting Files/sl.lproj/Localizable.strings +++ b/Stats/Supporting Files/sl.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Pisava s fiksno širino"; "Reverse order" = "Obratni vrstni red"; "Chart history" = "Zgodovina grafa"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Odpri nastavitve modula"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Barva neaktivnega stanja"; "Connectivity host (ICMP)" = "Gostitelj za preverjanje povezljivosti (ICMP)"; "Leave empty to disable the check" = "Pusti prazno, če želiš onemogočiti preverjanje povezljivosti"; -"Transparent pictogram when no activity" = "Prosojni piktogram, ko ni dejavnosti"; "Connectivity history" = "Zgodovina povezljivosti"; "Auto-refresh public IP address" = "Samodejna osvežitev javnega IP naslova"; "Every hour" = "Vsako uro"; diff --git a/Stats/Supporting Files/sv.lproj/Localizable.strings b/Stats/Supporting Files/sv.lproj/Localizable.strings index c5669d23..1ef4bbd3 100644 --- a/Stats/Supporting Files/sv.lproj/Localizable.strings +++ b/Stats/Supporting Files/sv.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Typsnitt med monospace"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Öppna modulinställningar"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/th.lproj/Localizable.strings b/Stats/Supporting Files/th.lproj/Localizable.strings index 3ec744a8..d9296c67 100644 --- a/Stats/Supporting Files/th.lproj/Localizable.strings +++ b/Stats/Supporting Files/th.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "แบบอักษรโมโนสเปซ"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "เปิดการตั้งค่าโมดูล"; @@ -366,7 +369,6 @@ "Nonactive state color" = "สีของสถานะที่ไม่ใช้งาน"; "Connectivity host (ICMP)" = "โฮสต์ที่เชื่อมต่อ (ICMP)"; "Leave empty to disable the check" = "เว้นว่างไว้เพื่อปิดการตรวจสอบ"; -"Transparent pictogram when no activity" = "ไอคอนโปร่งใสเมื่อไม่มีกิจกรรม"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/tr.lproj/Localizable.strings b/Stats/Supporting Files/tr.lproj/Localizable.strings index 269eecdc..4ce4b6ab 100644 --- a/Stats/Supporting Files/tr.lproj/Localizable.strings +++ b/Stats/Supporting Files/tr.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Eşit aralıklı font"; "Reverse order" = "Sıralamayı tersine çevir"; "Chart history" = "Grafik tarihi"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Modül ayarlarını aç"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Etkin olmayan durum rengi"; "Connectivity host (ICMP)" = "Bağlantı sunucusu (ICMP)"; "Leave empty to disable the check" = "Kontrolü devre dışı bırakmak için boş bırakın"; -"Transparent pictogram when no activity" = "Aktif olmadığında transparan piktogram"; "Connectivity history" = "Bağlantı geçmişi"; "Auto-refresh public IP address" = "Açık IP adresi oto-güncelleme"; "Every hour" = "Her saat"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index e187f285..2a130746 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Моноширинний шрифт"; "Reverse order" = "Зворотній порядок"; "Chart history" = "Тривалість діаграми"; +"Default color" = "За замовчуванням"; +"Transparent when no activity" = "Прозорий коли немає активності"; +"Constant color" = "Постійний"; // Module Kit "Open module settings" = "Відкрити налаштування модуля"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Колір неактивного стану"; "Connectivity host (ICMP)" = "Хост підключення (ICMP)"; "Leave empty to disable the check" = "Залиште пустим, щоб вимкнути перевірку"; -"Transparent pictogram when no activity" = "Прозора піктограма, коли немає активності"; "Connectivity history" = "Історія підключення"; "Auto-refresh public IP address" = "Автоматичне оновлення IP-адреси"; "Every hour" = "Щогодини"; diff --git a/Stats/Supporting Files/vi.lproj/Localizable.strings b/Stats/Supporting Files/vi.lproj/Localizable.strings index 3ac83146..1ef8b53f 100644 --- a/Stats/Supporting Files/vi.lproj/Localizable.strings +++ b/Stats/Supporting Files/vi.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "Monospaced font"; "Reverse order" = "Reverse order"; "Chart history" = "Chart history"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "Mở cài đặt module"; @@ -366,7 +369,6 @@ "Nonactive state color" = "Nonactive state color"; "Connectivity host (ICMP)" = "Connectivity host (ICMP)"; "Leave empty to disable the check" = "Leave empty to disable the check"; -"Transparent pictogram when no activity" = "Transparent pictogram when no activity"; "Connectivity history" = "Connectivity history"; "Auto-refresh public IP address" = "Auto-refresh public IP address"; "Every hour" = "Every hour"; diff --git a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings index 1639e681..b8d1f1ef 100644 --- a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "等宽字体"; "Reverse order" = "调转顺序"; "Chart history" = "图表统计时长"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "打开模块设置"; @@ -366,7 +369,6 @@ "Nonactive state color" = "非活跃状态颜色"; "Connectivity host (ICMP)" = "连接 Host (ICMP)"; "Leave empty to disable the check" = "不在该选项内输入以禁用检查"; -"Transparent pictogram when no activity" = "不活跃时隐藏标识"; "Connectivity history" = "连接历史"; "Auto-refresh public IP address" = "自动刷新公网 IP 地址"; "Every hour" = "每小时"; diff --git a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings index 57fd4ba5..6e7dc88d 100644 --- a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings @@ -196,6 +196,9 @@ "Monospaced font" = "等寬字體"; "Reverse order" = "排序對調"; "Chart history" = "圖表顯示區間"; +"Default color" = "Default"; +"Transparent when no activity" = "Transparent when no activity"; +"Constant color" = "Constant"; // Module Kit "Open module settings" = "打開模組設定"; @@ -366,7 +369,6 @@ "Nonactive state color" = "未連線狀態色彩"; "Connectivity host (ICMP)" = "連線能力測試的主機 (ICMP)"; "Leave empty to disable the check" = "留空來停用檢查"; -"Transparent pictogram when no activity" = "未連線時隱藏標示"; "Connectivity history" = "連線歷程紀錄"; "Auto-refresh public IP address" = "自動重新整理公用 IP 位址"; "Every hour" = "每小時";