mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
Added en-gb language (for 24 time format)
This commit is contained in:
parent
16d2f46a31
commit
1d9acea5ae
6 changed files with 721 additions and 5 deletions
|
|
@ -299,6 +299,8 @@
|
|||
this.openThreadMessage(aStatus[3]);
|
||||
}, this.viewThreadsControlForwardAllow);
|
||||
|
||||
this.threadsDropdownTrigger = ko.observable(false);
|
||||
|
||||
this.threadListCommand = Utils.createCommand(this, function () {
|
||||
|
||||
var
|
||||
|
|
@ -336,6 +338,13 @@
|
|||
!this.messageListOfThreadsLoading();
|
||||
});
|
||||
|
||||
this.threadsDropdownTrigger.subscribe(function (bValue) {
|
||||
if (bValue && this.message())
|
||||
{
|
||||
this.threadListCommand();
|
||||
}
|
||||
}, this);
|
||||
|
||||
// PGP
|
||||
this.viewPgpPassword = ko.observable('');
|
||||
this.viewPgpSignedVerifyStatus = ko.computed(function () {
|
||||
|
|
@ -869,6 +878,14 @@
|
|||
}
|
||||
});
|
||||
|
||||
key('t', [Enums.KeyState.MessageList, Enums.KeyState.MessageView], function () {
|
||||
if (MessageStore.message())
|
||||
{
|
||||
self.threadsDropdownTrigger(true);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
key('ctrl+up, command+up', [Enums.KeyState.MessageList, Enums.KeyState.MessageView], function () {
|
||||
self.goUpCommand();
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue