Fix instances of double translation and guard translation calls using typescript (#11443)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
This commit is contained in:
parent
d13b6e1b41
commit
ac70f7ac9b
157 changed files with 554 additions and 780 deletions
|
@ -482,17 +482,14 @@ function textForHistoryVisibilityEvent(event: MatrixEvent): (() => string) | nul
|
|||
case HistoryVisibility.Invited:
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s made future room history visible to all room members, " +
|
||||
"from the point they are invited.",
|
||||
"%(senderName)s made future room history visible to all room members, from the point they are invited.",
|
||||
{ senderName },
|
||||
);
|
||||
case HistoryVisibility.Joined:
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s made future room history visible to all room members, " +
|
||||
"from the point they joined.",
|
||||
{ senderName },
|
||||
);
|
||||
_t("%(senderName)s made future room history visible to all room members, from the point they joined.", {
|
||||
senderName,
|
||||
});
|
||||
case HistoryVisibility.Shared:
|
||||
return () => _t("%(senderName)s made future room history visible to all room members.", { senderName });
|
||||
case HistoryVisibility.WorldReadable:
|
||||
|
@ -810,33 +807,31 @@ function textForMjolnirEvent(event: MatrixEvent): (() => string) | null {
|
|||
if (USER_RULE_TYPES.includes(event.getType())) {
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching " +
|
||||
"%(newGlob)s for %(reason)s",
|
||||
"%(senderName)s changed a rule that was banning users matching %(oldGlob)s to matching %(newGlob)s for %(reason)s",
|
||||
{ senderName, oldGlob: prevEntity, newGlob: entity, reason },
|
||||
);
|
||||
} else if (ROOM_RULE_TYPES.includes(event.getType())) {
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching " +
|
||||
"%(newGlob)s for %(reason)s",
|
||||
"%(senderName)s changed a rule that was banning rooms matching %(oldGlob)s to matching %(newGlob)s for %(reason)s",
|
||||
{ senderName, oldGlob: prevEntity, newGlob: entity, reason },
|
||||
);
|
||||
} else if (SERVER_RULE_TYPES.includes(event.getType())) {
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching " +
|
||||
"%(newGlob)s for %(reason)s",
|
||||
"%(senderName)s changed a rule that was banning servers matching %(oldGlob)s to matching %(newGlob)s for %(reason)s",
|
||||
{ senderName, oldGlob: prevEntity, newGlob: entity, reason },
|
||||
);
|
||||
}
|
||||
|
||||
// Unknown type. We'll say something but we shouldn't end up here.
|
||||
return () =>
|
||||
_t(
|
||||
"%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s " +
|
||||
"for %(reason)s",
|
||||
{ senderName, oldGlob: prevEntity, newGlob: entity, reason },
|
||||
);
|
||||
_t("%(senderName)s updated a ban rule that was matching %(oldGlob)s to matching %(newGlob)s for %(reason)s", {
|
||||
senderName,
|
||||
oldGlob: prevEntity,
|
||||
newGlob: entity,
|
||||
reason,
|
||||
});
|
||||
}
|
||||
|
||||
export function textForLocationEvent(event: MatrixEvent): () => string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue