mirror of
https://github.com/mt-mods/mail.git
synced 2025-07-04 21:50:28 -04:00
Add trash (#100)
* Add trash * Add break at end of deleting loop * Show trash tab only when trashing enabled * Update translations
This commit is contained in:
parent
de07f6b24b
commit
2e106e3df7
17 changed files with 454 additions and 201 deletions
5
init.lua
5
init.lua
|
@ -16,6 +16,7 @@ mail = {
|
|||
inbox = {},
|
||||
outbox = {},
|
||||
drafts = {},
|
||||
trash = {},
|
||||
contacts = {},
|
||||
maillists = {},
|
||||
to = {},
|
||||
|
@ -32,7 +33,8 @@ mail = {
|
|||
hud_notifications = {},
|
||||
sound_notifications = {},
|
||||
unreadcolorenable = {},
|
||||
cccolorenable = {}
|
||||
cccolorenable = {},
|
||||
trash_move_enable = {}
|
||||
},
|
||||
|
||||
message_drafts = {}
|
||||
|
@ -58,6 +60,7 @@ dofile(MP .. "/ui/mail.lua")
|
|||
dofile(MP .. "/ui/inbox.lua")
|
||||
dofile(MP .. "/ui/outbox.lua")
|
||||
dofile(MP .. "/ui/drafts.lua")
|
||||
dofile(MP .. "/ui/trash.lua")
|
||||
dofile(MP .. "/ui/message.lua")
|
||||
dofile(MP .. "/ui/events.lua")
|
||||
dofile(MP .. "/ui/contacts.lua")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue