Shorten status button names

This commit is contained in:
Melik
2023-02-03 23:45:16 -08:00
committed by Frans de Jonge
parent c0d0b36f98
commit 9e7e68beb6
6 changed files with 13 additions and 13 deletions

View File

@@ -342,7 +342,7 @@ function FileManager:setupLayout()
local status = filemanagerutil.getStatus(file)
table.insert(buttons, {
{
text = _("Mark as reading"),
text = _("Reading"),
id = "mark_as_reading", -- used by covermenu
enabled = status ~= "reading",
callback = function()
@@ -352,7 +352,7 @@ function FileManager:setupLayout()
end,
},
{
text = _("Put on hold"),
text = _("On hold"),
id = "put_on_hold", -- used by covermenu
enabled = status ~= "abandoned",
callback = function()
@@ -362,7 +362,7 @@ function FileManager:setupLayout()
end,
},
{
text = _("Mark as read"),
text = _("Finished"),
id = "mark_as_read", -- used by covermenu
enabled = status ~= "complete",
callback = function()