Merge branch 'soon' into staging

pull/1/head
ansuz 2021-01-13 14:33:47 +05:30
commit 8a67b2ad59
2 changed files with 12 additions and 1 deletions

View File

@ -1007,6 +1007,16 @@ define([
} else {
$error.html(error || Messages.error);
}
$error.find('a[href]').click(function (e) {
e.preventDefault();
var href = $(this).prop('href');
if (!href) { return; }
if (e && e.ctrlKey) {
window.open('/bounce/#'+encodeURIComponent(href));
return;
}
window.parent.location = href;
});
if (exitable) {
$(window).focus();
$(window).keydown(function (e) {

View File

@ -1506,5 +1506,6 @@
"admin_support_normal": "Unbeantwortete Tickets:",
"admin_support_premium": "Premium-Tickets:",
"access_offline": "Du bist offline. Verwaltung von Zugriffsrechten ist nicht verfügbar.",
"share_noContactsOffline": "Du bist offline. Kontakte sind nicht verfügbar."
"share_noContactsOffline": "Du bist offline. Kontakte sind nicht verfügbar.",
"offlineError": "OFFLINE-MODUS NICHT VERFÜGBAR"
}