diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json
index aa5b328..ef330e6 100644
--- a/public/locales/en-GB/app.json
+++ b/public/locales/en-GB/app.json
@@ -31,6 +31,7 @@
"Confirm password": "Confirm password",
"Connection lost": "Connection lost",
"Copied!": "Copied!",
+ "Copy": "Copy",
"Copy and share this call link": "Copy and share this call link",
"Create account": "Create account",
"Debug log": "Debug log",
@@ -40,6 +41,7 @@
"Developer": "Developer",
"Display name": "Display name",
"Download debug logs": "Download debug logs",
+ "Element Call Home": "Element Call Home",
"Entering room…": "Entering room…",
"Exit full screen": "Exit full screen",
"Fetching group call timed out.": "Fetching group call timed out.",
diff --git a/src/Header.tsx b/src/Header.tsx
index 9e4af88..9be8c80 100644
--- a/src/Header.tsx
+++ b/src/Header.tsx
@@ -88,8 +88,14 @@ interface HeaderLogoProps {
}
export function HeaderLogo({ className }: HeaderLogoProps) {
+ const { t } = useTranslation();
+
return (
-
+
);
diff --git a/src/button/CopyButton.tsx b/src/button/CopyButton.tsx
index 5453f0a..281d3cb 100644
--- a/src/button/CopyButton.tsx
+++ b/src/button/CopyButton.tsx
@@ -48,6 +48,7 @@ export function CopyButton({
className={className}
onPress={setCopied}
iconStyle={isCopied ? "stroke" : "fill"}
+ aria-label={t("Copy")}
>
{isCopied ? (
<>