From b3f8ddf67db04fb98cf3a692abe8557f4915ec84 Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Thu, 20 Sep 2012 00:08:59 +0100 Subject: [PATCH] Be consistent with the case: "Last Read" -> "Last read". --- fileinfo.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fileinfo.lua b/fileinfo.lua index d3507f214..673862a37 100644 --- a/fileinfo.lua +++ b/fileinfo.lua @@ -84,10 +84,10 @@ function FileInfo:init(path, fname) local history = DocToHistory(self.pathfile) local file, msg = io.open(history, "r") if not file then - info_entry = {dir = "Last Read", name = "Never"} + info_entry = {dir = "Last read", name = "Never"} table.insert(self.result, info_entry) else - info_entry = {dir = "Last Read", name = FileInfo:FileCreated(history, "change")} + info_entry = {dir = "Last read", name = FileInfo:FileCreated(history, "change")} table.insert(self.result, info_entry) local file_type = string.lower(string.match(self.pathfile, ".+%.([^.]+)")) local to_search, add, factor = "[\"last_percent\"]", "%", 100