From 4f05504c9eedfbc899bf2f1a98d6aec86a7e5d5d Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Sat, 30 Mar 2024 21:01:01 +0100 Subject: [PATCH] lang: added missing translation --- Modules/Disk/popup.swift | 4 ++-- Stats/Supporting Files/ar.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/bg.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/ca.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/cs.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/da.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/de.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/el.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/en.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/es.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/et.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/fa.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/fr.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/he.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/hi.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/hr.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/hu.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/id.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/it.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/ja.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/ko.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/nb.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/nl.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/pl.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/pt-BR.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/pt-PT.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/ro.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/ru.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/sk.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/sl.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/sv.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/th.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/tr.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/uk.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/vi.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/zh-Hans.lproj/Localizable.strings | 4 ++++ Stats/Supporting Files/zh-Hant.lproj/Localizable.strings | 4 ++++ 37 files changed, 146 insertions(+), 2 deletions(-) diff --git a/Modules/Disk/popup.swift b/Modules/Disk/popup.swift index 3a679553..a507ee43 100644 --- a/Modules/Disk/popup.swift +++ b/Modules/Disk/popup.swift @@ -238,8 +238,8 @@ internal class DiskView: NSStackView { self.chartView = ChartView(width: innerWidth) self.barView = BarView(width: innerWidth, size: size, free: free) self.legendView = LegendView(width: innerWidth, id: "\(name)_\(path?.absoluteString ?? "")", size: size, free: free) - self.readDataView = DataView(width: innerWidth, title: "\(localizedString("Total bytes read")):") - self.writtenDataView = DataView(width: innerWidth, title: "\(localizedString("Total bytes written")):") + self.readDataView = DataView(width: innerWidth, title: "\(localizedString("Total read")):") + self.writtenDataView = DataView(width: innerWidth, title: "\(localizedString("Total written")):") if let smart { self.temperatureView = TemperatureView(width: innerWidth, smart: smart) self.lifeView = LifeView(width: innerWidth, smart: smart) diff --git a/Stats/Supporting Files/ar.lproj/Localizable.strings b/Stats/Supporting Files/ar.lproj/Localizable.strings index 49ee50df..454dda32 100644 --- a/Stats/Supporting Files/ar.lproj/Localizable.strings +++ b/Stats/Supporting Files/ar.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Seadistamine"; @@ -298,6 +300,8 @@ "Read color" = "Loe värvi"; "Write color" = "Kirjuta värv"; "Disk usage" = "Kettakasutus"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperatuuri ühik"; diff --git a/Stats/Supporting Files/bg.lproj/Localizable.strings b/Stats/Supporting Files/bg.lproj/Localizable.strings index 31b2e91e..d0d7cd2e 100644 --- a/Stats/Supporting Files/bg.lproj/Localizable.strings +++ b/Stats/Supporting Files/bg.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Настройки на Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Температурна единица"; diff --git a/Stats/Supporting Files/ca.lproj/Localizable.strings b/Stats/Supporting Files/ca.lproj/Localizable.strings index 129f1e70..88c41713 100644 --- a/Stats/Supporting Files/ca.lproj/Localizable.strings +++ b/Stats/Supporting Files/ca.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unitat de temperatura"; diff --git a/Stats/Supporting Files/cs.lproj/Localizable.strings b/Stats/Supporting Files/cs.lproj/Localizable.strings index 5aa803bf..3ed81547 100644 --- a/Stats/Supporting Files/cs.lproj/Localizable.strings +++ b/Stats/Supporting Files/cs.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Nastavení Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Jednotka teploty"; diff --git a/Stats/Supporting Files/da.lproj/Localizable.strings b/Stats/Supporting Files/da.lproj/Localizable.strings index 72b37d38..6570ca02 100644 --- a/Stats/Supporting Files/da.lproj/Localizable.strings +++ b/Stats/Supporting Files/da.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats opsætning"; @@ -298,6 +300,8 @@ "Read color" = "Read farve"; "Write color" = "Write farve"; "Disk usage" = "Disk brug"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperaturenhed"; diff --git a/Stats/Supporting Files/de.lproj/Localizable.strings b/Stats/Supporting Files/de.lproj/Localizable.strings index bbc18ba2..6647bca8 100644 --- a/Stats/Supporting Files/de.lproj/Localizable.strings +++ b/Stats/Supporting Files/de.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats einrichten"; @@ -298,6 +300,8 @@ "Read color" = "Lesen-Farbe"; "Write color" = "Schreiben-Farbe"; "Disk usage" = "Speichernutzung"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperatureinheit"; diff --git a/Stats/Supporting Files/el.lproj/Localizable.strings b/Stats/Supporting Files/el.lproj/Localizable.strings index 01dc5bcf..b930c36c 100644 --- a/Stats/Supporting Files/el.lproj/Localizable.strings +++ b/Stats/Supporting Files/el.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Εγκατάσταση Stats"; @@ -298,6 +300,8 @@ "Read color" = "Χρώμα ανάγνωσης"; "Write color" = "Χρώμα εγγραφής"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Μονάδα θερμοκρασίας"; diff --git a/Stats/Supporting Files/en.lproj/Localizable.strings b/Stats/Supporting Files/en.lproj/Localizable.strings index 58f891e6..d86b9f00 100644 --- a/Stats/Supporting Files/en.lproj/Localizable.strings +++ b/Stats/Supporting Files/en.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperature unit"; diff --git a/Stats/Supporting Files/es.lproj/Localizable.strings b/Stats/Supporting Files/es.lproj/Localizable.strings index c5bc4f84..6d2184be 100644 --- a/Stats/Supporting Files/es.lproj/Localizable.strings +++ b/Stats/Supporting Files/es.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Configuración de Stats"; @@ -298,6 +300,8 @@ "Read color" = "Color de lectura"; "Write color" = "Color de escritura"; "Disk usage" = "Uso del disco"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unidad de temperatura"; diff --git a/Stats/Supporting Files/et.lproj/Localizable.strings b/Stats/Supporting Files/et.lproj/Localizable.strings index 5534df8b..8156e0f5 100644 --- a/Stats/Supporting Files/et.lproj/Localizable.strings +++ b/Stats/Supporting Files/et.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Seadistamine"; @@ -298,6 +300,8 @@ "Read color" = "Loe värvi"; "Write color" = "Kirjuta värv"; "Disk usage" = "Kettakasutus"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperatuuri ühik"; diff --git a/Stats/Supporting Files/fa.lproj/Localizable.strings b/Stats/Supporting Files/fa.lproj/Localizable.strings index 5533eb09..78e963dc 100644 --- a/Stats/Supporting Files/fa.lproj/Localizable.strings +++ b/Stats/Supporting Files/fa.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "نصب Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "واحد دما"; diff --git a/Stats/Supporting Files/fr.lproj/Localizable.strings b/Stats/Supporting Files/fr.lproj/Localizable.strings index 434feab1..6b860921 100644 --- a/Stats/Supporting Files/fr.lproj/Localizable.strings +++ b/Stats/Supporting Files/fr.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Configuration de Stats"; @@ -298,6 +300,8 @@ "Read color" = "Couleur de lecture"; "Write color" = "Couleur d'écriture"; "Disk usage" = "Utilisation du disque"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unité de température"; diff --git a/Stats/Supporting Files/he.lproj/Localizable.strings b/Stats/Supporting Files/he.lproj/Localizable.strings index 8d04746b..7d7e1754 100644 --- a/Stats/Supporting Files/he.lproj/Localizable.strings +++ b/Stats/Supporting Files/he.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "יחידת טמפרטורה"; diff --git a/Stats/Supporting Files/hi.lproj/Localizable.strings b/Stats/Supporting Files/hi.lproj/Localizable.strings index f7bec230..23311b06 100644 --- a/Stats/Supporting Files/hi.lproj/Localizable.strings +++ b/Stats/Supporting Files/hi.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "आँकड़े सेटअप"; @@ -298,6 +300,8 @@ "Read color" = "रंग पढ़ें"; "Write color" = "रंग लिखें"; "Disk usage" = "डिस्क उपयोग"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "तापमान इकाई"; diff --git a/Stats/Supporting Files/hr.lproj/Localizable.strings b/Stats/Supporting Files/hr.lproj/Localizable.strings index 6a1b499a..8b60c5c7 100644 --- a/Stats/Supporting Files/hr.lproj/Localizable.strings +++ b/Stats/Supporting Files/hr.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Postavljanje programa Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Jedinica temperature"; diff --git a/Stats/Supporting Files/hu.lproj/Localizable.strings b/Stats/Supporting Files/hu.lproj/Localizable.strings index 82c21489..7a9f7663 100644 --- a/Stats/Supporting Files/hu.lproj/Localizable.strings +++ b/Stats/Supporting Files/hu.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "A Stats beállítása"; @@ -298,6 +300,8 @@ "Read color" = "Olvasás színe"; "Write color" = "Írás színe"; "Disk usage" = "Lemez használat"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Hőmérséklet mértékegysége"; diff --git a/Stats/Supporting Files/id.lproj/Localizable.strings b/Stats/Supporting Files/id.lproj/Localizable.strings index 8b921849..1c7f3b62 100644 --- a/Stats/Supporting Files/id.lproj/Localizable.strings +++ b/Stats/Supporting Files/id.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unit suhu"; diff --git a/Stats/Supporting Files/it.lproj/Localizable.strings b/Stats/Supporting Files/it.lproj/Localizable.strings index a8e89a33..fa9a64c6 100644 --- a/Stats/Supporting Files/it.lproj/Localizable.strings +++ b/Stats/Supporting Files/it.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Configurazione Stats"; @@ -298,6 +300,8 @@ "Read color" = "Colore lettura"; "Write color" = "Colore scrittura"; "Disk usage" = "Utilizzo Disco"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unità di temperatura"; diff --git a/Stats/Supporting Files/ja.lproj/Localizable.strings b/Stats/Supporting Files/ja.lproj/Localizable.strings index e703c6c9..656fd9bc 100644 --- a/Stats/Supporting Files/ja.lproj/Localizable.strings +++ b/Stats/Supporting Files/ja.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats セットアップ"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "温度単位"; diff --git a/Stats/Supporting Files/ko.lproj/Localizable.strings b/Stats/Supporting Files/ko.lproj/Localizable.strings index 97b1e15e..4c0929f6 100644 --- a/Stats/Supporting Files/ko.lproj/Localizable.strings +++ b/Stats/Supporting Files/ko.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats 설정"; @@ -298,6 +300,8 @@ "Read color" = "읽기 색상"; "Write color" = "쓰기 색상"; "Disk usage" = "디스크 사용량"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "온도 단위"; diff --git a/Stats/Supporting Files/nb.lproj/Localizable.strings b/Stats/Supporting Files/nb.lproj/Localizable.strings index bc6ccefe..4210466b 100644 --- a/Stats/Supporting Files/nb.lproj/Localizable.strings +++ b/Stats/Supporting Files/nb.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats-oppsett"; @@ -298,6 +300,8 @@ "Read color" = "Lesefarge"; "Write color" = "Skrivefarge"; "Disk usage" = "Diskbruk"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperaturenhet"; diff --git a/Stats/Supporting Files/nl.lproj/Localizable.strings b/Stats/Supporting Files/nl.lproj/Localizable.strings index 7cbdb107..03aa4d73 100644 --- a/Stats/Supporting Files/nl.lproj/Localizable.strings +++ b/Stats/Supporting Files/nl.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperatuureenheid"; diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index bed8764b..f97584a1 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minuty"; "3 minutes" = "3 minuty"; "10 minutes" = "10 minut"; +"Import" = "Import"; +"Export" = "Eksport"; // Setup "Stats Setup" = "Konfiguracja Stats"; @@ -298,6 +300,8 @@ "Read color" = "Kolor odczytu"; "Write color" = "Kolor zapisu"; "Disk usage" = "Użycie dysku"; +"Total read" = "Całkowity odczyt"; +"Total written" = "Całkowity zapis"; // Sensors "Temperature unit" = "Jednostka temperatury"; diff --git a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings index e5863bb9..5e3db81d 100644 --- a/Stats/Supporting Files/pt-BR.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-BR.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Configurar Stats"; @@ -298,6 +300,8 @@ "Read color" = "Cor para Leitura"; "Write color" = "Cor para Escrita"; "Disk usage" = "Uso do Disco"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unidade de temperatura"; diff --git a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings index 4ea2908b..733d9aa5 100644 --- a/Stats/Supporting Files/pt-PT.lproj/Localizable.strings +++ b/Stats/Supporting Files/pt-PT.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Configurações do Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Unidade de temperatura"; diff --git a/Stats/Supporting Files/ro.lproj/Localizable.strings b/Stats/Supporting Files/ro.lproj/Localizable.strings index 90fc8a20..f756d7c3 100644 --- a/Stats/Supporting Files/ro.lproj/Localizable.strings +++ b/Stats/Supporting Files/ro.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperatura unității"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index a6022781..835098d2 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 минуты"; "3 minutes" = "3 минуты"; "10 minutes" = "10 минут"; +"Import" = "Импорт"; +"Export" = "Экспорт"; // Setup "Stats Setup" = "Настройки Stats"; @@ -298,6 +300,8 @@ "Read color" = "Цвет чтения"; "Write color" = "Цвет записи"; "Disk usage" = "Использование диска"; +"Total read" = "Всего прочитано"; +"Total written" = "Всего записано"; // Sensors "Temperature unit" = "Единица измерения температуры"; diff --git a/Stats/Supporting Files/sk.lproj/Localizable.strings b/Stats/Supporting Files/sk.lproj/Localizable.strings index 5cc17969..991eea0b 100644 --- a/Stats/Supporting Files/sk.lproj/Localizable.strings +++ b/Stats/Supporting Files/sk.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Nastavenie Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Jednotka teploty"; diff --git a/Stats/Supporting Files/sl.lproj/Localizable.strings b/Stats/Supporting Files/sl.lproj/Localizable.strings index 4e06bc73..2661a0ca 100644 --- a/Stats/Supporting Files/sl.lproj/Localizable.strings +++ b/Stats/Supporting Files/sl.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats konfigurator"; @@ -298,6 +300,8 @@ "Read color" = "Barva branja"; "Write color" = "Barva pisanja"; "Disk usage" = "Uporaba diska"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Enota za temperaturo"; diff --git a/Stats/Supporting Files/sv.lproj/Localizable.strings b/Stats/Supporting Files/sv.lproj/Localizable.strings index 5e0d973a..7db32593 100644 --- a/Stats/Supporting Files/sv.lproj/Localizable.strings +++ b/Stats/Supporting Files/sv.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Setup"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Temperaturenhet"; diff --git a/Stats/Supporting Files/th.lproj/Localizable.strings b/Stats/Supporting Files/th.lproj/Localizable.strings index ee892710..497da3cc 100644 --- a/Stats/Supporting Files/th.lproj/Localizable.strings +++ b/Stats/Supporting Files/th.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "การตั้งค่าสถิติ"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "หน่วยอุณหภูมิ"; diff --git a/Stats/Supporting Files/tr.lproj/Localizable.strings b/Stats/Supporting Files/tr.lproj/Localizable.strings index 70a7b01a..54a50cc8 100644 --- a/Stats/Supporting Files/tr.lproj/Localizable.strings +++ b/Stats/Supporting Files/tr.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats Kurulumu"; @@ -298,6 +300,8 @@ "Read color" = "Oku rengi"; "Write color" = "Yaz rengi"; "Disk usage" = "Disk kullanımı"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Sıcaklık birimi"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index b0eca183..0d17bab2 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 хвилини"; "3 minutes" = "3 хвилини"; "10 minutes" = "10 хвилин"; +"Import" = "Імпорт"; +"Export" = "Експорт"; // Setup "Stats Setup" = "Налаштування"; @@ -298,6 +300,8 @@ "Read color" = "Колір зчитування"; "Write color" = "Колір запису"; "Disk usage" = "Використання диска"; +"Total read" = "Всього прочитано"; +"Total written" = "Всього записано"; // Sensors "Temperature unit" = "Одиниця виміру температури"; diff --git a/Stats/Supporting Files/vi.lproj/Localizable.strings b/Stats/Supporting Files/vi.lproj/Localizable.strings index 29450f65..9ca750e1 100644 --- a/Stats/Supporting Files/vi.lproj/Localizable.strings +++ b/Stats/Supporting Files/vi.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 minutes"; "3 minutes" = "3 minutes"; "10 minutes" = "10 minutes"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Cài đặt Stats"; @@ -298,6 +300,8 @@ "Read color" = "Read color"; "Write color" = "Write color"; "Disk usage" = "Disk usage"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "Đơn vị nhiệt độ"; diff --git a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings index e4978917..74d47f80 100644 --- a/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hans.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 分钟"; "3 minutes" = "3 分钟"; "10 minutes" = "10 分钟"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats 设置"; @@ -298,6 +300,8 @@ "Read color" = "读取颜色"; "Write color" = "写入颜色"; "Disk usage" = "磁盘使用"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "温度单位"; diff --git a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings index 4662c077..938e9096 100644 --- a/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings +++ b/Stats/Supporting Files/zh-Hant.lproj/Localizable.strings @@ -80,6 +80,8 @@ "2 minutes" = "2 分鐘"; "3 minutes" = "3 分鐘"; "10 minutes" = "10 分鐘"; +"Import" = "Import"; +"Export" = "Export"; // Setup "Stats Setup" = "Stats 設定"; @@ -298,6 +300,8 @@ "Read color" = "讀取色彩"; "Write color" = "寫入色彩"; "Disk usage" = "磁碟使用量"; +"Total read" = "Total read"; +"Total written" = "Total written"; // Sensors "Temperature unit" = "溫度單位";