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

@ -107,7 +107,7 @@ const BaseAvatar: React.FC<IProps> = (props) => {
inputRef,
className,
type = "round",
altText = _t("Avatar"),
altText = _t("common|avatar"),
...otherProps
} = props;

View file

@ -61,7 +61,7 @@ enum Icon {
function tooltipText(variant: Icon): string | undefined {
switch (variant) {
case Icon.Globe:
return _t("This room is public");
return _t("room|header|room_is_public");
case Icon.PresenceOnline:
return _t("presence|online");
case Icon.PresenceAway: