Locallazy: Convert even more strings (#11679)

Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
R Midhun Suresh 2023-10-02 16:13:00 +05:30 committed by GitHub
parent 8d289544b3
commit 9a76d6b9a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
82 changed files with 6216 additions and 5101 deletions

View file

@ -1650,15 +1650,13 @@ class TimelinePanel extends React.Component<IProps, IState> {
let description: string;
if (error.errcode == "M_FORBIDDEN") {
description = _t(
"Tried to load a specific point in this room's timeline, but you do not have permission to view the message in question.",
);
description = _t("timeline|load_error|no_permission");
} else {
description = _t("Tried to load a specific point in this room's timeline, but was unable to find it.");
description = _t("timeline|load_error|unable_to_find");
}
Modal.createDialog(ErrorDialog, {
title: _t("Failed to load timeline position"),
title: _t("timeline|load_error|title"),
description,
onFinished,
});