Merge pull request #1908 from vector-im/t3chguy/localazy/2

Switch from Weblate to Localazy
This commit is contained in:
Robin
2023-11-20 16:55:58 -05:00
committed by GitHub
68 changed files with 2680 additions and 2162 deletions

View File

@@ -193,18 +193,20 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
)}
{content === TileContent.ScreenShare ? (
<div className={styles.presenterLabel}>
<span>{t("{{displayName}} is presenting", { displayName })}</span>
<span>{t("video_tile.presenter_label", { displayName })}</span>
</div>
) : (
<div className={styles.nameTag}>
<MicIcon
width={20}
height={20}
aria-label={muted ? t("Microphone off") : t("Microphone on")}
aria-label={muted ? t("microphone_off") : t("microphone_on")}
data-muted={muted}
/>
<Text as="span" size="sm" weight="medium">
{sfuParticipant.isLocal ? t("You") : displayName}
{sfuParticipant.isLocal
? t("video_tile.sfu_participant_local")
: displayName}
</Text>
{showConnectionStats && (
<ConnectionQualityIndicator participant={sfuParticipant} />

View File

@@ -82,7 +82,7 @@ export const VideoTileSettingsModal: FC<Props> = ({
return (
<Modal
className={styles.videoTileSettingsModal}
title={t("Local volume")}
title={t("local_volume_label")}
open={open}
onDismiss={onDismiss}
>