mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
delint and i18n
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
4e67e46863
commit
49c0748990
2 changed files with 1 additions and 2 deletions
|
@ -2083,7 +2083,6 @@
|
||||||
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.",
|
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.": "Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.",
|
||||||
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Tried to load a specific point in this room's timeline, but was unable to find it.",
|
"Tried to load a specific point in this room's timeline, but was unable to find it.": "Tried to load a specific point in this room's timeline, but was unable to find it.",
|
||||||
"Failed to load timeline position": "Failed to load timeline position",
|
"Failed to load timeline position": "Failed to load timeline position",
|
||||||
" (1/%(totalCount)s)": " (1/%(totalCount)s)",
|
|
||||||
"Guest": "Guest",
|
"Guest": "Guest",
|
||||||
"Your profile": "Your profile",
|
"Your profile": "Your profile",
|
||||||
"Uploading %(filename)s and %(count)s others|other": "Uploading %(filename)s and %(count)s others",
|
"Uploading %(filename)s and %(count)s others|other": "Uploading %(filename)s and %(count)s others",
|
||||||
|
|
|
@ -34,7 +34,7 @@ export default class ToastStore extends EventEmitter {
|
||||||
private toasts: IToast<any>[] = [];
|
private toasts: IToast<any>[] = [];
|
||||||
// The count of toasts which have been seen & dealt with in this stack
|
// The count of toasts which have been seen & dealt with in this stack
|
||||||
// where the count resets when the stack of toasts clears.
|
// where the count resets when the stack of toasts clears.
|
||||||
private countSeen: number = 0;
|
private countSeen = 0;
|
||||||
|
|
||||||
static sharedInstance() {
|
static sharedInstance() {
|
||||||
if (!window.mx_ToastStore) window.mx_ToastStore = new ToastStore();
|
if (!window.mx_ToastStore) window.mx_ToastStore = new ToastStore();
|
||||||
|
|
Loading…
Reference in a new issue