Match wording with Syncthing GUI

This commit is contained in:
Ben Schulz
2015-02-15 12:00:15 +01:00
parent e5bea35515
commit 349223b3b8
2 changed files with 10 additions and 10 deletions
+6 -6
View File
@@ -306,36 +306,36 @@ func getReport(key string) map[string]interface{} {
var categories []category
categories = append(categories, category{
Values: statsForInts(totFiles),
Descr: "Files Managed per Node",
Descr: "Files Managed per Device",
})
categories = append(categories, category{
Values: statsForInts(maxFiles),
Descr: "Files in Largest Repo",
Descr: "Files in Largest Folder",
})
categories = append(categories, category{
Values: statsForInts(totMiB),
Descr: "Data Managed per Node",
Descr: "Data Managed per Device",
Unit: "B",
Binary: true,
})
categories = append(categories, category{
Values: statsForInts(maxMiB),
Descr: "Data in Largest Repo",
Descr: "Data in Largest Folder",
Unit: "B",
Binary: true,
})
categories = append(categories, category{
Values: statsForInts(numNodes),
Descr: "Number of Nodes in Cluster",
Descr: "Number of Devices in Cluster",
})
categories = append(categories, category{
Values: statsForInts(numRepos),
Descr: "Number of Repositories Configured",
Descr: "Number of Folders Configured",
})
categories = append(categories, category{