Added en-gb language (for 24 time format)

This commit is contained in:
RainLoop Team 2015-03-20 23:23:57 +04:00
parent 16d2f46a31
commit 1d9acea5ae
6 changed files with 721 additions and 5 deletions

View file

@ -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;