Migrate more strings to translation keys (#11530)

This commit is contained in:
Michael Telatynski 2023-09-05 10:44:41 +01:00 committed by GitHub
parent d34dc0c307
commit 9eda619395
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 4011 additions and 3255 deletions

View file

@ -63,13 +63,13 @@ function tooltipText(variant: Icon): string | undefined {
case Icon.Globe:
return _t("This room is public");
case Icon.PresenceOnline:
return _t("Online");
return _t("presence|online");
case Icon.PresenceAway:
return _t("Away");
return _t("presence|away");
case Icon.PresenceOffline:
return _t("common|offline");
return _t("presence|offline");
case Icon.PresenceBusy:
return _t("Busy");
return _t("presence|busy");
}
}